| | |
| | | align="center" |
| | | label="身份证号" |
| | | width="200" |
| | | > |
| | | > |
| | | <template slot-scope="scope"> |
| | | <el-input |
| | | |
| | | v-model="scope.row.idcardno" |
| | | placeholder="身份证号" |
| | | /> |
| | | <el-input v-model="scope.row.idcardno" placeholder="身份证号" /> |
| | | </template> |
| | | </el-table-column> |
| | | |
| | |
| | | > |
| | | <template slot-scope="scope"> |
| | | <el-input |
| | | |
| | | v-model="scope.row.depositbank" |
| | | placeholder="开户银行" |
| | | /> |
| | |
| | | > |
| | | <template slot-scope="scope"> |
| | | <el-input |
| | | |
| | | v-model="scope.row.bankcardno" |
| | | placeholder="银行帐号" |
| | | /> |
| | |
| | | addorupdateFund(this.form).then(response => { |
| | | console.log(response, "保存返参"); |
| | | if (response.code === 200) { |
| | | this.$modal.msgSuccess("申请单保存成功!"); |
| | | this.$store.dispatch("tagsView/delView", this.$route); |
| | | this.$router.push({ |
| | | path: "/finance/performancedetails/", |
| | | query: { |
| | | id: response.data, |
| | | businessType: "5", |
| | | operationType: "update" |
| | | } |
| | | }); |
| | | if (this.form.id) { |
| | | this.$modal.msgSuccess("申请单修改成功!"); |
| | | this.$router.go(-1); |
| | | } else { |
| | | this.$modal.msgSuccess("申请单保存成功!"); |
| | | this.$store.dispatch("tagsView/delView", this.$route); |
| | | this.$router.push({ |
| | | path: "/finance/performancedetails/", |
| | | query: { |
| | | id: response.data, |
| | | businessType: "5", |
| | | operationType: "update" |
| | | } |
| | | }); |
| | | } |
| | | this.Routinglevel++; |
| | | this.form.id = response.data; |
| | | this.curId = response.data; |
| | | this.handleUpdate(); |
| | | } else { |
| | | this.$modal.msgError("申请单保存失败:" + response.msg); |
| | | } |