Commit 9d46be26 authored by Facius's avatar Facius

申请入驻高保真细节修改

parent 376b4247
...@@ -66,9 +66,10 @@ ...@@ -66,9 +66,10 @@
<view class="seat"></view> <view class="seat"></view>
<template v-slot:bottom> <template v-slot:bottom>
<view class="btn-wrap flex-xc"> <view class="btn-wrap flex-xc">
<button class="btn-submit" :disabled="!submitStatus" @click="$u.debounce(submitBaseInfo, 500)"> <u-button class="btn-submit" @click="$u.debounce(submitBaseInfo, 500)" :custom-style="buttonStyle"
确定 type="primary" shape="circle" :hover-class="submitStatus ? '' : 'none'">
</button> 下一步
</u-button>
</view> </view>
</template> </template>
</Settle> </Settle>
...@@ -132,6 +133,23 @@ ...@@ -132,6 +133,23 @@
}, },
dizhiImage() { dizhiImage() {
return qn_base_url + 'dizhi.png' return qn_base_url + 'dizhi.png'
},
buttonStyle() {
return this.submitStatus ? {
'color': '#FFFFFF',
'background-color': '#2272FF;',
'width': '600rpx',
'height': '104rpx',
'font-size': '32rpx',
'font-weight': 'bold'
} : {
'color': '#FFFFFF',
'background-color': '#D1D4D4;',
'width': '600rpx',
'height': '104rpx',
'font-size': '32rpx',
'font-weight': 'bold'
}
} }
}, },
components: { components: {
...@@ -572,20 +590,7 @@ ...@@ -572,20 +590,7 @@
.btn-wrap { .btn-wrap {
width: 100%; width: 100%;
.btn-submit { .btn-submit {}
width: 600rpx;
height: 104rpx;
line-height: 104rpx;
border-radius: 52rpx;
background: #2272FF;
font-size: 32rpx;
color: #fff;
&[disabled] {
background-color: #D1D4D4;
color: #FFFFFF;
}
}
} }
.itemView { .itemView {
...@@ -696,7 +701,9 @@ ...@@ -696,7 +701,9 @@
} }
.tip-image { .tip-image {
width: 34rpx; width: 30rpx;
height: 32rpx;
flex-shrink: 0;
margin-right: 8rpx; margin-right: 8rpx;
margin-top: 2rpx; margin-top: 2rpx;
} }
......
...@@ -2,7 +2,8 @@ ...@@ -2,7 +2,8 @@
<view class="back_view"> <view class="back_view">
<Settle :index="1"> <Settle :index="1">
<view class="content-view"> <view class="content-view">
<view v-for="(item, index) in contentTexts" :key="index" :class="['item-list', {last: contentTexts.length <= index + 1}]"> <view v-for="(item, index) in contentTexts" :key="index"
:class="['item-list', {last: contentTexts.length <= index + 1}]">
<view class="item"> <view class="item">
<view class="item-label"> <view class="item-label">
<text>{{item.title}}</text> <text>{{item.title}}</text>
...@@ -15,7 +16,8 @@ ...@@ -15,7 +16,8 @@
</view> </view>
</view> </view>
<template v-slot:bottom> <template v-slot:bottom>
<u-button class="bottom_btn" @click="$u.debounce(applyClick, 500)" :custom-style="buttonStyle" type="primary" shape="circle"> <u-button class="bottom_btn" @click="$u.debounce(applyClick, 500)" :custom-style="buttonStyle"
type="primary" shape="circle" :hover-class="isStop ? '' : 'none'">
<text class="bottom_title" v-if="!isStop">浏览 {{count}} 秒后可申请入驻</text> <text class="bottom_title" v-if="!isStop">浏览 {{count}} 秒后可申请入驻</text>
<text class="bottom_title" v-if="isStop">申请入驻</text> <text class="bottom_title" v-if="isStop">申请入驻</text>
</u-button> </u-button>
...@@ -205,6 +207,7 @@ ...@@ -205,6 +207,7 @@
.item-list { .item-list {
padding: 30rpx 30rpx 0rpx 30rpx; padding: 30rpx 30rpx 0rpx 30rpx;
&.last { &.last {
padding-bottom: 30rpx; padding-bottom: 30rpx;
} }
...@@ -231,6 +234,7 @@ ...@@ -231,6 +234,7 @@
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
.bottom_title { .bottom_title {
color: #fff; color: #fff;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment