index.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <script setup lang="ts">
  2. import { ref, computed } from "vue";
  3. import { clone } from "@pureadmin/utils";
  4. import { transformI18n } from "@/plugins/i18n";
  5. import { TreeSelect } from "@pureadmin/components";
  6. import { useMultiTagsStoreHook } from "@/store/modules/multiTags";
  7. import { usePermissionStoreHook } from "@/store/modules/permission";
  8. import {
  9. deleteChildren,
  10. getNodeByUniqueId,
  11. appendFieldByUniqueId
  12. } from "@/utils/tree";
  13. import { useDetail } from "./hooks";
  14. defineOptions({
  15. name: "Tabs"
  16. });
  17. const { toDetail, router } = useDetail();
  18. const menusTree = clone(usePermissionStoreHook().wholeMenus, true);
  19. const treeData = computed(() => {
  20. return appendFieldByUniqueId(deleteChildren(menusTree), 0, {
  21. disabled: true
  22. });
  23. });
  24. const value = ref<string[]>([]);
  25. const multiTags = computed(() => {
  26. return useMultiTagsStoreHook()?.multiTags;
  27. });
  28. function onCloseTags() {
  29. value.value.forEach(uniqueId => {
  30. const currentPath =
  31. getNodeByUniqueId(treeData.value, uniqueId).redirect ??
  32. getNodeByUniqueId(treeData.value, uniqueId).path;
  33. useMultiTagsStoreHook().handleTags("splice", currentPath);
  34. if (currentPath === "/tabs/index")
  35. router.push({
  36. path: multiTags.value[(multiTags as any).value.length - 1].path
  37. });
  38. });
  39. }
  40. </script>
  41. <template>
  42. <el-card>
  43. <template #header>
  44. <div>标签页复用,超出限制自动关闭(使用场景: 动态路由)</div>
  45. </template>
  46. <div class="flex flex-wrap items-center">
  47. <p>query传参模式:</p>
  48. <el-button
  49. class="m-2"
  50. v-for="index in 6"
  51. :key="index"
  52. @click="toDetail(index, 'query')"
  53. >
  54. 打开{{ index }}详情页
  55. </el-button>
  56. </div>
  57. <el-divider />
  58. <div class="flex flex-wrap items-center">
  59. <p>params传参模式:</p>
  60. <el-button
  61. class="m-2"
  62. v-for="index in 6"
  63. :key="index"
  64. @click="toDetail(index, 'params')"
  65. >
  66. 打开{{ index }}详情页
  67. </el-button>
  68. </div>
  69. <el-divider />
  70. <TreeSelect
  71. class="w-[300px]"
  72. v-model:value="value"
  73. show-search
  74. :dropdown-style="{ maxHeight: '400px', overflow: 'auto' }"
  75. placeholder="请选择要关闭的标签"
  76. :fieldNames="{
  77. children: 'children',
  78. key: 'uniqueId',
  79. value: 'uniqueId'
  80. }"
  81. allow-clear
  82. multiple
  83. tree-default-expand-all
  84. :tree-data="treeData"
  85. >
  86. <template #tagRender="{ closable, onClose, option }">
  87. <el-tag class="mr-[3px]" :closable="closable" @close="onClose">
  88. {{ transformI18n(option.meta.title) }}
  89. </el-tag>
  90. </template>
  91. <template #title="{ data }">
  92. <span>{{ transformI18n(data.meta.title) }}</span>
  93. </template>
  94. </TreeSelect>
  95. <el-button class="m-2" @click="onCloseTags">关闭标签</el-button>
  96. <el-divider />
  97. <el-button @click="$router.push({ name: 'Menu1-2-2' })">
  98. 跳转页内菜单(传name对象,优先推荐)
  99. </el-button>
  100. <el-button @click="$router.push('/nested/menu1/menu1-2/menu1-2-2')">
  101. 跳转页内菜单(直接传要跳转的路径)
  102. </el-button>
  103. <el-button
  104. @click="$router.push({ path: '/nested/menu1/menu1-2/menu1-2-2' })"
  105. >
  106. 跳转页内菜单(传path对象)
  107. </el-button>
  108. <el-divider />
  109. <el-button
  110. @click="
  111. $router.push({
  112. name: 'Menu1-2-2',
  113. query: { text: '传name对象,优先推荐' }
  114. })
  115. "
  116. >
  117. 携参跳转页内菜单(传name对象,优先推荐)
  118. </el-button>
  119. <el-button
  120. @click="
  121. $router.push({
  122. path: '/nested/menu1/menu1-2/menu1-2-2',
  123. query: { text: '传path对象' }
  124. })
  125. "
  126. >
  127. 携参跳转页内菜单(传path对象)
  128. </el-button>
  129. <el-link
  130. class="ml-4"
  131. href="https://router.vuejs.org/zh/guide/essentials/navigation.html#%E5%AF%BC%E8%88%AA%E5%88%B0%E4%B8%8D%E5%90%8C%E7%9A%84%E4%BD%8D%E7%BD%AE"
  132. target="_blank"
  133. >
  134. 点击查看更多跳转方式
  135. </el-link>
  136. <el-divider />
  137. <el-button @click="$router.push({ name: 'Empty' })">
  138. 跳转无Layout的空白页面
  139. </el-button>
  140. </el-card>
  141. </template>