feat: 投放账户管理
This commit is contained in:
@ -92,7 +92,7 @@
|
||||
size="mini"
|
||||
show-total
|
||||
show-jumper
|
||||
show-page-size
|
||||
:show-page-size="false"
|
||||
:current="pageInfo.page"
|
||||
:page-size="pageInfo.pageSize"
|
||||
@change="onPageChange"
|
||||
@ -142,8 +142,8 @@ const batchGroupModalRef = ref(null);
|
||||
const tipStatus = ref(2);
|
||||
const pageInfo = reactive({
|
||||
page: 1,
|
||||
pageSize: 20,
|
||||
total: 100,
|
||||
pageSize: 8,
|
||||
total: 0,
|
||||
});
|
||||
const query = ref(cloneDeep(INITIAL_QUERY));
|
||||
const dataSource = ref([]);
|
||||
@ -169,8 +169,8 @@ const getData = async () => {
|
||||
// ...query.value,
|
||||
// });
|
||||
// if (code === 200) {
|
||||
// dataSource.value = data.data;
|
||||
// pageInfo.total = total;
|
||||
// dataSource.value = data?.data ?? [];
|
||||
// pageInfo.total = data?.total ?? 0;
|
||||
// }
|
||||
dataSource.value = [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user