Commit 1f19b567 by YunaiV

【缺陷修复】分销: 推广订单列表用户类型检索

parent 2efd0d69
......@@ -135,10 +135,9 @@ const getList = async () => {
loading.value = true
try {
// 处理全部的情况
const userLevel = queryParams.sourceUserLevel === 0 ? undefined : queryParams.sourceUserLevel
const data = await BrokerageRecordApi.getBrokerageRecordPage({
...queryParams,
sourceUserLevel: userLevel
sourceUserLevel: queryParams.sourceUserLevel === 0 ? undefined : queryParams.sourceUserLevel
})
list.value = data.list
total.value = data.total
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment