list.vue 1.4 KB
Newer Older
芊里 已提交
1
<template>
芊里 已提交
2
	<view style="overflow: hidden;">
芊里 已提交
3 4
		<!-- 页面主列表 -->
		<news-list ref="newsList" :searchText="searchText"></news-list>
芊里 已提交
5 6 7
	</view>
</template>

芊里 已提交
8 9
<script>
	import newsList from './news-list.vue';
芊里 已提交
10
	import newsSearchTitle from './news-search-title.vue';
芊里 已提交
11 12 13
	export default {
		components:{
			newsList,
芊里 已提交
14
			newsSearchTitle
芊里 已提交
15
		},
芊里 已提交
16 17
		data() {
			return {
芊里 已提交
18 19 20 21
				searchText: '',
				formData: {
					waterfall: false, // 布局方向切换
					status: 'loading', // 加载状态
芊里 已提交
22 23 24 25 26
				},
			};
		},
		onShow(options) {
			this.searchText = getApp().globalData.searchText;
芊里 已提交
27 28 29 30 31 32 33
		},
		/**
		 * 下拉刷新回调函数
		 */
		onPullDownRefresh() {
			console.log('refresh');
			this.$refs.newsList.refresh();
芊里 已提交
34 35 36 37 38 39 40 41 42 43 44
		},
		methods: {
			/**
			 * 切换商品列表布局方向
			 */
			select() {
				this.formData.waterfall = !this.formData.waterfall;
			},
			/**
			 * 上拉加载回调函数
			 */
芊里 已提交
45 46 47
			onReachBottom() {
				console.log('load_more');
				this.$refs.newsList.loadMore();
芊里 已提交
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
			}
		},
		watch: {
			searchText(value) {
				this.search(value);
			}
		},
		computed: {
			listTitle() {
				if (this.searchText) return '搜索结果';
				return '';
			}
		}
	};
</script>

<style lang="scss" scoped>
	@import '@/common/uni-ui.scss';

	page {
		display: flex;
		flex-direction: column;
		box-sizing: border-box;
		background-color: #efeff4;
		min-height: 100%;
		height: auto;
	}
芊里 已提交
75
</style>