Browse Source

序列职层功能

lizhenhao 2 years ago
parent
commit
bdfb13a3f1

+ 0 - 0
src/api/rank/RankLevelService.js


+ 46 - 0
src/api/rank/RankSequenceService.js

@@ -0,0 +1,46 @@
+import request from '@/utils/httpRequest'
+
+export default class RankSequenceService {
+  list (params) {
+    return request({
+      url: '/rank/rank_sequence/list',
+      method: 'get',
+      params: params
+    })
+  }
+  queryById (id) {
+    return request({
+      url: '/rank/rank_sequence/queryById',
+      method: 'get',
+      params: {id: id}
+    })
+  }
+  save (inputForm) {
+    return request({
+      url: `/rank/rank_sequence/save`,
+      method: 'post',
+      data: inputForm
+    })
+  }
+  delete (ids) {
+    return request({
+      url: '/rank/rank_sequence/delete',
+      method: 'delete',
+      params: {ids: ids}
+    })
+  }
+  updateSort (params) {
+    return request({
+      url: `/rank/rank_sequence/updateSort`,
+      method: 'post',
+      data: params
+    })
+  }
+  queryAllFirm (params) {
+    return request({
+      url: '/rank/rank_sequence/queryAllFirm',
+      method: 'get',
+      params: params
+    })
+  }
+}

+ 52 - 0
src/views/modules/rank/Rank.vue

@@ -0,0 +1,52 @@
+<template>
+  <div class="el-scrollbar__wrap wrap-white padding-20">
+    <el-tabs v-model="activeName">
+      <el-tab-pane label="序列" name="rankSequence"style="height: calc(100vh - 210px)" lazy>
+        <rank-sequence
+          i="rankSequence"
+          :index="activeName"
+        />
+      </el-tab-pane>
+      <el-tab-pane label="职层" name="rankLevel" style="height: calc(100vh - 210px)" lazy>
+        <rank-level
+          i="rankLevel"
+          :index="activeName"
+        />
+      </el-tab-pane>
+      <el-tab-pane label="职级" name="rank" style="height: calc(100vh - 210px)" lazy>
+        <rank
+          i="rank"
+          :index="activeName"
+        />
+      </el-tab-pane>
+      <el-tab-pane label="体系表" name="systemTable" style="height: calc(100vh - 210px)" lazy>
+        <system-table
+          i="systemTable"
+          :index="activeName"
+        />
+      </el-tab-pane>
+    </el-tabs>
+  </div>
+</template>
+<script>
+  import rankSequence from './tabs/RankSequenceList'
+  import rankLevel from './tabs/RankLevelList'
+  export default {
+    components: {
+      rankSequence,
+      rankLevel
+    },
+    data () {
+      return {
+        activeName: 'rankSequence'
+      }
+    },
+    created () {
+      if (this.$route.query.activeName) {
+        this.activeName = this.$route.query.activeName
+      }
+    },
+    methods: {
+    }
+  }
+</script>

+ 203 - 0
src/views/modules/rank/tabs/RankLevelList.vue

