123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320 |
- <template>
- <div class="reply" ref = "replyModal">
- <a-modal
- title="考勤明细"
- width="100%"
- :visible="visible"
- :confirmLoading="loading"
- :getContainer ='()=>$refs.replyModal'
- @cancel="handleCancel"
- destroyOnClose
- >
- <template #footer>
- <a-button @click="handleCancel" style="margin-left: 8px;">取消</a-button>
- </template>
- <div class="table-page-search-wrapper">
- <a-form-model layout="inline" ref="form" :model="formState" >
- <a-row :gutter="24">
- <a-col :md="8" :sm="8">
- <a-form-model-item label="组织" prop="name">
- <a-select v-model="formState.orgName" show-search :filterOption="filterOption" allowClear>
- <a-select-option value="">所有</a-select-option>
- <a-select-option value="正织">正织</a-select-option>
- <a-select-option value="森语">森语</a-select-option>
- <a-select-option value="马菲羊">马菲羊</a-select-option>
- </a-select>
- </a-form-model-item>
- </a-col>
- <a-col :md="8" :sm="8">
- <a-form-model-item label="姓名" >
- <j-search-select-tag v-model="formState.name" placeholder="请选择用户名称"
- dict="sys_user,realname,realname" @search="searchName" allowClear/>
- </a-form-model-item>
- </a-col>
- <a-col :md="8" :sm="8">
- <a-form-model-item label="" >
- <a-button type="primary" icon="search" @click="searchSonList">查询</a-button>
- </a-form-model-item>
- </a-col>
- </a-row>
- </a-form-model>
- <a-table
- bordered
- :columns="columns"
- :data-source="dataSource"
- :loading="loading"
- :scroll="{x: 3000 ,y:400}"
- :pagination="false"
- >
- </a-table>
- </div>
- </a-modal>
- </div>
- </template>
- <script>
-
- import moment from 'moment'
- import pick from 'lodash.pick'
- import { FormTypes } from '@/utils/JEditableTableUtil'
- import { putAction,getAction } from '@/api/manage'
- import JEllipsis from '@/components/jeecg/JEllipsis'
- import JSearchSelectTag from '@/components/dict/JSearchSelectTag'
- export default {
- name: 'AttendancelDetail',
- components: {
- moment,
- JEllipsis,
- JSearchSelectTag
- },
- data() {
- let ellipsis = (v, l) => <j-ellipsis value={v} length={l} />
- return {
- formState:{},
- dataSource: [{}],
- visible:false,
- loading:false,
- columns: [
- {
- title: '序号',
- align:"center",
- width:'2%',
- dataIndex: 'index',
- customRender:function (t, r, index) {
- return parseInt(index)+1;
- }
- },
- {
- title: '编号',
- align: "center",
- dataIndex: 'code',
- ellipsis: true,
- customRender: (t) => ellipsis(t,7),
- width:'3%'
- },
- {
- title: '姓名',
- align: "center",
- dataIndex: 'name',
- ellipsis: true,
- customRender: (t) => ellipsis(t,4),
- width:'3%'
- },
- {
- title: '组织',
- align: "center",
- dataIndex: 'orgName',
- ellipsis: true,
- width:'3%'
- },
- {
- title: '工资卡号',
- align: "center",
- dataIndex: 'cardNo',
- ellipsis: true,
- customRender: (t) => ellipsis(t,19),
- width:'6%'
- },
- {
- title: '单双休',
- align: "center",
- dataIndex: 'restMode',
- customRender: (t) => ellipsis(t,3),
- width:'2.5%'
- },
- {
- title: '工时/天',
- align: "center",
- dataIndex: 'workingHours',
- customRender: (t) => ellipsis(t,3),
- width:'2.5%'
- },
- {
- title: '出勤天数',
- align: "center",
- dataIndex: 'attendanceDays',
- customRender: (t) => ellipsis(t,3),
- width:'2.5%'
- },
- {
- title: '话费补贴',
- align: "center",
- dataIndex: 'phoneBill',
- customRender: (t) => ellipsis(t,3),
- width:'2.5%'
- },
- {
- title: '午餐补贴',
- align: "center",
- dataIndex: 'lunch',
- customRender: (t) => ellipsis(t,3),
- width:'2.5%'
- },
- {
- title: '住房补贴',
- align: "center",
- dataIndex: 'housingSubsidies',
- customRender: (t) => ellipsis(t,3),
- width:'3%'
- },
- {
- title: '交通补贴',
- align: "center",
- dataIndex: 'transportation',
- customRender: (t) => ellipsis(t,3),
- width:'2.5%'
- },
- {
- title: '全勤奖',
- align: "center",
- dataIndex: 'fullAttendance',
- customRender: (t) => ellipsis(t,3),
- width:'2.5%'
- },
- {
- title: '养老保险',
- align: "center",
- dataIndex: 'endowmentInsurance',
- customRender: (t) => ellipsis(t,3),
- width:'2.5%'
- },
- {
- title: '失业保险',
- align: "center",
- dataIndex: 'unemploymentInsurance',
- customRender: (t) => ellipsis(t,3),
- width:'2.5%'
- },
- {
- title: '医疗保险',
- align: "center",
- dataIndex: 'medicalInsurance',
- customRender: (t) => ellipsis(t,3),
- width:'2.5%'
- },
- {
- title: '公积金',
- align: "center",
- dataIndex: 'accumulationFund',
- customRender: (t) => ellipsis(t,4),
- width:'3%'
- },
- {
- title: '工资抵扣',
- align: "center",
- dataIndex: 'deduction',
- customRender: (t) => ellipsis(t,4),
- width:'3%'
- },
- {
- title: '迟到次数',
- align: "center",
- dataIndex: 'latenessTimes',
- customRender: (t) => ellipsis(t,3),
- width:'2.5%'
- },
- {
- title: '迟到扣费',
- align: "center",
- dataIndex: 'latenessCost',
- ellipsis: true,
- customRender: (t) => ellipsis(t,4),
- width:'3%'
- },
- {
- title: '事假时间(分)',
- align: "center",
- dataIndex: 'personalLeave',
- customRender: (t) => ellipsis(t,4),
- width:'3%'
- },
- {
- title: '病假时间(分)',
- align: "center",
- dataIndex: 'sickLeave',
- customRender: (t) => ellipsis(t,4),
- width:'3%'
- },
- {
- title: '婚假时间(分)',
- align: "center",
- dataIndex: 'marriageLeave',
- customRender: (t) => ellipsis(t,4),
- width:'3%'
- },
- {
- title: '丧假时间(分)',
- align: "center",
- dataIndex: 'funeralLeave',
- customRender: (t) => ellipsis(t,4),
- width:'3%'
- },
- {
- title: '年假时间(天)',
- align: "center",
- dataIndex: 'yearLeave',
- customRender: (t) => ellipsis(t,5),
- width:'3%'
- },
- {
- title: '加班时间(分)',
- align: "center",
- dataIndex: 'workOvertime',
- customRender: (t) => ellipsis(t,3),
- width:'3%'
- }
- ]
- }
- },
- created(){
- },
- watch: {
- },
- methods: {
- filterOption(input, option) {
- return (
- option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
- )
- },
- handleCancel(){
- this.visible = false
- this.formState()
- },
- detail(id){
- this.formState = {}
- this.formState.id = id
- this.getTableList()
- },
- getTableList(){
- this.loading = true
- getAction('/salary/salaryAttendance/querySalaryAttendanceDetailByMainId',this.formState).then(res=>{
- this.loading = false
- if(res.success){
- this.dataSource =res.result
- }else{
- this.$message.error(res.message);
- }
- })
- },
- searchSonList(){
- this.getTableList()
- }
- }
- }
- </script>
-
- <style scoped lang="less">
- /deep/ .nresume .ant-input{
- height: 100px !important;
- }
- /deep/ .ant-select{
- width: 100%;
- }
- .form-table-heard:before {
- content: '*';
- color: red;
- }
- /deep/ .ant-calendar-picker{
- width: 113px !important;
- }
- </style>
|