视频审理

This commit is contained in:
hanchaobo
2024-02-20 17:16:52 +08:00
parent 5eaafb34dc
commit de7bafd256
5 changed files with 15 additions and 5 deletions
+3 -3
View File
@@ -10,7 +10,7 @@
</view>
<view class="listItem" v-if="sysType == 1">
<view class="lable">
申请人姓名:
申请人:
</view>
<view class="main">
{{defalutVal.applicantName}}
@@ -18,7 +18,7 @@
</view>
<view class="listItem" v-if="sysType == 2">
<view class="lable">
申请人姓名:
申请人:
</view>
<view class="main">
{{defalutVal.applicationName}}
@@ -26,7 +26,7 @@
</view>
<view class="listItem" style="margin-top:22rpx">
<view class="lable">
被申请人姓名:
被申请人:
</view>
<view class="main">
{{defalutVal.respondentName}}
+9
View File
@@ -118,6 +118,7 @@
},
/**文件上传*/
select(e) {
this.submitForm.payOrderList = [];
this.tempFilePaths = e.tempFilePaths;
// loading
uni.showLoading({
@@ -202,6 +203,14 @@
},
/**确认缴费*/
submitPay() {
if (this.submitForm.payOrderList.length < 1) {
uni.showToast({
title: '请上传缴费凭证',
icon: 'none',
duration: 1000
});
return
}
this.submitForm.caseId = this.formData.id;
this.submitForm.caseFlowId = this.formData.caseFlowId;
this.confirmPaymentFn(this.submitForm);