fix: 修改新增用户商品的配置项逻辑
Build and Deploy Vue3 / build (push) Successful in 4m9s
Build and Deploy Vue3 / deploy (push) Successful in 1m3s

This commit is contained in:
2026-04-06 18:44:11 +08:00
parent c07e09c151
commit f0e89695f4
36 changed files with 2078 additions and 190 deletions
+2 -2
View File
@@ -866,7 +866,7 @@ const handleGroupManage = () => {
}
const fetchUserGroupList = async () => {
const res = await getUserGroupList({ page: 1, count: 100 })
const res = await getUserGroupList({ page: 1, count: 10 })
if (res.data.code == 200) {
userGroupList.value = res.data.data.data
}
@@ -1276,7 +1276,7 @@ const handleTokenManage = async () => {
const fetchAdminGroupList = async () => {
adminGroupLoading.value = true
try {
const res = await getAdminGroupList({ params: { page: 1, count: 100 } })
const res = await getAdminGroupList({ params: { page: 1, count: 10 } })
if (res.data.code === 200) {
adminGroupList.value = res.data.data?.data || res.data.data || []
}