This commit is contained in:
liushuai
2020-03-26 20:09:08 +08:00
parent c35509fe94
commit d968be25f2
2 changed files with 234 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import request from '@/utils/request'
import state from '@/store'
import router from '@/router'
export function searchTable(check, partsName, check1, supplierNameValue, check2, start, end, pageCurrent, pageSize) {
return request({
url: '',
method: 'post',
data: {
UserID: state.state.user.id,
ModularID: router.currentRoute.path,
type: '1',
name: '采购管理_离线合同_采购件_查询数据',
param: '名称_check=' + check + '&名称=' + partsName + '&合同及供应商_check=' + check1 + '&合同及供应商=' + supplierNameValue + '&时间段_check=' + check2 + '&开始时间=' + start + '&结束时间=' + end,
Pagination: pageCurrent + '&' + pageSize
}
})
}