This commit is contained in:
Lemon
2023-07-07 13:29:36 +08:00
parent 753ed465f1
commit 583dbdbd8a
4 changed files with 26 additions and 8 deletions

View File

@@ -53,10 +53,10 @@ export function getMerchantList(query) {
}
// 财务管理页面获取运营商列表
export function getFinancialMerchantList(param) {
export function getFinancialMerchantList(data) {
return request({
url: '/pile/merchant/getFinancialMerchantList',
method: 'get',
params: param
method: 'post',
data: data
})
}

View File

@@ -244,7 +244,8 @@ export default {
// 获取运营商列表
getFinancialMerchantList() {
const params = {
pageNum:1,
pageSize:2
}
getFinancialMerchantList(params).then((response) => {
console.log("response", response)