diff --git a/combining.html b/combining.html index 49d5861..fcd14a0 100644 --- a/combining.html +++ b/combining.html @@ -724,24 +724,28 @@ /* 验证后 最终提交 */ finalSubmit() { - this.loading = true; const self = this; - let data = { - key: this.key, - code_batch_id: this.code_batch_id, - token: localStorage.getItem("token"), - account: this.form.receive_account, - receive_mode: 2 - }; - + this.loading = true; setTimeout(() => { this.loading = false; }, 2000) if (this.goods.send_status === 3 || this.goods.send_status === 4) { - this.resetSubmit(data); // 重试 + let params = { + token: localStorage.getItem("token"), + code_batch_id: this.code_batch_id, + channel_user_id: this.form.receive_account + } + this.resetSubmit(params); // 重试 } else { - this.submitOne(data); // 普通提交 + let params = { + key: this.key, + code_batch_id: this.code_batch_id, + token: localStorage.getItem("token"), + account: this.form.receive_account, + receive_mode: 2 + }; + this.submitOne(params); // 普通提交 } },