fuliqi
2024-04-19 19e559358b907cff913d7aa277fa04496b7fe0a6
src/views/system/rule/index.vue
@@ -14,7 +14,6 @@
              <i style="font-size: 40px;padding: 15px;" :class="item.icon"></i>
              <div style="font-size:12px; text-align: center; height: 25px;">{{ item.name }} </div>
              <div class="bottom clearfix">
                <el-button type="text" class="button" @click="handleAudit(item)">审核</el-button>
                <el-button type="text" class="button" @click="handleUpdate(item)">修改</el-button>
              </div>
            </el-card>
@@ -36,7 +35,6 @@
            <i style="font-size: 40px;padding: 15px;" :class="item.icon"></i>
            <div style="font-size:12px; text-align: center; height: 25px;">{{ item.name }} </div>
            <div class="bottom clearfix">
              <el-button type="text" class="button" @click="handleAudit(item)">审核</el-button>
              <el-button type="text" class="button" @click="handleUpdate(item)">修改</el-button>
            </div>
          </el-card>
@@ -58,7 +56,6 @@
            <i style="font-size: 40px;padding: 15px;" :class="item.icon"></i>
            <div style="font-size:12px; text-align: center; height: 25px;">{{ item.name }} </div>
            <div class="bottom clearfix">
              <el-button type="text" class="button" @click="handleAudit(item)">审核</el-button>
              <el-button type="text" class="button" @click="handleUpdate(item)">修改</el-button>
            </div>
          </el-card>
@@ -160,7 +157,7 @@
import { templateSelect} from   "@/api/platform/check-template"
export default {
  name: "CheckRule",
  dicts: ['platform_audit_state','platform_examine_category','platform_rule_category'],
  dicts: ['platform_audit_state','platform_rule_category'],
  data() {
    return {
      // 遮罩层
@@ -193,7 +190,6 @@
        createTime: null,
        ruleCategory: null,
        templateId: null,
        examineCategory: 1,
      },
      videoData: [
        { name: '平台在线率', icon: 'el-icon-connection', ruleDescription: '省厅对市级共享和联网平台进行实时监测,市级共享/联网平台每月离线总时长在30分钟以内的平台在线率为100%,每超过30分钟扣10个百分点,扣完为止。' +
@@ -248,7 +244,7 @@
    };
  },
  created() {
    this.getList();
  },
  methods: {
    groupData(data) {
@@ -259,12 +255,7 @@
      }
      return groupedData;
    },
    /** 考核模板下拉列表 */
    getTemplateSelect() {
      templateSelect().then((res) => {
        this.templateList = res.data;
      })
    },
    /** 查询考核规则列表 */
    getList() {
      this.loading = true;