|
@@ -37,7 +37,7 @@ export default {
|
|
|
async useQuery(params, page) {
|
|
|
try {
|
|
|
this.loading = true;
|
|
|
- let { code, rows, total } = await LIST({ ...params, ...page });
|
|
|
+ let { code, rows, total } = await LIST(params, page);
|
|
|
if (code === 200) {
|
|
|
this.tableData = rows;
|
|
|
this.page.total = total;
|