@@ -74,6 +74,7 @@ | |||||
export default { | export default { | ||||
data() { | data() { | ||||
return { | return { | ||||
noClick:true, | |||||
tabbarList:tabbarList, | tabbarList:tabbarList, | ||||
current: 0, | current: 0, | ||||
buildingID: '', | buildingID: '', | ||||
@@ -213,24 +214,27 @@ | |||||
content: "确定更改当前客户接待状态为结束?", | content: "确定更改当前客户接待状态为结束?", | ||||
cancelColor: "#999999", | cancelColor: "#999999", | ||||
success: res => { | success: res => { | ||||
if (res.confirm) { | |||||
let that = this | |||||
clearTimeout(this.fdFlag) | |||||
this.fdFlag = setTimeout(() => { | |||||
this.$u.post("/customer/endReception", { | |||||
id: id, | |||||
houseId: this.buildingID | |||||
}).then(res => { | |||||
uni.showToast({ | |||||
icon: "none", | |||||
title: "操作成功" | |||||
}) | |||||
this.init(); | |||||
}); | |||||
that.fdFlag = null; | |||||
}, 500) | |||||
if (this.noClick) { | |||||
this.noClick= false; | |||||
if (res.confirm) { | |||||
if (res.confirm) { | |||||
this.$u.post("/customer/endReception", { | |||||
id: id, | |||||
houseId: this.buildingID | |||||
}).then(res => { | |||||
uni.showToast({ | |||||
icon: "none", | |||||
title: "操作成功" | |||||
}) | |||||
this.init(); | |||||
}); | |||||
} | |||||
} | |||||
setTimeout(()=> { | |||||
this.noClick= true; | |||||
}, 2000) | |||||
} else { | |||||
// 这里是重复点击的判断 | |||||
} | } | ||||
} | } | ||||
}) | }) | ||||
@@ -70,7 +70,7 @@ | |||||
</view> | </view> | ||||
</view> | </view> | ||||
<view class="clive" @click.stop="btnSave" :style="{background:(isBand==false?'#2671E2':'#949494')}">确定</view> | |||||
<view class="clive" @click.stop="$noMultipleClicks(save)" :style="{background:(isBand==false?'#2671E2':'#949494')}">确定</view> | |||||
<!-- <view v-if="Showhiddenunits"> --> | <!-- <view v-if="Showhiddenunits"> --> | ||||
<!-- <u-select v-model="show" :list="list"></u-select> --> | <!-- <u-select v-model="show" :list="list"></u-select> --> | ||||
@@ -92,6 +92,7 @@ | |||||
export default { | export default { | ||||
data() { | data() { | ||||
return { | return { | ||||
noClick: true, | |||||
Showhiddenunits: false, | Showhiddenunits: false, | ||||
list: [ | list: [ | ||||
// {label: '自然到访',value:'自然到访'}, | // {label: '自然到访',value:'自然到访'}, | ||||