more.vue 7.3 KB

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