29 lines
617 B
Vue
29 lines
617 B
Vue
<template>
|
|
<view class="empty-container flex flex-col items-center justify-center">
|
|
<image class="empty-image" :src="emptyIcon" mode="aspectFit" />
|
|
<text class="font-size-12 text-center color-99A0AE mt-8">
|
|
{{ statusText }}
|
|
</text>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { defineProps } from "vue";
|
|
|
|
const props = defineProps({
|
|
statusText: {
|
|
type: String,
|
|
default: "",
|
|
},
|
|
emptyIcon: {
|
|
type: String,
|
|
default:
|
|
"https://oss.nianxx.cn/mp/static/version_101/order/order_empty.png",
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import "./styles/index.scss";
|
|
</style>
|