Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gs1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
吴迪
gs1
Commits
fcbfa2ce
Commit
fcbfa2ce
authored
Oct 29, 2021
by
Lyan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
系统成员企业信息切图
parent
bf2437a0
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
47 additions
and
4 deletions
+47
-4
index.js
src/router/index.js
+8
-0
companyInfo.vue
src/views/MyManage/SystemMember/companyInfo.vue
+0
-0
calibration.vue
src/views/MyManage/UnVerify/calibration.vue
+30
-2
index.vue
src/views/MyManage/index.vue
+7
-0
login.vue
src/views/User/login.vue
+2
-2
No files found.
src/router/index.js
View file @
fcbfa2ce
...
...
@@ -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"
,
...
...
src/views/MyManage/SystemMember/companyInfo.vue
0 → 100644
View file @
fcbfa2ce
This diff is collapsed.
Click to expand it.
src/views/MyManage/UnVerify/calibration.vue
View file @
fcbfa2ce
...
...
@@ -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
:
''
,
...
...
src/views/MyManage/index.vue
View file @
fcbfa2ce
...
...
@@ -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
);
...
...
src/views/User/login.vue
View file @
fcbfa2ce
...
...
@@ -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
:
'/
hom
e'
})
this
.
$router
.
push
({
path
:
'/
MyManag
e'
})
}
else
{
this
.
userLoginError
=
'用户名或密码不正确!'
}
...
...
@@ -130,7 +130,7 @@ export default {
},
loginByMobile
()
{
},
sendValidateCode
()
{
if
(
this
.
mobileForm
.
mobile
===
''
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment