@@ -227,14 +227,10 @@
openPop() {
let _this = this
uni.showActionSheet({
- itemList: ['在线客服', '电话客服'],
+ itemList: ['电话客服'],
success: function (res) {
- //在线客服
- if(res.tapIndex == 1){
- _this.callPhone()
- }
//电话客服
+ if(res.tapIndex == 0){
_this.callPhone()
}
},