Browse Source

薪资变更记录页面

jingbb 1 year ago
parent
commit
f2ac4f687e
1 changed files with 161 additions and 0 deletions
  1. 161 0
      src/views/oa/salary_management/personnelSalary/SalaryChangeRecords.vue

+ 161 - 0
src/views/oa/salary_management/personnelSalary/SalaryChangeRecords.vue

@@ -0,0 +1,161 @@
+<template>
+    <a-card :bordered="false">
+  
+      <!-- 查询区域 -->
+      <div class="table-page-search-wrapper">
+        <a-form layout="inline" @keyup.enter.native="searchQuery">
+          <a-row :gutter="24">
+            <a-col :xl="6" :lg="7" :md="8" :sm="24">
+              <a-form-item label="姓名">
+                <a-input placeholder="请输入" v-model="queryParam.name"  />
+              </a-form-item>
+            </a-col>
+            <a-col :xl="6" :lg="7" :md="8" :sm="24">
+              <a-form-item label="部门">
+                <j-search-select-tag v-model="queryParam.sysOrgCode" placeholder="请选择部门" 
+                     dict="sys_depart,depart_name,depart_name,org_type='3' or org_code='TBD' order by org_code"/>
+              </a-form-item>
+            </a-col>
+            <a-col :xl="6" :lg="7" :md="8" :sm="24">
+              <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
+                <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
+                <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
+              </span>
+            </a-col>
+  
+          </a-row>
+        </a-form>
+      </div>
+  
+      <!-- 操作按钮区域 -->
+
+  
+        <a-table
+          ref="table"
+          size="middle"
+          bordered
+          rowKey="id"
+          :columns="columns"
+          :dataSource="dataSource"
+          :pagination="ipagination"
+          :scroll="{x: 1000}"
+          :loading="loading"
+          :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
+          @change="handleTableChange">
+           <span slot="basicSalary" slot-scope="text, record">
+                <!-- <a @click="handleBasicSalary(record)" >record.basicSalary</a> -->
+                <a @click="handleBasicSalary(record)" >333333</a>
+           </span>
+        </a-table>
+      </div>
+      <!-- table区域-end -->
+  
+      <!-- 表单区域 -->
+      <ChangeBasicSalary ref="ChangeBasicSalary"></ChangeBasicSalary>
+    </a-card>
+  </template>
+  
+  <script>
+  
+    import { JeecgListMixin } from '@/mixins/JeecgListMixin'
+    import { getAction } from '@/api/manage'
+    import moment from 'moment'
+    import ChangeBasicSalary from './modules/ChangeBasicSalary.vue'
+    import JSearchSelectTag from '@/components/dict/JSearchSelectTag'
+    export default {
+      name: "SalaryChangeRecords",
+      mixins: [JeecgListMixin],
+      components: {
+        moment,
+        ChangeBasicSalary,
+        JSearchSelectTag
+      },
+      data () {
+        return {
+          description: '薪资变更记录',
+          DateTime:[],
+          selectedRowKeys:[],
+          selectedRows:[],
+          // 表头
+          columns: [
+            {
+              title: '序号',
+              width: 80,
+              align:"center",
+              dataIndex: 'code',
+              customRender:function (t, r, index) {
+                    return parseInt(index)+1;
+              }
+            },
+            {
+              title: '变更时间',
+              align:"center",
+              dataIndex: 'updateTime'
+            },
+            {
+              title: '员工编号',
+              align:"center",
+              dataIndex: 'code'
+            },
+            {
+              title: '员工姓名',
+              align:"center",
+              dataIndex: 'name'
+            },
+            {
+              title: '部门',
+              align:"center",
+              dataIndex: 'sysOrgCode'
+            },
+            {
+              title: '变更金额',
+              align:"center",
+              dataIndex: 'afterAdjustment'
+            },
+            {
+              title: '变更说明',
+              align:"center",
+              dataIndex: 'remaks'
+            },
+          ],
+          ipagination:{},
+          queryParam:{},
+          dataSource:[{}],
+          // 请求参数
+        //   url: {
+
+        //      },
+          }
+        },
+      computed: {},
+      created () {
+        this.getTableList()
+      },
+      methods: {
+        getTableList(){
+
+        },
+        handleBasicSalary(){
+          this.$refs.ChangeBasicSalary.visible = true
+        },
+        searchQuery(){
+
+        },
+        searchReset(){
+
+        },
+        onSelectChange(selectedRowKeys, selectionRows) {
+            this.selectedRowKeys = selectedRowKeys;
+            this.selectedRows = selectionRows;
+        },
+        handleTableChange(pagination, filters, sorter) {
+            this.queryParam.pageNo = pagination.current
+            this.queryParam.pageSize = pagination.pageSize
+            this.getTableList()
+        },
+      }
+    }
+  </script>
+  <style scoped>
+    @import '~@assets/less/common.less'
+  </style>