61 lines
1.0 KiB
Vue
61 lines
1.0 KiB
Vue
<template>
|
|
<base-page>
|
|
<view class="empty-box">
|
|
<image :src="$util.img('public/uniapp/cashier/store-close.png')" mode="widthFix"></image>
|
|
<view>门店已停业</view>
|
|
<button class="btn" @click="$util.redirectTo('/pages/login/login')">返回</button>
|
|
</view>
|
|
</base-page>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
},
|
|
onLoad() {},
|
|
onShow() {
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.empty-box{
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
position: fixed;
|
|
left: 0;
|
|
top:0;
|
|
background-color: #ffffff;
|
|
z-index: 10000;
|
|
image{
|
|
width: 3rem;
|
|
height: 3rem;
|
|
max-height: 3rem;
|
|
}
|
|
view{
|
|
text-align: center;
|
|
font-size: 0.16rem;
|
|
color: $uni-color-primary;
|
|
margin: 0 0 0.3rem;
|
|
}
|
|
button{
|
|
background-color: #fff;
|
|
color: $uni-color-primary;
|
|
border: 0.01rem solid $uni-color-primary;
|
|
font-size: 0.165rem;
|
|
width: 1rem;
|
|
|
|
}
|
|
}
|
|
</style>
|