|
@@ -24,7 +24,7 @@
|
|
|
<view class="tab-item-container is-to-be-select">
|
|
|
<view v-for="tab in toBeSelectTabs" :key="tab.name" class="tab-item" @longpress="toggleEdit"
|
|
|
@tap="addItemTab(tab)">
|
|
|
- <image v-if="showAddIcon" :src="icons.add" class="right-icon" />
|
|
|
+ <image @tap.stop="addIcon(tab)" v-if="showAddIcon" :src="icons.add" class="right-icon" />
|
|
|
<image :src="tab.iconUrl" class="icon" />
|
|
|
<view class="name">{{ $t(tab.name) }}</view>
|
|
|
</view>
|
|
@@ -34,8 +34,8 @@
|
|
|
<view class="un-bind-btn" @tap="toUnbind">{{ $t('解除绑定') }}</view>
|
|
|
<view v-if="popupControlShow" class="show-modal">
|
|
|
<view class="modal-info">
|
|
|
- <view class="popup-title">{{$t(popText)}}</view>
|
|
|
- <view class="popup-content">{{$t("您确认")+$t(popText)}}</view>
|
|
|
+ <view class="popup-title">{{($t(popText)==$t('开机'))?$t('开启车辆'):($t(popText)==$t('关机')?$t('关闭车辆'):$t(popText))}}</view>
|
|
|
+ <view class="popup-content">{{$t("您确认")+(($t(popText)==$t('开机'))?$t('开启车辆'):($t(popText)==$t('关机')?$t('关闭车辆'):$t(popText)))+$t("吗")}}</view>
|
|
|
<view class="flex-row modal-footer">
|
|
|
<view class="show-btn cencel-btn-pop" @tap="closePopup">{{$t("取消")}}</view>
|
|
|
<view class="show-btn ok-btn-pop" @tap="tapBlueToothCmd">{{$t("确定")}}</view>
|
|
@@ -129,11 +129,13 @@
|
|
|
// this.tapOpenControl(tab)
|
|
|
// }
|
|
|
this.changClick(tab)
|
|
|
+
|
|
|
+ },
|
|
|
+ addIcon(tab){
|
|
|
if(!this.isActiveEdit) return
|
|
|
const index = this.toBeSelectTabs.findIndex(t => t.name === tab.name)
|
|
|
if (index !== -1) {
|
|
|
const removedTab = this.toBeSelectTabs.splice(index, 1)[0]
|
|
|
- console.log(removedTab,index,this.realActiveTabs.length);
|
|
|
this.activeTabs.push(removedTab)
|
|
|
if (this.realActiveTabs.length == this.MAX_TAB_LEN) {
|
|
|
this.isActiveEdit = false
|