diff --git a/src/pages/order/detail.vue b/src/pages/order/detail.vue index 412574c243c43fe277a0f7623339c66decc30081..31ca611892eb6eaf8b522733c528b3535b1bbc34 100644 --- a/src/pages/order/detail.vue +++ b/src/pages/order/detail.vue @@ -506,7 +506,16 @@ data.coordinate = this.dataValue ? this.dataValue[0]+','+this.dataValue[1]:'' data.url = this.errorSignUrl?this.errorSignUrl:'' }else if(this.submitType === 'toFilish'){ // 去完工 - this.filish() + if (this.order.categoryName != '充电桩') { + uni.showModal({ + title: 'æç¤º', + content: 'éžå……电桩订å•,请在扳手APP进行完工', + showCancel:false, + confirmText: '好的', + }) + } else { + this.filish() + } return } this.$u.api[this.submitType](data, this.order.orderId).then(res => {