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

master
schry 2 years ago
parent 71a6edcf78
commit 1a3b5d856e

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

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

Loading…
Cancel
Save