Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
memberTag-web
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
memberTag
memberTag-web
Commits
893d6de3
Commit
893d6de3
authored
Dec 01, 2020
by
黑潮
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: 优化ui
parent
ee59066c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
member-group-log.vue
src/view/memberGroup/member-group-log.vue
+10
-3
No files found.
src/view/memberGroup/member-group-log.vue
View file @
893d6de3
...
...
@@ -18,9 +18,9 @@
</div>
<div
class=
"common-wrap__table m-t-20"
>
<el-table
v-loading=
"loading"
:data=
"tableData"
>
<el-table-column
label=
"日志ID"
prop=
"logId"
></el-table-column>
<el-table-column
label=
"分组名称"
prop=
"operateObject"
show-overflow-tooltip
></el-table-column>
<el-table-column
label=
"操作内容"
prop=
"content"
show-overflow-tooltip
></el-table-column>
<el-table-column
label=
"日志ID"
:formatter=
"formatter"
prop=
"logId"
></el-table-column>
<el-table-column
label=
"分组名称"
prop=
"operateObject"
:formatter=
"formatter"
show-overflow-tooltip
></el-table-column>
<el-table-column
label=
"操作内容"
prop=
"content"
:formatter=
"formatter"
show-overflow-tooltip
></el-table-column>
<el-table-column
:width=
"200"
label=
"操作时间"
>
<template
slot-scope=
"scope"
>
<p
class=
"h-18"
>
{{
scope
.
row
.
createTime
|
formatTimeYMD
}}
</p>
...
...
@@ -153,6 +153,13 @@ export default {
getPhone
(
item
)
{
if
(
!
item
)
return
'--'
return
item
.
split
(
'-'
)[
1
]
||
'--'
},
formatter
(
row
,
col
,
value
)
{
if
(
!
value
)
{
return
'--'
}
else
{
return
value
}
}
},
mounted
()
{
...
...
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