235 lines
7.2 KiB
Vue
235 lines
7.2 KiB
Vue
<template>
|
|
<div>
|
|
<a-card :bordered="false" :bodyStyle="tstyle">
|
|
<div class="table-page-search-wrapper">
|
|
<a-form layout="inline">
|
|
<a-row :gutter="48">
|
|
<a-col :md="8" :sm="24">
|
|
<a-form-item label="培训类型">
|
|
<a-input v-model="queryParam.type" allow-clear placeholder="请输入培训类型"/>
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col :md="8" :sm="24">
|
|
<a-form-item label="月份">
|
|
<a-month-picker style="width: 100%" placeholder="请选择月份" v-model="queryParam.happenTimeDate" @change="onChangehappenTime"/>
|
|
</a-form-item>
|
|
</a-col>
|
|
<template v-if="advanced">
|
|
<a-col :md="8" :sm="24">
|
|
<a-form-item label="部门">
|
|
<a-input v-model="queryParam.workPlace" allow-clear placeholder="请输入部门"/>
|
|
</a-form-item>
|
|
</a-col>
|
|
</template>
|
|
<a-col :md="8" :sm="24" >
|
|
<span class="table-page-search-submitButtons">
|
|
<a-button type="primary" @click="$refs.table.refresh(true)" >查询</a-button>
|
|
<a-button style="margin-left: 8px" @click="() => queryParam = {}">重置</a-button>
|
|
<a @click="toggleAdvanced" style="margin-left: 8px">
|
|
{{ advanced ? '收起' : '展开' }}
|
|
<a-icon :type="advanced ? 'up' : 'down'"/>
|
|
</a>
|
|
</span>
|
|
</a-col>
|
|
</a-row>
|
|
</a-form>
|
|
</div>
|
|
</a-card>
|
|
<a-card :bordered="false">
|
|
<s-table
|
|
ref="table"
|
|
:columns="columns"
|
|
:data="loadData"
|
|
:alert="options.alert"
|
|
:rowKey="(record) => record.id"
|
|
:rowSelection="options.rowSelection"
|
|
>
|
|
<template class="table-operator" slot="operator">
|
|
<a-button type="primary" icon="plus" @click="$refs.addForm.add()">新增</a-button>
|
|
<a-button type="danger" :disabled="selectedRowKeys.length < 1" @click="batchDelete"><a-icon type="delete"/>批量删除</a-button>
|
|
<x-down
|
|
ref="batchExport"
|
|
@batchExport="batchExport"
|
|
/>
|
|
</template>
|
|
<span slot="nborwbScopedSlots" slot-scope="text">
|
|
{{ text=='0'?'外部':'内部' }}
|
|
</span>
|
|
<span slot="action" slot-scope="text, record">
|
|
<a @click="$refs.editForm.edit(record)">编辑</a>
|
|
<a-divider type="vertical" />
|
|
<a-popconfirm placement="topRight" title="确认删除?" @confirm="() => singleDelete(record)">
|
|
<a>删除</a>
|
|
</a-popconfirm>
|
|
</span>
|
|
</s-table>
|
|
<add-form ref="addForm" @ok="handleOk" />
|
|
<edit-form ref="editForm" @ok="handleOk" />
|
|
</a-card>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { STable, XDown } from '@/components'
|
|
import moment from 'moment'
|
|
import { scrTrainDataPage, scrTrainDataDelete, scrTrainDataExport } from '@/api/modular/main/scrtraindata/scrTrainDataManage'
|
|
import addForm from './addForm.vue'
|
|
import editForm from './editForm.vue'
|
|
export default {
|
|
components: {
|
|
STable,
|
|
addForm,
|
|
editForm,
|
|
XDown
|
|
},
|
|
data () {
|
|
return {
|
|
// 高级搜索 展开/关闭
|
|
advanced: false,
|
|
// 查询参数
|
|
queryParam: {},
|
|
// 表头
|
|
columns: [
|
|
{
|
|
title: '月份',
|
|
align: 'center',
|
|
dataIndex: 'happenTime',
|
|
customRender: (text, record) => {
|
|
return moment(text).format('YYYY-MM')
|
|
}
|
|
},
|
|
{
|
|
title: '培训类型',
|
|
align: 'center',
|
|
dataIndex: 'type'
|
|
},
|
|
{
|
|
title: '数量',
|
|
align: 'center',
|
|
dataIndex: 'num'
|
|
},
|
|
{
|
|
title: '内部数量',
|
|
align: 'center',
|
|
dataIndex: 'nbNum'
|
|
},
|
|
{
|
|
title: '外部数量',
|
|
align: 'center',
|
|
dataIndex: 'wbNum'
|
|
},
|
|
// {
|
|
// title: '内部/外部',
|
|
// align: 'center',
|
|
// dataIndex: 'nborwb',
|
|
// scopedSlots: { customRender: 'nborwbScopedSlots' }
|
|
// },
|
|
{
|
|
title: '部门',
|
|
align: 'center',
|
|
dataIndex: 'workPlace'
|
|
}
|
|
],
|
|
tstyle: { 'padding-bottom': '0px', 'margin-bottom': '10px' },
|
|
// 加载数据方法 必须为 Promise 对象
|
|
loadData: parameter => {
|
|
return scrTrainDataPage(Object.assign(parameter, this.switchingDate())).then((res) => {
|
|
return res.data
|
|
})
|
|
},
|
|
selectedRowKeys: [],
|
|
selectedRows: [],
|
|
options: {
|
|
alert: { show: true, clear: () => { this.selectedRowKeys = [] } },
|
|
rowSelection: {
|
|
selectedRowKeys: this.selectedRowKeys,
|
|
onChange: this.onSelectChange
|
|
}
|
|
}
|
|
}
|
|
},
|
|
created () {
|
|
this.columns.push({
|
|
title: '操作',
|
|
width: '150px',
|
|
dataIndex: 'action',
|
|
scopedSlots: { customRender: 'action' }
|
|
})
|
|
},
|
|
methods: {
|
|
moment,
|
|
/**
|
|
* 查询参数组装
|
|
*/
|
|
switchingDate () {
|
|
const queryParamhappenTime = this.queryParam.happenTimeDate
|
|
if (queryParamhappenTime != null) {
|
|
this.queryParam.happenTime = moment(queryParamhappenTime).format('YYYY-MM-DD')
|
|
if (queryParamhappenTime.length < 1) {
|
|
delete this.queryParam.happenTime
|
|
}
|
|
}
|
|
const obj = JSON.parse(JSON.stringify(this.queryParam))
|
|
return obj
|
|
},
|
|
/**
|
|
* 单个删除
|
|
*/
|
|
singleDelete (record) {
|
|
const param = [{ 'id': record.id }]
|
|
this.scrTrainDataDelete(param)
|
|
},
|
|
/**
|
|
* 批量删除
|
|
*/
|
|
batchDelete () {
|
|
const paramIds = this.selectedRowKeys.map((d) => {
|
|
return { 'id': d }
|
|
})
|
|
this.scrTrainDataDelete(paramIds)
|
|
},
|
|
scrTrainDataDelete (record) {
|
|
scrTrainDataDelete(record).then((res) => {
|
|
if (res.success) {
|
|
this.$message.success('删除成功')
|
|
this.$refs.table.clearRefreshSelected()
|
|
} else {
|
|
this.$message.error('删除失败') // + res.message
|
|
}
|
|
})
|
|
},
|
|
toggleAdvanced () {
|
|
this.advanced = !this.advanced
|
|
},
|
|
onChangehappenTime(date, dateString) {
|
|
this.happenTimeDateString = dateString
|
|
},
|
|
/**
|
|
* 批量导出
|
|
*/
|
|
batchExport () {
|
|
const paramIds = this.selectedRowKeys.map((d) => {
|
|
return { 'id': d }
|
|
})
|
|
scrTrainDataExport(paramIds).then((res) => {
|
|
this.$refs.batchExport.downloadfile(res)
|
|
})
|
|
},
|
|
handleOk () {
|
|
this.$refs.table.refresh()
|
|
},
|
|
onSelectChange (selectedRowKeys, selectedRows) {
|
|
this.selectedRowKeys = selectedRowKeys
|
|
this.selectedRows = selectedRows
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style lang="less">
|
|
.table-operator {
|
|
margin-bottom: 18px;
|
|
}
|
|
button {
|
|
margin-right: 8px;
|
|
}
|
|
</style>
|