微信群bug
This commit is contained in:
5
.vscode/settings.json
vendored
Normal file
5
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"i18n-ally.localesPaths": [
|
||||||
|
"src/locales"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -88,7 +88,7 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import * as wxgroupApi from '@/api/clue/clueRemark'
|
import * as wxgroupApi from '@/api/clue/clueRemark'
|
||||||
import { getSimpleUserList as getUserOption } from '@/api/system/user'
|
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 { t } = useI18n() // 国际化
|
||||||
const message = useMessage() // 消息弹窗
|
const message = useMessage() // 消息弹窗
|
||||||
@@ -209,9 +209,11 @@ function submitForm() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function getOptions() {
|
function getOptions() {
|
||||||
|
refreshWxGroupList().then(() => {
|
||||||
getWxGroupList().then((resp) => {
|
getWxGroupList().then((resp) => {
|
||||||
groupOptions.value = resp || []
|
groupOptions.value = resp || []
|
||||||
})
|
})
|
||||||
|
})
|
||||||
// 获取用户选项
|
// 获取用户选项
|
||||||
getUserOption().then((data) => {
|
getUserOption().then((data) => {
|
||||||
userOptions.value = data
|
userOptions.value = data
|
||||||
|
|||||||
Reference in New Issue
Block a user