53c2556c by renchao@pashanhoo.com
2 parents 621a64ec 5c6850d2
......@@ -118,6 +118,8 @@
this.ruleForm.fzrmc = res.result.fzrmc
this.ruleForm.fzsj = res.result.fzsj
this.ruleForm.fzsl = res.result.fzsl
this.ruleForm.bdcqzList = res.result.list;
}
})
},
......@@ -128,11 +130,12 @@
this.$refs.table.toggleRowSelection(row)
},
handleSubmit () {
this.$refs.ruleForm.validate(valid => {
if (valid) {
issueCertificate(this.ruleForm).then(res => {
if (res.code == 200) {
this.$message.success('保存成功')
this.$message.success('保存成功');
this.$popupCacel()
} else {
this.$message.error(res.message)
......