This commit is contained in:
王一嘉
2025-07-23 19:06:07 +08:00
parent 4a49650bfe
commit f5da17b9f9
3 changed files with 3 additions and 1 deletions

View File

@@ -30,6 +30,7 @@ const vo = reactive({
const {loading, pagination, initFetchData} = useTableQuery({
api: Api.system.myTeamList,
parameter: po,
uuid: true,
callback: (data) => {
Object.assign(vo, data);
}

View File

@@ -17,7 +17,7 @@ const tabs = [
];
const po = reactive({
type: 1,
type: 0,
is_read: 99,
keyword: null,
});

View File

@@ -25,6 +25,7 @@ const vo = reactive({
const {loading, pagination, initFetchData} = useTableQuery({
api: Api.system.getUserMoneyLog,
parameter: sumPo,
uuid: true,
callback: (data) => {
Object.assign(vo, data);
}