Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
smart_gov_platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
smart_gov_platform
Commits
dee05d3d
Commit
dee05d3d
authored
1 year ago
by
王晓旭
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
易正秀报表修改
parent
2c6eb7bf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
4 deletions
+14
-4
portal-manager-ui/admin/src/views/dataAdmin/components/easyPoliticsShow/PoliticsShow.vue
...ws/dataAdmin/components/easyPoliticsShow/PoliticsShow.vue
+6
-2
portal-manager-ui/admin/src/views/dataAdmin/components/easyPoliticsShow/components/UserDetails.vue
...in/components/easyPoliticsShow/components/UserDetails.vue
+8
-2
No files found.
portal-manager-ui/admin/src/views/dataAdmin/components/easyPoliticsShow/PoliticsShow.vue
View file @
dee05d3d
...
...
@@ -36,10 +36,10 @@
}" :scroll="{ y: 590 }" :pagination="tablePagination" @change="pagTableChange" :loading="tableLoading"
:columns="tableHeaders" :dataSource="tableList">
<template
slot=
"zhenshixingming"
slot-scope=
"text, record, index"
>
<a-button
type=
"link"
@
click=
"openUserDetails(record)"
>
{{
text
}}
</a-button>
<a-button
type=
"link"
@
click=
"openUserDetails(record)"
>
{{
text
?
text
:
'
--
'
}}
</a-button>
</
template
>
<
template
slot=
"tupianzuopinshuliang"
slot-scope=
"text, record, index"
>
<a-button
type=
"link"
@
click=
"openPicWorks(record.id)"
>
{{
text
}}
</a-button>
<a-button
type=
"link"
@
click=
"openPicWorks(record.id)"
>
{{
(
text
||
text
==
0
)?
text
:
'
--
'
}}
</a-button>
</
template
>
</a-table>
<PicWorks
ref=
"PicWorks"
/>
...
...
@@ -96,11 +96,13 @@ export default {
title
:
"
联系电话
"
,
align
:
"
center
"
,
dataIndex
:
"
contactTelphone
"
,
customRender
:
(
text
)
=>
`
${
text
?
text
:
'
--
'
}
`
,
},
{
title
:
"
单位名称
"
,
align
:
"
center
"
,
dataIndex
:
"
organization
"
,
customRender
:
(
text
)
=>
`
${
text
?
text
:
'
--
'
}
`
,
},
{
title
:
"
图片作品数量
"
,
...
...
@@ -114,6 +116,7 @@ export default {
title
:
"
视频作品数量
"
,
align
:
"
center
"
,
dataIndex
:
"
customerDesignVideos
"
,
customRender
:
(
text
)
=>
`
${(
text
||
text
==
0
)?
text
:
'
--
'
}
`
,
},
{
title
:
"
会员等级
"
,
...
...
@@ -125,6 +128,7 @@ export default {
title
:
"
最近登录时间
"
,
align
:
"
center
"
,
dataIndex
:
"
lastLoginTime
"
,
customRender
:
(
text
)
=>
`
${
text
?
text
:
'
--
'
}
`
,
},
{
title
:
"
使用状态
"
,
...
...
This diff is collapsed.
Click to expand it.
portal-manager-ui/admin/src/views/dataAdmin/components/easyPoliticsShow/components/UserDetails.vue
View file @
dee05d3d
...
...
@@ -43,7 +43,7 @@
<span>
登录账号
</span><i>
{{
modalInfo
.
record
.
loginName
}}
</i>
</p>
<p
class=
"details1"
>
<span>
登录密码
</span><i>
{{
modalInfo
.
record
.
password
.
replace
(
/
\S
/g
,
"
*
"
)
}}
</i>
<span>
登录密码
</span><i>
{{
modalInfo
.
record
.
password
?
modalInfo
.
record
.
password
.
replace
(
/
\S
/g
,
"
*
"
):
''
}}
</i>
</p>
</div>
<div
class=
"box1"
>
...
...
@@ -72,7 +72,13 @@ export default {
name
:
"
PortalAdminVueUserDetails
"
,
data
()
{
return
{};
return
{
modalInfo
:{
record
:{
custName
:
''
}
}
};
},
mounted
()
{},
...
...
This diff is collapsed.
Click to expand it.
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