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;