|
@@ -21,7 +21,7 @@
|
|
|
|
|
|
<!-- <custom-switch :defaultPosition="'right'" :width="'400rpx'"
|
|
|
:height="'96rpx'" v-model="switchValue" :fetchData="loadData"></custom-switch> -->
|
|
|
- <view @tap="navToInputPages" class="car-change-battery flex-row">
|
|
|
+ <view v-if="authority_list.indexOf(5) == -1" @tap="navToInputPages" class="car-change-battery flex-row">
|
|
|
<view class="car-change-btn"><image style="width: 80rpx;height: 80rpx;" src="https://qiniu.bms16.com/FgvnT-msLbL5RHjl6fvNlM0kab5N" mode=""></image></view>
|
|
|
<view class="car-change-text">车辆换电</view>
|
|
|
</view>
|
|
@@ -112,6 +112,7 @@ export default {
|
|
|
switchValue: {state:false,time:0},
|
|
|
isShowMore:false,
|
|
|
car_line:false,
|
|
|
+ authority_list:[]
|
|
|
// startX: 0, // 滑块开始滑动的初始位置
|
|
|
// moveX: 0, // 滑块滑动的距离
|
|
|
// unlocked: false, // 是否解锁成功的标志
|
|
@@ -124,11 +125,12 @@ export default {
|
|
|
return {
|
|
|
transform: `translateX(${this.moveX}px)`
|
|
|
};
|
|
|
- }
|
|
|
+ },
|
|
|
},
|
|
|
mounted() {
|
|
|
// this.contrilList = getFunctionTag().activeTag
|
|
|
// setTimeout(()=>{
|
|
|
+ this.authority_list=uni.getStorageSync('car_info').authority_list
|
|
|
this.switchValue.state=uni.getStorageSync('car_info').acc_state==1
|
|
|
// },50)
|
|
|
|
|
@@ -145,11 +147,20 @@ export default {
|
|
|
changEnd(e){
|
|
|
this.switchValue = JSON.parse(e)
|
|
|
if(this.switchValue.type==1){
|
|
|
- const car_sn= uni.getStorageSync('car_info').car_sn
|
|
|
- this.$emit('loadCarDetail',car_sn)
|
|
|
+ this.callApiThreeTimes()
|
|
|
}
|
|
|
console.log(this.switchValue)
|
|
|
},
|
|
|
+ callApiThreeTimes() {
|
|
|
+ const apiCall = (attempt) => {
|
|
|
+ const car_sn= uni.getStorageSync('car_info').car_sn
|
|
|
+ this.$emit('loadCarDetail',car_sn)
|
|
|
+ };
|
|
|
+
|
|
|
+ apiCall(1);
|
|
|
+ // setTimeout(() => apiCall(2), 200);
|
|
|
+ // setTimeout(() => apiCall(3), 200);
|
|
|
+ },
|
|
|
tapOpen(e){
|
|
|
const item = e.currentTarget.dataset.item;
|
|
|
this.changClick(item)
|