jinlin
2023-12-29 bfa0b90c002d6d01f1442ce6882b426efa077a30
修改
6个文件已修改
19 ■■■■ 已修改文件
modules/mainPart/src/main/java/com/zt/life/modules/configAuditReport/dao/ConfigAuditReportContentDao.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
modules/mainPart/src/main/java/com/zt/life/modules/configAuditReport/service/ConfigAuditReportContentService.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
modules/mainPart/src/main/java/com/zt/life/modules/configAuditReport/service/ConfigAuditReportService.java 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
modules/mainPart/src/main/resources/mapper/configAuditReport/ConfigAuditReportContentDao.xml 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
web/src/views/modules/configAuditReport/ConfigAuditReport.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
web/src/views/modules/testReviewComment/TestReviewComment.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
modules/mainPart/src/main/java/com/zt/life/modules/configAuditReport/dao/ConfigAuditReportContentDao.java
@@ -20,5 +20,5 @@
    List<ConfigAuditReportContent> getList(Map<String, Object> params);
    List<?> dictList(String dictType);
    List<ConfigAuditReportContent> dictList(String dictType);
}
modules/mainPart/src/main/java/com/zt/life/modules/configAuditReport/service/ConfigAuditReportContentService.java
@@ -46,7 +46,7 @@
        return baseDao.getList(params);
    }
    public List<?> dictList(String dictType) {
    public List<ConfigAuditReportContent> dictList(String dictType) {
        return baseDao.dictList(dictType);
    }
}
modules/mainPart/src/main/java/com/zt/life/modules/configAuditReport/service/ConfigAuditReportService.java
@@ -111,9 +111,8 @@
        } else {
            ConfigAuditReport auditReport = new ConfigAuditReport();
            data.setAuditReport(auditReport);
            List<?> contentResult = contentService.dictList("config_check_item");
            List<?> contentList = contentResult;
            data.setContentList((List<ConfigAuditReportContent>) contentList);
            List<ConfigAuditReportContent> contentList = contentService.dictList("config_check_item");
            data.setContentList( contentList);
        }
        if (projectId != null) {
            data.setProjectId(projectId);
modules/mainPart/src/main/resources/mapper/configAuditReport/ConfigAuditReportContentDao.xml
@@ -16,10 +16,10 @@
            ORDER BY ${orderBySql}
        </if>
    </select>
    <select id="dictList" resultType="java.util.List">
    <select id="dictList" resultType="com.zt.life.modules.configAuditReport.model.ConfigAuditReportContent">
        SET @row_number = 0;
        SELECT dd.dict_label AS audit_content,
        (@row_number := @row_number + 1) AS no,
        SELECT (@row_number := @row_number + 1) AS no,
               dd.dict_label AS auditContent
        FROM sys_dict_type dt
        JOIN sys_dict_data dd ON dt.ID = dd.DICT_TYPE_ID
        <where>
web/src/views/modules/configAuditReport/ConfigAuditReport.vue
@@ -40,6 +40,7 @@
<script>
  import AddOrUpdate from './ConfigAuditReport-AddOrUpdate'
  import ProjectSelect from "../project/Project-select";
  import Preview from '@/views/pages/view'
  export default {
    data() {
      return {
web/src/views/modules/testReviewComment/TestReviewComment.vue
@@ -34,7 +34,7 @@
                       @refreshDataList="table.query"
                       @setProjectInfo="openAddWin">
        </ProjectSelect>
        <Preview ref="view"></Preview>
        <Preview ref="view" :pageMarkerfun="TestReviewComment"></Preview>
      </zt-table-wraper>
    </div>
  </el-card>
@@ -47,6 +47,7 @@
  export default {
    data() {
      return {
        TestReviewComment:'TestReviewComment',
        pageCode: '',
        dataForm: {
          code: '',