Raod 3 rokov pred
rodič
commit
a17e6ab983

+ 6 - 0
report-core/src/main/java/com/anjiplus/template/gaea/business/modules/report/controller/param/ReportParam.java

@@ -20,6 +20,10 @@ public class ReportParam extends PageParam implements Serializable{
     @Query(QueryEnum.LIKE)
     @Query(QueryEnum.LIKE)
     private String reportName;
     private String reportName;
 
 
+    /** 报表作者 */
+    @Query(QueryEnum.LIKE)
+    private String reportAuthor;
+
     /** 报表编码 */
     /** 报表编码 */
     @Query(QueryEnum.LIKE)
     @Query(QueryEnum.LIKE)
     private String reportCode;
     private String reportCode;
@@ -27,4 +31,6 @@ public class ReportParam extends PageParam implements Serializable{
     /** 报表类型 */
     /** 报表类型 */
     @Query(QueryEnum.EQ)
     @Query(QueryEnum.EQ)
     private String reportType;
     private String reportType;
+
+
 }
 }

+ 17 - 1
report-ui/src/views/reportManage/index.vue

@@ -1,6 +1,6 @@
 <!--
 <!--
  * @Descripttion: 报表设计--报表管理
  * @Descripttion: 报表设计--报表管理
- * @version: 
+ * @version:
  * @Author: qianlishi
  * @Author: qianlishi
  * @Date: 2021-12-11 14:48:27
  * @Date: 2021-12-11 14:48:27
  * @LastEditors: qianlishi
  * @LastEditors: qianlishi
@@ -85,6 +85,11 @@ export default {
             inputType: "input",
             inputType: "input",
             label: "报表编码",
             label: "报表编码",
             field: "reportCode"
             field: "reportCode"
+          },
+          {
+            inputType: "input",
+            label: "制作人",
+            field: "reportAuthor"
           }
           }
         ],
         ],
         // 操作按钮
         // 操作按钮
@@ -182,6 +187,17 @@ export default {
             ],
             ],
             disabled: "disableOnEdit"
             disabled: "disableOnEdit"
           },
           },
+          {
+            label: "制作人", //名称
+            placeholder: "",
+            field: "reportAuthor",
+            editField: "reportAuthor",
+            inputType: "input",
+            rules: [
+              { min: 1, max: 100, message: "不超过100个字符", trigger: "blur" }
+            ],
+            disabled: false
+          },
           {
           {
             label: "描述", //报表描述
             label: "描述", //报表描述
             placeholder: "",
             placeholder: "",