Commit c37d9304 authored by Facius's avatar Facius

申请入驻页面高保真细节调节

parent eeae2f49
......@@ -44,9 +44,10 @@
<template v-slot:bottom>
<view class="btn-wrap flex-xc">
<button class="btn-submit" :disabled="!submitBtnStatus" @click="$u.debounce(submitFileInfo, 500)">
{{ !submitBtnStatus ? '完成必填项,可提交资料' : '提交' }}
</button>
<u-button class="btn-submit" @click="$u.debounce(submitFileInfo, 500)" :custom-style="buttonStyle"
type="primary" shape="circle" :hover-class="submitStatus ? '' : 'none'">
{{ !submitBtnStatus ? '下一步' : '我已确认信息,下一步' }}
</u-button>
</view>
</template>
......@@ -232,6 +233,23 @@ export default {
},
tishiImage() {
return qn_base_url + 'tishi.png'
},
buttonStyle() {
return this.submitBtnStatus ? {
'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: {
......@@ -448,7 +466,6 @@ export default {
return;
}
let fileInfo = this.fileInfo;
debugger
fileInfo.other_photos = JSON.stringify(fileInfo.other_photos)
let submitInfoData = {
...fileInfo,
......@@ -656,9 +673,11 @@ export default {
}
.tip-image {
width: 34rpx;
width: 30rpx;
height: 32rpx;
margin-right: 8rpx;
margin-top: 2rpx;
margin-top: 2rpx;
flex-shrink: 0;
}
.bottom-tip-view {
......@@ -686,18 +705,7 @@ export default {
width: 100%;
.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;
}
}
}
.card-info-view {
......
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