refactor: 添加国外页面查询字段isDomestic
This commit is contained in:
@ -35,13 +35,19 @@
|
||||
import { page } from '~/api/upnew/index'
|
||||
import type { pageRes, pageReq } from '~/api/upnew/types'
|
||||
|
||||
const query = reactive<pageReq>({
|
||||
const query = reactive<
|
||||
pageReq & {
|
||||
isDomestic: number
|
||||
}
|
||||
>({
|
||||
pageNo: 1,
|
||||
pageSize: 10,
|
||||
projectType: '-1',
|
||||
editions: '-1',
|
||||
source: -1,
|
||||
type: 1,
|
||||
/**是否是国内: 1是 0否 */
|
||||
isDomestic: 1,
|
||||
})
|
||||
// const result = reactive<pageRes>({
|
||||
// list: [],
|
||||
|
||||
Reference in New Issue
Block a user