list.nvue 5.1 KB
Newer Older
DCloud_JSON's avatar
DCloud_JSON 已提交
1
<template>
2
	<view class="pages">
3 4 5
		<!-- #ifndef H5 -->
		<statusBar></statusBar>
		<!-- #endif -->
6
		<!-- 搜索功能 -->
7 8
		<uni-search-bar @click="searchClick" class="uni-search-box" v-model="keyword" ref="searchBar" radius="100"
			cancelButton="none" disabled />
9 10
		<unicloud-db ref='udb' v-slot:default="{data,pagination,hasMore, loading, error, options}" @error="onqueryerror"
			:where="where" collection="opendb-news-articles,uni-id-users" :page-size="10"
11
			field="avatar,title,last_modify_date,user_id.username">
DCloud_JSON's avatar
重构  
DCloud_JSON 已提交
12
			<!-- 基于 uni-list 的页面布局 -->
13 14
			<uni-list class="uni-list" :border="false" :bounce="true" :alwaysScrollableVertical="true"
				:style="{height:listHight}">
15
				<uni-list-item :to="'/pages/list/detail?id='+item._id+'&title='+item.title" v-for="(item,index) in data"
16
					:key="index">
17 18 19 20 21 22 23 24 25
					<!-- 通过header插槽定义列表左侧图片 -->
					<template v-slot:header>
						<image class="avatar" :src="item.avatar" mode="aspectFill"></image>
					</template>
					<!-- 通过body插槽定义布局 -->
					<view slot="body" class="main">
						<text class="title">{{ item.title }}</text>
						<view class="info">
							<text class="author">{{item.user_id[0].username}}</text>
26 27
							<uni-dateformat class="last_modify_date" :date="item.last_modify_date" format="yyyy-MM-dd"
								:threshold="[60000, 2592000000]" />
28 29 30
						</view>
					</view>
				</uni-list-item>
31 32 33 34 35
				<uni-list-item>
					<template slot="body">
						<uni-load-state @networkResume="refresh" :state="{data,pagination,hasMore, loading, error}">
						</uni-load-state>
					</template>
36
				</uni-list-item>
37
			</uni-list>
DCloud_JSON's avatar
重构  
DCloud_JSON 已提交
38
		</unicloud-db>
DCloud_JSON's avatar
DCloud_JSON 已提交
39 40 41 42
	</view>
</template>

<script>
43
	var cdbRef, currentWebview;
44 45 46 47 48
	import statusBar from "@/uni_modules/uni-nav-bar/components/uni-nav-bar/uni-status-bar";
	
	import Gps from '@/uni_modules/json-gps/js_sdk/gps.js';
	const gps = new Gps()
	
49 50 51 52
	export default {
		components: {
			statusBar
		},
DCloud_JSON's avatar
DCloud_JSON 已提交
53 54
		data() {
			return {
DCloud_JSON's avatar
重构  
DCloud_JSON 已提交
55 56 57
				where: "",
				keyword: "",
				refreshState: 0,
DCloud_JSON's avatar
DCloud_JSON 已提交
58
				listHight: 0
DCloud_JSON's avatar
重构  
DCloud_JSON 已提交
59
			}
DCloud_JSON's avatar
DCloud_JSON 已提交
60
		},
61 62 63 64 65 66 67 68 69
		watch: {
			keyword(keyword, oldValue) {
				if (keyword) {
					this.where = `/${keyword}/.test(title)`;
				} else {
					this.where = '';
				}
			}
		},
70
		async onReady() {
71 72 73 74 75
			// #ifdef APP-NVUE
			this.listHight = uni.getSystemInfoSync().windowHeight - 96 + 'px'
			// #endif
			// #ifndef APP-NVUE
			this.listHight = 'auto'
76
			// #endif
77
			cdbRef = this.$refs.udb
DCloud_JSON's avatar
DCloud_JSON 已提交
78
		},
79
		async onShow() {
DCloud_JSON's avatar
DCloud_JSON 已提交
80 81
			this.keyword = getApp().globalData.searchText
			getApp().globalData.searchText = ''
82 83 84 85 86 87 88 89 90
			if (this.keyword) {
				// #ifdef APP-PLUS
				if (!currentWebview) {
					let pages = getCurrentPages();
					currentWebview = pages[pages.length - 1].$getAppWebview();
				}
				// 设置 searchInput的 text
				currentWebview.setTitleNViewSearchInputText(this.keyword)
				// #endif
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
			}
			
			
			//这里仅演示如何,在onShow生命周期获取设备位置,并在设备或者应用没有权限时自动引导。设置完毕自动重新获取。
			//你可以基于他做自己的业务,比如:根据距离由近到远排序列表数据等
			// uni.showLoading({
			// 	title:"获取定位中"
			// });
			let location = await gps.getLocation({geocode:true})
			console.log(location);
			// if(location){
			// 	uni.showToast({
			// 		title: JSON.stringify(location),
			// 		icon: 'none'
			// 	});
			// }
			// uni.hideLoading()
DCloud_JSON's avatar
DCloud_JSON 已提交
108 109
		},
		methods: {
110
			searchClick(e) { //点击搜索框
DCloud_JSON's avatar
重构  
DCloud_JSON 已提交
111 112 113
				uni.hideKeyboard();
				uni.navigateTo({
					url: '/pages/list/search/search',
114
					animationType: 'fade-in'
DCloud_JSON's avatar
重构  
DCloud_JSON 已提交
115
				});
116 117 118 119 120 121 122 123 124 125 126
			},
			retry() {
				this.refresh()
			},
			refresh() {
				cdbRef.loadData({
					clear: true
				}, () => {
					uni.stopPullDownRefresh()
				})
				console.log('refresh');
DCloud_JSON's avatar
DCloud_JSON 已提交
127
			}
DCloud_JSON's avatar
重构  
DCloud_JSON 已提交
128 129 130 131 132
		},
		onPullDownRefresh() {
			this.refresh()
		},
		onReachBottom() {
133 134 135
			cdbRef.loadMore({
				clear: true
			})
DCloud_JSON's avatar
DCloud_JSON 已提交
136 137
		}
	}
