Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
self-support
Project
Project
Details
Activity
Releases
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
李俊赕
self-support
Commits
ff25dd71
Commit
ff25dd71
authored
Apr 30, 2021
by
Morson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面样式调整
parent
8eba948b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
4 deletions
+14
-4
complete-check.vue
src/components/complete-check/complete-check.vue
+14
-4
No files found.
src/components/complete-check/complete-check.vue
View file @
ff25dd71
...
...
@@ -15,13 +15,13 @@
</view>
<view
class=
"check-list"
>
<view
class=
"u-flex u-row-between list-title"
>
<view>
验证项
</view>
<view
class=
"left-txt"
>
验证项
</view>
<view>
已提交/需提交
</view>
<view>
结果
</view>
<view
class=
"right-txt"
>
结果
</view>
</view>
<view
class=
"u-flex u-row-between list-item"
v-for=
"(item, index) in listData"
:key=
"index"
>
<view
class=
"item-txt"
>
<view
class=
"item-txt
left-txt"
style=
"width: 160rpx;text-align: left;
"
>
<u-icon
:name=
"item.pass ? passIcon : noPassIcon"
:label=
"item.label"
...
...
@@ -31,7 +31,9 @@
size=
"32"
></u-icon>
</view>
<view
class=
"item-txt"
>
{{
item
.
submitted
}}
/
{{
item
.
required
}}
</view>
<view
:class=
"['item-txt', item.pass ? 'pass-color' : 'no-pass-color']"
>
<view
:class=
"['item-txt', 'right-txt', item.pass ? 'pass-color' : 'no-pass-color']"
style=
"width: 160rpx;text-align: right;"
>
{{
item
.
pass
?
"通过"
:
"未通过"
}}
</view>
</view>
...
...
@@ -191,6 +193,14 @@
color
:
#333333
;
line-height
:
32rpx
;
}
.left-txt
{
width
:
160rpx
;
text-align
:
left
;
}
.right-txt
{
width
:
160rpx
;
text-align
:
right
;
}
.pass-color
{
color
:
#2272FF
!
important
;
}
...
...
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