feat(work): 更新财务审批页面查询参数和分页设置

This commit is contained in:
lonewolfyx 2026-02-09 14:13:45 +08:00
parent 4a532d6c0d
commit 5ad39b169e

View File

@ -36,13 +36,16 @@ import {financeList} from "../../../api/Salemain";
const {proxy} = getCurrentInstance()
const queryParams = ref({
state: '2'
CompanyId: '',
contractcode: '',
state: '',
userid: ''
})
const loading = ref(true)
const total = ref(0)
const paging = ref({
pageNum: 1,
pageSize: 10,
pageSize: 100,
isAsc: 'descending',
orderByColumn: 'adddate'
})