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