35 lines
600 B
Vue
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>
|