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 {proxy} = getCurrentInstance()
const queryParams = ref({ const queryParams = ref({
state: '2' CompanyId: '',
contractcode: '',
state: '',
userid: ''
}) })
const loading = ref(true) const loading = ref(true)
const total = ref(0) const total = ref(0)
const paging = ref({ const paging = ref({
pageNum: 1, pageNum: 1,
pageSize: 10, pageSize: 100,
isAsc: 'descending', isAsc: 'descending',
orderByColumn: 'adddate' orderByColumn: 'adddate'
}) })