This commit is contained in:
admin-lmm
2023-07-07 14:39:16 +08:00
parent d95a9f10be
commit ec2d6ff7cd
4 changed files with 200 additions and 140 deletions

View File

@@ -150,10 +150,10 @@
prop="address"
label="操作"
align="center">
<template slot-scope="scope">
<template slot-scope="scope">
<!-- :to="'/merchant/detail/index/' + scope.row.id" -->
<router-link
to="/financial/merchant/merchantVirtual"
:to="{path:'/financial/merchant/merchantVirtual', query: {merchantId: scope.row.id}} "
class="link-type"
>
<span>虚拟财务</span>
@@ -197,33 +197,8 @@ export default {
total: 0,
queryParams: {
pageNum: 1,
pageSize: 10,
merchantName: null,
address: null,
status: null,
organizationCode: null,
managerName: null,
managerPhone: null,
servicePhone: null,
logoUrl: null,
},
tableData: [{
date: '2016-05-02',
name: '王小虎',
address: '上海市普陀区金沙江路 1518 弄'
}, {
date: '2016-05-04',
name: '王小虎',
address: '上海市普陀区金沙江路 1517 弄'
}, {
date: '2016-05-01',
name: '王小虎',
address: '上海市普陀区金沙江路 1519 弄'
}, {
date: '2016-05-03',
name: '王小虎',
address: '上海市普陀区金沙江路 1516 弄'
}]
pageSize: 10
}
};
},
created() {
@@ -243,14 +218,8 @@ export default {
},
// 获取运营商列表
getFinancialMerchantList() {
const params = {
pageNum:1,
pageSize:2
}
getFinancialMerchantList(params).then((response) => {
console.log("response", response)
getFinancialMerchantList(this.queryParams).then((response) => {
this.merchantList = response.rows;
console.log("response.total", response.total)
this.total = response.total;
})
},