more.vue 8.0 KB

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