Commit 692882bd by 王勇飞

add apply.principal

parent 5355c4a2
...@@ -2073,6 +2073,7 @@ module.exports = { ...@@ -2073,6 +2073,7 @@ module.exports = {
"order_status": { "1": "未付款", "2": "订单取消", "4": "付款成功", "8": "退款处理中", "16": "已退款", "32": "已提报", "64": "审核中" }, "order_status": { "1": "未付款", "2": "订单取消", "4": "付款成功", "8": "退款处理中", "16": "已退款", "32": "已提报", "64": "审核中" },
"msg_notice_type": { "friend": "朋友", "boss": "老板" }, "msg_notice_type": { "friend": "朋友", "boss": "老板" },
"tm_apply_type": { "ent": "企业", "person": "个人" }, "tm_apply_type": { "ent": "企业", "person": "个人" },
"tm_principal": { "ht": "汉唐信通(北京)咨询有限公司", "zy": "知域互联科技有限公司", "ali": "阿里巴巴科技(北京)有限公司"},
"tm_apply_types": { "ent": "企业" }, "tm_apply_types": { "ent": "企业" },
"op_type": { "applying": "申请中", "issued": "已发放", "issueError": "发放异常" }, "op_type": { "applying": "申请中", "issued": "已发放", "issueError": "发放异常" },
"tmFirstOrder": { 0: "否", 1: "是" }, "tmFirstOrder": { 0: "否", 1: "是" },
......
...@@ -273,6 +273,10 @@ ...@@ -273,6 +273,10 @@
<el-form-item label-width="140px" label="电子邮箱" style="width:950px;float:left;padding-right:50px;"> <el-form-item label-width="140px" label="电子邮箱" style="width:950px;float:left;padding-right:50px;">
<el-input v-model="apply.email"> </el-input> <el-input v-model="apply.email"> </el-input>
</el-form-item> </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> <div style="clear:both;"></div>
<div style="clear:both;"></div> <div style="clear:both;"></div>
......
...@@ -207,6 +207,7 @@ ...@@ -207,6 +207,7 @@
identityCardPic2: "", identityCardPic2: "",
sealAuthorizeStuff: "", sealAuthorizeStuff: "",
descUrl: "", descUrl: "",
principal: "",
}, },
applyrules: { applyrules: {
type: [ type: [
...@@ -239,6 +240,9 @@ ...@@ -239,6 +240,9 @@
email: [ email: [
{ required: true, message: '请输入电子邮箱' } { required: true, message: '请输入电子邮箱' }
], ],
principal: [
{ type: 'string', required: true, message: '请选择委托主体', trigger: 'change' }
],
}, },
order: {}, order: {},
qrcode: "", qrcode: "",
...@@ -977,6 +981,13 @@ ...@@ -977,6 +981,13 @@
if (!this.apply.businessLicensePic && data.businessLicensePic) { if (!this.apply.businessLicensePic && data.businessLicensePic) {
this.apply.businessLicensePic = data.businessLicensePic; this.apply.businessLicensePic = data.businessLicensePic;
} }
if (!this.apply.principal) {
if(data.principal) {
this.apply.principal = data.principal;
} else {
this.apply.principal = "汉唐信通(北京)咨询有限公司";
};
}
} }
}).finally(() => { }).finally(() => {
this.$root.hideMask(); this.$root.hideMask();
......
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