|
|
@@ -70,7 +70,7 @@
|
|
70
|
70
|
|
|
71
|
71
|
<script>
|
|
72
|
72
|
import { caseApplicationList, selectSignSealUrl,caseApplicationDetail } from "@/api/awardManagement/awardManagement";
|
|
73
|
|
-import { caseLogRecordList } from "@/api/caseManagement/caseManagement";
|
|
|
73
|
+import { caseLogRecordList, logistics } from "@/api/caseManagement/caseManagement";
|
|
74
|
74
|
import { adjudicationArchives, videoList } from "@/api/caseFiling/caseFiling";
|
|
75
|
75
|
import archiveDetailsDialog from "./components/archiveDetailsDialog.vue";
|
|
76
|
76
|
export default {
|
|
|
@@ -95,7 +95,7 @@ export default {
|
|
95
|
95
|
// 校验表单
|
|
96
|
96
|
rules: {},
|
|
97
|
97
|
dataList: [],
|
|
98
|
|
- detailform: {}, //详情数据
|
|
|
98
|
+ detailform: [], //详情数据
|
|
99
|
99
|
showarchiveDetails: false, //详情数据弹框
|
|
100
|
100
|
flagLoading: false, //详情弹框loading
|
|
101
|
101
|
videoList:"",
|
|
|
@@ -138,7 +138,8 @@ export default {
|
|
138
|
138
|
},
|
|
139
|
139
|
// model框显示
|
|
140
|
140
|
showDetail(row) {
|
|
141
|
|
- this.getDetail({ id: row.id });
|
|
|
141
|
+ // this.getDetail({ id: row.id });
|
|
|
142
|
+ this.logisticsFn({ id: row.id })
|
|
142
|
143
|
this.getvideoList({ caseId: row.id });
|
|
143
|
144
|
this.getCaseDetail({ id: row.id })
|
|
144
|
145
|
this.getCaseLog({caseAppliId :row.id})
|
|
|
@@ -156,11 +157,18 @@ export default {
|
|
156
|
157
|
})
|
|
157
|
158
|
},
|
|
158
|
159
|
/** 查询详情 */
|
|
159
|
|
- getDetail(parms) {
|
|
160
|
|
- adjudicationArchives(parms).then((res) => {
|
|
|
160
|
+ // getDetail(parms) {
|
|
|
161
|
+ // adjudicationArchives(parms).then((res) => {
|
|
|
162
|
+ // console.log(res,"PPPPPPPPPPPPPPPPPPPPPPPPP");
|
|
|
163
|
+ // this.detailform = res.data.logisticsInfoVOList;
|
|
|
164
|
+ // });
|
|
|
165
|
+ // },
|
|
|
166
|
+ // 查询快递单号信息 logistics
|
|
|
167
|
+ logisticsFn(params) {
|
|
|
168
|
+ logistics(params).then((res) => {
|
|
161
|
169
|
// console.log(res,"PPPPPPPPPPPPPPPPPPPPPPPPP");
|
|
162
|
|
- this.detailform = res.data.logisticsInfoVOList;
|
|
163
|
|
- });
|
|
|
170
|
+ this.detailform = res.data;
|
|
|
171
|
+ })
|
|
164
|
172
|
},
|
|
165
|
173
|
// 查询案件详情
|
|
166
|
174
|
getCaseDetail(params){
|
|
|
@@ -172,8 +180,8 @@ export default {
|
|
172
|
180
|
// 查看案件日志
|
|
173
|
181
|
getCaseLog(params){
|
|
174
|
182
|
caseLogRecordList(params).then(res=>{
|
|
175
|
|
- console.log(res,"LLLLLLLLLLL");
|
|
176
|
|
- this.caseLog = res.rows;
|
|
|
183
|
+ // console.log(res,"LLLLLLLLLLL");
|
|
|
184
|
+ this.caseLog = res.data;
|
|
177
|
185
|
})
|
|
178
|
186
|
}
|
|
179
|
187
|
},
|