当前位置:   article > 正文

uniapp 上拉加载更多_uniappjiazaigengduo

uniappjiazaigengduo
<view class="content">
			<view class="contentlist" v-for="(item, index) in newsList" :key="index" @click="todetail(item.id)">
				<image :src="imgurl + item.images" mode=""></image>
				<view class="contentext">
					<text class="contentextitle">{
  { item.name }}</text>
					<text class="contentextintegral">{
  { item.price }} 积分</text>
				</view>
			</view>
			<!-- <uni-load-more class="middle"  :loadingType="loadingType" :contentText="contentText"></uni-load-more> -->
			<view class="middle" v-if="showMore">
				{
  { loadingType === 0 ? contentText.contentdown : loadingType === 1 ? contentText.contentrefresh : contentText.contentnomore }}
			</view>
		</view>


import uniLoadMore from '../../common/uni-load-more.vue'; //引入uniapp官方插件
var _self,
	page = 1,
	timer = null;
export default {
	components: {
		//注册组件
		uniLoadMore
	},
	data() {
		return {
			showMore: false,
			loadingText: '加载中...',
			loadingType: 0, //定义加载方式 0---contentdown  1---contentrefresh 2---contentnomore
			contentText: {
				contentdown: '上拉显示更多',
				contentrefresh: '正在加载...',
				contentno
  • 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
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/221420
推荐阅读
相关标签