|
|
@@ -0,0 +1,59 @@
|
|
|
+<template>
|
|
|
+ <view class="model" v-if="show">
|
|
|
+ <image :src="`${constant.imgUrl}/ghs/home/deserve.png`" class="noData_img"></image>
|
|
|
+ <view class="no_data_text">您还没有花店,无法采购哦~</view>
|
|
|
+ <view class="freeApply" @click=" pageTo({url: '/pagesClient/official/index'})">免费申请</view>
|
|
|
+ </view>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+export default {
|
|
|
+ props: {
|
|
|
+ show:{
|
|
|
+ type:Boolean,
|
|
|
+ default: true
|
|
|
+ },
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ constant: this.$constant,
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.model{
|
|
|
+ position: fixed;
|
|
|
+ z-index: 9999;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ width: 100vw;
|
|
|
+ height: 100vh;
|
|
|
+ background: rgba(0,0,0, 0.6);
|
|
|
+ color: #fff;
|
|
|
+ text-align: center;
|
|
|
+ &>.noData_img{
|
|
|
+ width: 318upx;
|
|
|
+ height: 318upx;
|
|
|
+ margin: 332upx auto 0;
|
|
|
+ }
|
|
|
+ &>.no_data_text{
|
|
|
+ font-size: 32px;
|
|
|
+ color: #FFFFFF;
|
|
|
+ text-align: center;
|
|
|
+ margin: 50upx 0;
|
|
|
+ }
|
|
|
+ &>.freeApply{
|
|
|
+ width: 376px;
|
|
|
+ height: 88px;
|
|
|
+ line-height: 88upx;
|
|
|
+ background: linear-gradient(90deg, #3385FF, #33B0FF);
|
|
|
+ border-radius: 44px;
|
|
|
+ margin: 0 auto;
|
|
|
+ font-size: 32px;
|
|
|
+ color: #FFFFFF;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|