From edb50cb0dc65061d5ce9f8d4ff26fcee12b09eee Mon Sep 17 00:00:00 2001 From: MrShi <1878285526@qq.com> Date: 星期六, 19 七月 2025 15:07:01 +0800 Subject: [PATCH] 调接口 --- small-program/pages/using-workers/using-workers.vue | 29 ++++++++++++++++++----------- 1 files changed, 18 insertions(+), 11 deletions(-) diff --git a/small-program/pages/using-workers/using-workers.vue b/small-program/pages/using-workers/using-workers.vue index a7bddd6..4b4b942 100644 --- a/small-program/pages/using-workers/using-workers.vue +++ b/small-program/pages/using-workers/using-workers.vue @@ -195,15 +195,18 @@ this.$u.api.getDetail({ orderId: option.id }).then(res => { - this.info = res.data - for (const key in this.form) { - this.form[key] = res.data[key] + if (res.code === 200) { + this.info = res.data + for (const key in this.form) { + this.form[key] = res.data[key] + } + this.form.days = res.data.totalDays + this.form.price = Number(this.form.price) / 100 + if (!this.form.multifileList) { + this.form.multifileList = [] + } } - this.form.days = res.data.totalDays - this.form.price = Number(this.form.price) / 100 - if (!this.form.multifileList) { - this.form.multifileList = [] - } + }) } else { this.form.linkPhone = this.userInfo.telephone @@ -271,8 +274,10 @@ type: this.form.type, workType: this.form.workType }).then(res => { - this.modify = true - this.form.estimatedAccount = res.data + if (res.code === 200) { + this.modify = true + this.form.estimatedAccount = res.data + } }) } }, @@ -300,7 +305,9 @@ this.$u.api.getCategoryList({ type: 0 }).then(res => { - this.cateList = [res.data] + if (res.code === 200) { + this.cateList = [res.data] + } }) }, uploadImg() { -- Gitblit v1.9.3