Files
frontend-app/pages/hash_union/hash_union.vue
T
2025-03-20 08:46:07 +08:00

35 lines
600 B
Vue

<template>
<view class="hash_union_warp">
<view class="not_order_warp">
<up-image src="/static/common/not_order.png" width="80" height="80" bgColor="#f1f6ff00"></up-image>
<view class="not_order_msg_warp">暂无相关数据</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style lang="scss" scoped>
.hash_union_warp{
height: 100vh;
background-color: $app-bj;
.not_order_warp {
display: grid;
justify-content: center;
margin-top: 0;
padding-top: 400rpx;
}
}
</style>