Blame view

pages/extUI/grid/grid.nvue 7.38 KB
4b045f7c   刘淇   江阴初始化项目
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
  <template>
  	<view class="warp">
  		<uni-card is-full :is-shadow="false">
  			<text class="uni-h6">宫格组件主要使用场景如:商品推荐列表、热门内容等</text>
  		</uni-card>
  		<uni-section title="基础样式" type="line" padding>
  			<uni-grid :column="4" :highlight="true" @change="change">
  				<uni-grid-item v-for="(item, index) in 4" :index="index" :key="index">
  					<view class="grid-item-box" style="background-color: #fff;">
  						<uni-icons type="image" :size="30" color="#777" />
  						<text class="text">文本信息</text>
  					</view>
  				</uni-grid-item>
  			</uni-grid>
  		</uni-section>
  		<uni-section title="自定义列数" type="line" padding>
  			<uni-grid :column="4" :highlight="true" @change="change">
  				<uni-grid-item v-for="(item, index) in 8" :index="index" :key="index">
  					<view class="grid-item-box" style="background-color: #fff;">
  						<uni-icons type="image" :size="30" color="#777" />
  						<text class="text">文本信息</text>
  					</view>
  				</uni-grid-item>
  			</uni-grid>
  		</uni-section>
  
  		<uni-section title="滑动视图" type="line" padding>
  			<!-- 因为swiper特性的关系,请指定swiper的高度 ,swiper的高度并不会被内容撑开-->
  			<swiper class="swiper" :indicator-dots="true">
  				<swiper-item>
  					<uni-grid :column="3" :highlight="true" @change="change">
  						<uni-grid-item v-for="(item, index) in list" :index="index" :key="index">
  							<view class="grid-item-box">
  								<image :src="item.url" class="image" mode="aspectFill" />
  								<text class="text">{{ item.text }}</text>
  							</view>
  						</uni-grid-item>
  					</uni-grid>
  				</swiper-item>
  				<swiper-item>
  					<uni-grid :column="3" :highlight="true" @change="change">
  						<uni-grid-item v-for="(item, index) in list" :index="index" :key="index">
  							<view class="grid-item-box">
  								<image :src="item.url" class="image" mode="aspectFill" />
  								<text class="text">{{ item.text }}</text>
  							</view>
  						</uni-grid-item>
  					</uni-grid>
  				</swiper-item>
  				<swiper-item>
  					<uni-grid :column="3" :highlight="true" @change="change">
  						<uni-grid-item v-for="(item, index) in list" :index="index" :key="index">
  							<view class="grid-item-box">
  								<image :src="item.url" class="image" mode="aspectFill" />
  								<text class="text">{{ item.text }}</text>
  							</view>
  						</uni-grid-item>
  					</uni-grid>
  				</swiper-item>
  			</swiper>
  		</uni-section>
  		<uni-section title="动态加载" type="line" padding>
  			<view class="grid-dynamic-box">
  				<uni-grid :column="3" :highlight="true" @change="change">
  					<uni-grid-item v-for="(item, index) in dynamicList" :index="index" :key="index">
  						<view class="grid-item-box" :style="{'backgroundColor':item.color}">
  							<image :src="item.url" class="image" mode="aspectFill" />
  							<text class="text">{{ item.text }}</text>
  						</view>
  					</uni-grid-item>
  				</uni-grid>
  			</view>
  			<button type="primary" @click="add">点击添加一个宫格</button>
  			<button v-if="dynamicList.length !== 0" type="primary" style="margin-top: 15px;"
  				@click="del">点击删除一个宫格</button>
  		</uni-section>
  		<uni-section title="无边框带角标(3列)" type="line" padding>
  			<uni-grid :column="3" :show-border="false" :square="false" @change="change">
  				<uni-grid-item v-for="(item ,index) in list" :index="index" :key="index">
  					<view class="grid-item-box">
  						<image class="image" :src="item.url" mode="aspectFill" />
  						<text class="text">{{item.text}}</text>
  						<view v-if="item.badge" class="grid-dot">
  							<uni-badge :text="item.badge" :type="item.type" />
  						</view>
  					</view>
  				</uni-grid-item>
  			</uni-grid>
  		</uni-section>
  		<uni-section title="矩形宫格(3列)" type="line" padding>
  			<uni-grid :column="3" :square="false" :highlight="false" @change="change">
  				<uni-grid-item v-for="(item, index) in list" :index="index" :key="index">
  					<view class="grid-item-box">
  						<image :src="item.url" class="image" mode="aspectFill" />
  						<text class="text">{{ item.text }}</text>
  					</view>
  				</uni-grid-item>
  			</uni-grid>
  		</uni-section>
  		<uni-section title="边框颜色(4列 无文字)" type="line" padding>
  			<uni-grid :column="4" border-color="#03a9f4" @change="change">
  				<uni-grid-item :index="0">
  					<view class="grid-item-box">
  						<image class="image" src="/static/c1.png" mode="aspectFill" />
  					</view>
  				</uni-grid-item>
  				<uni-grid-item :index="1">
  					<view class="grid-item-box">
  						<image class="image" src="/static/c2.png" mode="aspectFill" />
  					</view>
  				</uni-grid-item>
  				<uni-grid-item :index="2">
  					<view class="grid-item-box">
  						<image class="image" src="/static/c3.png" mode="aspectFill" />
  					</view>
  				</uni-grid-item>
  				<uni-grid-item :index="3">
  					<view class="grid-item-box">
  						<image class="image" src="/static/c4.png" mode="aspectFill" />
  					</view>
  				</uni-grid-item>
  			</uni-grid>
  		</uni-section>
  	</view>
  </template>
  
  <script>
  	export default {
  		components: {},
  		data() {
  			return {
  				dynamicList: [],
  				list: [{
  						url: '/static/c1.png',
  						text: 'Grid 1',
  						badge: '0',
  						type: "primary"
  					},
  					{
  						url: '/static/c2.png',
  						text: 'Grid 2',
  						badge: '1',
  						type: "success"
  					},
  					{
  						url: '/static/c3.png',
  						text: 'Grid 3',
  						badge: '99',
  						type: "warning"
  					},
  					{
  						url: '/static/c4.png',
  						text: 'Grid 4',
  						badge: '2',
  						type: "error"
  					},
  					{
  						url: '/static/c5.png',
  						text: 'Grid 5'
  					},
  					{
  						url: '/static/c6.png',
  						text: 'Grid 6'
  					},
  					{
  						url: '/static/c7.png',
  						text: 'Grid 7'
  					},
  					{
  						url: '/static/c8.png',
  						text: 'Grid 8'
  					},
  					{
  						url: '/static/c9.png',
  						text: 'Grid 9'
  					}
  				]
  			}
  		},
  		methods: {
  			change(e) {
  				let {
  					index
  				} = e.detail
  				this.list[index].badge && this.list[index].badge++
  
  				uni.showToast({
  					title: `点击第${index+1}个宫格`,
  					icon: 'none'
  				})
  			},
  			add() {
  				if (this.dynamicList.length < 9) {
  					this.dynamicList.push({
  						url: `/static/c${this.dynamicList.length+1}.png`,
  						text: `Grid ${this.dynamicList.length+1}`,
  						color: this.dynamicList.length % 2 === 0 ? '#f5f5f5' : "#fff"
  					})
  				} else {
  					uni.showToast({
  						title: '最多添加9个',
  						icon: 'none'
  					});
  				}
  			},
  			del() {
  				this.dynamicList.splice(this.dynamicList.length - 1, 1)
  			}
  		}
  	}
  </script>
  
  <style lang="scss">
  	.image {
  		width: 25px;
  		height: 25px;
  	}
  
  	.text {
  		font-size: 14px;
  		margin-top: 5px;
  	}
  
  	.example-body {
  		/* #ifndef APP-NVUE */
  		// display: block;
  		/* #endif */
  	}
  
  	.grid-dynamic-box {
  		margin-bottom: 15px;
  	}
  
  	.grid-item-box {
  		flex: 1;
  		// position: relative;
  		/* #ifndef APP-NVUE */
  		display: flex;
  		/* #endif */
  		flex-direction: column;
  		align-items: center;
  		justify-content: center;
  		padding: 15px 0;
  	}
  
  	.grid-item-box-row {
  		flex: 1;
  		// position: relative;
  		/* #ifndef APP-NVUE */
  		display: flex;
  		/* #endif */
  		flex-direction: row;
  		align-items: center;
  		justify-content: center;
  		padding: 15px 0;
  	}
  
  	.grid-dot {
  		position: absolute;
  		top: 5px;
  		right: 15px;
  	}
  
  	.swiper {
  		height: 420px;
  	}
  
  	/* #ifdef H5 */
  	@media screen and (min-width: 768px) and (max-width: 1425px) {
  		.swiper {
  			height: 630px;
  		}
  	}
  
  	@media screen and (min-width: 1425px) {
  		.swiper {
  			height: 830px;
  		}
  	}
  
  	/* #endif */
  </style>