Merge branch 'main' of http://120.76.84.145:10101/gitblit/r/H5/chongzhouResettle
| | |
| | | this.resetForm(); |
| | | }, |
| | | async submitAudit() { |
| | | if (!this.form.auditComment.trim()) { |
| | | this.$message.warning("请输入审批意见"); |
| | | return; |
| | | } |
| | | // if (!this.form.auditComment.trim()) { |
| | | // this.$message.warning("请输入审批意见"); |
| | | // return; |
| | | // } |
| | | |
| | | const params = { |
| | | applyId: Number(this.id), // 确保是数字类型 |
| | | reason: this.form.auditComment.trim(), |
| | | reason: this.form.auditComment.trim()||'', |
| | | status: Number(this.form.auditResult === "通过" ? 1 : 2), // 确保是数字类型 |
| | | }; |
| | | |