微信群bug

This commit is contained in:
zcx
2026-02-26 14:39:42 +08:00
parent b33e1e23b2
commit 38bb85b090
2 changed files with 10 additions and 3 deletions

View File

@@ -88,7 +88,7 @@
<script setup>
import * as wxgroupApi from '@/api/clue/clueRemark'
import { getSimpleUserList as getUserOption } from '@/api/system/user'
import { getWxGroupList } from '@/api/okr/meeting'
import { getWxGroupList, refreshWxGroupList } from '@/api/okr/meeting'
const { t } = useI18n() // 国际化
const message = useMessage() // 消息弹窗
@@ -209,8 +209,10 @@ function submitForm() {
}
function getOptions() {
getWxGroupList().then((resp) => {
groupOptions.value = resp || []
refreshWxGroupList().then(() => {
getWxGroupList().then((resp) => {
groupOptions.value = resp || []
})
})
// 获取用户选项
getUserOption().then((data) => {