YY преди 2 години
родител
ревизия
aa9fc5ab9c
променени са 3 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 1 1
      src/views/center/other/download/index.vue
  2. 1 1
      src/views/center/other/message/index.vue
  3. 1 1
      src/views/center/other/notice/index.vue

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