@@ -0,0 +1,203 @@
+<template>
+  <div class="page">
+    <el-form size="small" :inline="true" class="query-form" ref="searchForm" :model="searchForm" @keyup.enter.native="refreshList()" @submit.native.prevent>
+      <!-- 搜索框-->
+      <el-form-item prop="name">
+        <el-input size="small" v-model="searchForm.name" placeholder="职层名称" clearable></el-input>
+      </el-form-item>
+      <el-form-item>
+        <el-button type="primary" @click="refreshList()" size="small" icon="el-icon-search">查询</el-button>
+        <el-button @click="resetSearch()" size="small" icon="el-icon-refresh-right">重置</el-button>
+      </el-form-item>
+    </el-form>
+    <div class="bg-white top" style="">
+      <vxe-toolbar :refresh="{query: refreshList}" custom>
+        <template #buttons>
+          <el-button v-if="hasPermission('rank:rank_level:add')" type="primary" size="small" icon="el-icon-plus" @click="add()">新建</el-button>
+          <el-button v-if="hasPermission('rank:rank_level:del')" type="danger"   size="small" icon="el-icon-delete" @click="del()" :disabled="$refs.rankLevelTable && $refs.rankLevelTable.getCheckboxRecords().length === 0" plain>删除</el-button>
+          <el-button type="default" size="small"  @click="goLog()"  disabled plain>变更日志</el-button>
+          <el-button v-if="hasPermission('rank:rank_level:view')" disabled type="default" size="small"  @click="openSortDialog"  plain>排序</el-button>
+        </template>
+      </vxe-toolbar>
+
+      <div style="height: calc(100% - 80px)">
+        <vxe-table
+          border="inner"
+          auto-resize
+          resizable
+          height="auto"
+          :loading="loading"
+          size="small"
+          ref="rankLevelTable"
+          show-header-overflow
+          show-overflow
+          highlight-hover-row
+          :menu-config="{}"
+          @sort-change="sortChangeHandle"
+          :sort-config="{remote:true}"
+          :data="dataList"
+          :checkbox-config="{}">
+          <vxe-column type="seq" width="40"></vxe-column>
+          <vxe-column type="checkbox" width="40" ></vxe-column>
+          <vxe-column field="name" title="序列名称" :edit-render="{}"></vxe-column>
+          <vxe-column field="officeList" title="适用范围" :edit-render="{}">
+            <template scope="scope" >
+              <el-tag v-for="(item, index) in scope.row.officeList">{{item.name}}</el-tag>
+            </template>
+          </vxe-column>
+          <vxe-column field="useFlag" title="状态" :edit-render="{}">
+            <template  slot-scope="scope">
+              <el-tag type="success" v-if="scope.row.useFlag === '1' ">已启用</el-tag>
+              <el-tag type="danger" v-if="scope.row.useFlag === '2' ">禁用</el-tag>
+            </template>
+          </vxe-column>
+          <vxe-column title="操作" width="200px" fixed="right" align="center">
+            <template  slot-scope="scope">
+
+              <el-button v-if="hasPermission('rank:rank_sequence:edit')" type="text" icon="el-icon-edit" size="small" @click="edit(scope.row.id)">修改</el-button>
+              <el-button v-if="hasPermission('rank:rank_sequence:del')" type="text"  icon="el-icon-delete" size="small" @click="del(scope.row.id)">删除</el-button>
+            </template>
+          </vxe-column>
+        </vxe-table>
+        <vxe-pager
+          background
+          size="small"
+          :current-page="tablePage.currentPage"
+          :page-size="tablePage.pageSize"
+          :total="tablePage.total"
+          :page-sizes="[10, 20, 100, 1000, {label: '全量数据', value: 1000000}]"
+          :layouts="['PrevPage', 'JumpNumber', 'NextPage', 'FullJump', 'Sizes', 'Total']"
+          @page-change="currentChangeHandle">
+        </vxe-pager>
+      </div>
+    </div>
+    <RankSequenceForm  ref="rankSequenceForm" @refreshDataList="refreshList"></RankSequenceForm>
+  </div>
+</template>
+
+<script>
+  import RankSequenceService from '@/api/rank/RankSequenceService'
+  import RankSequenceForm from './RankSequenceForm'
+  export default {
+    props: {
+      index: {
+        type: String,
+        default: ''
+      },
+      i: {
+        type: String,
+        default: ''
+      }
+    },
+    data () {
+      return {
+        searchForm: {
+        },
+        dataList: [],
+        tablePage: {
+          total: 0,
+          currentPage: 1,
+          pageSize: 10,
+          orders: []
+        },
+        loading: false
+      }
+    },
+    rankSequenceService: null,
+    created () {
+      this.rankSequenceService = new RankSequenceService()
+    },
+    watch: {
+      index (index) {
+        if (index === this.i) {
+          this.refreshList()
+        }
+      }
+    },
+    components: {
+      RankSequenceForm
+    },
+    mounted () {
+      this.refreshList()
+    },
+
+    methods: {
+      goLog () {
+        this.$router.push({path: `/position/PositionLog`, query: {type: '1'}})
+      },
+      // 新增
+      add () {
+        this.$refs.rankSequenceForm.init('add', '')
+      },
+      // 修改
+      edit (id) {
+        id = id || this.$refs.rankSequenceTable.getCheckboxRecords().map(item => {
+          return item.id
+        })[0]
+        this.$refs.rankSequenceForm.init('edit', id)
+      },
+      // 查看
+      view (id) {
+        this.$refs.rankSequenceForm.init('view', id)
+      },
+      // 获取数据列表
+      refreshList () {
+        this.loading = true
+        this.rankSequenceService.list({
+          'current': this.tablePage.currentPage,
+          'size': this.tablePage.pageSize,
+          'orders': this.tablePage.orders,
+          ...this.searchForm
+        }).then(({data}) => {
+          this.dataList = data.records
+          this.tablePage.total = data.total
+          this.loading = false
+        })
+      },
+      // 当前页
+      currentChangeHandle ({currentPage, pageSize}) {
+        this.tablePage.currentPage = currentPage
+        this.tablePage.pageSize = pageSize
+        this.refreshList()
+      },
+      // 排序
+      sortChangeHandle (column) {
+        this.tablePage.orders = []
+        if (column.order != null) {
+          this.tablePage.orders.push({column: this.$utils.toLine(column.property), asc: column.order === 'asc'})
+        }
+        this.refreshList()
+      },
+      // 删除
+      del (id) {
+        let ids = id || this.$refs.rankSequenceTable.getCheckboxRecords().map(item => {
+          return item.id
+        }).join(',')
+        this.$confirm(`确定删除所选项吗?`, '提示', {
+          confirmButtonText: '确定',
+          cancelButtonText: '取消',
+          type: 'warning'
+        }).then(() => {
+          this.loading = true
+          this.rankSequenceService.delete(ids).then(({data}) => {
+            this.$message.success(data)
+            this.refreshList()
+            this.loading = false
+          })
+        })
+      },
+      resetSearch () {
+        this.$refs.searchForm.resetFields()
+        this.refreshList()
+      },
+      openSortDialog () {
+        this.$refs.sortTableDialog.init(this.dataList)
+      },
+      dataSort (dataListSort) {
+        this.rankSequenceService.updateSort(dataListSort).then(() => {
+          this.refreshList()
+        })
+      }
+    }
+  }
+</script>

