修复表单金额限制,修复订单刷新状态,修复驳回信息显示异常问题,综法订单详情新增律师信息,支付新增支付选项接口

This commit is contained in:
唐明明
2023-06-01 13:57:48 +08:00
14 changed files with 154 additions and 57 deletions

View File

@@ -32,6 +32,18 @@
</view>
</view>
</view>
<view class="block" v-if="lawyer != null">
<view class="block-item">
<view class="block-item-flex">
<label>服务律师</label>
<view class="val">{{lawyer.name}}</view>
</view>
<view class="block-item-flex">
<label>律师电话</label>
<view class="val">{{lawyer.username}}</view>
</view>
</view>
</view>
<view class="block">
<view class="block-item">
<view class="block-item-flex">
@@ -68,6 +80,7 @@
params : [],
createdAt: '',
user : {},
lawyer : null,
price : '0.00'
};
},
@@ -77,13 +90,14 @@
mask : true
})
synthesisInfo(this.$Route.query.id).then(res => {
let { synthesis, params, created_at, user, order_no, price } = res;
let { synthesis, params, created_at, user, order_no, price, lawyer } = res;
this.synthesis = synthesis
this.params = params
this.createdAt = created_at
this.user = user
this.no = order_no
this.price = price
this.lawyer = lawyer
}).catch(err => {
uni.showToast({
title: err.message,