This commit is contained in:
wong1988
2023-12-02 17:55:49 +08:00
parent 21622ec016
commit 5f1a89864b

View File

@@ -14,9 +14,7 @@
</view> </view>
<!-- 无数据 --> <!-- 无数据 -->
<z-paging-empty-view v-if="state === 100" emptyViewText="没有数据哦~" <uni-load-more v-if="state === 100" status="noMore" :content-text="contentText"></uni-load-more>
:emptyViewImg="notDataImg" @reload="reload">
</z-paging-empty-view>
</view> </view>
</template> </template>
@@ -25,7 +23,12 @@
export default { export default {
data() { data() {
return { return {
state: 0 state: 0,
contentText: {
contentdown: "上拉显示更多",
contentrefresh: "正在加载...",
contentnomore: "无数据"
}
}; };
}, },
computed: { computed: {