DCloud_JSON's avatar
重构  
DCloud_JSON 已提交
138
</script>
DCloud_JSON's avatar
DCloud_JSON 已提交
139

140
<style scoped>
141
	.pages {
142
		background-color: #FFFFFF;
DCloud_JSON's avatar
DCloud_JSON 已提交
143
	}
144

DCloud_JSON's avatar
DCloud_JSON 已提交
145 146 147 148 149 150
	.avatar {
		width: 200rpx;
		height: 200rpx;
		margin-right: 10rpx;
	}

DCloud_JSON's avatar
重构  
DCloud_JSON 已提交
151 152 153 154 155 156
	.main {
		justify-content: space-between;
	}

	.title {
		width: 480rpx;
DCloud_JSON's avatar
DCloud_JSON 已提交
157
		font-size: 32rpx;
DCloud_JSON's avatar
重构  
DCloud_JSON 已提交
158 159 160 161 162 163 164 165 166 167 168 169 170 171
	}

	.info {
		flex-direction: row;
		justify-content: space-between;
	}

	.author,
	.last_modify_date {
		font-size: 28rpx;
		color: #999999;
	}

	.refresh-tip {
DCloud_JSON's avatar
DCloud_JSON 已提交
172 173 174 175 176 177 178 179
		color: #67c23a;
		font-size: 14px;
		line-height: 40px;
		text-align: center;
		background-color: #f0f9eb;
		height: 0;
		opacity: 0;
		transform: translateY(-100%);
DCloud_JSON's avatar
重构  
DCloud_JSON 已提交
180
		transition: height 0.3s;
DCloud_JSON's avatar
DCloud_JSON 已提交
181
	}
DCloud_JSON's avatar
重构  
DCloud_JSON 已提交
182 183 184 185 186

	.uni-search-box {
		background-color: #FFFFFF;
		position: sticky;
		top: 0;
DCloud_JSON's avatar
DCloud_JSON 已提交
187 188 189 190
		left: 0;
		/* #ifndef APP-PLUS */
		z-index: 9;
		/* #endif */
191 192
	}

DCloud_JSON's avatar
重构  
DCloud_JSON 已提交
193
	.show-refresh-tip {
DCloud_JSON's avatar
DCloud_JSON 已提交
194 195 196
		transform: translateY(0);
		height: 40px;
		opacity: 1;
DCloud_JSON's avatar
重构  
DCloud_JSON 已提交
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
	}

	.get-data-state {
		width: 750rpx;
		align-items: center;
	}

	.get-data-state-img {
		width: 500rpx;
	}

	.get-data-state-text {
		width: 32rpx;
		color: #999999;
		line-height: 50rpx;
		height: 50rpx;
		width: 750rpx;
		text-align: center;
	}
216 217 218 219 220

	.uni-list {}

	.f1 {
		flex: 1;
221
	}
222
</style>