1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
| <template>
| <view>
| <view class="z-swiper">
| <view>
| 今日入库 100
| </view>
| <view>
| 今日出库 100
| </view>
| <view>
| 入库单品
| </view>
| <view>
| Top 1. 冻猪碎肉
| Top 2. 冻猪排
| </view>
| </view>
| <view class="home-list" v-for="(item,i) in homeList" :key="i">
| <view class="list-title flex-align-center">
| <view class="list-title-tag "></view>
| <view>{{item.name}}</view>
| </view>
| <view class="list-detl">
| <view v-for="nav in item.nav">
| <view style="margin: 10px;">
| {{nav.name}}
| </view>
| </view>
| </view>
| </view>
| </view>
| </template>
|
| <script>
| export default {
| data() {
| return {
| homeList: [
| {name: '入库',nav:[
| {name: '组托入库'},
| {name: '上架'}
| ]},
| {name: '出库'},
| {name: '其他'}]
| }
| }
| }
| </script>
|
| <style>
| .flex-justify-center {
| display: flex;
| justify-content: center;
| }
| .flex-align-center {
| display: flex;
| align-items: center;
|
| }
| .z-swiper {
| height: 90px;
| margin: 8px;
| border-radius: 8px;
| background-image: linear-gradient(110.6deg, rgb(179, 157, 219) 7%, rgb(150, 159, 222) 47.7%, rgb(24, 255, 255) 100.6%);
| color: #fff;
| }
| .home-list {
| display: flex;
| flex-direction: column;
| height: 90px;
| margin: 8px;
| border-radius: 8px;
| background-color: #f5f5f5;
| }
| .list-title {
| display: flex;
| height: 20px;
| margin: 10px 10px;
| /* background-color: #fff; */
| }
| .list-title-tag {
| width: 6px;
| height: 20px;
| margin: 5px 5px;
| border-radius: 8px;
| background-color: #00aeec;
|
| }
| .list-detl {
| display: flex;
| flex-direction: row;
| }
| </style>
|
|