完成consumer端同步

This commit is contained in:
2026-05-14 15:28:09 +08:00
parent 612fb3d360
commit 0ffbc53902
197 changed files with 92657 additions and 7564 deletions

View File

@@ -0,0 +1,22 @@
<template>
<view class="empty-state">
<image class="empty-img" :src="image" v-if="image" />
<text class="empty-text">{{ text }}</text>
<slot name="action"></slot>
</view>
</template>
<script lang="uts">
export default {
props: {
text: { type: String, default: '暂无数据' },
image: { type: String, default: '/static/icons/empty.png' }
}
}
</script>
<style scoped>
.empty-state { display:flex; flex-direction:column; align-items:center; justify-content:center; padding:60rpx 20rpx }
.empty-img { width:160rpx; height:160rpx; margin-bottom:24rpx }
.empty-text { color:#999; font-size:28rpx }
</style>