|
|
@@ -101,12 +101,12 @@
|
|
101
|
101
|
<!-- 缴费确认查看详情 -->
|
|
102
|
102
|
<paymentdetailsDialog :openDialog="openDialog" @cancelpaymentdetails="cancelpaymentdetails" :title="payTitle" :detailform="detailform" :flag="flag" :paymentConfirma="paymentConfirma" :getList="getList"></paymentdetailsDialog>
|
|
103
|
103
|
<!-- 案件受理 -->
|
|
104
|
|
- <caseAcceptance :showAcceptance="showAcceptance" @cancelAcceptance="cancelAcceptance" :caseAcceptanceData="caseAcceptanceData" :getList="getList"></caseAcceptance>
|
|
|
104
|
+ <caseAcceptance :showAcceptance="showAcceptance" @cancelAcceptance="cancelAcceptance" :caseAcceptanceData="caseAcceptanceData" @getList="getList" :queryParams="queryParams"></caseAcceptance>
|
|
105
|
105
|
</div>
|
|
106
|
106
|
</template>
|
|
107
|
107
|
|
|
108
|
108
|
<script>
|
|
109
|
|
-import { caseApplicationList, caseApplicationSelectById,submitCaseApply,selectPaymentDetail } from '@/api/caseManagement/caseManagement.js'
|
|
|
109
|
+import { caseApplicationList, caseApplicationSelectById,submitCaseApply,selectPaymentDetail,sealApply,selectSealUrl } from '@/api/caseManagement/caseManagement.js'
|
|
110
|
110
|
import { listDept } from '@/api/system/dept.js'
|
|
111
|
111
|
import moment from "moment";
|
|
112
|
112
|
import addCase from './components/addCase.vue'
|
|
|
@@ -291,15 +291,37 @@ export default {
|
|
291
|
291
|
},
|
|
292
|
292
|
// 法律顾问用印申请
|
|
293
|
293
|
consultantApplica(row) {
|
|
|
294
|
+ let paramsValue ={
|
|
|
295
|
+ caseId:row.id,
|
|
|
296
|
+ batchNumber:"",
|
|
|
297
|
+ caseFlowId:row.caseFlowId
|
|
|
298
|
+ }
|
|
294
|
299
|
this.$modal.confirm("你确定要用印申请吗?").then((res) => {
|
|
295
|
|
-
|
|
|
300
|
+ sealApply(paramsValue).then(res=>{
|
|
|
301
|
+ this.getList(this.queryParams);
|
|
|
302
|
+ this.$modal.msgSuccess("用印申请成功");
|
|
|
303
|
+ })
|
|
296
|
304
|
}).catch(() => {
|
|
297
|
305
|
|
|
298
|
306
|
})
|
|
299
|
307
|
},
|
|
300
|
308
|
// 部门长用印申请
|
|
301
|
|
- departmentApplica() {
|
|
|
309
|
+ departmentApplica(row) {
|
|
|
310
|
+ this.$modal.confirm("你确定要用印确认吗?").then((res) => {
|
|
|
311
|
+ let paramsValue ={
|
|
|
312
|
+ caseId:row.id
|
|
|
313
|
+ }
|
|
|
314
|
+ selectSealUrl(paramsValue).then(res=>{
|
|
|
315
|
+ window.open(res.data.sealUrl)
|
|
|
316
|
+ this.$modal.confirm("你确认用印了吗?").then((res) => {
|
|
|
317
|
+ this.getList(this.queryParams);
|
|
|
318
|
+ }).catch(() => {
|
|
|
319
|
+
|
|
|
320
|
+ })
|
|
|
321
|
+ })
|
|
|
322
|
+ }).catch(() => {
|
|
302
|
323
|
|
|
|
324
|
+ })
|
|
303
|
325
|
},
|
|
304
|
326
|
// 案件受理
|
|
305
|
327
|
caseAccep(row){
|