199 lines
6.0 KiB
Vue
199 lines
6.0 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.name" allow-clear placeholder="请输入电表"/>
|
||
|
|
</a-form-item>
|
||
|
|
</a-col>
|
||
|
|
<a-col :md="8" :sm="24">
|
||
|
|
<a-form-item label="年份">
|
||
|
|
<a-input-number v-model="queryParam.year" style="width: 100%" allow-clear placeholder="请输入年份"/>
|
||
|
|
</a-form-item>
|
||
|
|
</a-col>
|
||
|
|
<template v-if="advanced">
|
||
|
|
<a-col :md="8" :sm="24">
|
||
|
|
<a-form-item label="月份">
|
||
|
|
<a-input-number v-model="queryParam.month" style="width: 100%" 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="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 { scrMeterDataPage, scrMeterDataDelete, scrMeterDataExport } from '@/api/modular/main/scrmeterdata/scrMeterDataManage'
|
||
|
|
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: 'name'
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: '年份',
|
||
|
|
align: 'center',
|
||
|
|
dataIndex: 'year'
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: '月份',
|
||
|
|
align: 'center',
|
||
|
|
dataIndex: 'month'
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: '累计电量',
|
||
|
|
align: 'center',
|
||
|
|
dataIndex: 'totalEcnum'
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: '平均功率',
|
||
|
|
align: 'center',
|
||
|
|
dataIndex: 'avgPower'
|
||
|
|
}
|
||
|
|
],
|
||
|
|
tstyle: { 'padding-bottom': '0px', 'margin-bottom': '10px' },
|
||
|
|
// 加载数据方法 必须为 Promise 对象
|
||
|
|
loadData: parameter => {
|
||
|
|
return scrMeterDataPage(Object.assign(parameter, this.queryParam)).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: {
|
||
|
|
/**
|
||
|
|
* 单个删除
|
||
|
|
*/
|
||
|
|
singleDelete (record) {
|
||
|
|
const param = [{ 'id': record.id }]
|
||
|
|
this.scrMeterDataDelete(param)
|
||
|
|
},
|
||
|
|
/**
|
||
|
|
* 批量删除
|
||
|
|
*/
|
||
|
|
batchDelete () {
|
||
|
|
const paramIds = this.selectedRowKeys.map((d) => {
|
||
|
|
return { 'id': d }
|
||
|
|
})
|
||
|
|
this.scrMeterDataDelete(paramIds)
|
||
|
|
},
|
||
|
|
scrMeterDataDelete (record) {
|
||
|
|
scrMeterDataDelete(record).then((res) => {
|
||
|
|
if (res.success) {
|
||
|
|
this.$message.success('删除成功')
|
||
|
|
this.$refs.table.clearRefreshSelected()
|
||
|
|
} else {
|
||
|
|
this.$message.error('删除失败') // + res.message
|
||
|
|
}
|
||
|
|
})
|
||
|
|
},
|
||
|
|
toggleAdvanced () {
|
||
|
|
this.advanced = !this.advanced
|
||
|
|
},
|
||
|
|
/**
|
||
|
|
* 批量导出
|
||
|
|
*/
|
||
|
|
batchExport () {
|
||
|
|
const paramIds = this.selectedRowKeys.map((d) => {
|
||
|
|
return { 'id': d }
|
||
|
|
})
|
||
|
|
scrMeterDataExport(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>
|