修复存酒会员选择

This commit is contained in:
gyq
2026-03-26 09:35:40 +08:00
parent 2a47effa45
commit e058aaacf7
4 changed files with 6 additions and 4 deletions

View File

@@ -129,7 +129,7 @@ function myDialogRefqsevent(item) {
myDialogRefqs.value.open()
}
async function getshopUser(params) {
const res = await API.getshopUser({})
const res = await API.getshopUser({ page: 1, size: 999, ...params })
datas.options = res.records
}
async function getList(data = {}) {

View File

@@ -19,10 +19,11 @@ const AuthAPI = {
});
},
// 获取用户店铺列表
getshopUser() {
getshopUser(params: any) {
return request<any, Responseres>({
url: `/account/admin/shopUser`,
method: "get",
params,
});
},
// 新增

View File

@@ -108,7 +108,7 @@ async function getList(data = {}) {
datas.pagingConfig.pageNumber = res.pageNumber
}
async function getshopUser(params) {
const res = await API.getshopUser({})
const res = await API.getshopUser({ page: 1, size: 999, ...params })
datas.options = res.records
}
async function getstorageGood() {

View File

@@ -18,10 +18,11 @@ const AuthAPI = {
});
},
// 获取用户店铺列表
getshopUser() {
getshopUser(params: any) {
return request<any, Responseres>({
url: `/account/admin/shopUser`,
method: "get",
params,
});
},
// 获取酒品列表