Commit 1d47f797 authored by Facius's avatar Facius

在线签约页面按钮高保真修改

parent 3f7ff4bd
......@@ -6,7 +6,7 @@
<view class="price"><text>¥ </text>{{settledInfo.record.deposit}}</view>
<view class="list">
<view class="item u-flex u-row-between">
<view class="txt">已缴纳金额</view>
<view class="txt">已缴纳金额</view>
<view class="txt-value">¥ 0.00</view>
</view>
<view class="line-view"></view>
......
......@@ -56,9 +56,10 @@
</view>
<template v-slot:bottom>
<view class="btn-wrap flex-xc">
<button class="btn-submit" :disabled="!submitStatus" @click="$u.debounce(submitBaseInfo, 500)">
我已阅读协议,点击签约{{count ? '('+count+')' : ''}}
</button>
<u-button class="btn-submit" @click="$u.debounce(submitBaseInfo, 500)" :custom-style="buttonStyle"
type="primary" shape="circle" :hover-class="submitStatus ? '' : 'none'">
我已确认信息,去签约{{count ? '('+count+')' : ''}}
</u-button>
</view>
</template>
</Settle>
......@@ -81,7 +82,7 @@
return {
token: app.globalData.token,
baseInfo: {
name: "郭小清",
name: "",
id_card_no: "43072219800123456",
id: "",
bank_no: '', // 银行卡号
......@@ -133,6 +134,23 @@
},
tips3Image() {
return qn_base_url + 'tips3.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: {
......
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