<template>
|
<div class="container">
|
<div class="filter-card">
|
<CommonSearch ref="searchRef" :show-add="false" :amount-view="false" placeholder="请输入关键词" @searchClick="onFilterSearch">
|
<template slot="leftButton">
|
<el-button size="small" type="primary" @click="addBtnClick" >新增</el-button>
|
</template>
|
</CommonSearch>
|
</div>
|
<div class="body-card">
|
<div class="list-view">
|
<TableCommonView
|
:table-list="tableList"
|
@selTableCol="selTableCol"
|
@handleShow="handleShow"
|
@tableRowClick="tableRowClick"
|
>
|
<template slot="tableButton">
|
<el-table-column label="操作" width="180">
|
<template slot-scope="scope">
|
<el-button @click.stop="handleClick(scope.row, '查看')" type="text" size="small">查看</el-button>
|
<el-button @click.stop="handleClick(scope.row, '修改')" type="text" size="small">修改</el-button>
|
<el-button @click.stop="handleClick(scope.row, '删除')" type="text" size="small">删除</el-button>
|
|
</template>
|
</el-table-column>
|
</template>
|
</TableCommonView>
|
</div>
|
<AddDialog
|
:editDiaConfig="editConfig"
|
/>
|
<div class="btn-pager">
|
<PagerView class="page" :pager-options="pagerOptions" v-on="pagerEvents" />
|
</div>
|
</div>
|
</div>
|
</template>
|
|
<script>
|
import AddDialog from "@/views/employeeSalary/salaryPlan/components/addDialog.vue"
|
import pageMixin from "@/components/makepager/pager/mixin/pageMixin"
|
export default {
|
name: "salaryPlan",
|
props: {},
|
components: {AddDialog},
|
mixins: [pageMixin],
|
computed: {},
|
data() {
|
return {
|
tableList: {},
|
showCol: ["方案名称", "工种", "薪资类型", "计费周期", "计费公式定义", "添加时间", "添加人"],
|
tableColumn: [
|
// { label: "车间", prop: "workshopNumber",iconRight:"el-icon-setting"},
|
{ label: "方案名称", prop: "workshopNumber",},
|
{ label: "工种", prop: "groupNumber", },
|
{ label: "薪资类型", prop: "startCarNumber" },
|
{ label: "计费周期", prop: "endCarNumber" },
|
{ label: "计费公式定义", prop: "carFlag", },
|
{ label: "添加时间", prop: "notes", },
|
{ label: "添加人", prop: "notes", },
|
],
|
editConfig:{
|
visible:false,
|
infomitton:{
|
TabsIndex:0,
|
workshopId:null,
|
}
|
},
|
getDataParams: {
|
keyWord: '',
|
},
|
}
|
},
|
created() {
|
this.setTable()
|
},
|
methods: {
|
setTable() {
|
// top 明细单列表
|
this.tableList = {
|
selectIndex: true,
|
tableInfomation: [],
|
allcol: [],
|
showcol: this.showCol,
|
tableColumn: this.setColumnVisible(this.showCol, this.tableColumn)
|
}
|
this.setTableList(this.tableList)
|
},
|
setColumnVisible(showCol, tableColumn) {
|
return tableColumn.map((ele) => {
|
return {
|
...ele,
|
isShowColumn: showCol.includes(ele.label)
|
}
|
})
|
},
|
setTableList(tableList) {
|
tableList.allcol = tableList.tableColumn.filter((ele) => !ele.default).map((ele) => ele.label)
|
this.searchOptions = []
|
for (let i = 0; i < tableList.tableColumn.length; i++) {
|
const label = tableList.tableColumn[i].label
|
const value = tableList.tableColumn[i].prop
|
this.searchOptions.push({ value: value, label: label })
|
}
|
},
|
selTableCol(val) {
|
this.showcol = val
|
this.tableList.tableColumn = this.setColumnVisible(val, this.tableColumn)
|
},
|
// 新增
|
addBtnClick() {
|
this.editConfig.infomitton={}
|
this.editConfig.dialogTitle="新增"
|
this.editConfig.visible=true
|
},
|
// 搜索
|
onFilterSearch(searchText) {
|
this.getDataParams.keyWord = searchText,
|
this.getData()
|
},
|
// 组别
|
handleShow() {
|
|
},
|
// 表格行点击
|
tableRowClick(row) {
|
console.log(row, "row")
|
},
|
}
|
}
|
</script>
|
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
<style lang="scss" scoped>
|
|
.container {
|
height: 100%;
|
.filter-card {
|
margin: 20px 30px;
|
height: 80px;
|
display: flex;
|
align-items: center;
|
padding: 0 20px 0 20px;
|
border-radius: 4px;
|
background-color: #fff;
|
}
|
.body-card {
|
margin: 0 30px;
|
background-color: #fff;
|
padding: 10px 15px;
|
height: calc(100% - 180px);
|
border-radius: 4px;
|
.edit-save {
|
display: flex;
|
align-items: center;
|
margin-bottom: 10px;
|
.edit-save-icon {
|
font-size: 24px;
|
color: #5582f3;
|
cursor: pointer;
|
}
|
.edit-sace-label {
|
margin-left: 10px;
|
font-size: 14px;
|
color: #000000d8;
|
}
|
}
|
}
|
}
|
.list-view {
|
height: calc(100% - 60px);
|
overflow: hidden;
|
}
|
.btn-pager {
|
display: flex;
|
margin-top: 10px;
|
.page {
|
margin-left: auto;
|
}
|
}
|
</style>
|