more.vue 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. <template>
  2. <view class="zx-container car-function-set-more">
  3. <navBar name="更多功能" left="0"></navBar>
  4. <view 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 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. }
  79. },
  80. computed: {
  81. realActiveTabs() {
  82. return this.activeTabs.filter(tab => tab.name)
  83. },
  84. showAddIcon() {
  85. return this.isActiveEdit && this.realActiveTabs.length < this.MAX_TAB_LEN
  86. }
  87. },
  88. created() {
  89. this.initializeTabs()
  90. },
  91. methods: {
  92. endFn(list, removedTab) {
  93. console.log(list, removedTab,'list, removedTab');
  94. if (removedTab) {
  95. this.toBeSelectTabs.push(removedTab)
  96. this.activeTabs = list
  97. if (this.activeTabs.length < this.MAX_TAB_LEN) {
  98. this.isActiveEdit = true
  99. }
  100. }
  101. this.activeTabsSetFn()
  102. },
  103. getMovableItem(tab) {
  104. return this.isActiveEdit && !tab.isLock && !tab.isPlaceholder
  105. },
  106. initializeTabs() {
  107. const lang = v => this.$t(v)
  108. this.activeTabs = getFunctionTag().activeTag
  109. this.toBeSelectTabs = getFunctionTag().tag
  110. },
  111. toggleEdit(e) {
  112. console.log(e,'eeeeeee');
  113. this.isActiveEdit = e
  114. },
  115. addItemTab(tab) {
  116. // const typeArr=['tirePressure','batteryInfo','navigation']
  117. // const isOther=typeArr.findIndex(t => t === tab.type)!==-1
  118. // if(isOther){
  119. // const {name,type}=tab
  120. // this.setData({
  121. // popText:name,
  122. // cmdType:type,
  123. // })
  124. // this.tapBlueToothCmd()
  125. // }else{
  126. // this.tapOpenControl(tab)
  127. // }
  128. this.changClick(tab)
  129. },
  130. addIcon(tab){
  131. if(!this.isActiveEdit) return
  132. const index = this.toBeSelectTabs.findIndex(t => t.name === tab.name)
  133. if (index !== -1) {
  134. const removedTab = this.toBeSelectTabs.splice(index, 1)[0]
  135. this.activeTabs.push(removedTab)
  136. if (this.realActiveTabs.length == this.MAX_TAB_LEN) {
  137. this.isActiveEdit = false
  138. }
  139. }
  140. this.activeTabsSetFn()
  141. },
  142. //处理修改之后的数据
  143. activeTabsSetFn() {
  144. let obj = {
  145. activeTag: this.activeTabs,
  146. tag: this.toBeSelectTabs,
  147. }
  148. setFunctionTag(obj)
  149. },
  150. toUnbind() {
  151. uni.navigateTo({
  152. url: '/pages/carFunctionSet/unbind'
  153. })
  154. },
  155. }
  156. }
  157. </script>
  158. <style lang="scss" scoped>
  159. @import "@/libs/css/layout.scss";
  160. .car-function-set-more {
  161. width: 100%;
  162. min-height: 100vh;
  163. padding: 0 24rpx 32rpx ;
  164. .fn-wrap {
  165. width: 100%;
  166. background: #FFFFFF;
  167. border-radius: 40rpx;
  168. margin-bottom: 20rpx;
  169. padding: 40rpx 0 48rpx;
  170. .title {
  171. font-family: PingFangSC, PingFang SC;
  172. font-weight: 400;
  173. font-size: 36rpx;
  174. color: #060809;
  175. margin-bottom: 16rpx;
  176. padding-left: 40rpx;
  177. .sort-num {
  178. margin-left: 12rpx;
  179. width: 36rpx;
  180. font-family: Futura, Futura;
  181. font-size: 30rpx;
  182. color: #060809;
  183. }
  184. }
  185. .tab-item-container {
  186. display: flex;
  187. &.is-to-be-select {
  188. flex-wrap: wrap;
  189. }
  190. }
  191. .tab-item {
  192. text-align: center;
  193. width: 25%;
  194. position: relative;
  195. margin-top: 24rpx;
  196. .right-icon {
  197. position: absolute;
  198. right: 20rpx;
  199. top: 0;
  200. width: 40rpx;
  201. height: 40rpx;
  202. z-index: 9;
  203. }
  204. .icon {
  205. width: 112rpx;
  206. height: 112rpx;
  207. margin-bottom: 20rpx;
  208. }
  209. .name {
  210. font-size: 28rpx;
  211. color: #060809;
  212. &.shake {
  213. animation: shake 0.2s ease-in-out infinite;
  214. }
  215. }
  216. }
  217. }
  218. .tips {
  219. font-size: 24rpx;
  220. color: #060809;
  221. text-align: center;
  222. margin-top: 32rpx;
  223. }
  224. .un-bind-btn {
  225. position: absolute;
  226. bottom: 56rpx;
  227. left: 50%;
  228. transform: translateX(-50%);
  229. width: 93%;
  230. padding: 24rpx;
  231. text-align: center;
  232. background: #E4E7EC;
  233. border-radius: 40rpx;
  234. font-family: PingFangSC, PingFang SC;
  235. font-weight: bold;
  236. font-size: 32rpx;
  237. color: #060809;
  238. &:active {
  239. opacity: .7;
  240. }
  241. }
  242. .show-modal{
  243. position: fixed;
  244. top: 0;
  245. left: 0;
  246. width: 100%;
  247. height: 100%;
  248. background-color: rgba(0, 0, 0, 0.5);
  249. display: flex;
  250. justify-content: center;
  251. align-items: center;
  252. z-index: 9999;
  253. }
  254. .modal-info{
  255. background-color: #fff;
  256. padding: 20px;
  257. border-radius: 20px;
  258. width: 80%;
  259. max-width: 300px;
  260. }
  261. .modal-footer{
  262. width: 100%;
  263. align-items: center;
  264. }
  265. .show-btn{
  266. border-radius: 40rpx;
  267. width: 50%;
  268. /* width: 230rpx; */
  269. text-align: center;
  270. font-weight: 600;
  271. font-size: 32rpx;
  272. border-radius: 40rpx;
  273. height: 80rpx;
  274. line-height: 80rpx;
  275. }
  276. .cencel-btn-pop{
  277. color: #060809;
  278. background: #EBECEC;
  279. margin-right: 12rpx;
  280. }
  281. .ok-btn-pop{
  282. color: #FFFFFF;
  283. background: #060809;
  284. }
  285. .popup-title{
  286. font-weight: 600;
  287. font-size: 36rpx;
  288. color: #060809;
  289. text-align: center;
  290. margin-bottom:32rpx;
  291. }
  292. .popup-content{
  293. text-align: center;
  294. font-weight: 400;
  295. font-size: 28rpx;
  296. color: #828384;
  297. margin-bottom: 48rpx;
  298. }
  299. }
  300. </style>