Compare commits

..

No commits in common. "b8d26c87d8458f579f0a70ccf2ab22fa360c5552" and "e24f9c1079fef0e6a57d30da66b6a8096b06fd15" have entirely different histories.

2 changed files with 291 additions and 634 deletions

View File

@ -1,341 +1,202 @@
<!-- <!--
* @Author: Do not edit * @Author: Do not edit
* @Date: 2024-04-22 15:49:56 * @Date: 2024-04-22 15:49:56
* @LastEditTime: 2024-04-25 09:53:41 * @LastEditTime: 2024-04-25 08:39:13
* @LastEditors: DY * @LastEditors: DY
* @Description: * @Description:
--> -->
<template> <template>
<div class="weekly"> <div class="weekly">
<el-form <el-form :inline="true" :model="listQuery" class="blueTip">
:inline="true" <el-form-item label="月" prop="reportTime">
:model="listQuery" <el-date-picker v-model="listQuery.time" value-format="yyyy-MM-dd HH:mm:ss" type="month" size="small" placeholder="选择月">
class="blueTip"> </el-date-picker>
<el-form-item </el-form-item>
label="月" <el-button v-if="this.$auth.hasPermi('base:report-auto-production:query')" type="primary" size="small" @click="getList">
prop="reportTime"> 查询
<el-date-picker </el-button>
v-model="listQuery.time" <el-button v-if="this.$auth.hasPermiAnd(['base:report-auto-original-glass:export', 'base:report-auto-production:export'])" type="primary" size="small" plain
value-format="yyyy-MM-dd HH:mm:ss" @click="handleExport">导出</el-button>
type="month" </el-form>
size="small" <base-table
placeholder="选择月"></el-date-picker>
</el-form-item>
<el-button
v-if="this.$auth.hasPermi('base:report-auto-production:query')"
type="primary"
size="small"
@click="getList">
查询
</el-button>
<el-button
v-if="
this.$auth.hasPermiAnd([
'base:report-auto-original-glass:export',
'base:report-auto-production:export',
])
"
type="primary"
size="small"
plain
@click="handleExport">
导出
</el-button>
</el-form>
<base-table
:table-props="tableProps" :table-props="tableProps"
:table-data="tableData" :table-data="tableData"
:span-method="objectSpanMethod1" :span-method="mergeColumnHandler"
@emitFun="handleEmitFun"
:max-height="tableH" />
<base-table
:table-props="tableProps1"
:table-data="tableData1"
:span-method="objectSpanMethod1"
@emitFun="handleEmitFun" @emitFun="handleEmitFun"
:max-height="tableH" :max-height="tableH"
style="margin-top: 15px" /> />
</div> <!-- <monthWeek v-if="glassWeekShow" ref="monthWeek" :product="false" :params="listQuery" />
<proMonth v-if="proWeekShow" ref="proMonth" :product="false" :params="listQuery" /> -->
</div>
</template> </template>
<script> <script>
import { productionMonthY, productionMonthD } from '@/api/report/glass'; // import monthWeek from '../glass/month.vue'
import { parseTime } from '../../core/mixins/code-filter'; // import proMonth from '../productionMonthReport/index.vue'
import FileSaver from 'file-saver'; import { productionMonthY } from '@/api/report/glass';
import * as XLSX from 'xlsx/xlsx.mjs'; import { parseTime } from '../../core/mixins/code-filter'
import FileSaver from 'file-saver'
import * as XLSX from 'xlsx/xlsx.mjs'
import tableHeightMixin from '@/mixins/lb/tableHeightMixin'; import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
export default { export default {
// components: { monthWeek, proMonth }, // components: { monthWeek, proMonth },
mixins: [tableHeightMixin], mixins: [tableHeightMixin],
data() { data() {
return { return {
heightNum: 350, heightNum: 240,
listQuery: { listQuery: {
time: '', time: parseTime(new Date())
}, },
// startTimeStamp: '', // startTimeStamp: '',
// endTimeStamp: '', // endTimeStamp: '',
// reportTime: '', // reportTime: '',
// glassWeekShow: false, // glassWeekShow: false,
// proWeekShow: false, // proWeekShow: false,
tableData: [], tableData: [],
tableProps: [], tableProps: [
tableData1: [], {
tableProps1: [], prop: 'lineName',
resData: [], label: ''
span1: [], //1 },
resData1: [], {
span2: [] prop: 'paramsName',
}; label: ''
}, }
created() { ],
let now = new Date() resData: []
now.setHours(0, 0, 0, 0) }
now.setDate(1) },
let startOfMonth = now.getTime() created() {
let firstDayOfMonth = new Date(startOfMonth) // this.getCurrentMonthFirst()
this.listQuery.time = parseTime(firstDayOfMonth) // this.glassWeekShow = true
}, // this.proWeekShow = true
mounted() { },
this.getList(); mounted() {
}, this.getList()
methods: { },
async getList() { methods: {
this.tableData = []; /** 合并table列的规则 */
this.tableProps = [ mergeColumnHandler({ row, column, rowIndex, columnIndex }) {
{ // if (columnIndex == 0 || columnIndex == 1) {
prop: 'lineName', // if (this.spanInfo[rowIndex]) {
label: '', // return [
fixed: true, // this.spanInfo[rowIndex], // row span
}, // 1, // col span
{ // ];
prop: 'paramsName', // } else {
label: '', // return [0, 0];
fixed: true, // }
}, // }
];
this.tableData1 = [];
this.tableProps1 = [
{
prop: 'lineName',
label: '',
fixed: true,
},
{
prop: 'paramsName',
label: '',
fixed: true,
},
];
await productionMonthY(this.listQuery).then((res) => {
this.resData = res.data;
//
Object.keys(this.resData).forEach((item) => {
this.tableProps.push({
prop: item,
label: item,
'show-overflow-tooltip': true,
});
});
this.buildTableData(this.resData);
});
await productionMonthD(this.listQuery).then((res) => {
this.resData1 = res.data;
//
Object.keys(this.resData1).forEach((item) => {
this.tableProps1.push({
prop: item,
label: item,
'show-overflow-tooltip': true,
});
});
this.buildTableData1(this.resData1);
});
}, },
// 2 async getList() {
buildTableData1(data) { this.tableData = []
let keys = Object.keys(data); this.tableProps = [
let tempData = []; {
let subKeys = Object.keys(data[keys[0]]); prop: 'lineName',
let sub2Keys = Object.keys(data[keys[0]][subKeys[0]]); label: ''
for (let i = 0; i < keys.length; i++) { },
if (i === 0) { {
for (let j = 0; j < subKeys.length; j++) { prop: 'paramsName',
for (let k = 0; k < sub2Keys.length; k++) { label: ''
let obj = {}; }
obj.lineName = subKeys[j]; ]
obj.paramsName = sub2Keys[k]; await productionMonthY(this.listQuery).then(res => {
obj[keys[0]] = data[keys[0]][subKeys[j]][sub2Keys[k]]; this.resData = res.data
tempData.push(obj); //
} Object.keys(this.resData).forEach(item => {
} this.tableProps.push({
} else { prop: item,
for (let j = 0; j < subKeys.length; j++) { label: item,
for (let k = 0; k < sub2Keys.length; k++) { 'show-overflow-tooltip': true
for (let v = 0; v < tempData.length; v++) { })
if ( })
tempData[v].lineName === subKeys[j] && this.buildTableData()
tempData[v].paramsName === sub2Keys[k] })
) { },
tempData[v][keys[i]] = data[keys[i]][subKeys[j]][sub2Keys[k]]; //
} buildTableData() {
} const temp = Object.values(this.resData)
} console.log('temp', temp)
} const dataArray = []
} // Object.entries(this.resData).forEach(en => {
} // console.log('', en)
this.tableData1 = tempData; // const date = en[0]
this.getSpanArr1(this.tableData1); // let valueArray = []
}, // Object.entries(en[1]).forEach((values, sequence) => {
// // let yValue = {}
buildTableData(data) { // yValue['line'] = values[0]
let keys = Object.keys(data); // Object.entries(values[1]).forEach((lastV, index) => {
let tempData = []; // console.log(lastV)
let subKeys = Object.keys(data[keys[0]]); // const tempValue = {}
let sub2Keys = Object.keys(data[keys[0]][subKeys[0]]); // if (values[0] === yValue['line']) {
for (let i = 0; i < keys.length; i++) { // tempValue[values[0]] = lastV[1]
if (i === 0) { // }
for (let j = 0; j < subKeys.length; j++) { // valueArray.push(tempValue)
for (let k = 0; k < sub2Keys.length; k++) { // })
let obj = {}; // yValue[date+'-'+sequence] = valueArray
obj.lineName = subKeys[j]; // dataArray.push(yValue)
obj.paramsName = sub2Keys[k]; // })
obj[keys[0]] = data[keys[0]][subKeys[j]][sub2Keys[k]]; // })
tempData.push(obj); // for (let key in temp) {
} // console.log('', temp[key])
} // }
} else { // 线
for (let j = 0; j < subKeys.length; j++) { Object.keys(temp[0]).forEach(item => {
for (let k = 0; k < sub2Keys.length; k++) { //
for (let v = 0; v < tempData.length; v++) { Object.keys(Object.values(temp[0])[0]).forEach(it => {
if ( const row = {
tempData[v].lineName === subKeys[j] && lineName: item,
tempData[v].paramsName === sub2Keys[k] paramsName: it
) { }
tempData[v][keys[i]] = data[keys[i]][subKeys[j]][sub2Keys[k]]; this.tableData.push(row)
} })
} })
} },
} handleExport() {
} const xlsxParam = { raw: true }
} let workbook = XLSX.utils.book_new()
this.tableData = tempData; var ws = XLSX.utils.table_to_sheet( document.querySelector('#exportTable'), xlsxParam)
this.getSpanArr(this.tableData); XLSX.utils.book_append_sheet(workbook, ws, '许昌安彩月原片生产汇总')
}, var prows = XLSX.utils.table_to_sheet( document.querySelector('#exportproductionTable'), xlsxParam)
getSpanArr1(data) { XLSX.utils.book_append_sheet(workbook, prows, '许昌安彩月成品生产汇总')
this.span2 = []; let fileName = '生产数据汇总表-月报.xlsx';
for (var i = 0; i < data.length; i++) { var wbout = XLSX.write(workbook, {
if (i === 0) { bookType: 'xlsx',
this.span2.push(1); bookSST: true,
this.index1 = 0; type: 'array',
} else { });
if (data[i].lineName === data[i - 1].lineName) { try {
this.span2[this.index1] += 1; FileSaver.saveAs(
this.span2.push(0); new Blob([wbout], { type: 'application/octet-stream' }),
} else { fileName
this.span2.push(1); );
this.index1 = i; this.$message.success('导出成功');
} } catch (e) {
} if (typeof console !== 'undefined') console.log(e, wbout);
} }
}, return wbout;
// },
getSpanArr(data) { handleEmitFun(payload) {
this.span1 = [];
for (var i = 0; i < data.length; i++) {
if (i === 0) {
this.span1.push(1);
this.index = 0;
} else {
if (data[i].lineName === data[i - 1].lineName) {
this.span1[this.index] += 1;
this.span1.push(0);
} else {
this.span1.push(1);
this.index = i;
}
}
}
},
objectSpanMethod1({ rowIndex, columnIndex }) {
if (columnIndex === 0) {
const _row = this.span1[rowIndex];
return {
rowspan: _row,
colspan: 1,
};
}
},
handleExport() {
const xlsxParam = { raw: true };
let tables = document.querySelector('.el-table').cloneNode(true)
const fix = tables.querySelector('.el-table__fixed')
const fixRight = tables.querySelector('.el-table__fixed-right')
if (fix) {
tables.removeChild(tables.querySelector('.el-table__fixed'))
}
if (fixRight) {
tables.removeChild(tables.querySelector('.el-table__fixed-right'))
}
let workbook = XLSX.utils.book_new();
var ws = XLSX.utils.table_to_sheet(
tables,
xlsxParam
);
XLSX.utils.book_append_sheet(workbook, ws, '许昌安彩月原片生产汇总');
let tables1 = document.querySelectorAll('.el-table')[1].cloneNode(true)
const fix1 = tables1.querySelector('.el-table__fixed')
const fixRight1 = tables1.querySelector('.el-table__fixed-right')
if (fix1) {
tables1.removeChild(fix1)
}
if (fixRight1) {
tables1.removeChild(fixRight1)
}
var prows = XLSX.utils.table_to_sheet(
tables1,
xlsxParam
);
XLSX.utils.book_append_sheet(workbook, prows, '许昌安彩月成品生产汇总');
let fileName = '生产数据汇总表-月报.xlsx';
var wbout = XLSX.write(workbook, {
bookType: 'xlsx',
bookSST: true,
type: 'array',
});
try {
FileSaver.saveAs(
new Blob([wbout], { type: 'application/octet-stream' }),
fileName
);
this.$message.success('导出成功');
} catch (e) {
if (typeof console !== 'undefined') console.log(e, wbout);
}
return wbout;
},
handleEmitFun(payload) {
console.log('payload', payload); console.log('payload', payload);
}, }
}, }
}; }
</script> </script>
<style scoped> <style scoped>
.weekly { .weekly {
padding: 16px; padding: 16px;
} }
.blueTip::before { .blueTip::before{
display: inline-block; display: inline-block;
content: ''; content: '';
width: 4px; width: 4px;
height: 18px; height: 18px;
background: #0b58ff; background: #0B58FF;
border-radius: 1px; border-radius: 1px;
margin-right: 8px; margin-right: 8PX;
margin-top: 8px; margin-top: 8px;
margin-left: 16px; margin-left: 16px;
} }
</style> </style>

View File

@ -1,341 +1,137 @@
<!-- <!--
* @Author: Do not edit * @Author: Do not edit
* @Date: 2024-04-22 15:49:56 * @Date: 2024-04-22 15:49:56
* @LastEditTime: 2024-04-25 09:54:39 * @LastEditTime: 2024-04-24 15:49:32
* @LastEditors: DY * @LastEditors: DY
* @Description: * @Description:
--> -->
<template> <template>
<div class="weekly"> <div class="weekly">
<el-form <el-form :inline="true" :model="listQuery" class="blueTip">
:inline="true" <el-form-item label="年" prop="reportTime">
:model="listQuery" <el-date-picker v-model="reportTime" type="year" size="small" @change="changeTime"
class="blueTip"> :picker-options="{firstDayOfWeek: 1}" :format="'yyyy 年' + '\u3000' + startTimeStamp + '-' + endTimeStamp"
<el-form-item style="width: 350px" placeholder="选择年">
label="月" </el-date-picker>
prop="reportTime"> </el-form-item>
<el-date-picker <el-button v-if="this.$auth.hasPermi('base:report-auto-production:query')" type="primary" size="small" @click="search()">
v-model="listQuery.time" 查询
value-format="yyyy-MM-dd HH:mm:ss" </el-button>
type="year" <el-button v-if="this.$auth.hasPermiAnd(['base:report-auto-original-glass:export', 'base:report-auto-production:export'])" type="primary" size="small" plain
size="small" @click="handleExport">导出</el-button>
placeholder="选择年"></el-date-picker> </el-form>
</el-form-item> <glassYear v-if="glassYearShow" ref="glassYear" :product="false" :params="listQuery" />
<el-button <proYear v-if="proYearShow" ref="proYear" :product="false" :params="listQuery" />
v-if="this.$auth.hasPermi('base:report-auto-production:query')" </div>
type="primary"
size="small"
@click="getList">
查询
</el-button>
<el-button
v-if="
this.$auth.hasPermiAnd([
'base:report-auto-original-glass:export',
'base:report-auto-production:export',
])
"
type="primary"
size="small"
plain
@click="handleExport">
导出
</el-button>
</el-form>
<base-table
:table-props="tableProps"
:table-data="tableData"
:span-method="objectSpanMethod1"
@emitFun="handleEmitFun"
:max-height="tableH" />
<base-table
:table-props="tableProps1"
:table-data="tableData1"
:span-method="objectSpanMethod1"
@emitFun="handleEmitFun"
:max-height="tableH"
style="margin-top: 15px" />
</div>
</template> </template>
<script> <script>
import { productionYearY, productionYearD } from '@/api/report/glass'; import glassYear from '../glass/year.vue'
import { parseTime } from '../../core/mixins/code-filter'; import proYear from '../productionYearReport/index.vue'
import FileSaver from 'file-saver'; import { parseTime } from '../../core/mixins/code-filter'
import * as XLSX from 'xlsx/xlsx.mjs'; import FileSaver from 'file-saver'
import tableHeightMixin from '@/mixins/lb/tableHeightMixin'; import * as XLSX from 'xlsx/xlsx.mjs'
export default { export default {
// components: { monthWeek, proMonth }, components: { glassYear, proYear },
mixins: [tableHeightMixin], data() {
data() { return {
return { listQuery: {
heightNum: 350, // pageSize: 10,
listQuery: { // pageNo: 1,
time: '', // total: 0,
}, reportType: 5,
// startTimeStamp: '', reportTime: []
// endTimeStamp: '', },
// reportTime: '', startTimeStamp: '',
// glassWeekShow: false, endTimeStamp: '',
// proWeekShow: false, reportTime: '',
tableData: [], glassYearShow: false,
tableProps: [], proYearShow: false
tableData1: [], }
tableProps1: [], },
resData: [], created() {
span1: [], //1 this.getCurrentYearFirst()
resData1: [], this.glassYearShow = true
span2: [] this.proYearShow = true
}; },
}, methods: {
created() { handleExport() {
let now = new Date() const xlsxParam = { raw: true }
now.setHours(0, 0, 0, 0) let workbook = XLSX.utils.book_new()
now.setDate(1) var ws = XLSX.utils.table_to_sheet( document.querySelector('#exportTable'), xlsxParam)
let startOfMonth = now.getTime() XLSX.utils.book_append_sheet(workbook, ws, '许昌安彩年原片生产汇总')
let firstDayOfMonth = new Date(startOfMonth) var prows = XLSX.utils.table_to_sheet( document.querySelector('#exportproductionTable'), xlsxParam)
this.listQuery.time = parseTime(firstDayOfMonth) XLSX.utils.book_append_sheet(workbook, prows, '许昌安彩年成品生产汇总')
}, let fileName = '生产数据汇总表-年报.xlsx';
mounted() { var wbout = XLSX.write(workbook, {
this.getList(); bookType: 'xlsx',
}, bookSST: true,
methods: { type: 'array',
async getList() { });
this.tableData = []; try {
this.tableProps = [ FileSaver.saveAs(
{ new Blob([wbout], { type: 'application/octet-stream' }),
prop: 'lineName', fileName
label: '', );
fixed: true, this.$message.success('导出成功');
}, } catch (e) {
{ if (typeof console !== 'undefined') console.log(e, wbout);
prop: 'paramsName', }
label: '', return wbout;
fixed: true, },
}, search() {
]; this.$nextTick(() => {
this.tableData1 = []; this.$refs['glassYear'].getDataList()
this.tableProps1 = [ this.$refs['proYear'].getDataList()
{ })
prop: 'lineName', },
label: '', changeTime(val) {
fixed: true, if(val) {
}, // let timeStamp = val.getTime(); //
{ this.endTimeStamp = this.timeFun(new Date(val.getFullYear(),11, 31, 7, 0, 0).getTime()); //
prop: 'paramsName', this.startTimeStamp = this.timeFun(new Date(val.getFullYear(), 0, 1, 7, 0, 1).getTime()); //
label: '', this.listQuery.reportTime[0] = parseTime(new Date(val.getFullYear(), 0, 1, 7, 0, 1).getTime()) //+ ' 00:00:00' //new Date(this.startTimeStamp + ' 00:00:00').getTime() / 1000
fixed: true, this.listQuery.reportTime[1] = parseTime(new Date(val.getFullYear(), 11, 31, 7, 0, 0).getTime()) //+ ' 23:59:59' //new Date(this.endTimeStamp + ' 23:59:59').getTime() / 1000
}, } else {
]; this.listQuery.reportTime = []
await productionYearY(this.listQuery).then((res) => {
this.resData = res.data;
//
Object.keys(this.resData).forEach((item) => {
this.tableProps.push({
prop: item,
label: item,
'show-overflow-tooltip': true,
});
});
this.buildTableData(this.resData);
});
await productionYearD(this.listQuery).then((res) => {
this.resData1 = res.data;
//
Object.keys(this.resData1).forEach((item) => {
this.tableProps1.push({
prop: item,
label: item,
'show-overflow-tooltip': true,
});
});
this.buildTableData1(this.resData1);
});
},
// 2
buildTableData1(data) {
let keys = Object.keys(data);
let tempData = [];
let subKeys = Object.keys(data[keys[0]]);
let sub2Keys = Object.keys(data[keys[0]][subKeys[0]]);
for (let i = 0; i < keys.length; i++) {
if (i === 0) {
for (let j = 0; j < subKeys.length; j++) {
for (let k = 0; k < sub2Keys.length; k++) {
let obj = {};
obj.lineName = subKeys[j];
obj.paramsName = sub2Keys[k];
obj[keys[0]] = data[keys[0]][subKeys[j]][sub2Keys[k]];
tempData.push(obj);
}
}
} else {
for (let j = 0; j < subKeys.length; j++) {
for (let k = 0; k < sub2Keys.length; k++) {
for (let v = 0; v < tempData.length; v++) {
if (
tempData[v].lineName === subKeys[j] &&
tempData[v].paramsName === sub2Keys[k]
) {
tempData[v][keys[i]] = data[keys[i]][subKeys[j]][sub2Keys[k]];
}
}
}
}
}
}
this.tableData1 = tempData;
this.getSpanArr1(this.tableData1);
},
//
buildTableData(data) {
let keys = Object.keys(data);
let tempData = [];
let subKeys = Object.keys(data[keys[0]]);
let sub2Keys = Object.keys(data[keys[0]][subKeys[0]]);
for (let i = 0; i < keys.length; i++) {
if (i === 0) {
for (let j = 0; j < subKeys.length; j++) {
for (let k = 0; k < sub2Keys.length; k++) {
let obj = {};
obj.lineName = subKeys[j];
obj.paramsName = sub2Keys[k];
obj[keys[0]] = data[keys[0]][subKeys[j]][sub2Keys[k]];
tempData.push(obj);
}
}
} else {
for (let j = 0; j < subKeys.length; j++) {
for (let k = 0; k < sub2Keys.length; k++) {
for (let v = 0; v < tempData.length; v++) {
if (
tempData[v].lineName === subKeys[j] &&
tempData[v].paramsName === sub2Keys[k]
) {
tempData[v][keys[i]] = data[keys[i]][subKeys[j]][sub2Keys[k]];
}
}
}
}
}
}
this.tableData = tempData;
this.getSpanArr(this.tableData);
},
getSpanArr1(data) {
this.span2 = [];
for (var i = 0; i < data.length; i++) {
if (i === 0) {
this.span2.push(1);
this.index1 = 0;
} else {
if (data[i].lineName === data[i - 1].lineName) {
this.span2[this.index1] += 1;
this.span2.push(0);
} else {
this.span2.push(1);
this.index1 = i;
}
}
} }
}, },
// getCurrentYearFirst() {
getSpanArr(data) { let date = new Date();
this.span1 = []; date.setDate(1);
for (var i = 0; i < data.length; i++) { date.setMonth(0);
if (i === 0) { this.reportTime = date;
this.span1.push(1); this.startTimeStamp = this.timeFun(new Date(new Date().getFullYear(), 0, 1,7,0,1).getTime()); //
this.index = 0; this.endTimeStamp = this.timeFun(new Date(new Date().getFullYear(), 11, 31, 7, 0, 0).getTime()); //
} else { this.listQuery.reportTime[0] = parseTime(new Date(new Date().getFullYear(), 0, 1, 7, 0, 1).getTime()) //+ ' 00:00:00' //new Date(this.startTimeStamp + ' 00:00:00').getTime() / 1000
if (data[i].lineName === data[i - 1].lineName) { this.listQuery.reportTime[1] = parseTime(new Date(new Date().getFullYear(), 11, 31, 7, 0, 0).getTime()) //+ ' 23:59:59' //new Date(this.endTimeStamp + ' 23:59:59').getTime() / 100
this.span1[this.index] += 1; },
this.span1.push(0); //yy-mm-dd hh:mm:ss
} else { timeFun(unixtimestamp) {
this.span1.push(1); var unixtimestamp = new Date(unixtimestamp);
this.index = i; var year = 1900 + unixtimestamp.getYear();
} var month = "0" + (unixtimestamp.getMonth() + 1);
} var date = "0" + unixtimestamp.getDate();
} return year + "-" + month.substring(month.length - 2, month.length) + "-" + date.substring(date.length - 2, date.length)
}, },
objectSpanMethod1({ rowIndex, columnIndex }) { }
if (columnIndex === 0) { }
const _row = this.span1[rowIndex];
return {
rowspan: _row,
colspan: 1,
};
}
},
handleExport() {
const xlsxParam = { raw: true };
let tables = document.querySelector('.el-table').cloneNode(true)
const fix = tables.querySelector('.el-table__fixed')
const fixRight = tables.querySelector('.el-table__fixed-right')
if (fix) {
tables.removeChild(tables.querySelector('.el-table__fixed'))
}
if (fixRight) {
tables.removeChild(tables.querySelector('.el-table__fixed-right'))
}
let workbook = XLSX.utils.book_new();
var ws = XLSX.utils.table_to_sheet(
tables,
xlsxParam
);
XLSX.utils.book_append_sheet(workbook, ws, '许昌安彩年原片生产汇总');
let tables1 = document.querySelectorAll('.el-table')[1].cloneNode(true)
const fix1 = tables1.querySelector('.el-table__fixed')
const fixRight1 = tables1.querySelector('.el-table__fixed-right')
if (fix1) {
tables1.removeChild(tables1.querySelector('.el-table__fixed'))
}
if (fixRight1) {
tables1.removeChild(tables1.querySelector('.el-table__fixed-right'))
}
var prows = XLSX.utils.table_to_sheet(
tables1,
xlsxParam
);
XLSX.utils.book_append_sheet(workbook, prows, '许昌安彩年成品生产汇总');
let fileName = '生产数据汇总表-年报.xlsx';
var wbout = XLSX.write(workbook, {
bookType: 'xlsx',
bookSST: true,
type: 'array',
});
try {
FileSaver.saveAs(
new Blob([wbout], { type: 'application/octet-stream' }),
fileName
);
this.$message.success('导出成功');
} catch (e) {
if (typeof console !== 'undefined') console.log(e, wbout);
}
return wbout;
},
handleEmitFun(payload) {
console.log('payload', payload);
},
},
};
</script> </script>
<style scoped> <style scoped>
.weekly { .weekly {
padding: 16px; padding-top: 16px;
} }
.blueTip::before { .blueTip::before{
display: inline-block; display: inline-block;
content: ''; content: '';
width: 4px; width: 4px;
height: 18px; height: 18px;
background: #0b58ff; background: #0B58FF;
border-radius: 1px; border-radius: 1px;
margin-right: 8px; margin-right: 8PX;
margin-top: 8px; margin-top: 8px;
margin-left: 16px; margin-left: 16px;
} }
</style> </style>