Browse Source

FWHL-66 测试月计时

hella_chenfang
陈放 3 weeks ago
parent
commit
79f70aad24
  1. 13
      src/api/wms/customerDeliveryForecast/index.ts
  2. 4
      src/views/wms/basicDataManage/customerManage/customerDeliveryForecast/index.vue

13
src/api/wms/customerDeliveryForecast/index.ts

@ -119,6 +119,19 @@ export const getPageTableHead = async (params) => {
return await request.get({ url: `/wms/customer-delivery-forecast/queryPageTableHead`, params }) return await request.get({ url: `/wms/customer-delivery-forecast/queryPageTableHead`, params })
} }
// 查询发货预测主列表
export const getPageTableHeadToMonth = async (params) => {
params = getPageParams(params)
console.log('params',params)
return await request.get({ url: `/wms/customer-delivery-forecast/queryPageTableHeadToMonth`, params })
}
// 查询客户发货预测列表
export const getCustomerDeliveryForecastPageToMonth = async (params) => {
params = getPageParams(params)
return await request.get({ url: `/wms/customer-delivery-forecast/pageToMonth`, params })
}
// 查询版本号 // 查询版本号
export const queryVersion = async (params) => { export const queryVersion = async (params) => {
return await request.get({ url: `/wms/customer-delivery-forecast/queryVersion`, params }) return await request.get({ url: `/wms/customer-delivery-forecast/queryVersion`, params })

4
src/views/wms/basicDataManage/customerManage/customerDeliveryForecast/index.vue

@ -95,7 +95,7 @@ const updataTableColumns = (val) => {
} }
const { tableObject:tableObjectHead, tableMethods:tableMethodsHead } = useTable({ const { tableObject:tableObjectHead, tableMethods:tableMethodsHead } = useTable({
getListApi: CustomerDeliveryForecastApi.getPageTableHead // getListApi: CustomerDeliveryForecastApi.getPageTableHeadToMonth //
}) })
// //
@ -144,7 +144,7 @@ const searchClick = async (data)=>{
setSearchParams(data) setSearchParams(data)
} }
const { tableObject, tableMethods } = useTable({ const { tableObject, tableMethods } = useTable({
getListApi: CustomerDeliveryForecastApi.getCustomerDeliveryForecastPage // getListApi: CustomerDeliveryForecastApi.getCustomerDeliveryForecastPageToMonth //
}) })
// //

Loading…
Cancel
Save