pc端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 lines
602 B

<!-- 域资源管理 -->
<template>
<div class="text-center task-card-plugin">
<a-button type="primary" style="width: 250px" @click="openSourceManage">域资源管理</a-button>
</div>
</template>
<script setup>
import { useStore } from 'vuex';
const store = useStore();
function openSourceManage() {
store.commit('task/setTaskDetailParams', ''); // 设置详情页参数
store.commit('task/setTaskDetailUrl', ''); // 设置详情页链接
store.commit('task/setTaskDetailShow', 'exarresources'); // 设置内置组件关键字(根据关键字判断显示的详情页)
}
</script>