订单新增分页
This commit is contained in:
@@ -290,9 +290,10 @@ export function queryOrgan() {
|
||||
* @param {*} data
|
||||
* @returns
|
||||
*/
|
||||
export function queryOrder() {
|
||||
export function queryOrder(data) {
|
||||
return request({
|
||||
method: 'post',
|
||||
url: '/open/queryOrder'
|
||||
url: '/open/queryOrder',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
@@ -118,10 +118,12 @@ function paginationChange() {
|
||||
getUserMarkAjax()
|
||||
}
|
||||
|
||||
// 获取创客审核列表
|
||||
async function getUserMarkAjax() {
|
||||
try {
|
||||
const res = await queryOrder()
|
||||
const res = await queryOrder({
|
||||
page: tableOptions.pageNum,
|
||||
pageSize: tableOptions.pageSize
|
||||
})
|
||||
tableOptions.loading = false
|
||||
tableOptions.list = res.list
|
||||
tableOptions.total = res.total
|
||||
|
||||
Reference in New Issue
Block a user