init
This commit is contained in:
43
pages_tool/goods/not_exist.vue
Normal file
43
pages_tool/goods/not_exist.vue
Normal file
@@ -0,0 +1,43 @@
|
||||
<template>
|
||||
<page-meta :page-style="themeColor"></page-meta>
|
||||
<view class="page">
|
||||
<view class="closeBox">
|
||||
<image :src="$util.img('public/uniapp/goods/not_exist.png')" mode="widthFix"></image>
|
||||
<text class="close-title">您查看的商品不存在,可能已下架或被删除</text>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {};
|
||||
},
|
||||
onShow() {},
|
||||
methods: {}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.page{
|
||||
height: 100vh;
|
||||
overflow: hidden;
|
||||
}
|
||||
.closeBox {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-top: 260rpx;
|
||||
}
|
||||
image {
|
||||
width: 400rpx;
|
||||
}
|
||||
.close-title {
|
||||
font-size: $font-size-base;
|
||||
color: $color-tip;
|
||||
margin: 55rpx;
|
||||
letter-spacing: 4rpx;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user