更新下载中心、交叉分析bug
This commit is contained in:
@@ -107,8 +107,7 @@
|
||||
</div>
|
||||
</a-modal>
|
||||
<!-- 下载中心 -->
|
||||
<DownloadCenter v-model:visible="downloadVisible"
|
||||
v-if="downloadVisible"></DownloadCenter>
|
||||
<DownloadCenter v-model:visible="downloadVisible" v-if="downloadVisible"></DownloadCenter>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
@@ -314,12 +313,15 @@ const clickEntrance = () => {
|
||||
};
|
||||
const groupInfo = ref(null);
|
||||
|
||||
const downloadVisible = ref(false);
|
||||
const downloadVisible = computed(() => {
|
||||
return store.state.downloadCenter.isShow;
|
||||
});
|
||||
// 下载中心
|
||||
const toDownload = () => {
|
||||
console.log("下载中心");
|
||||
store.dispatch('downloadCenter/changeCenterUrl', route.path)
|
||||
downloadVisible.value = true
|
||||
// downloadVisible.value = true
|
||||
store.dispatch('downloadCenter/changeCenterShow',true)
|
||||
// router.push({
|
||||
// path: "/downloadCenter",
|
||||
// query: { path: route.path, sn },
|
||||
|
||||
Reference in New Issue
Block a user