|
|
@@ -1,8 +1,9 @@
|
|
|
<template>
|
|
|
<view class="model" v-if="show">
|
|
|
<image :src="`${constant.imgUrl}/ghs/home/deserve.png`" class="noData_img"></image>
|
|
|
- <view style="margin:30upx 0;color:white;font-size:34upx;">首次下单,请完善门店信息</view>
|
|
|
- <view class="freeApply" @click="apply">完善</view>
|
|
|
+ <view style="margin:45upx 0;color:white;font-size:34upx;">首次下单,请填写门店信息</view>
|
|
|
+ <view class="freeApply" @click="apply">填写</view>
|
|
|
+ <view style="margin:55upx 0;color:white;font-size:27upx;" @click="goLogin()">我已经填过了,<text style="text-decoration:underline;">去登录</text></view>
|
|
|
</view>
|
|
|
</template>
|
|
|
<script>
|
|
|
@@ -38,6 +39,12 @@ export default {
|
|
|
},
|
|
|
rightClick() {
|
|
|
this.$emit('comfirm', this.experCode)
|
|
|
+ },
|
|
|
+ goLogin(){
|
|
|
+ let that = this
|
|
|
+ that.$util.confirmModal({content:'如您的伙伴和员工也需要登录,请联系批发店添加人员',okText:'知道了'},() => {
|
|
|
+ that.pageTo({url: '/admin/home/login'})
|
|
|
+ })
|
|
|
}
|
|
|
},
|
|
|
};
|
|
|
@@ -58,7 +65,7 @@ export default {
|
|
|
& > .noData_img {
|
|
|
width: 318upx;
|
|
|
height: 318upx;
|
|
|
- margin: 250upx auto 0;
|
|
|
+ margin: 150upx auto 0;
|
|
|
}
|
|
|
& > .no_data_text {
|
|
|
font-size: 32upx;
|
|
|
@@ -68,12 +75,13 @@ export default {
|
|
|
}
|
|
|
& > .freeApply {
|
|
|
width: 280upx;
|
|
|
- height: 80upx;
|
|
|
- line-height: 88upx;
|
|
|
+ height: 90upx;
|
|
|
+ line-height:90upx;
|
|
|
background: linear-gradient(90deg, #3385ff, #33b0ff);
|
|
|
border-radius: 44upx;
|
|
|
margin: 20upx auto;
|
|
|
- font-size: 30upx;
|
|
|
+ font-size: 33upx;
|
|
|
+ font-weight:bold;
|
|
|
color: #ffffff;
|
|
|
text-align: center;
|
|
|
}
|