Newer
Older
CallCenterFront / src / views / assessRules / listDeptRules.vue
yangqianqian on 27 May 2021 7 KB 修复统计图表不显示的问题
<script src="../../router/index.js"></script>
<template>
  <div class="app-container">
    <!--筛选条件-->
    <div class="search-div">
      <el-form ref="selectForm" :inline="true" :model="listQuery" class="form-container">
        <el-row>
          <el-form-item class="selectForm-container-item" prop="keyword1" >
            <el-select v-model="listQuery.keyword1" placeholder="考核部门" clearable @change="changeDept">
              <el-option
                v-for="item in deptList"
                :key="item.id"
                :label="item.simplename"
                :value="item.id"/>
            </el-select>
          </el-form-item>
          <el-form-item class="selectForm-container-item" prop="keyword2" >
            <el-select v-model="listQuery.keyword2" :disabled="!listQuery.keyword1" placeholder="下属部门" clearable>
              <el-option
                v-for="item in subDeptList"
                :key="item.id"
                :label="item.simplename"
                :value="item.id"/>
            </el-select>
          </el-form-item>
          <el-form-item class="selectForm-container-item" prop="keyword3" >
            <el-select v-model="listQuery.keyword3" placeholder="指标类型" clearable>
              <el-option
                v-for="item in typeList"
                :key="item.name"
                :label="item.name"
                :value="item.name"/>
            </el-select>
          </el-form-item>
          <el-button class="filter-item" type="primary" icon="el-icon-search" @click="search">搜索</el-button>
        </el-row>
      </el-form>
    </div>
    <!--查询结果Table显示-->
    <div>
      <el-row class="table-title">
        <el-col :span="6"><div class="title-header"><i class="el-icon-menu"/>数据列表</div></el-col>
      </el-row>
      <el-table v-loading="listLoading" :data="list" class="table" border @selection-change="handleSelectionChange">
        <!--<el-table-column align="center" type="selection" width="55"/>-->
        <el-table-column :index="indexMethod" align="center" type="index"/>
        <el-table-column v-for="column in columns" :key="column.value" :label="column.text" :width="column.width" :align="column.align" show-overflow-tooltip>
          <template slot-scope="scope">
            <span v-if="column.checkCell" :class="checkCell(scope.row.cell)">{{ scope.row[column.value] }}</span>
            <span v-else>{{ scope.row[column.value] }}</span>
          </template>
        </el-table-column>
        <el-table-column label="操作" align="center" width="160">
          <template slot-scope="scope">
            <el-button type="text" @click="edit(scope.row)">编辑</el-button>
            <el-button type="text" @click="detail(scope.row)">详情</el-button>
          </template>
        </el-table-column>
      </el-table>
    </div>
    <!--分页-->
    <div class="pagination-container">
      <el-pagination
        v-show="total>listQuery.limit"
        :current-page="listQuery.offset"
        :page-sizes="[20,30,50]"
        :page-size="listQuery.limit"
        :total="total"
        align="center"
        layout="total, sizes, prev, pager, next"
        @size-change="handleSizeChange"
        @current-change="handleCurrentChange"/>
    </div>
    <edit-dept-rule v-show="editShow" ref="editdeptrule" @watchChild="fetchData"/>
  </div>
</template>

<script>
import selectTree from '@/components/SelectTree/singleSelect'
import { getDeptRuleList, getDeptList } from '@/api/assessRules'
import editDeptRule from '@/views/assessRules/editDeptRule'

