6ff618e7 by xiaomiao

领取证书

1 parent 1c20ad78
...@@ -117,18 +117,19 @@ ...@@ -117,18 +117,19 @@
117 this.ruleForm.fzrmc = res.result.fzrmc 117 this.ruleForm.fzrmc = res.result.fzrmc
118 this.ruleForm.fzsj = res.result.fzsj 118 this.ruleForm.fzsj = res.result.fzsj
119 this.ruleForm.fzsl = res.result.fzsl 119 this.ruleForm.fzsl = res.result.fzsl
120 this.ruleForm.bdcqzList = res.result.list;
120 121
121 } 122 }
122 }) 123 })
123 }, 124 },
124 handleSubmit () { 125 handleSubmit () {
126
125 this.$refs.ruleForm.validate(valid => { 127 this.$refs.ruleForm.validate(valid => {
126 if (valid) { 128 if (valid) {
127 issueCertificate(this.ruleForm).then(res => { 129 issueCertificate(this.ruleForm).then(res => {
128 if (res.code == 200) { 130 if (res.code == 200) {
129 this.$message.success('保存成功'); 131 this.$message.success('保存成功');
130 this.$parent.queryClick(); 132 this.$popupCacel()
131 this.$emit("input", false);
132 } else { 133 } else {
133 this.$message.error(res.message) 134 this.$message.error(res.message)
134 } 135 }
......