|
|
@@ -545,12 +545,22 @@
|
|
|
},
|
|
|
//跳转至服务项目页面
|
|
|
goProject() {
|
|
|
- console.log(this.form)
|
|
|
- uni.navigateTo({
|
|
|
- url: '/pages/order/serviceOrder/project?checkType=' + this.form.checkType + '&taskId=' + this.form.taskId +
|
|
|
- '&orderNo=' + this.form.orderNo + '&productName=' + this.form.productName + '&type=' + 1
|
|
|
+ this.$http.get("/ts/merchant/addPaidServiceCheck?taskId=" + this.form.taskId).then(res => {
|
|
|
+ console.log(res)
|
|
|
+ if (res.data.result) {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/pages/order/serviceOrder/project?checkType=' + this.form.checkType + '&taskId=' + this.form.taskId +
|
|
|
+ '&orderNo=' + this.form.orderNo + '&productName=' + this.form.productName + '&type=' + 1
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ uni.showToast({
|
|
|
+ icon: 'none',
|
|
|
+ title: '存在未支付服务项'
|
|
|
+ })
|
|
|
+ }
|
|
|
})
|
|
|
},
|
|
|
+
|
|
|
//查看收费服务明细
|
|
|
lookDetail(item) {
|
|
|
this.subOrderId = item.orderNo
|