This commit is contained in:
王创世 2025-06-14 16:09:44 +08:00
parent 61e3fe0ae8
commit 2c854828b0

View File

@ -23,7 +23,7 @@
</view>
<view class="right" @click="toName('nc')">
<view>
<text>{{niName}}</text>
<text>{{ niName }}</text>
</view>
<view>
<u-icon name="arrow-right"></u-icon>
@ -36,7 +36,7 @@
</view>
<view class="right" @click="toName('qm')">
<view>
<text>{{signature}}</text>
<text>{{ signature }}</text>
</view>
<view>
<u-icon name="arrow-right"></u-icon>
@ -49,8 +49,9 @@
</view>
<view class="right">
<view>
<text v-if="bankInfo.withdrawal == null" style="color: #9C9C9C;">未认证</text>
<text v-if="bankInfo.withdrawal != null">已认证</text>
<text v-if="bankInfo.withdrawal == null"
style="color: #9C9C9C;font-size: 26rpx;">未认证</text>
<text v-if="bankInfo.withdrawal != null" style="font-size: 26rpx;">已认证</text>
</view>
<view><u-icon name="arrow-right"></u-icon></view>
</view>
@ -61,8 +62,8 @@
</view>
<view class="right">
<view>
<text v-if="sfInfo.status == -1" style="color: #9C9C9C;">未认证</text>
<text v-if="sfInfo.status == 1">已认证</text>
<text v-if="sfInfo.status == -1" style="color: #9C9C9C;font-size: 26rpx;">未认证</text>
<text v-if="sfInfo.status == 1" style="font-size: 26rpx;">已认证</text>
</view>
<view><u-icon name="arrow-right"></u-icon></view>
</view>
@ -125,14 +126,14 @@
</template>
<script>
import {
import {
dateFormat,
dateFormats
} from '../../utils/dateFormat'
// import {
// address
// } from '../../static/address'
export default {
} from '../../utils/dateFormat'
// import {
// address
// } from '../../static/address'
export default {
data() {
return {
typeop: '',
@ -333,7 +334,7 @@
type: 'success',
message: '保存成功',
duration: '1000',
complete: function() {
complete: function () {
// setTimeout(function() {
// uni.navigateBack(1)
// }, 1000);
@ -571,11 +572,15 @@
}
},
}
}
}
</script>
<style lang="scss">
.content {
.left {
font-weight: 600;
}
.content {
.backImg {
position: fixed;
width: 100%;
@ -596,7 +601,6 @@
background: #fff;
border-radius: 30rpx;
box-sizing: border-box;
padding: 0rpx 30rpx 30rpx 30rpx;
.list {
.list-item {
@ -635,8 +639,6 @@
width: 100%;
height: 166rpx;
background: #FFFFFF;
box-shadow: 0rpx -2rpx 4rpx 0rpx rgba(186, 189, 199, 0.2);
}
.avatar_choose {
@ -671,5 +673,5 @@
}
}
}
}
}
</style>