修复bug

This commit is contained in:
weipengfei 2023-10-28 18:32:05 +08:00
parent 43b68351f5
commit 22e9d26dfc
1 changed files with 35 additions and 9 deletions

View File

@ -120,12 +120,23 @@
<view class="bg-content-a"> <view class="bg-content-a">
委托申请处理 委托申请处理
</view> </view>
<view class="bg-content-b" > <view class="bg-content-d" >
结算周期: <span>{{obj.mer_info.settle_cycle}}</span> 委托方: <span>{{obj.mer_info.mer_name}}</span>
</view> </view>
<view class="bg-content-c" > <block v-if="obj.mer_info.credit_buy">
利息比例: <span>{{obj.mer_info.interest_rate}}%</span> <view class="bg-content-b" >
</view> 结算周期: <span>{{obj.mer_info.settle_cycle}}</span>
</view>
<view class="bg-content-c" >
利息比例: <span>{{obj.mer_info.interest_rate}}%</span>
</view>
</block>
<block v-else>
<view class="bg-content-b" >
该商户暂不支持先货后款
</view>
<view style="height: 60rpx;"></view>
</block>
<view class="entrust_bga_btn"> <view class="entrust_bga_btn">
<view class="cancellation" @click="passDelete(obj)"> <view class="cancellation" @click="passDelete(obj)">
拒绝 拒绝
@ -362,7 +373,6 @@
// //
soldEdit(item) { soldEdit(item) {
this.obj = item this.obj = item
this.$refs.bindmobile.open() this.$refs.bindmobile.open()
}, },
// //
@ -756,7 +766,7 @@
font-family: PingFang SC; font-family: PingFang SC;
font-weight: 500; font-weight: 500;
color: #333333; color: #333333;
margin-top: 32rpx; margin-top: 16rpx;
span { span {
font-size: 32rpx; font-size: 32rpx;
@ -773,7 +783,7 @@
font-family: PingFang SC; font-family: PingFang SC;
font-weight: 500; font-weight: 500;
color: #333333; color: #333333;
margin-top: 32rpx; margin-top: 16rpx;
span { span {
font-size: 32rpx; font-size: 32rpx;
@ -783,6 +793,22 @@
margin-left: 18rpx; margin-left: 18rpx;
} }
} }
.bg-content-d {
margin-left: 35rpx;
font-size: 32rpx;
font-family: PingFang SC;
font-weight: 500;
color: #333333;
margin-top: 16rpx;
span {
font-size: 32rpx;
font-family: PingFang SC-Medium, PingFang SC;
font-weight: 500;
color: #F84221;
margin-left: 18rpx;
}
}
} }
.entrust_bga_btn { .entrust_bga_btn {