Преглед на файлове

完成按标签查询文件功能

wukai преди 2 години
родител
ревизия
ac1d72c556
променени са 2 файла, в които са добавени 7 реда и са изтрити 4 реда
  1. 3 0
      lzga-modules/lzga-doc/src/main/resources/mapper/doc/DocInfoMapper.xml
  2. 4 4
      lzga-ui/src/views/doc/info/index.vue

+ 3 - 0
lzga-modules/lzga-doc/src/main/resources/mapper/doc/DocInfoMapper.xml

@@ -100,6 +100,9 @@
             <if test="updateTime != null ">and UPDATE_TIME = #{updateTime}</if>
             <if test="remark != null  and remark != ''">and REMARK = #{remark}</if>
             <if test="isDel != null  and isDel != ''">and IS_DEL = #{isDel}</if>
+            <if test="params.tagId!=null and params.tagId!=''">and doc_id in(select doc_id from DOC_TAG_RELA where
+                tag_id=#{params.tagId})
+            </if>
         </where>
     </select>
 

+ 4 - 4
lzga-ui/src/views/doc/info/index.vue

@@ -311,10 +311,10 @@
       },
       /** 搜索按钮操作 */
       handleQuery() {
-        const para = {
-          tagId: 123
-        }
-        this.queryParams.params = para;
+        // const para = {
+        //   tagId: 123
+        // }
+        // this.queryParams.params = para;
         this.queryParams.pageNum = 1;
         this.getList();
       },