中航光电热表web
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

352 lines
9.9 KiB

<template>
6 months ago
<div>
6 months ago
<avue-crud
:option="option"
:table-loading="loading"
:data="data"
v-model="form"
v-model:page="page"
ref="crud"
@row-del="rowDel"
@search-change="searchChange"
@search-reset="searchReset"
@selection-change="selectionChange"
@current-change="currentChange"
@size-change="sizeChange"
@refresh-change="refreshChange"
@on-load="onLoad"
@row-save="rowSave"
@row-update="rowUpdate"
:beforeOpen="beforeOpen"
6 months ago
>
<template #menu-left>
<el-button type="danger" @click="handleDelete">删除</el-button>
6 months ago
</template>
<template #menu-right>
<el-button type="primary" @click="handleExport">导出</el-button>
<el-button type="primary" @click="handleImport">导入</el-button>
6 months ago
</template>
<template #menu="scope"> </template>
</avue-crud>
6 months ago
<!-- 导入 -->
<basic-import v-if="isShowImport" title="导入" :isShow="isShowImport"
templateUrl="/blade-desk/bsEnergyQuota/electric-download-excel-template"
templateName="用电定额模板.xls"
importUrl="blade-desk/bsEnergyQuota/electric-import-excel"
6 months ago
@closeDialog="closeDialog"></basic-import>
</div>
</template>
<script>
6 months ago
import basicImport from '@/components/basic-import/main.vue'
import { pageList, removeItem, saveItem, exportData } from '@/api/energyManagement/bsEnergyQuota';
export default {
6 months ago
components: {
basicImport,
},
6 months ago
data() {
return {
data:[],
6 months ago
isShowImport:false,
6 months ago
selectionList: [],
query:{},
6 months ago
option: {
height: "auto",
calcHeight: 32,
tip: false,
simplePage: true,
searchShow: true,
searchMenuSpan: 12,
6 months ago
searchIcon: true,
searchIndex: 3,
tree: false,
border: true,
index: true,
selection: true,
viewBtn: false,
delBtn: false,
addBtn: true,
editBtnText: "修改",
viewBtnIcon: " ",
delBtnIcon: " ",
editBtnIcon: " ",
viewBtnText: "详情",
labelWidth: 120,
menuWidth: 80,
6 months ago
dialogWidth: 640,
dialogClickModal: false,
searchEnter: true,
excelBtn: false,
filterBtn: true,
searchShowBtn: false,
columnSort: true,
columnSort: true,
index: false,
showOverflowTooltip: true,
searchLabelPosition: "left",
searchLabelPosition: "left",
searchLabelWidth: "auto",
6 months ago
searchGutter: 24,
searchSpan: 6,
menuAlign: "center",
6 months ago
gridBtn: false,
searchMenuPosition: "right",
addBtnIcon: " ",
viewBtnIcon: " ",
delBtnIcon: " ",
editBtnIcon: " ",
align: "center",
6 months ago
column: [
{
label: "作业中心",
prop: "workCenterId",
6 months ago
sortable: true,
filter: true,
span: 24,
search: true,
type: "select",
multiple:true,
dicUrl:"/api/blade-desk/BA/WorkCenter/listForSelect",
props: {
label: 'wcName',
value: 'id',
},
6 months ago
rules: [
{
required: true,
message: "请选择作业中心",
trigger: "change",
6 months ago
},
],
change:(row) =>{
let wcIds = row && row.value && row.value
const filteredUsers = row.dic.filter(user => wcIds.includes(user.id));
this.form.workCenterName = filteredUsers.map(item => item.wcName).join(',')
}
6 months ago
},
{
label: "设备",
prop: "equipmentId",
// bind: "equipmentName",
6 months ago
search: false,
sortable: true,
filter: true,
span: 24,
type: "select",
dicUrl:"/api/blade-desk/equipment/page?current=1&size=999&deviceName={{key}}",
props:{
label:"deviceName",
value:"id",
res:"data.records",
},
remote: true,
// dicData: [
// { label: "化学镀镍", value: "化学镀镍" },
// { label: "电镀设备", value: "电镀设备" },
// { label: "喷涂设备", value: "喷涂设备" },
// ],
6 months ago
rules: [
{
required: true,
message: "请选择设备",
6 months ago
trigger: "blur",
},
],
change:(row) =>{
this.form.equipmentName = row && row.item && row.item.deviceName
}
6 months ago
},
{
label: "日期",
prop: "date",
type:'date',
6 months ago
search: true,
searchRange: true,
6 months ago
sortable: true,
filter: true,
span: 24,
format:"YYYY-MM-DD",
valueFormat:'YYYY-MM-DD',
startPlaceholder: "开始日期",
endPlaceholder: "结束日期",
6 months ago
rules: [
{
required: true,
message: "请输入日期",
trigger: "blur",
},
],
},
{
label: "定额单位面积用电量(kWh/dm²)",
prop: "electricNum",
6 months ago
search: false,
sortable: true,
filter: true,
span: 24,
rules: [
{
required: true,
message: "请输入日期",
trigger: "blur",
},
],
},
],
},
form: {},
page: {
pageSize: 10,
currentPage: 1,
total: 0,
},
};
},
methods: {
6 months ago
handleImport() {
this.isShowImport = true
},
searchChange(params, done){
this.query = params;
this.page.currentPage = 1;
this.onLoad()
done()
},
searchReset(){
this.query = {}
this.onLoad()
},
currentChange(currentPage){
this.page.currentPage = currentPage;
},
sizeChange(pageSize){
this.page.pageSize = pageSize;
},
refreshChange(){
this.onLoad()
},
closeDialog(val){
this.isShowImport = false
if(val){
this.onLoad()
}
},
6 months ago
handleDelete() {
if (this.selectionList.length === 0) {
this.$message.error("请选择至少一条数据");
6 months ago
return;
}
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}).then(() => {
removeItem(this.selectionList.map(item => item.id).join(',')).then(res =>{
if(res.data.code == 200){
this.$message.success('删除成功')
this.onLoad()
}
})
});
},
handleExport() {
this.$confirm('是否导出数据?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}).then(() => {
this.loading = true;
exportData({type:2}).then(res => {
const blob = new Blob([res.data], { type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' });
const url = window.URL.createObjectURL(blob);
const link = document.createElement('a');
link.href = url;
link.download = '用电配额数据.xlsx';
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
window.URL.revokeObjectURL(url);
this.$message.success('导出成功');
this.loading = false;
}).catch(() => {
this.loading = false;
});
});
},
formatDate(dateStr) {
const date = new Date(dateStr);
// 获取年份
const year = date.getFullYear();
// 获取月份 (注意:getMonth() 返回 0-11,所以要 +1)
const month = String(date.getMonth() + 1).padStart(2, '0');
// 获取日期
const day = String(date.getDate()).padStart(2, '0');
return `${year}-${month}-${day}`;
},
beforeOpen(done, type){
if(type == 'edit'){
this.form.workCenterId = this.form.workCenterId + ''
this.form.equipmentId = this.form.equipmentId + ''
this.form.date = this.form.date && this.form.date.indexOf('/') != -1 ? this.formatDate(this.form.date) : this.form.date
done()
console.log('edit-------------',this.form)
}else{
done()
}
6 months ago
},
// 多选
selectionChange(list) {
this.selectionList = list;
},
rowSave(row, done, loading) {
const submitData = { ...row,type:2,workCenterId:typeof(row.workCenterId) == 'object' ? row.workCenterId.join(',') : row.workCenterId};
saveItem(submitData).then(res => {
if(res.data.code == 200){
this.$message.success("新增成功");
this.onLoad()
done()
}
}).catch(err =>{
loading()
})
},
rowUpdate(row, index, done, loading) {
const submitData = { ...row,type:2 };
console.log('edit-------------',submitData)
saveItem(submitData).then(() => {
this.$message.success("修改成功");
this.onLoad(this.page);
done();
}).catch(() => {
loading();
});
},
6 months ago
onLoad() {
this.loading = true;
let param = {
...this.query,
startDate:this.query.date && this.query.date.length != 0 && this.query.date[0],
endDate:this.query.date && this.query.date.length != 0 && this.query.date[1]
}
if(param.date) delete param.date
pageList({
current:this.page.currentPage,
size:this.page.pageSize,
type:2,
...param
}).then(res =>{
this.data = res.data.data.records;
this.page.total = res.data.data.total;
this.loading = false;
})
6 months ago
},
},
};
</script>
6 months ago
<style lang="scss" scoped></style>