+ 133 - 0
src/views/modules/rank/tabs/RankSequenceForm.vue

@@ -0,0 +1,133 @@
+<template xmlns:v-slot="http://www.w3.org/1999/XSL/Transform">
+  <div>
+    <el-dialog
+      :title="title"
+      :close-on-click-modal="false"
+      v-dialogDrag
+      width="1000px"
+      @close="close"
+      @keyup.enter.native="doSubmit"
+      :visible.sync="visible">
+      <el-form size="middle" :model="inputForm" ref="inputForm" v-loading="loading" :class="method==='view'?'readonly':''"  :disabled="method==='view'"
+               label-width="100px" @submit.native.prevent>
+        <el-row  :gutter="15">
+          <el-col :span="21">
+            <el-form-item label="序列名称" prop="name"
+                          :rules="[{required: true, message: '序列名称不能为空', trigger: 'blur'}
+                 ]">
+              <el-input v-model="inputForm.name" placeholder="请填写序列名称"     ></el-input>
+            </el-form-item>
+          </el-col>
+          <el-col :span="21">
+            <el-form-item label="适用范围" prop="officeIdList" :rules="[]">
+              <el-select v-model="inputForm.officeIdList" style="width:100%" multiple placeholder="请选择">
+                <el-option
+                  v-for="office in firmList"
+                  :key="office.id"
+                  :label="office.name"
+                  :value="office.id">
+                </el-option>
+              </el-select>
+            </el-form-item>
+          </el-col>
+          <el-col :span="21">
+            <el-form-item label="状态" prop="useFlag"
+                          :rules="[{required: true, message: '状态不能为空', trigger: 'blur'}
+                 ]">
+              <el-radio v-model="inputForm.useFlag" label="1" size="mini" border>已启用</el-radio>
+              <el-radio v-model="inputForm.useFlag" label="2" size="mini" border>禁用</el-radio>
+            </el-form-item>
+          </el-col>
+
+
+        </el-row>
+
+      </el-form>
+      <span slot="footer" class="dialog-footer">
+      <el-button size="small" @click="close()" icon="el-icon-circle-close">关闭</el-button>
+      <el-button size="small" type="primary" v-if="method != 'view'" @click="doSubmit()" icon="el-icon-circle-check" v-noMoreClick>确定</el-button>
+    </span>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+  import RankSequenceService from '@/api/rank/RankSequenceService'
+  export default {
+    data () {
+      return {
+        title: '',
+        method: '',
+        visible: false,
+        loading: false,
+        inputForm: {
+          name: '',
+          officeIdList: [],
+          useFlag: ''
+        },
+        firmList: []
+      }
+    },
+    rankSequenceService: null,
+    created () {
+      this.rankSequenceService = new RankSequenceService()
+      this.getAllFirm()
+    },
+    methods: {
+      init (method, id) {
+        this.method = method
+        this.inputForm = {
+          name: '',
+          officeIdList: [],
+          useFlag: ''
+        }
+        this.inputForm.id = id
+        if (method === 'add') {
+          this.title = `新建序列`
+        } else if (method === 'edit') {
+          this.title = '修改序列'
+        } else if (method === 'view') {
+          this.title = '查看序列'
+        }
+        this.visible = true
+        this.loading = false
+        this.$nextTick(() => {
+          this.$refs.inputForm.resetFields()
+          if (method === 'edit' || method === 'view') { // 修改或者查看
+            this.loading = true
+            this.rankSequenceService.queryById(this.inputForm.id).then(({data}) => {
+              this.inputForm = this.recover(this.inputForm, data)
+              this.inputForm = JSON.parse(JSON.stringify(this.inputForm))
+              this.loading = false
+            })
+          }
+        })
+      },
+      // 表单提交
+      doSubmit () {
+        this.$refs['inputForm'].validate((valid) => {
+          if (valid) {
+            this.loading = true
+            this.rankSequenceService.save(this.inputForm).then(({data}) => {
+              this.close()
+              this.$message.success(data)
+              this.$emit('refreshDataList')
+              this.loading = false
+            }).catch(() => {
+              this.loading = false
+            })
+          }
+        })
+      },
+      close () {
+        this.$refs.inputForm.resetFields()
+        this.visible = false
+      },
+      getAllFirm () {
+        this.rankSequenceService.queryAllFirm().then(({data}) => {
+          this.firmList = JSON.parse(JSON.stringify(data))
+        })
+      }
+    }
+  }
+</script>

