flx:修改机场工程视频顺序

This commit is contained in:
Rain_ 2025-12-29 11:34:57 +08:00
parent 41808c5f25
commit a872dbe0a2
2 changed files with 4 additions and 5 deletions

View File

@ -71,7 +71,7 @@ const store = GlobalStore();
const emit = defineEmits(["refresh"]);
let showDialog = ref(true);
let showDialog = ref(false);
let dialogTitle = ref("历史记录");
//
const closeDialog = () => {

View File

@ -125,8 +125,8 @@ let topText2 = ref([
]);
let topText = ref([
// { id: 1, title: "", isActive: true },
{ id: 2, title: "宣传视频", isActive: true },
{ id: 3, title: "效果图", isActive: false }
{ id: 3, title: "效果图", isActive: true },
{ id: 2, title: "宣传视频", isActive: false },
]);
const getVideoList = async () => {
let res: any = await selectLiveVideoListApi({
@ -290,11 +290,10 @@ defineExpose({
getQueryBySnData
})
onMounted(async () => {
if(COMPANY !== 'agjt') showVideo.value = 2
await getVideoList();
getQueryBySnData();
if(COMPANY != 'agjt'){
showVideo.value = 2;
showVideo.value = 3;
}
});
</script>