| | |
| | | getdownloadSS, |
| | | getdownloadYX, |
| | | getdownloadBX, |
| | | batchUploadFund, |
| | | addorupdateFund, |
| | | getdownloadLL, |
| | | getdetailsByItemId, |
| | | } from "@/api/project/fund"; |
| | |
| | | ], |
| | | deptmentname: [ |
| | | { required: true, message: "请输入所属组别", trigger: "blur" }, |
| | | ], |
| | | amountrequested: [ |
| | | { required: true, message: "请输入申请金额", trigger: "blur" }, |
| | | ], |
| | | }, |
| | | //捐献案例列表数据 |
| | |
| | | } |
| | | |
| | | this.form.serviceFunddetails = this.fundDetailArr; |
| | | batchUploadFund(this.form).then((response) => { |
| | | addorupdateFund(this.form).then((response) => { |
| | | if (response.code === 200) { |
| | | this.$modal.msgSuccess("新增成功"); |
| | | this.loading = false; |
| | |
| | | this.$modal.msgSuccess(response.msg); |
| | | this.fileList.push({ name: response.fileName, url: response.fileName }); |
| | | } else { |
| | | console.log(response.msg);; |
| | | this.$modal.msgError(response.msg); |
| | | } |
| | | }, |
| | | |