+ 203 - 0
src/views/modules/rank/tabs/RankSequenceList.vue

@@ -0,0 +1,203 @@
+<template>
+  <div class="page">
+    <el-form size="small" :inline="true" class="query-form" ref="searchForm" :model="searchForm" @keyup.enter.native="refreshList()" @submit.native.prevent>
+      <!-- 搜索框-->
+      <el-form-item prop="name">
+        <el-input size="small" v-model="searchForm.name" placeholder="序列名称" clearable></el-input>
+      </el-form-item>
+      <el-form-item>
+        <el-button type="primary" @click="refreshList()" size="small" icon="el-icon-search">查询</el-button>
+        <el-button @click="resetSearch()" size="small" icon="el-icon-refresh-right">重置</el-button>
+      </el-form-item>
+    </el-form>
+    <div class="bg-white top" style="">
+      <vxe-toolbar :refresh="{query: refreshList}" custom>
+        <template #buttons>
+          <el-button v-if="hasPermission('rank:rank_sequence:add')" type="primary" size="small" icon="el-icon-plus" @click="add()">新建</el-button>
+          <el-button v-if="hasPermission('rank:rank_sequence:del')" type="danger"   size="small" icon="el-icon-delete" @click="del()" :disabled="$refs.rankSequenceTable && $refs.rankSequenceTable.getCheckboxRecords().length === 0" plain>删除</el-button>
+          <el-button type="default" size="small"  @click="goLog()"  disabled plain>变更日志</el-button>
+          <el-button v-if="hasPermission('rank:rank_sequence:view')" disabled type="default" size="small"  @click="openSortDialog"  plain>排序</el-button>
+        </template>
+      </vxe-toolbar>
+
+      <div style="height: calc(100% - 80px)">
+        <vxe-table
+          border="inner"
+          auto-resize
+          resizable
+          height="auto"
+          :loading="loading"
+          size="small"
+          ref="rankSequenceTable"
+          show-header-overflow
+          show-overflow
+          highlight-hover-row
+          :menu-config="{}"
+          @sort-change="sortChangeHandle"
+          :sort-config="{remote:true}"
+          :data="dataList"
+          :checkbox-config="{}">
+          <vxe-column type="seq" width="40"></vxe-column>
+          <vxe-column type="checkbox" width="40" ></vxe-column>
+          <vxe-column field="name" title="序列名称" :edit-render="{}"></vxe-column>
+          <vxe-column field="officeList" title="适用范围" :edit-render="{}">
+            <template scope="scope" >
+                <el-tag v-for="(item, index) in scope.row.officeList">{{item.name}}</el-tag>
+            </template>
+          </vxe-column>
+          <vxe-column field="useFlag" title="状态" :edit-render="{}">
+            <template  slot-scope="scope">
+              <el-tag type="success" v-if="scope.row.useFlag === '1' ">已启用</el-tag>
+              <el-tag type="danger" v-if="scope.row.useFlag === '2' ">禁用</el-tag>
+            </template>
+          </vxe-column>
+          <vxe-column title="操作" width="200px" fixed="right" align="center">
+            <template  slot-scope="scope">
+
+              <el-button v-if="hasPermission('rank:rank_sequence:edit')" type="text" icon="el-icon-edit" size="small" @click="edit(scope.row.id)">修改</el-button>
+              <el-button v-if="hasPermission('rank:rank_sequence:del')" type="text"  icon="el-icon-delete" size="small" @click="del(scope.row.id)">删除</el-button>
+            </template>
+          </vxe-column>
+        </vxe-table>
+        <vxe-pager
+          background
+          size="small"
+          :current-page="tablePage.currentPage"
+          :page-size="tablePage.pageSize"
+          :total="tablePage.total"
+          :page-sizes="[10, 20, 100, 1000, {label: '全量数据', value: 1000000}]"
+          :layouts="['PrevPage', 'JumpNumber', 'NextPage', 'FullJump', 'Sizes', 'Total']"
+          @page-change="currentChangeHandle">
+        </vxe-pager>
+      </div>
+    </div>
+    <RankSequenceForm  ref="rankSequenceForm" @refreshDataList="refreshList"></RankSequenceForm>
+  </div>
+</template>
+
+<script>
+  import RankSequenceService from '@/api/rank/RankSequenceService'
+  import RankSequenceForm from './RankSequenceForm'
+  export default {
+    props: {
+      index: {
+        type: String,
+        default: ''
+      },
+      i: {
+        type: String,
+        default: ''
+      }
+    },
+    data () {
+      return {
+        searchForm: {
+        },
+        dataList: [],
+        tablePage: {
+          total: 0,
+          currentPage: 1,
+          pageSize: 10,
+          orders: []
+        },
+        loading: false
+      }
+    },
+    rankSequenceService: null,
+    created () {
+      this.rankSequenceService = new RankSequenceService()
+    },
+    watch: {
+      index (index) {
+        if (index === this.i) {
+          this.refreshList()
+        }
+      }
+    },
+    components: {
+      RankSequenceForm
+    },
+    mounted () {
+      this.refreshList()
+    },
+
+    methods: {
+      goLog () {
+        this.$router.push({path: `/position/PositionLog`, query: {type: '1'}})
+      },
+      // 新增
+      add () {
+        this.$refs.rankSequenceForm.init('add', '')
+      },
+      // 修改
+      edit (id) {
+        id = id || this.$refs.rankSequenceTable.getCheckboxRecords().map(item => {
+          return item.id
+        })[0]
+        this.$refs.rankSequenceForm.init('edit', id)
+      },
+      // 查看
+      view (id) {
+        this.$refs.rankSequenceForm.init('view', id)
+      },
+      // 获取数据列表
+      refreshList () {
+        this.loading = true
+        this.rankSequenceService.list({
+          'current': this.tablePage.currentPage,
+          'size': this.tablePage.pageSize,
+          'orders': this.tablePage.orders,
+          ...this.searchForm
+        }).then(({data}) => {
+          this.dataList = data.records
+          this.tablePage.total = data.total
+          this.loading = false
+        })
+      },
+      // 当前页
+      currentChangeHandle ({currentPage, pageSize}) {
+        this.tablePage.currentPage = currentPage
+        this.tablePage.pageSize = pageSize
+        this.refreshList()
+      },
+      // 排序
+      sortChangeHandle (column) {
+        this.tablePage.orders = []
+        if (column.order != null) {
+          this.tablePage.orders.push({column: this.$utils.toLine(column.property), asc: column.order === 'asc'})
+        }
+        this.refreshList()
+      },
+      // 删除
+      del (id) {
+        let ids = id || this.$refs.rankSequenceTable.getCheckboxRecords().map(item => {
+          return item.id
+        }).join(',')
+        this.$confirm(`确定删除所选项吗?`, '提示', {
+          confirmButtonText: '确定',
+          cancelButtonText: '取消',
+          type: 'warning'
+        }).then(() => {
+          this.loading = true
+          this.rankSequenceService.delete(ids).then(({data}) => {
+            this.$message.success(data)
+            this.refreshList()
+            this.loading = false
+          })
+        })
+      },
+      resetSearch () {
+        this.$refs.searchForm.resetFields()
+        this.refreshList()
+      },
+      openSortDialog () {
+        this.$refs.sortTableDialog.init(this.dataList)
+      },
+      dataSort (dataListSort) {
+        this.rankSequenceService.updateSort(dataListSort).then(() => {
+          this.refreshList()
+        })
+      }
+    }
+  }
+</script>