案件归档快递接口调整,案件日志调整,组庭确认取消时间
This commit is contained in:
@@ -70,7 +70,7 @@
|
||||
|
||||
<script>
|
||||
import { caseApplicationList, selectSignSealUrl,caseApplicationDetail } from "@/api/awardManagement/awardManagement";
|
||||
import { caseLogRecordList } from "@/api/caseManagement/caseManagement";
|
||||
import { caseLogRecordList, logistics } from "@/api/caseManagement/caseManagement";
|
||||
import { adjudicationArchives, videoList } from "@/api/caseFiling/caseFiling";
|
||||
import archiveDetailsDialog from "./components/archiveDetailsDialog.vue";
|
||||
export default {
|
||||
@@ -95,7 +95,7 @@ export default {
|
||||
// 校验表单
|
||||
rules: {},
|
||||
dataList: [],
|
||||
detailform: {}, //详情数据
|
||||
detailform: [], //详情数据
|
||||
showarchiveDetails: false, //详情数据弹框
|
||||
flagLoading: false, //详情弹框loading
|
||||
videoList:"",
|
||||
@@ -138,7 +138,8 @@ export default {
|
||||
},
|
||||
// model框显示
|
||||
showDetail(row) {
|
||||
this.getDetail({ id: row.id });
|
||||
// this.getDetail({ id: row.id });
|
||||
this.logisticsFn({ id: row.id })
|
||||
this.getvideoList({ caseId: row.id });
|
||||
this.getCaseDetail({ id: row.id })
|
||||
this.getCaseLog({caseAppliId :row.id})
|
||||
@@ -156,11 +157,18 @@ export default {
|
||||
})
|
||||
},
|
||||
/** 查询详情 */
|
||||
getDetail(parms) {
|
||||
adjudicationArchives(parms).then((res) => {
|
||||
// getDetail(parms) {
|
||||
// adjudicationArchives(parms).then((res) => {
|
||||
// console.log(res,"PPPPPPPPPPPPPPPPPPPPPPPPP");
|
||||
// this.detailform = res.data.logisticsInfoVOList;
|
||||
// });
|
||||
// },
|
||||
// 查询快递单号信息 logistics
|
||||
logisticsFn(params) {
|
||||
logistics(params).then((res) => {
|
||||
// console.log(res,"PPPPPPPPPPPPPPPPPPPPPPPPP");
|
||||
this.detailform = res.data.logisticsInfoVOList;
|
||||
});
|
||||
this.detailform = res.data;
|
||||
})
|
||||
},
|
||||
// 查询案件详情
|
||||
getCaseDetail(params){
|
||||
@@ -172,8 +180,8 @@ export default {
|
||||
// 查看案件日志
|
||||
getCaseLog(params){
|
||||
caseLogRecordList(params).then(res=>{
|
||||
console.log(res,"LLLLLLLLLLL");
|
||||
this.caseLog = res.rows;
|
||||
// console.log(res,"LLLLLLLLLLL");
|
||||
this.caseLog = res.data;
|
||||
})
|
||||
}
|
||||
},
|
||||
|
||||
@@ -1,9 +1,6 @@
|
||||
<template>
|
||||
<div>
|
||||
<div class="loading" v-if="flagLoading">
|
||||
<i class="el-icon-loading"></i>
|
||||
</div>
|
||||
<div v-else>
|
||||
<div>
|
||||
<div class="noData" v-if="noData">暂无数据!</div>
|
||||
<el-timeline v-else>
|
||||
<el-timeline-item
|
||||
@@ -21,7 +18,7 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
props: ["flagLoading", "caselogDataArr"],
|
||||
props: ["caselogDataArr"],
|
||||
data() {
|
||||
return {
|
||||
activities: [],
|
||||
|
||||
@@ -1,9 +1,6 @@
|
||||
<template>
|
||||
<div>
|
||||
<div class="loading" v-if="flagLoading">
|
||||
<i class="el-icon-loading"></i>
|
||||
</div>
|
||||
<div v-else>
|
||||
<div>
|
||||
<div class="deliverName">
|
||||
<span>申请人快递信息:</span>
|
||||
{{ expressOne.company }} {{ expressOne.no }}
|
||||
@@ -39,7 +36,7 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
props: ["deliveryDataArr", "flagLoading"],
|
||||
props: ["deliveryDataArr"],
|
||||
data() {
|
||||
return {
|
||||
reverse: true,
|
||||
@@ -48,9 +45,10 @@ export default {
|
||||
expressTwo: {},
|
||||
};
|
||||
},
|
||||
created() {
|
||||
watch: {
|
||||
deliveryDataArr() {
|
||||
console.log(this.deliveryDataArr, "deliveryDataArr");
|
||||
if (this.deliveryDataArr && this.deliveryDataArr.length > 0) {
|
||||
if (this.deliveryDataArr && this.deliveryDataArr.length > 0) {
|
||||
this.deliveryDataArr.forEach((item) => {
|
||||
if (item.identityType == 1) {
|
||||
let applicantdata = item.logisticsInfo;
|
||||
@@ -75,6 +73,7 @@ export default {
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
cancel() {
|
||||
|
||||
Reference in New Issue
Block a user