2023-12-1

This commit is contained in:
2023-12-01 12:31:42 +08:00
parent 83f1e822c1
commit 7d72abd693
15 changed files with 114 additions and 26 deletions

View File

@@ -12,6 +12,12 @@
<view v-if="state != 0 && state != 1">
<slot></slot>
</view>
<!-- 无数据 -->
<z-paging-empty-view v-if="state === 100" emptyViewText="没有数据哦~"
:emptyViewImg="notDataImg" @reload="reload">
</z-paging-empty-view>
</view>
</template>
<script>
@@ -25,6 +31,9 @@
computed: {
errorImg() {
return zStatic.base64Error
},
notDataImg() {
return zStatic.base64Empty
}
},
methods: {