Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
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
罗超
confucius
Commits
4a311d9e
Commit
4a311d9e
authored
Dec 23, 2020
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
dd9b3b0b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
103 additions
and
11 deletions
+103
-11
backflow-form.vue
src/components/sale/backflow-form.vue
+103
-11
No files found.
src/components/sale/backflow-form.vue
View file @
4a311d9e
<
style
>
.backflowMain
{
width
:
90%
;
margin
:
auto
;
height
:
auto
;
padding-left
:
30px
;
border-left
:
1px
solid
#d1d1d1
;
padding-bottom
:
15px
;
}
.backflowMain
.backflow_Top
{
position
:
relative
;
width
:
100%
;
height
:
36px
;
line-height
:
36px
;
}
.backflowMain
.back_Circle
{
width
:
36px
;
height
:
36px
;
background-color
:
#2961FE
;
border-radius
:
50%
;
position
:
absolute
;
text-align
:
center
;
line-height
:
36px
;
left
:
-50px
;
top
:
0
;
color
:
#fff
;
font-size
:
12px
;
}
.backflowMain
.back_Name
{
color
:
#2D2D2D
;
font-weight
:
bold
;
font-size
:
15px
;
}
.backflowMain
.back_OrderStatus
{
padding
:
1px
5px
;
background
:
#FEB528
;
color
:
#fff
;
font-size
:
12px
;
margin-left
:
10px
;
border-radius
:
3px
;
}
.backflowMain
.back_Bottom
{
height
:
auto
;
margin
:
10px
0
0
10px
;
padding-bottom
:
15px
;
}
.backflowMain
.back_subList
{
display
:
flex
;
align-items
:
center
;
justify-content
:
space-between
;
}
.backflowMain
.back_Time
{
color
:
#2D2D2D
;
font-size
:
12px
;
}
.backflowMain
.back_Names
{
color
:
#2D2D2D
;
font-size
:
14px
;
}
.backflowMain
.back_remark
{
position
:
relative
;
background-color
:
#EEEEEF
;
min-height
:
40px
;
margin-top
:
13px
;
padding
:
10px
;
border-radius
:
5px
;
}
.back_Bottom
:last-child
,
.backflowMain
:last-child
{
padding-bottom
:
0
;
}
.backflowMain
.triangle_border_up
{
width
:
0
;
height
:
0
;
border-width
:
0
7px
10px
;
border-style
:
solid
;
border-color
:
transparent
transparent
#EEEEEF
;
/*透明 透明 灰*/
margin
:
40px
auto
;
position
:
absolute
;
top
:
-48px
;
left
:
15px
;
}
</
style
>
<
template
>
<div>
<div
v-for=
"(item,index) in DataList"
>
<span>
<br/>
{{
item
.
AduitStatus
}}
{{
item
.
NodeName
}}
<span
v-for=
"(subItem,subIndex) in item.SubList"
>
审核人
{{
subItem
.
AduitName
}}
<br/>
备注
{{
subItem
.
Description
}}
<br/>
时间
{{
subItem
.
CreateTime
}}
<br/>
</span>
</span>
</div>
<div
style=
"padding-bottom:120px;"
>
<div
class=
"backflowMain"
v-for=
"(item,index) in DataList"
:key=
"index"
>
<div
class=
"backflow_Top"
>
<div
class=
"back_Circle"
>
{{
item
.
AduitStatus
==
2
?
'通过'
:
item
.
AduitStatus
}}
</div>
<span
class=
"back_Name"
>
{{
item
.
NodeName
}}
</span>
<span
class=
"back_OrderStatus"
v-if=
"item.AuditWayName"
>
{{
item
.
AuditWayName
}}
</span>
</div>
<div
class=
"back_Bottom"
v-for=
"(subItem,subIndex) in item.SubList"
:key=
"subIndex"
>
<div
class=
"back_subList"
>
<div>
<span
class=
"back_Names"
>
{{
subItem
.
AduitName
}}
</span>
<span
class=
"back_OrderStatus"
style=
"background:#51BDA5"
v-if=
"item.AuditWayName"
>
{{
subItem
.
AuditWayName
}}
</span>
</div>
<div
class=
"back_Time"
>
{{
subItem
.
CreateTime
}}
</div>
</div>
<div
class=
"back_remark"
>
<div
class=
"triangle_border_up"
></div>
{{
subItem
.
Description
}}
</div>
</div>
</div>
</div>
</
template
>
...
...
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