more.vue 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  1. <template>
  2. <view class="zx-container car-function-set-more">
  3. <navBar :name="$t('更多功能')" left="0"></navBar>
  4. <view style='margin-top: 20rpx;' class="fn-wrap">
  5. <view class="title">
  6. {{ $t('固定导航栏') }}
  7. <text class="sort-num">{{ realActiveTabs.length }} / {{ MAX_TAB_LEN }}</text>
  8. </view>
  9. <!-- <draggable v-model="activeTabs" :delay="0" :animation="200" class="tab-item-container">
  10. <view v-for="(tab, index) in activeTabs" :class="['tab-item']" :key="index" @longpress="toggleEdit"
  11. @tap="deleteTab(tab)">
  12. <image v-if="tab.isLock && isActiveEdit" :src="icons.lock" class="right-icon" />
  13. <image v-if="getMovableItem(tab)" :src="icons.edit" class="right-icon" />
  14. <image :src="tab.iconUrl" class="icon" />
  15. <view :class="['name', getMovableItem(tab) && 'shake']">{{ tab.name }}</view>
  16. </view>
  17. </draggable> -->
  18. <basic-drag @changClick='changClick' @end='endFn' @toggleEdit='toggleEdit' v-model="activeTabs" :width="700" :column="4"
  19. itemKey="name"></basic-drag>
  20. </view>
  21. <view class="fn-wrap">
  22. <view class="title">{{ $t('其他功能') }}</view>
  23. <view class="tab-item-container is-to-be-select">
  24. <view v-for="tab in toBeSelectTabs" :key="tab.name" class="tab-item" @longpress="toggleEdit"
  25. @tap="addItemTab(tab)">
  26. <image @tap.stop="addIcon(tab)" v-if="showAddIcon" :src="icons.add" class="right-icon" />
  27. <image :src="tab.iconUrl" class="icon" />
  28. <view class="name">{{ $t(tab.name) }}</view>
  29. </view>
  30. </view>
  31. </view>
  32. <view class="tips">{{ $t('长按拖动可调整顺序,可增减固定导航栏内容') }}</view>
  33. <view v-if="showUnBind" class="un-bind-btn" @tap="toUnbind">{{ $t('解除绑定') }}</view>
  34. <view v-if="popupControlShow" class="show-modal">
  35. <view class="modal-info">
  36. <view class="popup-title">{{($t(popText)==$t('开机'))?$t('开启车辆'):($t(popText)==$t('关机')?$t('关闭车辆'):$t(popText))}}</view>
  37. <view class="popup-content">{{$t("您确认")+(($t(popText)==$t('开机'))?$t('开启车辆'):($t(popText)==$t('关机')?$t('关闭车辆'):$t(popText)))+$t("吗")}}</view>
  38. <view class="flex-row modal-footer">
  39. <view class="show-btn cencel-btn-pop" @tap="closePopup">{{$t("取消")}}</view>
  40. <view class="show-btn ok-btn-pop" @tap="tapBlueToothCmd">{{$t("确定")}}</view>
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. </template>
  46. <script>
  47. // import draggable from 'vuedraggable'
  48. import {
  49. QINIU_URL
  50. } from '@/common/constant'
  51. import BasicDrag from '@/components/basic-drag/index.vue';
  52. import {
  53. setFunctionTag,
  54. getFunctionTag,
  55. } from '@/common/storage.js';
  56. import controlMixin from '@/mixin/index';
  57. const ICONS = {
  58. lock: `${QINIU_URL}FgMCTZCySvEgLYgkzU65BUR4f4Ls`,
  59. edit: `${QINIU_URL}Fq3V1Zi5tKH7ibTwG1nO7N96CU8m`,
  60. add: `${QINIU_URL}FqLEWbMe8DcnQtNz6GdDDD87ObZK`,
  61. placeholder: `${QINIU_URL}FpKvfFNSDbx0d9RDwyGAQdFb7Kt6`
  62. }
  63. export default {
  64. mixins: [controlMixin],
  65. components: {
  66. // draggable
  67. BasicDrag
  68. },
  69. data() {
  70. const MAX_TAB_LEN = 4
  71. return {
  72. QINIU_URL,
  73. MAX_TAB_LEN,
  74. icons: ICONS,
  75. isActiveEdit: false,
  76. activeTabs: [],
  77. toBeSelectTabs: [],
  78. car_info :{},
  79. showUnBind:true
  80. }
  81. },
  82. computed: {
  83. realActiveTabs() {
  84. return this.activeTabs.filter(tab => tab.name)
  85. },
  86. showAddIcon() {
  87. return this.isActiveEdit && this.realActiveTabs.length < this.MAX_TAB_LEN
  88. }
  89. },
  90. onLoad(){
  91. this.car_info = uni.getStorageSync('car_info') || {};
  92. this.showUnBind = !!this.car_info.sold_time
  93. },
  94. created() {
  95. this.initializeTabs()
  96. },
  97. methods: {
  98. endFn(list, removedTab) {
  99. console.log(list, removedTab,'list, removedTab');
  100. if (removedTab) {
  101. this.toBeSelectTabs.push(removedTab)
  102. this.activeTabs = list
  103. if (this.activeTabs.length < this.MAX_TAB_LEN) {
  104. this.isActiveEdit = true
  105. }
  106. }
  107. this.activeTabsSetFn()
  108. },
  109. getMovableItem(tab) {
  110. return this.isActiveEdit && !tab.isLock && !tab.isPlaceholder
  111. },
  112. initializeTabs() {
  113. const lang = v => this.$t(v)
  114. this.activeTabs = getFunctionTag().activeTag
  115. this.toBeSelectTabs = getFunctionTag().tag
  116. },
  117. toggleEdit(e) {
  118. console.log(e,'eeeeeee');
  119. this.isActiveEdit = e
  120. },
  121. addItemTab(tab) {
  122. // const typeArr=['tirePressure','batteryInfo','navigation']
  123. // const isOther=typeArr.findIndex(t => t === tab.type)!==-1
  124. // if(isOther){
  125. // const {name,type}=tab
  126. // this.setData({
  127. // popText:name,
  128. // cmdType:type,
  129. // })
  130. // this.tapBlueToothCmd()
  131. // }else{
  132. // this.tapOpenControl(tab)
  133. // }
  134. this.changClick(tab)
  135. },
  136. addIcon(tab){
  137. if(!this.isActiveEdit) return
  138. const index = this.toBeSelectTabs.findIndex(t => t.name === tab.name)
  139. if (index !== -1) {
  140. const removedTab = this.toBeSelectTabs.splice(index, 1)[0]
  141. this.activeTabs.push(removedTab)
  142. if (this.realActiveTabs.length == this.MAX_TAB_LEN) {
  143. this.isActiveEdit = false
  144. }
  145. }
  146. this.activeTabsSetFn()
  147. },
  148. //处理修改之后的数据
  149. activeTabsSetFn() {
  150. let obj = {
  151. activeTag: this.activeTabs,
  152. tag: this.toBeSelectTabs,
  153. }
  154. setFunctionTag(obj)
  155. },
  156. toUnbind() {
  157. uni.navigateTo({
  158. url: '/pages/carFunctionSet/unbind'
  159. })
  160. },
  161. }
  162. }
  163. </script>
  164. <style lang="scss" scoped>
  165. @import "@/libs/css/layout.scss";
  166. .car-function-set-more {
  167. width: 100%;
  168. min-height: 100vh;
  169. padding: 0 24rpx 32rpx ;
  170. .fn-wrap {
  171. width: 100%;
  172. background: #FFFFFF;
  173. border-radius: 40rpx;
  174. margin-bottom: 20rpx;
  175. padding: 40rpx 0 48rpx;
  176. .title {
  177. font-family: PingFangSC, PingFang SC;
  178. font-weight: 400;
  179. font-size: 36rpx;
  180. color: #060809;
  181. margin-bottom: 16rpx;
  182. padding-left: 40rpx;
  183. .sort-num {
  184. margin-left: 12rpx;
  185. width: 36rpx;
  186. font-family: Futura, Futura;
  187. font-size: 30rpx;
  188. color: #060809;
  189. }
  190. }
  191. .tab-item-container {
  192. display: flex;
  193. &.is-to-be-select {
  194. flex-wrap: wrap;
  195. }
  196. }
  197. .tab-item {
  198. text-align: center;
  199. width: 25%;
  200. position: relative;
  201. margin-top: 24rpx;
  202. .right-icon {
  203. position: absolute;
  204. right: 20rpx;
  205. top: 0;
  206. width: 40rpx;
  207. height: 40rpx;
  208. z-index: 9;
  209. }
  210. .icon {
  211. width: 112rpx;
  212. height: 112rpx;
  213. margin-bottom: 20rpx;
  214. }
  215. .name {
  216. font-size: 28rpx;
  217. color: #060809;
  218. &.shake {
  219. animation: shake 0.2s ease-in-out infinite;
  220. }
  221. }
  222. }
  223. }
  224. .tips {
  225. font-size: 24rpx;
  226. color: #060809;
  227. text-align: center;
  228. margin-top: 32rpx;
  229. }
  230. .un-bind-btn {
  231. position: absolute;
  232. bottom: 56rpx;
  233. left: 50%;
  234. transform: translateX(-50%);
  235. width: 93%;
  236. padding: 24rpx;
  237. text-align: center;
  238. background: #E4E7EC;
  239. border-radius: 40rpx;
  240. font-family: PingFangSC, PingFang SC;
  241. font-weight: bold;
  242. font-size: 32rpx;
  243. color: #060809;
  244. &:active {
  245. opacity: .7;
  246. }
  247. }
  248. .show-modal{
  249. position: fixed;
  250. top: 0;
  251. left: 0;
  252. width: 100%;
  253. height: 100%;
  254. background-color: rgba(0, 0, 0, 0.5);
  255. display: flex;
  256. justify-content: center;
  257. align-items: center;
  258. z-index: 9999;
  259. }
  260. .modal-info{
  261. background-color: #fff;
  262. padding: 20px;
  263. border-radius: 20px;
  264. width: 80%;
  265. max-width: 300px;
  266. }
  267. .modal-footer{
  268. width: 100%;
  269. align-items: center;
  270. }
  271. .show-btn{
  272. border-radius: 40rpx;
  273. width: 50%;
  274. /* width: 230rpx; */
  275. text-align: center;
  276. font-weight: 600;
  277. font-size: 32rpx;
  278. border-radius: 40rpx;
  279. height: 80rpx;
  280. line-height: 80rpx;
  281. }
  282. .cencel-btn-pop{
  283. color: #060809;
  284. background: #EBECEC;
  285. margin-right: 12rpx;
  286. }
  287. .ok-btn-pop{
  288. color: #FFFFFF;
  289. background: #060809;
  290. }
  291. .popup-title{
  292. font-weight: 600;
  293. font-size: 36rpx;
  294. color: #060809;
  295. text-align: center;
  296. margin-bottom:32rpx;
  297. }
  298. .popup-content{
  299. text-align: center;
  300. font-weight: 400;
  301. font-size: 28rpx;
  302. color: #828384;
  303. margin-bottom: 48rpx;
  304. }
  305. }
  306. </style>