This commit is contained in:
admin-lmm
2023-07-07 08:08:37 +08:00
parent feb66a5a60
commit e9a510e003

View File

@@ -196,7 +196,7 @@
<el-button type="primary" v-if="adapayCorpMember.auditState == 'E'" @click="updateDialog=true">更改</el-button> <el-button type="primary" v-if="adapayCorpMember.auditState == 'E'" @click="updateDialog=true">更改</el-button>
</el-card> </el-card>
<el-dialog title="修改信息" :visible.sync="updateDialog" width="50%"> <el-dialog title="修改信息" :visible.sync="updateDialog" width="50%">
<el-form :model="adapayCorpMember" :rules="adapayCorpRules" ref="updateForm" label-width="220px"> <el-form :model="adapayCorpMember" :rules="adapayCorpRules" ref="dialogForm" label-width="220px">
<el-form-item label="统一社会信用码" prop="socialCreditCode"> <el-form-item label="统一社会信用码" prop="socialCreditCode">
<el-input v-model="adapayCorpMember.socialCreditCode" maxlength="18"></el-input> <el-input v-model="adapayCorpMember.socialCreditCode" maxlength="18"></el-input>
</el-form-item> </el-form-item>
@@ -262,7 +262,7 @@
</el-upload> </el-upload>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button type="primary" @click="updateDialogForm('updateForm')" <el-button type="primary" @click="updateDialogForm('dialogForm')"
>提交</el-button> >提交</el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
@@ -575,7 +575,7 @@ export default {
); );
}, },
handleSuccess(res, file) { handleSuccess(res, file) {
// this.$refs.dialogForm.clearValidate() this.$refs.dialogForm.clearValidate()
// this.$refs.updateForm.clearValidate() // this.$refs.updateForm.clearValidate()
this.imageUrl = URL.createObjectURL(file.raw); this.imageUrl = URL.createObjectURL(file.raw);
console.log("图片上传成功 url", this.imageUrl); console.log("图片上传成功 url", this.imageUrl);