|
|
@@ -8,19 +8,19 @@
|
|
8
|
8
|
<div class="noData" v-if="noData">暂无数据!</div>
|
|
9
|
9
|
<el-tabs v-model="activeName" @tab-click="handleClick">
|
|
10
|
10
|
<el-tab-pane label="案件信息" name="first">
|
|
11
|
|
- <caseInfo :caseApplicationObj="caseApplicationObj"></caseInfo>
|
|
|
11
|
+ <caseInfo :caseApplicationObj="caseDetail"></caseInfo>
|
|
12
|
12
|
</el-tab-pane>
|
|
13
|
13
|
<el-tab-pane label="案件日志" name="second">
|
|
14
|
|
- <caselogInfo :caselogDataArr="caselogDataArr"></caselogInfo>
|
|
|
14
|
+ <caselogInfo :caselogDataArr="caseLog"></caselogInfo>
|
|
15
|
15
|
</el-tab-pane>
|
|
16
|
16
|
<el-tab-pane label="快递信息" name="third">
|
|
17
|
|
- <expressDeliveryInfo :deliveryDataArr="deliveryDataArr"></expressDeliveryInfo>
|
|
|
17
|
+ <expressDeliveryInfo :deliveryDataArr="detailform"></expressDeliveryInfo>
|
|
18
|
18
|
</el-tab-pane>
|
|
19
|
|
- <el-tab-pane label="案件视频" name="fourth">
|
|
|
19
|
+ <!-- <el-tab-pane label="案件视频" name="fourth"> -->
|
|
20
|
20
|
<!-- <div @click="getVideo">chakanshipin</div> -->
|
|
21
|
|
- <el-empty description="暂无视频" v-if="!videoFlag"></el-empty>
|
|
|
21
|
+ <!-- <el-empty description="暂无视频" v-if="!videoFlag"></el-empty>
|
|
22
|
22
|
<video style="background-color: #181717;width: 400px;height: 200px;margin: 30px;" v-if="videoFlag" :src="headPath + item.annexPath" controls="controls" v-for="(item,index) in videoUrl" :key="index"></video>
|
|
23
|
|
- </el-tab-pane>
|
|
|
23
|
+ </el-tab-pane> -->
|
|
24
|
24
|
</el-tabs>
|
|
25
|
25
|
</div>
|
|
26
|
26
|
<div slot="footer" class="dialog-footer">
|
|
|
@@ -35,7 +35,7 @@ import caseInfo from "./caseInfo.vue";
|
|
35
|
35
|
import caselogInfo from "./caselogInfo.vue";
|
|
36
|
36
|
import expressDeliveryInfo from "./expressDeliveryInfo.vue";
|
|
37
|
37
|
export default {
|
|
38
|
|
- props: ["showarchiveDetails", "detailform", "flagLoading", "videoList"],
|
|
|
38
|
+ props: ["showarchiveDetails", "detailform", "flagLoading", "videoList","caseDetail","caseLog"],
|
|
39
|
39
|
components: {
|
|
40
|
40
|
caseInfo,
|
|
41
|
41
|
caselogInfo,
|
|
|
@@ -49,17 +49,17 @@ export default {
|
|
49
|
49
|
deliveryDataArr: [], //快递信息
|
|
50
|
50
|
noData: false,
|
|
51
|
51
|
videoUrl:[],
|
|
52
|
|
- headPath:"",
|
|
|
52
|
+ headPath:window.location.origin + "/API",
|
|
53
|
53
|
videoFlag:false
|
|
54
|
54
|
};
|
|
55
|
55
|
},
|
|
56
|
56
|
watch: {
|
|
57
|
|
- detailform(newValue) {
|
|
58
|
|
- this.headPath = window.location.origin + "/API";
|
|
|
57
|
+ showarchiveDetails(newValue) {
|
|
|
58
|
+ // this.headPath = ;
|
|
59
|
59
|
if (newValue) {
|
|
60
|
|
- this.caseApplicationObj = this.detailform.caseApplication;
|
|
61
|
|
- this.caselogDataArr = this.detailform.caseLogRecordList;
|
|
62
|
|
- this.deliveryDataArr = this.detailform.logisticsInfoVOList;
|
|
|
60
|
+ // this.caseApplicationObj = this.detailform.caseApplication;
|
|
|
61
|
+ // this.caselogDataArr = this.detailform.caseLogRecordList;
|
|
|
62
|
+ // this.deliveryDataArr = this.detailform.logisticsInfoVOList;
|
|
63
|
63
|
}
|
|
64
|
64
|
},
|
|
65
|
65
|
},
|