注册页面添加资质证书bug修改

master
schry 2 years ago
parent 71a6edcf78
commit 1a3b5d856e

@ -558,6 +558,7 @@
:addType="addType"
:editTye="editTye"
:ucId="ucId"
:mobile="mobile"
></companyAddCert>
</el-dialog>
<el-image-viewer
@ -601,6 +602,7 @@ export default {
mobile: "",
selectedOptions: [],
query: {
mobile: null,
page: 1,
limit: 20,
},
@ -876,6 +878,7 @@ export default {
if (phoneReg.test(res.data.mobile) && res.data.captcha.length == 6) {
this.mobile = res.data.mobile;
this.inputQuery.mobile = res.data.mobile;
this.query.mobile = res.data.mobile;
this.getInfo();
}
} else {

@ -166,6 +166,10 @@ export default {
type: Object,
required: true,
},
mobile: {
type: Object,
required: true,
},
},
data() {
return {
@ -182,6 +186,7 @@ export default {
name: null,
manufacturerIdFk: null,
status: null,
},
formRules: {
name: [
@ -268,7 +273,7 @@ export default {
},
onConfirmSubmit() {
this.formData.businessId=this.ucId;
this.formData.businessId=this.mobile;
isertCert(this.formData).then( (res)=>{
if(res.code == 20000){
this.$message.success("添加成功!")

Loading…
Cancel
Save