修改点击获取回应前判断登录

This commit is contained in:
A1300399510
2024-09-30 17:31:14 +08:00
parent 26621625ba
commit d47d85ae1c
27 changed files with 185 additions and 181 deletions

View File

@@ -601,6 +601,10 @@ let respondDetail = ref({}) // 已回应列表
// 打开回应弹窗列表
const openPopList = () => {
if (isNeedLogin.value) {
goLogin()
return
}
respondPopListState.value = true
getRespondDetail()
}