Merge branch 'master' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web
Showing
1 changed file
with
4 additions
and
1 deletions
... | @@ -118,6 +118,8 @@ | ... | @@ -118,6 +118,8 @@ |
118 | this.ruleForm.fzrmc = res.result.fzrmc | 118 | this.ruleForm.fzrmc = res.result.fzrmc |
119 | this.ruleForm.fzsj = res.result.fzsj | 119 | this.ruleForm.fzsj = res.result.fzsj |
120 | this.ruleForm.fzsl = res.result.fzsl | 120 | this.ruleForm.fzsl = res.result.fzsl |
121 | this.ruleForm.bdcqzList = res.result.list; | ||
122 | |||
121 | } | 123 | } |
122 | }) | 124 | }) |
123 | }, | 125 | }, |
... | @@ -128,11 +130,12 @@ | ... | @@ -128,11 +130,12 @@ |
128 | this.$refs.table.toggleRowSelection(row) | 130 | this.$refs.table.toggleRowSelection(row) |
129 | }, | 131 | }, |
130 | handleSubmit () { | 132 | handleSubmit () { |
133 | |||
131 | this.$refs.ruleForm.validate(valid => { | 134 | this.$refs.ruleForm.validate(valid => { |
132 | if (valid) { | 135 | if (valid) { |
133 | issueCertificate(this.ruleForm).then(res => { | 136 | issueCertificate(this.ruleForm).then(res => { |
134 | if (res.code == 200) { | 137 | if (res.code == 200) { |
135 | this.$message.success('保存成功') | 138 | this.$message.success('保存成功'); |
136 | this.$popupCacel() | 139 | this.$popupCacel() |
137 | } else { | 140 | } else { |
138 | this.$message.error(res.message) | 141 | this.$message.error(res.message) | ... | ... |
-
Please register or sign in to post a comment