123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <template>
- <view class="wrap">
- <image src="https://wx.fujinyangche.com/image/lecel2_free.jpg"></image>
- <navigator url="" class="notice_right" hover-class="none">免费入驻</navigator>
- <!-- <navigator v-if="isEnter == 0 && userInfo ==''" url="" class="notice_right" hover-class="none">免费入驻</navigator>
- <view v-if="isEnter == 1 && isAuthInfo == 0" class="notice_right" @tap="upload">去认证</view>
- <navigator v-if="isEnter == 1 && isAuthInfo == 1 && isPay == 0" url="" class="notice_right" hover-class="none">去认证</navigator>
- <view v-if="isEnter == 1 && isAuthInfo == 1 && isPay == 1 && isAuthStatus == 0"class="notice_right" @tap="audit">审核中</view>
- <navigator v-if="isEnter == 1 && isAuthInfo == 1 && isPay == 1 && isAuthStatus == 1" url="" class="notice_right" hover-class="none">未通过</navigator>
- <navigator v-if="isEnter == 1 && isAuthInfo == 1 && isPay == 1 && isAuthStatus == 2" url="" class="notice_right" hover-class="none">我的店铺</navigator> -->
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style scoped>
- page{
- width:100%;
- height:100%;
- }
- .wrap{
- width:100%;
- height:100%;
- /*background: url("https://wx.fujinyangche.com/nvrnetwork/images/lecel2_free.jpg") no-repeat;*/
- /*background-size: 100% 100%;*/
- position: relative;
- }
- .wrap image{
- display: block;
- width:100%;
- height:100%;
- }
- .masking{
- width:100%;
- height:100%;
- background:rgba(0,0,0,0.5);
- position: absolute;
- top:0;
- left:0;
- z-index:100;
- display: none;
- }
- .showMask{
- display: block;
- }
- .delete_wrap{
- width:600rpx;
- height:260rpx;
- background:rgba(255,255,255,1);
- border-radius:10rpx;
- position: fixed;
- top:50%;
- left:50%;
- transform: translate(-50%,-50%);
- }
- .wrap_top{
- font-size: 32rpx;
- color:#000000;
- font-weight: bold;
- text-align: center;
- height:152rpx;
- line-height: 152rpx;
- border-bottom:1px solid #F2F2F2;
- box-sizing: border-box;
- }
- .wrap_bom_lf{
- width:50%;
- border-right: 1px solid #f2f2f2;
- box-sizing: border-box;
- font-size: 32rpx;
- color:#222222;
- font-weight: bold;
- text-align: center;
- line-height: 106rpx;
- display: inline-block;
- }
- .confirm{
- width:50%;
- display: inline-block;
- text-align: center;
- line-height: 106rpx;
- font-size: 32rpx;
- color:#E77817;
- font-weight: bold;
- }
- .notice_right{
- width:330rpx;
- height:100rpx;
- background: #E77817;
- border-radius: 50rpx;
- line-height: 100rpx;
- text-align: center;
- font-size: 44rpx;
- font-weight: bold;
- color:#ffffff;
- float:left;
- position: absolute;
- left:50%;
- transform: translateX(-50%);
- bottom:450rpx;
- }
- </style>
|