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