Commit fcbfa2ce by Lyan

系统成员企业信息切图

parent bf2437a0
......@@ -912,6 +912,14 @@ const routes = [
},
component: () => import("@/views/MyManage/SystemMember/index.vue"),
},
{
path: "/MyManage/SystemMember/companyInfo",
name: "companyInfo",
meta: {
name: "企业信息",
},
component: () => import("@/views/MyManage/SystemMember/companyInfo.vue"),
},
// 管理员 START
{
path: "/MyManage/admin/check",
......
......@@ -72,6 +72,14 @@
<el-input v-model='form.englishOfficeAddr' autocomplete='off' placeholder="请输入英文办公地址"></el-input>
</el-form-item>
<el-form-item label='办公地址邮政编码:'
prop='officeAddrCode'
:rules="[{
required: true,
message: '不能为空',
}]">
<el-input v-model='form.officeAddrCode' autocomplete='off' placeholder="请输入办公地址邮政编码"></el-input>
</el-form-item>
<p class="content-from-title">行政区域信息填报</p>
......@@ -132,7 +140,11 @@
<el-option label="" value="1" ></el-option>
</el-select>
</el-form-item>
<el-form-item label='组织机构代码:'
prop='organizationCode'
>
<el-input v-model='form.organizationCode' autocomplete='off' placeholder="请输入组织机构代码"></el-input>
</el-form-item>
<p class="content-from-title">法定人信息填报</p>
<el-form-item label='法定代表人:'
......@@ -148,7 +160,19 @@
>
<el-input v-model='form.legalRepresentativeTel' autocomplete='off' placeholder="请输入法定代表人电话"></el-input>
</el-form-item>
<el-form-item label='法定代表人手机:'
prop='legalRepresentativePhone'
:rules="[{
required: true,
message: '不能为空',
}]">
<el-input v-model='form.legalRepresentativePhone' autocomplete='off' placeholder="请输入法定代表人手机"></el-input>
</el-form-item>
<el-form-item label='企业网址:'
prop='website'
>
<el-input v-model='form.website' autocomplete='off' placeholder="请输入企业网址:"></el-input>
</el-form-item>
<el-form-item label='上传已年检企业营业执照扫描件'
prop='uploadImg'
class="moreLong"
......@@ -252,14 +276,18 @@ export default {
registerAddrCode:'',
officeAddr:'',
englishOfficeAddr:'',
officeAddrCode:'',
creditCode:'',
registeredCapital:'',
currency:'',
enterpriseCategory:'',
economicTypeCode:'',
nationalEconomyCode:'',
organizationCode:'',
legalRepresentative:'',
legalRepresentativeTel:'',
legalRepresentativePhone:'',
website:'',
name:'',
tel:'',
mobile:'',
......
......@@ -134,6 +134,13 @@ export default {
if (this.userType === UN_VERIFY) {
this.$store.commit("system/SET_SUB_NAV", this.routerList);
} else if (this.userType === SYSTEM_MEMBER) {
this.routerList[0].link='/MyManage/SystemMember/index',
this.routerList[2].children.push({
id: uuid("gs_nav"),
name: "企业信息",
index: 3,
link: '/MyManage/SystemMember/companyInfo'
})
this.$store.commit("system/SET_SUB_NAV", this.routerList);
} else if (this.userType === ADMIN) {
this.$store.commit("system/SET_SUB_NAV", this.adminRouterList);
......
......@@ -114,7 +114,7 @@ export default {
if (valid) {
if (this.userForm.validateCode === 'kjjj') {
if (this.userForm.userName === 'test' && this.userForm.password === 'test') {
this.$router.push({path: '/home'})
this.$router.push({path: '/MyManage'})
} else {
this.userLoginError = '用户名或密码不正确!'
}
......@@ -130,7 +130,7 @@ export default {
},
loginByMobile() {
},
sendValidateCode() {
if (this.mobileForm.mobile === '') {
......
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