|
@@ -93,7 +93,7 @@ onMounted(async () => {
|
|
|
// 查询
|
|
|
const search = async (e: { skip: number; limit: number }) => {
|
|
|
const { skip, limit } = e;
|
|
|
- let info = { limit: limit, skip: skip, ...searchForm.value, is_use: 'Y' };
|
|
|
+ let info = { limit: limit, skip: skip, ...searchForm.value };
|
|
|
const res: IQueryResult = await relevantdownload.query(info);
|
|
|
tableData.value = res.data as any[];
|
|
|
total.value = res.total;
|