Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
H
h5-base
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
new-sing
h5-base
Commits
94b8db53
Commit
94b8db53
authored
Aug 15, 2019
by
linking2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增 物流信息无数据提醒
parent
d622b710
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
2 deletions
+16
-2
logistics.vue
src/components/logistics.vue
+16
-2
No files found.
src/components/logistics.vue
View file @
94b8db53
...
@@ -4,7 +4,12 @@
...
@@ -4,7 +4,12 @@
<h1
class=
"logistics-title"
>
我的快递
</h1>
<h1
class=
"logistics-title"
>
我的快递
</h1>
<ol
class=
"logistics-list"
>
<ol
class=
"logistics-list"
>
<li
class=
"item"
v-for=
"item in list"
>
<li
class=
"no-result"
v-if=
"!list.length"
>
暂无数据
</li>
<li
class=
"item"
v-else-if=
"list.length && list[0] != 0"
v-for=
"item in list"
>
<div
class=
"item-header"
>
<div
class=
"item-header"
>
<h2>
{{
item
.
goods_title
}}
</h2>
<h2>
{{
item
.
goods_title
}}
</h2>
</div>
</div>
...
@@ -41,7 +46,7 @@
...
@@ -41,7 +46,7 @@
name
:
"order"
,
name
:
"order"
,
data
()
{
data
()
{
return
{
return
{
list
:
[],
list
:
[
0
],
}
}
},
},
filters
:
{
filters
:
{
...
@@ -85,12 +90,21 @@
...
@@ -85,12 +90,21 @@
.logistics-list {
.logistics-list {
padding: 0 15*@toVw;
padding: 0 15*@toVw;
.no-result {
height: 80vh;
line-height: 80vh;
color: #999;
font-size: 16*@toVw;
text-align: center;
}
.item {
.item {
margin-bottom: 10*@toVw;
margin-bottom: 10*@toVw;
padding: 15*@toVw;
padding: 15*@toVw;
background:rgba(255,255,255,1);
background:rgba(255,255,255,1);
box-shadow:0*@toVw 2*@toVw 6*@toVw 0*@toVw rgba(0,0,0,0.15);
box-shadow:0*@toVw 2*@toVw 6*@toVw 0*@toVw rgba(0,0,0,0.15);
border-radius:18*@toVw;
border-radius:18*@toVw;
.item-header {
.item-header {
padding-bottom: 10*@toVw;
padding-bottom: 10*@toVw;
//border-bottom: solid 1*@toVw #E2E2E2;
//border-bottom: solid 1*@toVw #E2E2E2;
...
...
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