Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-4
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
office
haoban-4
Commits
6c47ba6d
Commit
6c47ba6d
authored
Sep 11, 2020
by
caoyanzhi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: 样式调整
parent
fe9c181c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
9 deletions
+4
-9
app-list.vue
src/views/app-controls/app-list.vue
+1
-6
audit-group-list.vue
src/views/review-center/audit-group-list.vue
+2
-2
audit-item-list.vue
src/views/review-center/audit-item-list.vue
+1
-1
No files found.
src/views/app-controls/app-list.vue
View file @
6c47ba6d
...
...
@@ -14,7 +14,7 @@
</div>
<div
class=
"app-info"
>
<p
class=
"app-name"
>
{{
el
.
applicationName
}}
</p>
<
p
class=
"to-buy"
@
click=
"toBuy"
>
去订购
<i
class=
"iconfont iconjiantouxiangyou"
></i></p
>
<
el-button
class=
"to-buy"
type=
"text"
@
click=
"toBuy"
>
去订购
<i
class=
"iconfont iconjiantouxiangyou"
></i></el-button
>
</div>
<span
class=
"out-time-tip"
>
已过期
</span>
</div>
...
...
@@ -156,12 +156,7 @@ export default {
white-space
:
nowrap
;
}
.to-buy
{
display
:
flex
;
justify-content
:
flex-start
;
align-items
:
center
;
font-size
:
12px
;
font-weight
:
400
;
color
:
@
blue
;
line-height
:
17px
;
}
}
...
...
src/views/review-center/audit-group-list.vue
View file @
6c47ba6d
...
...
@@ -4,7 +4,7 @@
<el-button
type=
"primary"
@
click=
"toCreateGroup()"
>
新建审核组
</el-button>
</div>
<el-table
:data=
"groupList"
>
<el-table-column
label=
"审核组"
prop=
"auditGroupName"
:formatter=
"(row, col, val) => val || '--'"
></el-table-column>
<el-table-column
label=
"审核组"
prop=
"auditGroupName"
:formatter=
"(row, col, val) => val || '--'"
show-overflow-tooltip
></el-table-column>
<el-table-column
label=
"管理员"
show-overflow-tooltip
>
<template
slot-scope=
"
{ row }">
{{
row
.
auditPerson
|
formatAuditer
}}
</
template
>
</el-table-column>
...
...
@@ -61,7 +61,7 @@ export default {
formatAuditer
(
auditerlist
)
{
if
(
!
Array
.
isArray
(
auditerlist
))
return
'--'
;
const
result
=
auditerlist
.
map
(
el
=>
el
.
staffName
||
'--'
);
return
result
.
join
(
'、'
)
;
return
result
.
length
>
0
?
result
.
join
(
'、'
)
:
'--'
;
}
}
};
...
...
src/views/review-center/audit-item-list.vue
View file @
6c47ba6d
...
...
@@ -4,7 +4,7 @@
<el-button
type=
"primary"
@
click=
"toCreateItem()"
>
新建事项
</el-button>
</div>
<el-table
:data=
"auditItemList"
>
<el-table-column
label=
"审核组"
prop=
"auditGroupName"
:formatter=
"(row, col, val) => val || '--'"
></el-table-column>
<el-table-column
label=
"审核组"
prop=
"auditGroupName"
:formatter=
"(row, col, val) => val || '--'"
show-overflow-tooltip
></el-table-column>
<el-table-column
label=
"审核事项"
prop=
"auditTypes"
show-overflow-tooltip
>
<template
slot-scope=
"
{ row }">
{{
row
.
auditTypes
|
formatAuditTypes
(
auditTypes
)
}}
</
template
>
</el-table-column>
...
...
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