中航光电热表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.

400 lines
12 KiB

<template>
7 months ago
<div>
<avue-crud :option="option" v-model:search="search" :table-loading="loading" :data="data" v-model="form" v-model:page="page" ref="crud"
@row-del="rowDel" @row-save="rowSave" @row-update="rowUpdate" @search-change="searchChange" @search-reset="searchReset" @selection-change="selectionChange"
@current-change="currentChange" @size-change="sizeChange" @refresh-change="refreshChange" @on-load="onLoad"
:beforeOpen="beforeOpen">
<template #menu-left>
<el-button type="danger" @click="handleDelete">删除</el-button>
</template>
<template #menu-right>
<el-button type="primary" @click="handleExport">导出</el-button>
<el-button type="primary" @click="handleImport">导入</el-button>
</template>
<template #menu> </template>
</avue-crud>
<!-- 导入 -->
7 months ago
<basic-import v-if="isShowImport" title="导入" :isShow="isShowImport"
templateUrl="/blade-desk/bsEnergyQuota/water-download-excel-template" templateName="用水定额模板.xls"
importUrl="/blade-desk/bsEnergyQuota/water-import-excel" @closeDialog="closeDialog"></basic-import>
7 months ago
</div>
</template>
<script>
7 months ago
import basicImport from '@/components/basic-import/main.vue'
import { pageList, removeItem, saveItem, exportData } from '@/api/energyManagement/bsEnergyQuota';
export default {
7 months ago
components: {
basicImport,
},
7 months ago
data() {
return {
3 months ago
data:[],
isShowImport: false,
7 months ago
selectionList: [],
query: {},
search: {},
7 months ago
option: {
height: "auto",
calcHeight: 32,
tip: false,
simplePage: true,
searchShow: true,
searchMenuSpan: 12,
7 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: 140,
menuWidth: 80,
7 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",
7 months ago
searchGutter: 24,
searchSpan: 6,
menuAlign: "center",
7 months ago
gridBtn: false,
searchMenuPosition: "right",
addBtnIcon: " ",
viewBtnIcon: " ",
delBtnIcon: " ",
editBtnIcon: " ",
align: "center",
7 months ago
column: [
{
label: "作业中心",
prop: "workCenterId",
7 months ago
sortable: true,
filter: true,
multiple: true,
7 months ago
span: 24,
search: true,
type: "select",
dicUrl:"/api/blade-desk/BA/WorkCenter/listForSelect",
props: {
label: 'wcName',
value: 'id',
},
7 months ago
rules: [
{
required: true,
message: "请选择作业中心",
7 months ago
trigger: "blur",
},
],
change:(row) =>{
console.log('row---------------',row)
let wcIds = row && row.value && row.value
const filteredUsers = row.dic.filter(user => wcIds.includes(user.id));
console.log('filteredUsers------------------',filteredUsers)
// this.form.workCenterId = row.value.join(',')
this.form.workCenterName = filteredUsers.map(item => item.wcName).join(',')
}
7 months ago
},
{
label: "设备",
prop: "equipmentId",
// bind: "equipmentName",
7 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: "喷涂设备" },
// ],
rules: [
{
required: true,
message: "请选择设备",
trigger: "blur",
},
],
change:(row) =>{
console.log('row------------------',row)
this.form.equipmentName = row && row.item && row.item.deviceName
}
},
{
label: "日期",
prop: "date",
search: true,
sortable: true,
filter: true,
span: 24,
type: 'date',
searchRange: true,
format: "YYYY-MM-DD",
valueFormat: "YYYY-MM-DD",
7 months ago
rules: [
{
required: true,
message: "请输入日期",
trigger: "blur",
},
],
},
7 months ago
{
label: "自来水用水量(L/d㎡)",
prop: "tapWaterNum",
7 months ago
search: false,
sortable: true,
filter: true,
span: 24,
rules: [
{
required: true,
message: "请输入自来水用水量(L/d㎡)",
7 months ago
trigger: "blur",
},
],
},
{
label: "纯水用水量(L/d㎡)",
prop: "pureWaterNum",
7 months ago
search: false,
sortable: true,
filter: true,
span: 24,
rules: [
{
required: true,
message: "请输入纯水用水量(L/d㎡)",
7 months ago
trigger: "blur",
},
],
},
],
},
form: {},
page: {
pageSize: 10,
currentPage: 1,
total: 0,
},
};
},
methods: {
selectionClear() {
this.selectionList = [];
this.$refs.crud.toggleSelection();
},
searchReset() {
this.query = {};
this.onLoad(this.page);
},
searchChange(params, done) {
this.query = params;
this.page.currentPage = 1;
this.onLoad(this.page, params);
done();
},
currentChange(currentPage) {
this.page.currentPage = currentPage;
},
sizeChange(pageSize) {
this.page.pageSize = pageSize;
},
refreshChange() {
this.onLoad(this.page, this.query);
},
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()
}else{
done()
}
},
closeDialog(val) {
7 months ago
this.isShowImport = false
if(val){
this.onLoad()
}
7 months ago
},
handleImport() {
this.isShowImport = true
},
handleExport() {
this.$confirm('是否导出数据?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}).then(() => {
this.loading = true;
exportData({type:1}).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;
});
});
},
7 months ago
handleDelete() {
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}).then(() => {
const ids = this.selectionList.map(item => item.id).join(',');
removeItem(ids).then(() => {
this.$message.success("删除成功");
this.onLoad(this.page);
this.selectionClear();
});
});
},
rowDel(row) {
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}).then(() => {
removeItem(row.id).then(() => {
this.$message.success("删除成功");
this.onLoad(this.page);
});
});
},
rowSave(row, done, loading) {
const submitData = { ...row,type:1,workCenterId:typeof(row.workCenterId) == 'object' ? row.workCenterId.join(',') : row.workCenterId};
console.log('submit---------------',submitData)
// 处理日期字段,确保为字符串格式
// if (submitData.date) {
// if (typeof submitData.date === 'object' && submitData.date instanceof Date) {
// // 如果是 Date 对象,转换为 yyyy-MM-dd 格式
// const year = submitData.date.getFullYear();
// const month = String(submitData.date.getMonth() + 1).padStart(2, '0');
// const day = String(submitData.date.getDate()).padStart(2, '0');
// submitData.date = `${year}-${month}-${day}`;
// } else if (typeof submitData.date === 'string') {
// // 如果是字符串,截取前10位 (yyyy-MM-dd)
// submitData.date = submitData.date.substring(0, 10);
// }
// }
saveItem(submitData).then(() => {
this.$message.success("新增成功");
this.onLoad(this.page);
done();
}).catch(() => {
loading();
});
},
rowUpdate(row, index, done, loading) {
const submitData = { ...row,type:1 };
console.log('edit-------------',submitData)
// 处理日期字段,确保为字符串格式
// if (submitData.date) {
// if (typeof submitData.date === 'object' && submitData.date instanceof Date) {
// // 如果是 Date 对象,转换为 yyyy-MM-dd 格式
// const year = submitData.date.getFullYear();
// const month = String(submitData.date.getMonth() + 1).padStart(2, '0');
// const day = String(submitData.date.getDate()).padStart(2, '0');
// submitData.date = `${year}-${month}-${day}`;
// } else if (typeof submitData.date === 'string') {
// // 如果是字符串,截取前10位 (yyyy-MM-dd)
// submitData.date = submitData.date.substring(0, 10);
// }
// }
saveItem(submitData).then(() => {
this.$message.success("修改成功");
this.onLoad(this.page);
done();
}).catch(() => {
loading();
});
7 months ago
},
// 多选
selectionChange(list) {
this.selectionList = list;
},
onLoad() {
7 months ago
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({
type: 1,
current:this.page.currentPage,
size:this.page.pageSize,
...param
}).then(res => {
this.data = res.data.data.records;
this.page.total = res.data.data.total;
this.loading = false;
setTimeout(() => {
this.selectionClear();
}, 500);
}).catch(() => {
this.loading = false;
});
7 months ago
},
},
};
</script>
7 months ago
<style lang="scss" scoped></style>