|
|
@@ -1,5 +1,5 @@
|
|
1
|
1
|
<template>
|
|
2
|
|
- <view class="list">
|
|
|
2
|
+ <view class="list" @click="caseDetail()">
|
|
3
|
3
|
<view class="listItem">
|
|
4
|
4
|
<view class="lable">
|
|
5
|
5
|
案件编号:
|
|
|
@@ -41,8 +41,10 @@
|
|
41
|
41
|
</view>
|
|
42
|
42
|
</view>
|
|
43
|
43
|
<view class="btn" v-if="sysType == 2">
|
|
44
|
|
- <button class="btnItem" type="primary" size="mini" @tap="modify" v-if="checkPermi(['caseManagement:list:edit'])">修改</button>
|
|
45
|
|
- <button class="btnItem" type="primary" size="mini" @tap="deleteCase" v-if="checkPermi(['caseManagement:list:delete'])">删除</button>
|
|
|
44
|
+ <button class="btnItem" type="primary" size="mini" @tap="modify"
|
|
|
45
|
+ v-if="checkPermi(['caseManagement:list:edit'])">修改</button>
|
|
|
46
|
+ <button class="btnItem" type="primary" size="mini" @tap="deleteCase"
|
|
|
47
|
+ v-if="checkPermi(['caseManagement:list:delete'])">删除</button>
|
|
46
|
48
|
<!-- <button class="btnItem" type="primary" size="mini" @tap="clickPay">申请人缴费</button>
|
|
47
|
49
|
<button class="btnItem" type="primary" size="mini" @tap="caseDetail">选择调解员</button> -->
|
|
48
|
50
|
<button class="btnItem" type="primary" @tap="clickType(item.id)" size="mini" v-for="(item) in buttonList"
|
|
|
@@ -65,7 +67,7 @@
|
|
65
|
67
|
export default {
|
|
66
|
68
|
data() {
|
|
67
|
69
|
return {
|
|
68
|
|
-
|
|
|
70
|
+
|
|
69
|
71
|
}
|
|
70
|
72
|
},
|
|
71
|
73
|
props: {
|
|
|
@@ -141,17 +143,17 @@
|
|
141
|
143
|
})
|
|
142
|
144
|
},
|
|
143
|
145
|
// 确认缴费
|
|
144
|
|
- confirmPayments(){
|
|
|
146
|
+ confirmPayments() {
|
|
145
|
147
|
uni.navigateTo({
|
|
146
|
148
|
url: `/pages/handlecase/component/confirmPayment?id=${this.defalutVal.id}&caseFlowId=${this.defalutVal.caseFlowId}`
|
|
147
|
149
|
})
|
|
148
|
150
|
},
|
|
149
|
151
|
/**提交案件*/
|
|
150
|
152
|
onsubmitRow() {
|
|
151
|
|
- let onsubmitVal ={
|
|
152
|
|
- id : this.defalutVal.id,
|
|
153
|
|
- batchNumber:"",
|
|
154
|
|
- caseFlowId:this.defalutVal.caseFlowId
|
|
|
153
|
+ let onsubmitVal = {
|
|
|
154
|
+ id: this.defalutVal.id,
|
|
|
155
|
+ batchNumber: "",
|
|
|
156
|
+ caseFlowId: this.defalutVal.caseFlowId
|
|
155
|
157
|
}
|
|
156
|
158
|
caseAppSubmit(onsubmitVal).then(res => {
|
|
157
|
159
|
uni.showToast({
|
|
|
@@ -160,7 +162,7 @@
|
|
160
|
162
|
duration: 1000
|
|
161
|
163
|
})
|
|
162
|
164
|
uni.navigateTo({
|
|
163
|
|
- url:'/pages/handlecase/index'
|
|
|
165
|
+ url: '/pages/handlecase/index'
|
|
164
|
166
|
})
|
|
165
|
167
|
//this.$emit("getList");
|
|
166
|
168
|
})
|
|
|
@@ -173,25 +175,24 @@
|
|
173
|
175
|
},
|
|
174
|
176
|
/*删除*/
|
|
175
|
177
|
deleteCase() {
|
|
176
|
|
- let objValue ={
|
|
177
|
|
- id : this.defalutVal.id,
|
|
178
|
|
- batchNumber:"",
|
|
179
|
|
- caseFlowId:this.defalutVal.caseFlowId
|
|
|
178
|
+ let objValue = {
|
|
|
179
|
+ id: this.defalutVal.id,
|
|
|
180
|
+ batchNumber: "",
|
|
|
181
|
+ caseFlowId: this.defalutVal.caseFlowId
|
|
180
|
182
|
}
|
|
181
|
|
- caseDelete(objValue).then(res =>{
|
|
|
183
|
+ caseDelete(objValue).then(res => {
|
|
182
|
184
|
uni.showToast({
|
|
183
|
185
|
title: '删除成功',
|
|
184
|
186
|
icon: 'none',
|
|
185
|
187
|
duration: 1000
|
|
186
|
188
|
})
|
|
187
|
189
|
uni.navigateTo({
|
|
188
|
|
- url:'/pages/handlecase/index'
|
|
|
190
|
+ url: '/pages/handlecase/index'
|
|
189
|
191
|
})
|
|
190
|
|
- })
|
|
|
192
|
+ })
|
|
191
|
193
|
},
|
|
192
|
194
|
},
|
|
193
|
|
- created() {
|
|
194
|
|
- }
|
|
|
195
|
+ created() {}
|
|
195
|
196
|
}
|
|
196
|
197
|
</script>
|
|
197
|
198
|
|