grid.vue 4.8 KB
Newer Older
芊里 已提交
1 2
<template>
	<view class="warp">
3 4 5
		<!-- #ifdef APP-PLUS -->
		<status-bar />
		<!-- #endif -->
6
		<!-- banner -->
DCloud_JSON's avatar
DCloud_JSON 已提交
7
		<unicloud-db ref="bannerdb" v-slot:default="{data, loading, error, options}" collection="opendb-banner"
8 9 10
			field="_id,bannerfile,open_url,title" @load="load">
			<uni-swiper-dot class="uni-swiper-dot-box" @clickItem="clickItem" :info="data || bannerFormate(data, loading)" 
				:current="current" field="content">
芊里 已提交
11
				<swiper class="swiper-box" @change="changeSwiper" :current="swiperDotIndex">
12
					<swiper-item v-for="(item, index) in (data || bannerFormate(data, loading))" :key="item._id">
芊里 已提交
13
						<view :draggable="false" class="swiper-item" @click="clickBannerItem(item)">
14
							<image class="swiper-image" :src="item.bannerfile.url" mode="aspectFill" :draggable="false" />
芊里 已提交
15 16 17 18
						</view>
					</swiper-item>
				</swiper>
			</uni-swiper-dot>
L
123  
linju 已提交
19
		</unicloud-db>
20
	<!-- 宫格 -->
21
		<uni-section title="宫格组件" style="margin: 0;" type="line"></uni-section>
芊里 已提交
22
		<view class="example-body">
23 24 25
			<uni-grid :column="3" :highlight="true" @change="change">
				<template v-for="(item,i) in gridList">
					<uni-grid-item :index="i" :key="i"
26
						v-if="i<3 || i>2&&i<6&&hasLogin || i>5&&uniIDHasRole('admin')"
27 28 29 30 31 32 33
					>
						<view class="grid-item-box" style="background-color: #fff;">
							<image :src="'/static/grid/c'+(i+1)+'.png'" class="image" mode="aspectFill" />
							<text class="text">{{item}}</text>
						</view>
					</uni-grid-item>
				</template>
芊里 已提交
34 35 36 37 38
			</uni-grid>
		</view>
	</view>
</template>

39 40 41
<script>
	import {
		mapGetters,
42
	} from 'vuex';
芊里 已提交
43 44
	import statusBar from "@/uni_modules/uni-nav-bar/components/uni-nav-bar/uni-status-bar";
	export default {
45 46 47
		components: {
			statusBar
		},
芊里 已提交
48 49
		data() {
			return {
50
				gridList: ['所有人可见','所有人可见','所有人可见', '游客不可见', '游客不可见', '游客不可见','管理员可见','管理员可见','管理员可见'],
芊里 已提交
51
				current: 0,
52
				swiperDotIndex: 0
芊里 已提交
53 54
			}
		},
55 56 57 58 59 60
		computed: {
			...mapGetters({
				hasLogin: 'user/hasLogin'
			})
		},
		methods: {
芊里 已提交
61 62
			change(e) {
				uni.showToast({
63
					title: `点击第${e.detail.index}个宫格`,
芊里 已提交
64 65 66 67
					icon: 'none'
				})
			},
			/**
芊里 已提交
68
			 * banner加载后触发的回调
芊里 已提交
69 70
			 */
			load(data) {
71

芊里 已提交
72 73 74 75 76 77 78 79 80 81 82 83
			},
			changeSwiper(e) {
				this.current = e.detail.current
			},
			clickItem(e) {
				this.swiperDotIndex = e
			},
			/**
			 * 点击banner的处理
			 */
			clickBannerItem(item) {
				// 有外部链接-跳转url
84 85 86 87 88 89
				if (item.open_url) {
					uni.navigateTo({
						url: '/pages/common/webview/webview?url=' + item.open_url + '&title=' + item.title,
						success: res => {},
						fail: () => {},
						complete: () => {}
芊里 已提交
90
					});
芊里 已提交
91 92 93 94 95 96
				}
				// 其余业务处理
			},
			/**
			 * banner数据过滤
			 */
97
			bannerFormate(bannerList, loading) {
芊里 已提交
98
				if (loading) return [];
芊里 已提交
99 100 101 102
				if (bannerList.length > 0) return bannerList;
				// 无数据添加默认值
				let list = [{
					"_id": -1,
芊里 已提交
103
					"bannerfile": "/static/grid/empty.png",
芊里 已提交
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
					"open_url": "https://www.dcloud.io/",
					"title": "内容 A",
				}]
				return list;
			}
		}
	}
</script>

<style>
	/* #ifndef APP-NVUE */
	page {
		display: flex;
		flex-direction: column;
		box-sizing: border-box;
grid  
芊里 已提交
119
		background-color: #fff;
芊里 已提交
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
		min-height: 100%;
		height: auto;
	}
	view {
		font-size: 14px;
		line-height: inherit;
	}
	.example-body {
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		padding: 0;
		font-size: 14px;
		background-color: #ffffff;
	}
138 139 140 141 142 143
	/* #endif */

	/* #ifdef APP-NVUE */
	.warp {
		background-color: #fff;
	}
芊里 已提交
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
	/* #endif */

	.example-body {
		flex-direction: column;
		padding: 15px;
		background-color: #ffffff;
	}

	.image {
		width: 50rpx;
		height: 50rpx;
	}

	.text {
		font-size: 26rpx;
		margin-top: 10rpx;
	}

	.example-body {
		/* #ifndef APP-NVUE */
		display: block;
		/* #endif */
	}

	.grid-item-box {
		flex: 1;
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 15px 0;
	}

	.swiper-image {
		width: 750rpx;
		height: 400rpx;
	}

	.swiper-box {
		height: 400rpx;
	}

	.search-icons {
		padding: 16rpx;
	}

	.search-container-bar {
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		flex-direction: row;
		justify-content: center;
		align-items: center;
		position: fixed;
		left: 0;
		right: 0;
		z-index: 10;
		background-color: #fff;
	}

	/* #ifndef APP-NVUE */
	/deep/
	/* #endif */
	.uni-searchbar__box {
		border-width: 0;
	}

	/* #ifndef APP-NVUE */
	/deep/
	/* #endif */
	.uni-input-placeholder {
		font-size: 28rpx;
	}
219
</style>