Commit 7b895129 by 王勇飞

pp

parent 692882bd
......@@ -280,6 +280,10 @@
<el-form-item label-width="140px" label="电子邮箱" style="width:950px;float:left;padding-right:50px;">
<el-input v-model="apply.email"> </el-input>
</el-form-item>
<el-form-item label-width="140px" label="提报主体" style="width:950px;float:left;padding-right:50px;">
<gsb-select v-model="apply.principal" dicKey="tm_principal" labelField="label" valueField="value">
</gsb-select>
</el-form-item>
<div style="clear:both;"></div>
<!-- <el-form-item label-width="140px" label="座机电话" style="width:950px;float:left;padding-right:50px;" prop="creditCode">
<el-input v-model="apply.creditCode"></el-input>
......
......@@ -196,6 +196,7 @@
descUrl: "",
businessLicensePic2: "",
identityCardPic2: "",
principal: "",
},
applyrules: {
type: [
......@@ -228,6 +229,9 @@
email: [
{ required: true, message: '请输入电子邮箱' }
],
principal: [
{ type: 'string', required: true, message: '请选择委托主体', trigger: 'change' }
],
},
order: {},
qrcode: "",
......@@ -407,6 +411,7 @@
customerContact: d_customer ? d_customer.customerContact : "",
mobile: d_customer ? d_customer.mobile : "",
email: d_customer ? d_customer.email : "",
principal: d_apply ? d_apply.principal : "汉唐信通(北京)咨询有限公司",
businessLicensePic: d_apply ? d_apply.businessLicensePic : "",
identityCardPic: d_apply ? d_apply.identityCardPic : "",
businessLicensePic2: d_apply ? d_apply.businessLicensePic2 : "",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment