Sfoglia il codice sorgente

stash

tags/v1.0.0^2
zhangtao 2 anni fa
parent
commit
0ba0f82bb3
4 ha cambiato i file con 9 aggiunte e 8 eliminazioni
  1. +0
    -1
      src/views/question-manage/question-list/components/MapDrawer.vue
  2. +6
    -5
      src/views/task-manage/all-task/components/DemandDrawer.vue
  3. +2
    -2
      src/views/task-manage/all-task/tools/table.js
  4. +1
    -0
      src/views/task-manage/question/components/PositionDrawer.vue

+ 0
- 1
src/views/question-manage/question-list/components/MapDrawer.vue Vedi File

@@ -30,7 +30,6 @@ export default defineComponent({
},
setup(props, { emit }) {
const data = reactive({

})

/* 获取抽屉的信息 */

+ 6
- 5
src/views/task-manage/all-task/components/DemandDrawer.vue Vedi File

@@ -32,7 +32,8 @@
:class="videoShow == 'back' ? 'video_show' : 'video_hidden'"
>
<VideoPlayer :ref="videoRef" :options="getVideoOptions" @time-update="handleOriginTime" @video-status="handleOriginStatus" />
<VideoPlayer :ref="aiVideoRef" :options="getVideoLiveOptions" @time-update="handleAiTime" @video-status="(data)=>videoStatus.aiStatus = data.status" />
<VideoPlayer :ref="aiVideoRef" :options="getVideoAiOptions" @time-update="handleAiTime" @video-status="(data)=>videoStatus.aiStatus = data.status" />

</div>
</div>
</div>
@@ -95,8 +96,8 @@ export default defineComponent({
disdance: null,
animating: null,
detailData: {
videoUrl: '',
aiVideoUrl: ''
videoUrl: 'http://vod.play.t-aaron.com/228e844c4d18476b82627a54ccf7f4ec/1796b49c9df546ceabe30cda01ebb792-59f1f8c925e0817f19545b7d28f4eea9-fd.mp4',
aiVideoUrl: 'http://vod.play.t-aaron.com/228e844c4d18476b82627a54ccf7f4ec/1796b49c9df546ceabe30cda01ebb792-59f1f8c925e0817f19545b7d28f4eea9-fd.mp4'
},
videoShow: 'back', // 视频展示开关
videoInfo: {
@@ -132,7 +133,7 @@ export default defineComponent({
}
})
/* 获取AI视频地址 */
const getVideoLiveOptions = computed(() => {
const getVideoAiOptions = computed(() => {
return {
id: 'palyer-ai-on',
width: '400px',
@@ -287,7 +288,7 @@ export default defineComponent({
handleOriginTime,
handleAiTime,
getVideoOptions,
getVideoLiveOptions,
getVideoAiOptions,
handleDrawerColse
}
}

+ 2
- 2
src/views/task-manage/all-task/tools/table.js Vedi File

@@ -193,8 +193,8 @@ const data = reactive({
text: true,
onClick: handleTaskLive.bind(null, row)
},
auth: 'basic_list',
show: row.status === 2
auth: 'basic_list'
// show: row.status === 2
},
{
label: '轨迹',

+ 1
- 0
src/views/task-manage/question/components/PositionDrawer.vue Vedi File

@@ -30,6 +30,7 @@ export default defineComponent({
},
setup(props, { emit }) {
const data = reactive({
flag: props.visible,
problemList: [],
positionType: 'handle'
})

Loading…
Annulla
Salva