Browse Source

提交修改

yun
douzhuo 2 years ago
parent
commit
b6fa87e1c6
2 changed files with 12 additions and 2 deletions
  1. +1
    -0
      components/uniapp-zaudio/zaudio.vue
  2. +11
    -2
      pages/index/customer.vue

+ 1
- 0
components/uniapp-zaudio/zaudio.vue View File

@@ -199,6 +199,7 @@
this.loading = loading; this.loading = loading;
}); });
this.$zaudio.syncRender() this.$zaudio.syncRender()
console.log(this.$zaudio)
}); });
}, },
methods: { methods: {


+ 11
- 2
pages/index/customer.vue View File

@@ -46,7 +46,7 @@
<!-- checkAuthority('顾问指派顾问') --> <!-- checkAuthority('顾问指派顾问') -->
<view class="footer-button" v-if="item.status!=0"> <view class="footer-button" v-if="item.status!=0">
<view class="footer1" @click.stop="addTime(item)">接待延时</view> <view class="footer1" @click.stop="addTime(item)">接待延时</view>
<template v-if="checkAuthority('顾问指派顾问')">
<template v-if="zhipai">
<view class="footer1" @click.stop="assign(item)">重新指派</view> <view class="footer1" @click.stop="assign(item)">重新指派</view>
</template> </template>
<template v-if="endReception"> <template v-if="endReception">
@@ -58,7 +58,7 @@
<view class="centerbox-che">手机号码:<text class="shizai">{{item.phone || "--"}}</text></view> <view class="centerbox-che">手机号码:<text class="shizai">{{item.phone || "--"}}</text></view>
</view> </view>
<view class="footer-button" v-if="item.status==0"> <view class="footer-button" v-if="item.status==0">
<template v-if="checkAuthority('顾问指派顾问')">
<template v-if="zhipai">
<view class="footer3" @click.stop="assign(item)">指派顾问</view> <view class="footer3" @click.stop="assign(item)">指派顾问</view>
</template> </template>
</view> </view>
@@ -98,6 +98,15 @@
fdFlag: null fdFlag: null
}; };
}, },
computed: {
zhipai() {
if (this.dataCode == 6) {
return this.checkAuthority('顾问指派顾问')
} else {
return true
}
}
},
components: {}, components: {},
onShow() { onShow() {
this.LOADING = true this.LOADING = true


Loading…
Cancel
Save