Commit 084d89fc44dfb6fc4f6f629ba97e0d1f847f09d2

Authored by ww
1 parent 1db8933e

fix: DEFECT-802 replace org tree fold button icon

@@ -2,7 +2,7 @@ @@ -2,7 +2,7 @@
2 <div class="organization-tree flex relative"> 2 <div class="organization-tree flex relative">
3 <div class="cursor-pointer flex py-4 fold-icon" :class="foldFlag ? 'absolute' : ''"> 3 <div class="cursor-pointer flex py-4 fold-icon" :class="foldFlag ? 'absolute' : ''">
4 <div @click="handleFold"> 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 </div> 6 </div>
7 </div> 7 </div>
8 <div 8 <div
@@ -29,7 +29,7 @@ @@ -29,7 +29,7 @@
29 import { onMounted, ref, unref } from 'vue'; 29 import { onMounted, ref, unref } from 'vue';
30 import { BasicTree, TreeItem } from '/@/components/Tree'; 30 import { BasicTree, TreeItem } from '/@/components/Tree';
31 import { getOrganizationList } from '/@/api/system/system'; 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 const emit = defineEmits(['select']); 34 const emit = defineEmits(['select']);
35 const treeData = ref<TreeItem[]>([]); 35 const treeData = ref<TreeItem[]>([]);