Compare commits

..

No commits in common. "193e37225ac027b402aa497b50751df231a6ba08" and "c90d2496c43a1439097c26b9a7a8f29316518d64" have entirely different histories.

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
}; };