|
@@ -90,10 +90,9 @@
|
|
ref="videoPlayer"
|
|
ref="videoPlayer"
|
|
controls
|
|
controls
|
|
style="width: 100%; height: 100%"
|
|
style="width: 100%; height: 100%"
|
|
- :controls="true"
|
|
|
|
|
|
+ autoplay
|
|
|
|
+ :src="videoList[viewKey]"
|
|
>
|
|
>
|
|
- <source :src="videoList[viewKey]" type="video/mp4" />
|
|
|
|
- 您的浏览器不支持视频标签。
|
|
|
|
</video>
|
|
</video>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -107,17 +106,18 @@ export default {
|
|
components: { tableList },
|
|
components: { tableList },
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
- viewKey: '1',
|
|
|
|
|
|
+ viewKey: 0,
|
|
viewOptions: [
|
|
viewOptions: [
|
|
{
|
|
{
|
|
- value: '0',
|
|
|
|
|
|
+ value: 0,
|
|
label: '总视角',
|
|
label: '总视角',
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- value: '1',
|
|
|
|
|
|
+ value: 1,
|
|
label: '多仿真视角',
|
|
label: '多仿真视角',
|
|
},
|
|
},
|
|
],
|
|
],
|
|
|
|
+ playUrl:'', // 当前播放地址
|
|
videoList: [], // 视频地址列表
|
|
videoList: [], // 视频地址列表
|
|
describe: '', // 评价描述
|
|
describe: '', // 评价描述
|
|
columns: [
|
|
columns: [
|
|
@@ -166,6 +166,7 @@ export default {
|
|
status: res.info.outOfPavementDetail[0].abnormalTimeDescription,
|
|
status: res.info.outOfPavementDetail[0].abnormalTimeDescription,
|
|
},
|
|
},
|
|
]
|
|
]
|
|
|
|
+ this.playUrl = res.info.projectResultOverallUrl,
|
|
this.videoList = [
|
|
this.videoList = [
|
|
res.info.projectResultOverallUrl,
|
|
res.info.projectResultOverallUrl,
|
|
res.info.projectResultSimulationUrl,
|
|
res.info.projectResultSimulationUrl,
|