增加新模块

This commit is contained in:
何江明
2025-03-20 08:46:07 +08:00
parent 15014e22aa
commit 2ae62b59ed
1729 changed files with 94700 additions and 4232 deletions
+34
View File
@@ -0,0 +1,34 @@
<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>