export default {
  name: 'ListDeptRules',
  components: { selectTree, editDeptRule },
  data() {
    return {
      listQuery: {
        keyword1: '',
        keyword2: '',
        keyword3: '',
        offset: 1,
        limit: 20,
        sort: '',
        order: ''
      }, // 筛选条件
      columns: [
        {
          text: '指标项编号',
          value: 'indexCode',
          align: 'center',
          width: 100
        },
        {
          text: '指标项',
          value: 'indexMenu',
          align: 'center'
        },
        {
          text: '指标类型',
          value: 'indexType',
          align: 'center'
        },
        {
          text: '所属部门',
          value: 'deptName',
          align: 'center'
        },
        {
          text: '下属部门',
          value: 'subDeptName',
          align: 'center'
        },
        {
          text: '计算规则',
          value: 'rule',
          align: 'center',
          width: 360
        },
        {
          text: '调节因子(%)',
          value: 'factor',
          align: 'center',
          width: 100
        }
      ], // 显示列
      typeList: [
        { name: '部门职能' },
        { name: '专题专项' },
        { name: '经济发展' },
        { name: '行政综合' }
      ],
      list: [], // 列表数据
      total: 0, // 数据总数
      deptParentList: [], // 开挖配置类型列表
      deptList: [], // 权属单位树形下拉菜单
      subDeptList: [], // 权属单位树形下拉菜单
      listLoading: false, // 加载动画
      fullscreenLoading: false, // 全屏加载动画
      editShow: false, // 是否显示编辑框
      detailShow: false, // 是否显示编辑框
      deptShowTop: false
    }
  },
  mounted() {
    this.fetchDeptList()
    this.fetchData()
  },
  methods: {
    // 查询数据
    search() {
      this.fetchData(false)
    },
    // 获取数据
    fetchData(isNowPage = true) {
      this.listLoading = true
      if (!isNowPage) { // 是否显示当前页,否则跳转第一页
        this.listQuery.offset = 1
      }
      getDeptRuleList(this.listQuery).then(response => {
        this.list = response.data.rows
        this.total = parseInt(response.data.total)
        this.listLoading = false
      })
    },
    fetchDeptList() {
      getDeptList('24').then(response => {
        this.deptList = response.data
        // if (this.deptList) {
        //   this.listQuery.dept = this.deptList[0].id
        //   getDeptList(this.listQuery.dept).then(response => {
        //     this.subDeptList = response.data
        //   })
        // }
      })
    },
    changeDept() {
      if (this.listQuery.keyword1) {
        getDeptList(this.listQuery.keyword1).then(response => {
          this.subDeptList = response.data
        })
      }
    },
    edit(row) {
      this.dialogFormVisible = true
      this.editShow = true
      this.$refs.editdeptrule.initDialog('update', this.dialogFormVisible, row)
    },
    detail(row) {
      this.dialogFormVisible = true
      this.editShow = true
      this.$refs.editdeptrule.initDialog('detail', this.dialogFormVisible, row)
    },
    checkCell(value) {
      var cell = parseFloat(value)
      if (cell < 10) {
        return 'warning-state'
      }
    },
    indexMethod(index) {
      return this.listQuery.limit * (this.listQuery.offset - 1) + index + 1
    },
    // 改变页容量
    handleSizeChange(val) {
      this.listQuery.limit = val
      this.fetchData()
    },
    // 改变当前页
    handleCurrentChange(val) {
      this.listQuery.offset = val
      this.fetchData()
    },
    // 多选触发方法
    handleSelectionChange(val) {
      this.multipleSelection = val
    }
  }
}
</script>

<style rel="stylesheet/scss" lang="scss" scoped>
  .app-container{
    padding: 10px;
  }
  $tableTitleHeight:46px;
  .table{
    margin-bottom: 20px;
  }
  .pagination-container{
    margin-bottom: 50px;
  }
  .table-title{
    background-color:rgba(243, 243, 243, 1);
    height: $tableTitleHeight;
    .title-header{
      line-height:$tableTitleHeight;
      color: #606266;
      font-size: 15px;
      i{
        margin-left: 5px;
        margin-right: 5px;
      }
    }
  }
  .edit_btns{
    .edit_btn{
      float:right;
      margin:7px 3px;//为了需要居中显示margin-top和bottom要用$tableTitleHeight减去按钮原高度除以2
    }
  }
  .warning-state{
    color:red
  }
</style>