+
diff --git a/src/static/image/chatList/downDep.png b/src/static/image/chatList/downDep.png
new file mode 100644
index 0000000..70ea2c9
Binary files /dev/null and b/src/static/image/chatList/downDep.png differ
diff --git a/src/static/image/chatList/downDepDis.png b/src/static/image/chatList/downDepDis.png
new file mode 100644
index 0000000..fe6a0cd
Binary files /dev/null and b/src/static/image/chatList/downDepDis.png differ
diff --git a/src/static/image/chatList/zu6030@2x.png b/src/static/image/chatList/zu6030@2x.png
deleted file mode 100644
index 5ad34ac..0000000
Binary files a/src/static/image/chatList/zu6030@2x.png and /dev/null differ
diff --git a/src/static/image/chatList/zu6033@2x.png b/src/static/image/chatList/zu6033@2x.png
new file mode 100644
index 0000000..0e74192
Binary files /dev/null and b/src/static/image/chatList/zu6033@2x.png differ
diff --git a/src/static/image/checkBox/circle@2x.png b/src/static/image/checkBox/circle@2x.png
new file mode 100644
index 0000000..96614ac
Binary files /dev/null and b/src/static/image/checkBox/circle@2x.png differ
diff --git a/src/static/image/checkBox/zu6039@2x.png b/src/static/image/checkBox/zu6039@2x.png
new file mode 100644
index 0000000..31c93bf
Binary files /dev/null and b/src/static/image/checkBox/zu6039@2x.png differ
diff --git a/src/static/image/checkBox/zu6040@2x.png b/src/static/image/checkBox/zu6040@2x.png
new file mode 100644
index 0000000..ddc9191
Binary files /dev/null and b/src/static/image/checkBox/zu6040@2x.png differ
diff --git a/src/store/auth/index.js b/src/store/auth/index.js
index 47da20d..a1333ce 100644
--- a/src/store/auth/index.js
+++ b/src/store/auth/index.js
@@ -4,7 +4,7 @@ import {uniStorage} from "@/utils/uniStorage.js"
import {ref} from 'vue'
export const useAuth = createGlobalState(() => {
// const token = useStorage('token', '', uniStorage)
- const token = ref('79b5c732d96d2b27a48a99dfd4a5566c43aaa5796242e854ebe3ffc198d6876b9628e7b764d9af65ab5dbb2d517ced88170491b74b048c0ba827c0d3741462cb89dc59ed46653a449af837a8262941ca1430937103230a1e32a1715f569f3efdbe6f8cb8b7b8642bd679668081b9b08f693d1b5be6002d936ec51e1e3e0c4927de9e32ac99a109b326e5d2bda27ec87624bb416ec70d2a95a2e190feeba9f0d6bae8571b3dfe89c824712344759a8f2bff9d70747c52525cf6a5614f9c770bca461a9b9c247b6dca97bcf83bbaf99bb726752c4fe1e9a4aa7de5c4cf3e88a3e480801280d45cdc124f9d8221105d8529c7c268c1251c3477bff5c051043bf980d1ae32bb67035d540ba9325759be69093c01497a2ece6c54d7ba2c2ccd07bb67242ccd7b216049b2afefd767f7269fa45ebb81dff8bec485f539e91611a2908af4407a64e67e6a1cb533d30ae71e630f')
+ const token = ref('79b5c732d96d2b27a48a99dfd4a5566c43aaa5796242e854ebe3ffc198d6876b9628e7b764d9af65ab5dbb2d517ced88170491b74b048c0ba827c0d3741462cb89dc59ed46653a449af837a8262941ca1430937103230a1e32a1715f569f3efdbe6f8cb8b7b8642bd679668081b9b08f693d1b5be6002d936ec51e1e3e0c4927de9e32ac99a109b326e5d2bda27ec87624bb416ec70d2a95a2e190feeba9f0d6bae8571b3dfe89c824712344759a8f2bff9d70747c52525cf6a5614f9c770bca461a9b9c247b6dca97bcf83bbaf99bb726752c4fe1e9a4aa7de5c4cf3e88a3e480801280d45cdc124f9d8221105d8529c7c268c1251c3477bff5c051043bf980aeac85434ccb1cebe1e9f4e069aeab4e7218dd08b25d2c7a248688eacf5337b097fe8e841ea8fa3ac1563adc6d41200a4ab1d210a428141915919cd9d74796e80000b9d024850015b8f7defce2919e15')
const refreshToken = useStorage('refreshToken', '', uniStorage)
const userInfo = useStorage('userInfo', {}, uniStorage)
const leaderList = useStorage('leaderList', [], uniStorage)
diff --git a/src/store/groupType/index.js b/src/store/groupType/index.js
new file mode 100644
index 0000000..54e344a
--- /dev/null
+++ b/src/store/groupType/index.js
@@ -0,0 +1,34 @@
+import { defineStore } from 'pinia'
+import { useDialogueStore } from '@/store'
+import lodash from 'lodash'
+
+import {ref} from 'vue'
+import {createGlobalState,useStorage} from '@vueuse/core'
+import {uniStorage} from "@/utils/uniStorage.js"
+import {departmentV2TreeMy} from '@/api/deps/index.js'
+
+export const useGroupTypeStore = createGlobalState(() => {
+ const depTreeMyList = ref([])
+ const crumbs = ref([])
+ const crumbsIndex = ref(0)
+ const onChoosenDeps = ref([])
+ // const checkedKeys = ref([])
+ // const halfCheckedKeys = ref([])
+
+ const getDepsTreeMy= async()=>{
+ const res = await departmentV2TreeMy()
+ if(res.status===0){
+ depTreeMyList.value = res.data.nodes
+ }
+ }
+
+
+
+ return {
+ depTreeMyList,
+ getDepsTreeMy,
+ crumbs,
+ crumbsIndex,
+ onChoosenDeps
+ }
+})
diff --git a/src/uni_modules/tmui/components/tm-popover/tm-popover.vue b/src/uni_modules/tmui/components/tm-popover/tm-popover.vue
index 7c26d12..ebb36c1 100644
--- a/src/uni_modules/tmui/components/tm-popover/tm-popover.vue
+++ b/src/uni_modules/tmui/components/tm-popover/tm-popover.vue
@@ -32,7 +32,8 @@
:class="[
isNvue ? 'fixed' : 'absolute',
props.position == 'tc' || props.position == 'tl' || props.position == 'tr' ? 'popover-tcc' : '',
- props.position == 'bc' || props.position == 'bl' || props.position == 'br' ? 'popover-bcc' : ''
+ props.position == 'bc' || props.position == 'bl' || props.position == 'br' ? 'popover-bcc' : '',
+
]"
:style="[
isNvue && props.position == 'tc'