Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-app-operator-master
Commits
f4bdbfbf
Commit
f4bdbfbf
authored
Jul 03, 2022
by
dcy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
注册会员,修改或审核后从新调取列表接口
parent
ed229cc8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
index.vue
src/views/member/user/index.vue
+6
-2
No files found.
src/views/member/user/index.vue
View file @
f4bdbfbf
...
@@ -163,7 +163,7 @@
...
@@ -163,7 +163,7 @@
<el-button
type=
"primary"
@
click=
"idCardAuditFn(3)"
>
审核不通过
</el-button>
<el-button
type=
"primary"
@
click=
"idCardAuditFn(3)"
>
审核不通过
</el-button>
<el-button
@
click=
"attestationShow = false"
>
取 消
</el-button>
<el-button
@
click=
"attestationShow = false"
>
取 消
</el-button>
</div>
</div>
<div
v-if=
"IdDetails.status === 2"
style=
"text-align: center;margin-top: 20px;"
>
<div
v-if=
"IdDetails.status === 2
|| IdDetails.status === 3
"
style=
"text-align: center;margin-top: 20px;"
>
<el-button
type=
"primary"
@
click=
"setMemberUserUpdateIdCard"
>
修 改
</el-button>
<el-button
type=
"primary"
@
click=
"setMemberUserUpdateIdCard"
>
修 改
</el-button>
<el-button
@
click=
"attestationShow = false"
>
取 消
</el-button>
<el-button
@
click=
"attestationShow = false"
>
取 消
</el-button>
</div>
</div>
...
@@ -194,7 +194,7 @@
...
@@ -194,7 +194,7 @@
<el-form-item
label=
"审核状态"
>
{{getDictDatas(DICT_TYPE.AUDIT_STATUS)[enterpriseFrom.status].label}}
</el-form-item>
<el-form-item
label=
"审核状态"
>
{{getDictDatas(DICT_TYPE.AUDIT_STATUS)[enterpriseFrom.status].label}}
</el-form-item>
<el-form-item
label=
"审核时间"
>
{{parseTime(enterpriseFrom.auditTime)}}
</el-form-item>
<el-form-item
label=
"审核时间"
>
{{parseTime(enterpriseFrom.auditTime)}}
</el-form-item>
</el-form>
</el-form>
<div
v-if=
"enterpriseFrom.status === 0"
style=
"text-align: center;margin-top: 20px;"
>
<div
v-if=
"enterpriseFrom.status === 0
|| enterpriseFrom.status === 3
"
style=
"text-align: center;margin-top: 20px;"
>
<el-button
type=
"primary"
@
click=
"certificateVerificationFn(2)"
>
审核通过
</el-button>
<el-button
type=
"primary"
@
click=
"certificateVerificationFn(2)"
>
审核通过
</el-button>
<el-button
type=
"primary"
@
click=
"certificateVerificationFn(3)"
>
审核不通过
</el-button>
<el-button
type=
"primary"
@
click=
"certificateVerificationFn(3)"
>
审核不通过
</el-button>
<el-button
@
click=
"attestationShow = false"
>
取 消
</el-button>
<el-button
@
click=
"attestationShow = false"
>
取 消
</el-button>
...
@@ -472,6 +472,7 @@ export default {
...
@@ -472,6 +472,7 @@ export default {
}
}
memberUserAuditIdCard
(
p
).
then
(
r
=>
{
memberUserAuditIdCard
(
p
).
then
(
r
=>
{
if
(
r
.
code
===
0
){
if
(
r
.
code
===
0
){
this
.
getList
()
this
.
getIdentityDetails
()
this
.
getIdentityDetails
()
}
}
})
})
...
@@ -488,6 +489,7 @@ export default {
...
@@ -488,6 +489,7 @@ export default {
}
}
memberUserAuditEnterprise
(
p
).
then
(
r
=>
{
memberUserAuditEnterprise
(
p
).
then
(
r
=>
{
if
(
r
.
code
===
0
){
if
(
r
.
code
===
0
){
this
.
getList
()
this
.
getEnterpriseFn
();
this
.
getEnterpriseFn
();
}
}
})
})
...
@@ -508,6 +510,7 @@ export default {
...
@@ -508,6 +510,7 @@ export default {
if
(
this
.
IdDetails
.
status
===
3
){
if
(
this
.
IdDetails
.
status
===
3
){
this
.
getIdentityDetails
()
this
.
getIdentityDetails
()
}
}
this
.
getList
()
this
.
$message
.
success
(
'
修改成功
'
);
this
.
$message
.
success
(
'
修改成功
'
);
}
}
})
})
...
@@ -530,6 +533,7 @@ export default {
...
@@ -530,6 +533,7 @@ export default {
if
(
this
.
enterpriseFrom
.
status
===
3
){
if
(
this
.
enterpriseFrom
.
status
===
3
){
this
.
getEnterpriseFn
();
this
.
getEnterpriseFn
();
}
}
this
.
getList
()
this
.
$message
.
success
(
'
修改成功
'
);
this
.
$message
.
success
(
'
修改成功
'
);
}
}
})
})
...
...
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