YY před 2 roky
rodič
revize
aa9fc5ab9c

+ 1 - 1
src/views/center/other/download/index.vue

@@ -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;

+ 1 - 1
src/views/center/other/message/index.vue

@@ -115,7 +115,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 message.query(info);
   tableData.value = res.data as any[];
   total.value = res.total;

+ 1 - 1
src/views/center/other/notice/index.vue

@@ -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 notice.query(info);
   tableData.value = res.data as any[];
   total.value = res.total;