Compare commits

...

2 Commits

2 changed files with 4 additions and 3 deletions

View File

@@ -1,11 +1,11 @@
import request from '@/utils/request'
// 查询库存单据列表
export function listBill(query) {
export function listBill(data) {
return request({
url: '/wisdom/bill/list',
method: 'get',
params: query
method: 'POST',
data: data
})
}

View File

@@ -842,6 +842,7 @@ const total = ref(0); //单据
/** 查询库存单据主列表 */
function getList() {
loading.value = true;
queryParams.value.bizTypeList = [0, 3];
listBill(queryParams.value).then((response) => {
billList.value = response.rows;
total.value = response.total;