fuliqi
2024-04-03 bce10b2db48c97a23543189368ceb6a8f3737fb3
src/views/system/rule/province/index.vue
@@ -65,18 +65,14 @@
    <el-table v-loading="loading" :data="checkRuleList" @selection-change="handleSelectionChange">
      <el-table-column type="selection" width="55" align="center" />
      <el-table-column label="规则名称" align="center" prop="ruleName" />
      <el-table-column label="运维类别" align="center" prop="examineCategory">
      <el-table-column label="考核类别" align="center" prop="examineCategory">
        <template slot-scope="scope">
          <div v-if="scope.row.examineCategory === 1">省厅考核</div>
          <div v-else-if="scope.row.examineCategory === 2">区县考核</div>
          <div v-else-if="scope.row.examineCategory === 3">公司考核</div>
          <dict-tag :options="dict.type.examineCategory" :value="scope.row.examineCategory"/>
        </template>
      </el-table-column>
      <el-table-column label="运维类别" align="center" prop="category">
      <el-table-column label="规则类型" align="center" prop="ruleCategory">
        <template slot-scope="scope">
        <div v-if="scope.row.category === 1">视频监控</div>
        <div v-else-if="scope.row.category === 2">车辆识别</div>
        <div v-else-if="scope.row.category === 3">人脸识别</div>
          <dict-tag :options="dict.type.ruleCategory" :value="scope.row.ruleCategory"/>
        </template>
      </el-table-column>
      <el-table-column label="规则描述" align="center" prop="ruleDetail" />
@@ -86,9 +82,6 @@
          <dict-tag :options="dict.type.platform_audit_state" :value="scope.row.auditState"/>
        </template>
      </el-table-column>
      <el-table-column label="审核人" align="center" prop="auditUser" />
      <el-table-column label="审核时间" align="center" prop="auditTime" />
      <el-table-column label="审核意见" align="center" prop="auditDescription" />
      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
          <template slot-scope="scope">
            <el-button
@@ -291,18 +284,6 @@
      showSearch: true,
      // 总条数
      total: 0,
      // 运维类型
      categoryList: [
        { id: 1, value: '视频监控' },
        { id: 2, value: '车辆识别' },
        { id: 3, value: '人脸识别' },
      ],
      // 运维类型
      examineList: [
        { id: 1, value: '省厅考核' },
        { id: 2, value: '区县考核' },
        { id: 3, value: '人脸识别' },
      ],
      // 考核规则表格数据
      checkRuleList: [],
      daterangeCreateTime: [],