Commit 084d89fc44dfb6fc4f6f629ba97e0d1f847f09d2

Authored by ww
1 parent 1db8933e

fix: DEFECT-802 replace org tree fold button icon

... ... @@ -2,7 +2,7 @@
2 2 <div class="organization-tree flex relative">
3 3 <div class="cursor-pointer flex py-4 fold-icon" :class="foldFlag ? 'absolute' : ''">
4 4 <div @click="handleFold">
5   - <DoubleRightOutlined :class="[foldFlag ? '' : 'rotate-180']" class="text-xl transform" />
  5 + <CaretRightOutlined :class="[foldFlag ? '' : 'rotate-180']" class="text-xl transform" />
6 6 </div>
7 7 </div>
8 8 <div
... ... @@ -29,7 +29,7 @@
29 29 import { onMounted, ref, unref } from 'vue';
30 30 import { BasicTree, TreeItem } from '/@/components/Tree';
31 31 import { getOrganizationList } from '/@/api/system/system';
32   - import { DoubleRightOutlined } from '@ant-design/icons-vue';
  32 + import { CaretRightOutlined } from '@ant-design/icons-vue';
33 33
34 34 const emit = defineEmits(['select']);
35 35 const treeData = ref<TreeItem[]>([]);
... ...