|
@@ -61,7 +61,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: '0', status: '1' };
|
|
|
+ let info = { limit: limit, skip: skip, ...searchForm.value, is_use: 'Y', status: '1' };
|
|
|
if (info.limit == undefined) info.limit = 8;
|
|
|
const res: IQueryResult = await techolsupport.query(info);
|
|
|
list.value = res.data as any[];
|