Compare commits

...

2 Commits

2 changed files with 6 additions and 6 deletions

View File

@ -41,7 +41,7 @@ export interface TenantForm {
username: string; username: string;
joinTime: string; joinTime: string;
type: number; type: number;
mchtcode: string; mchtCode: string;
templateName: string; templateName: string;
password: string; password: string;
otherAttachment: string; otherAttachment: string;

View File

@ -193,8 +193,8 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="8"> <el-col :span="8">
<el-form-item label="易生分配的商户编码:" prop="mchtcode"> <el-form-item label="易生分配的商户编码:" prop="mchtCode">
<el-input v-model="form.mchtcode" placeholder="请输入易生分配的商户编码" /> <el-input v-model="form.mchtCode" placeholder="请输入易生分配的商户编码" />
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="8"> <el-col :span="8">
@ -436,8 +436,8 @@
{{ tenantForm.licenseNumber }} {{ tenantForm.licenseNumber }}
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-form-item label="易生分配的商户编码:" prop="mchtcode"> <el-form-item label="易生分配的商户编码:" prop="mchtCode">
{{ tenantForm.mchtcode }} {{ tenantForm.mchtCode }}
</el-form-item> </el-form-item>
<el-col :span="8"> <el-col :span="8">
<el-form-item label="企业类型:" prop="companyType"> <el-form-item label="企业类型:" prop="companyType">
@ -862,7 +862,7 @@ const initFormData: TenantForm = {
promoteList: '', //广 promoteList: '', //广
related: '', // related: '', //
certificate: '', // certificate: '', //
mchtcode: '', // mchtCode: '', //
type: 2 type: 2
}; };