初始化仓库

This commit is contained in:
wangxiaowei
2026-04-14 16:54:04 +08:00
commit 967c25b397
553 changed files with 106514 additions and 0 deletions

View File

@ -0,0 +1,33 @@
<template>
<view class="stop_container">
<image :src="$getImageUri('/images/shop_stop/shop_stop.png')" class="img"> </image>
<view class="lg"> 店铺暂停营业 </view>
<view class="muted" style="margin-top: 30rpx">您要找的店铺暂停营业中 请稍后再来</view>
</view>
</template>
<script>
export default {
props: {},
computed: {
$getImageUri() {
return (url) => this.$store.state.app.config.base_domain + url
}
}
}
</script>
<style lang="scss" scoped>
page {
background-color: white;
.stop_container {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.img {
width: 300rpx;
height: 300rpx;
}
}
</style>