This commit is contained in:
朱文强 2025-02-24 14:07:38 +08:00
parent e314e84b43
commit 445cd9630d
33 changed files with 252 additions and 86 deletions

View File

@ -8,3 +8,12 @@ export function getCostEnviHisPage(query) {
params: query params: query
}) })
} }
// 获得余热发电page
export function yurepage(query) {
return request({
url: '/base/energy-quantity-day/yurepage',
method: 'get',
params: query
})
}

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2022-08-24 11:19:43 * @Date: 2022-08-24 11:19:43
* @LastEditors: zwq * @LastEditors: zwq
* @LastEditTime: 2024-04-02 09:33:29 * @LastEditTime: 2025-02-21 13:18:46
* @Description: * @Description:
*/ */
export default { export default {
@ -16,7 +16,7 @@ export default {
}, },
tableData: [], //table数据 tableData: [], //table数据
listQuery: { //分页 listQuery: { //分页
pageSize: 10, pageSize: 20,
pageNo: 1, pageNo: 1,
total: 1, total: 1,
}, },

View File

@ -0,0 +1,121 @@
<!--
* @Author: zwq
* @Date: 2024-11-13 14:01:16
* @LastEditors: zwq
* @LastEditTime: 2025-02-21 14:32:08
* @Description:
-->
<template>
<div>
<div class="app-container">
<!-- 搜索工作栏 -->
<search-bar
:formConfigs="formConfig"
ref="searchBarForm"
@headBtnClick="buttonClick" />
<!-- 列表 -->
<base-table
:page="listQuery.pageNo"
:limit="listQuery.pageSize"
:table-props="tableProps"
:table-data="tableData"
:max-height="tableH" />
<pagination
:page.sync="listQuery.pageNo"
:limit.sync="listQuery.pageSize"
:total="listQuery.total"
@pagination="getDataList" />
</div>
</div>
</template>
<script>
import basicPage from '@/mixins/basic-page';
import { yurepage } from '@/api/environmental/environmentalLog';
import { parseTime } from '@/filter/code-filter';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [
{
prop: 'recordTime',
label: '记录时间',
filter: parseTime,
},
{
prop: 'remark',
label: '备注',
},
{
prop: 'usingQuantity',
label: '发电量',
filter: (val) => (val != null ? Number(val).toFixed(3) : '-'),
},
];
export default {
name: '',
mixins: [basicPage, tableHeightMixin],
data() {
return {
urlOptions: {
getDataListURL: yurepage,
},
formConfig: [
{
type: 'datePicker',
label: '时间',
dateType: 'datetimerange',
format: 'yyyy-MM-dd HH:mm:ss',
valueFormat: 'yyyy-MM-dd HH:mm:ss',
rangeSeparator: '-',
startPlaceholder: '开始时间',
endPlaceholder: '结束时间',
width: 350,
param: 'searchTime',
clearable: false,
},
{
type: 'button',
btnName: '查询',
name: 'search',
color: 'primary',
},
],
listQuery: {
statisticType: 1,
},
tableProps,
tableData: [],
};
},
components: {},
created() {
const end = new Date();
const start = new Date();
this.listQuery.startTime = parseTime(start).substr(0, 10) + ' 00:00:00';
this.listQuery.endTime = parseTime(end).substr(0, 10) + ' 23:59:59';
this.$nextTick(() => {
this.$refs.searchBarForm.formInline.searchTime = [
this.listQuery.startTime,
this.listQuery.endTime,
];
});
},
methods: {
buttonClick(val) {
switch (val.btnName) {
case 'search':
this.listQuery.pageNo = 1;
this.listQuery.pageSize = 20;
this.listQuery.statisticType = 1;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
this.listQuery.endTime = val.searchTime ? val.searchTime[1] : null;
this.getDataList();
break;
default:
console.log(val);
}
},
},
};
</script>
<style lang="scss"></style>

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2024-11-13 14:01:16 * @Date: 2024-11-13 14:01:16
* @LastEditors: zwq * @LastEditors: zwq
* @LastEditTime: 2024-11-13 15:36:35 * @LastEditTime: 2025-02-21 14:31:00
* @Description: * @Description:
--> -->
<template> <template>
@ -40,7 +40,6 @@ const tableProps = [
prop: 'recTime', prop: 'recTime',
label: '记录时间', label: '记录时间',
filter: parseTime, filter: parseTime,
minWidth: 150,
}, },
{ {
prop: 'remark', prop: 'remark',
@ -49,14 +48,17 @@ const tableProps = [
{ {
prop: 'envi1', prop: 'envi1',
label: '二氧化硫mg/Nm3', label: '二氧化硫mg/Nm3',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'envi2', prop: 'envi2',
label: '氮氧化物mg/Nm3', label: '氮氧化物mg/Nm3',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'envi3', prop: 'envi3',
label: '粉尘mg/Nm3', label: '粉尘mg/Nm3',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
]; ];
export default { export default {
@ -101,15 +103,19 @@ export default {
const start = new Date(); const start = new Date();
this.listQuery.startTime = parseTime(start).substr(0, 10) + ' 00:00:00'; this.listQuery.startTime = parseTime(start).substr(0, 10) + ' 00:00:00';
this.listQuery.endTime = parseTime(end).substr(0, 10) + ' 23:59:59'; this.listQuery.endTime = parseTime(end).substr(0, 10) + ' 23:59:59';
this.formConfig[0].startPlaceholder = parseTime(start).substr(0, 10); this.$nextTick(() => {
this.formConfig[0].endPlaceholder = parseTime(end).substr(0, 10); this.$refs.searchBarForm.formInline.searchTime = [
this.listQuery.startTime,
this.listQuery.endTime,
];
});
}, },
methods: { methods: {
buttonClick(val) { buttonClick(val) {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.statisticType = 1; this.listQuery.statisticType = 1;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
this.listQuery.endTime = val.searchTime ? val.searchTime[1] : null; this.listQuery.endTime = val.searchTime ? val.searchTime[1] : null;

View File

@ -57,7 +57,6 @@ const tableProps = [
prop: 'createTime', prop: 'createTime',
label: '添加时间', label: '添加时间',
filter: parseTime, filter: parseTime,
minWidth: 150
}, },
{ {
prop: 'name', prop: 'name',
@ -68,6 +67,10 @@ const tableProps = [
label: '原料编码', label: '原料编码',
width: 180, width: 180,
}, },
{
prop: 'level',
label: '原料等级',
},
{ {
prop: 'unit', prop: 'unit',
label: '单位', label: '单位',
@ -149,7 +152,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.name = val.name; this.listQuery.name = val.name;
this.listQuery.code = val.code; this.listQuery.code = val.code;
this.getDataList(); this.getDataList();

View File

@ -152,7 +152,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.materialId = val.name; this.listQuery.materialId = val.name;
this.getDataList(); this.getDataList();
break; break;

View File

@ -154,7 +154,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.name = val.name; this.listQuery.name = val.name;
this.listQuery.code = val.code; this.listQuery.code = val.code;
this.getDataList(); this.getDataList();

View File

@ -85,7 +85,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.getDataList(); this.getDataList();
break; break;
default: default:

View File

@ -120,7 +120,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.productionLineId = val.productionLineId; this.listQuery.productionLineId = val.productionLineId;
this.listQuery.productId = val.productId; this.listQuery.productId = val.productId;
this.listQuery.startTime = val.startTime; this.listQuery.startTime = val.startTime;

View File

@ -162,7 +162,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.name = val.name; this.listQuery.name = val.name;
this.listQuery.code = val.code; this.listQuery.code = val.code;
this.getDataList(); this.getDataList();

View File

@ -196,7 +196,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.name = val.name; this.listQuery.name = val.name;
this.getDataList(); this.getDataList();
break; break;

View File

@ -152,7 +152,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.name = val.name; this.listQuery.name = val.name;
this.getDataList(); this.getDataList();
break; break;

View File

@ -309,7 +309,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.lineId = val.line ? val.line : undefined; this.listQuery.lineId = val.line ? val.line : undefined;
this.listQuery.reportType = val.reportType ? val.reportType : undefined; this.listQuery.reportType = val.reportType ? val.reportType : undefined;
this.listQuery.reportStartTime = val.timeVal ? [new Date(val.timeVal[0]).getTime()] : undefined; this.listQuery.reportStartTime = val.timeVal ? [new Date(val.timeVal[0]).getTime()] : undefined;

View File

@ -263,7 +263,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.proLineId = val.line ? val.line : undefined; this.listQuery.proLineId = val.line ? val.line : undefined;
this.listQuery.startTime = val.timeVal ? new Date(val.timeVal[0]).getTime() : undefined; this.listQuery.startTime = val.timeVal ? new Date(val.timeVal[0]).getTime() : undefined;
this.listQuery.endTime = val.timeVal ? new Date(val.timeVal[1]).getTime() : undefined; this.listQuery.endTime = val.timeVal ? new Date(val.timeVal[1]).getTime() : undefined;

View File

@ -305,7 +305,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.lineId = val.line ? val.line : undefined; this.listQuery.lineId = val.line ? val.line : undefined;
this.listQuery.sectionId = val.section ? val.section : undefined; this.listQuery.sectionId = val.section ? val.section : undefined;
this.listQuery.reportType = val.reportType ? val.reportType : undefined; this.listQuery.reportType = val.reportType ? val.reportType : undefined;

View File

@ -321,7 +321,7 @@ export default {
console.log(val.timeSlot); console.log(val.timeSlot);
// this.listQuery.pageNo = 1; // this.listQuery.pageNo = 1;
// this.listQuery.pageSize = 10; // this.listQuery.pageSize = 20;
this.listQuery.proLineId = val.proLineId ? val.proLineId : undefined this.listQuery.proLineId = val.proLineId ? val.proLineId : undefined
this.listQuery.sectionId = val.sectionId ? val.sectionId : undefined this.listQuery.sectionId = val.sectionId ? val.sectionId : undefined
this.listQuery.startTime = val.timeSlot ? new Date(val.timeSlot[0]).getTime() : undefined this.listQuery.startTime = val.timeSlot ? new Date(val.timeSlot[0]).getTime() : undefined

View File

@ -93,25 +93,30 @@ const tableProps = [
{ {
prop: 'originArea', prop: 'originArea',
label: '原片下片面积', label: '原片下片面积',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'deepArea', prop: 'deepArea',
label: '深加工下片面积', label: '深加工下片面积',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'originPrice', prop: 'originPrice',
label: '原片成本/元', label: '原片成本/元',
align: 'right', align: 'right',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'deepPrice', prop: 'deepPrice',
label: '深加工成本/元', label: '深加工成本/元',
align: 'right', align: 'right',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'price', prop: 'price',
label: '总成本/元', label: '总成本/元',
align: 'right', align: 'right',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
]; ];
const tableProps2 = [ const tableProps2 = [
@ -256,7 +261,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.bindObjectId = val.name || null; this.listQuery.bindObjectId = val.name || null;
this.listQuery.statisticType = val.statisticType || 1; this.listQuery.statisticType = val.statisticType || 1;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
@ -274,7 +279,7 @@ export default {
break; break;
case 'export': case 'export':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.bindObjectId = val.name || null; this.listQuery.bindObjectId = val.name || null;
this.listQuery.statisticType = val.statisticType || 1; this.listQuery.statisticType = val.statisticType || 1;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;

View File

@ -77,7 +77,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.name = val.name||null; this.listQuery.name = val.name||null;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
this.listQuery.endTime = val.searchTime this.listQuery.endTime = val.searchTime
@ -90,7 +90,7 @@ export default {
break; break;
case 'export': case 'export':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.name = val.name; this.listQuery.name = val.name;
this.listQuery.recTime = val.searchTime; this.listQuery.recTime = val.searchTime;
this.handleExport(); this.handleExport();

View File

@ -283,7 +283,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.energyTypeId = val.name || null; this.listQuery.energyTypeId = val.name || null;
this.listQuery.statisticType = val.statisticType || 1; this.listQuery.statisticType = val.statisticType || 1;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
@ -302,7 +302,7 @@ export default {
break; break;
case 'export': case 'export':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.energyTypeId = val.name || null; this.listQuery.energyTypeId = val.name || null;
this.listQuery.statisticType = val.statisticType || 1; this.listQuery.statisticType = val.statisticType || 1;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;

View File

@ -103,13 +103,14 @@ const tableProps = [
prop: 'price', prop: 'price',
label: '总价(元)', label: '总价(元)',
align: 'right', align: 'right',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
]; ];
const tableProps2 = [ const tableProps2 = [
{ // {
prop: 'remark', // prop: 'remark',
label: '备注', // label: '',
}, // },
{ {
prop: 'otherCostName', prop: 'otherCostName',
label: '成本名称', label: '成本名称',
@ -118,6 +119,7 @@ const tableProps2 = [
prop: 'price', prop: 'price',
label: '总价(元)', label: '总价(元)',
align: 'right', align: 'right',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
]; ];
export default { export default {
@ -258,7 +260,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.name = val.name || null; this.listQuery.name = val.name || null;
this.listQuery.statisticType = val.statisticType || 1; this.listQuery.statisticType = val.statisticType || 1;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
@ -279,7 +281,7 @@ export default {
break; break;
case 'export': case 'export':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.name = val.name || null; this.listQuery.name = val.name || null;
this.listQuery.statisticType = val.statisticType || 1; this.listQuery.statisticType = val.statisticType || 1;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;

View File

@ -65,6 +65,7 @@ const tableProps = [
prop: 'price', prop: 'price',
label: '成本金额', label: '成本金额',
align: 'right', align: 'right',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'remark', prop: 'remark',
@ -161,7 +162,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.name = val.name||null; this.listQuery.name = val.name||null;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
this.listQuery.endTime = val.searchTime this.listQuery.endTime = val.searchTime
@ -174,7 +175,7 @@ export default {
break; break;
case 'export': case 'export':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.name = val.name||null; this.listQuery.name = val.name||null;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
this.listQuery.endTime = val.searchTime this.listQuery.endTime = val.searchTime

View File

@ -104,15 +104,17 @@ const tableProps = [
{ {
prop: 'innum', prop: 'innum',
label: '上片数量', label: '上片数量',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'outnum', prop: 'outnum',
label: '下片数量', label: '下片数量',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'ratio', prop: 'ratio',
label: '良品率', label: '良品率',
filter: (val) => (val ? val * 100 + '%' : '-'), filter: (val) => (val ? Number(val * 100).toFixed(2) + '%' : '-'),
}, },
]; ];
const tableProps2 = [ const tableProps2 = [
@ -136,15 +138,17 @@ const tableProps2 = [
{ {
prop: 'innum', prop: 'innum',
label: '进片数量', label: '进片数量',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'outnum', prop: 'outnum',
label: '出片数量', label: '出片数量',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'ratio', prop: 'ratio',
label: '良品率', label: '良品率',
filter: (val) => (val ? val * 100 + '%' : '-'), filter: (val) => (val ? Number(val * 100).toFixed(2) + '%' : '-'),
}, },
]; ];
export default { export default {
@ -245,7 +249,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.productionLineId = val.name || null; this.listQuery.productionLineId = val.name || null;
this.listQuery.statisticType = val.statisticType || 1; this.listQuery.statisticType = val.statisticType || 1;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
@ -263,7 +267,7 @@ export default {
break; break;
case 'export': case 'export':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.productionLineId = val.name || null; this.listQuery.productionLineId = val.name || null;
this.listQuery.statisticType = val.statisticType || 1; this.listQuery.statisticType = val.statisticType || 1;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;

View File

@ -106,30 +106,35 @@ const tableProps = [
{ {
prop: 'inCount', prop: 'inCount',
label: '上片数量', label: '上片数量',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'outCount', prop: 'outCount',
label: '下片数量', label: '下片数量',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'ratio', prop: 'ratio',
label: '良品率', label: '良品率',
filter: (val) => (val ? val * 100 + '%' : '-'), filter: (val) => (val ? Number(val * 100).toFixed(2) + '%' : '-'),
}, },
{ {
prop: 'costSum', prop: 'costSum',
label: '深加工成本/元', label: '深加工成本/元',
align: 'right', align: 'right',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'costPiece', prop: 'costPiece',
label: '单片成本/元', label: '单片成本/元',
align: 'right', align: 'right',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'costArea', prop: 'costArea',
label: '每平米成本/元', label: '每平米成本/元',
align: 'right', align: 'right',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
]; ];
const tableProps2 = [ const tableProps2 = [
@ -148,30 +153,35 @@ const tableProps2 = [
{ {
prop: 'inCount', prop: 'inCount',
label: '上片数量', label: '上片数量',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'outCount', prop: 'outCount',
label: '下片数量', label: '下片数量',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'ratio', prop: 'ratio',
label: '良品率', label: '良品率',
filter: (val) => (val ? val * 100 + '%' : '-'), filter: (val) => (val ? Number(val * 100).toFixed(2) + '%' : '-'),
}, },
{ {
prop: 'costSum', prop: 'costSum',
label: '深加工成本/元', label: '深加工成本/元',
align: 'right', align: 'right',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'costPiece', prop: 'costPiece',
label: '单片成本/元', label: '单片成本/元',
align: 'right', align: 'right',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'costArea', prop: 'costArea',
label: '每平米成本/元', label: '每平米成本/元',
align: 'right', align: 'right',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
]; ];
export default { export default {
@ -309,7 +319,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.bindObjectId = val.name || null; this.listQuery.bindObjectId = val.name || null;
this.listQuery.statisticType = val.statisticType || 1; this.listQuery.statisticType = val.statisticType || 1;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
@ -330,7 +340,7 @@ export default {
break; break;
case 'export': case 'export':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.bindObjectId = val.name || null; this.listQuery.bindObjectId = val.name || null;
this.listQuery.statisticType = val.statisticType || 1; this.listQuery.statisticType = val.statisticType || 1;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;

View File

@ -45,14 +45,8 @@ const tableProps1 = [
], ],
}, },
{ {
prop: 'f2', prop: 'sprice',
label: '单位成本', label: '单位成本',
children: [
{
prop: 'sprice',
label: '本月',
},
],
}, },
]; ];
@ -74,14 +68,8 @@ const tableProps2 = [
label: '总成本', label: '总成本',
}, },
{ {
prop: 'f2', prop: 'sprice',
label: '综合单位成本', label: '综合单位成本',
children: [
{
prop: 'sprice',
label: '本月',
},
],
}, },
]; ];
export default { export default {

View File

@ -77,7 +77,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.name = val.name||null; this.listQuery.name = val.name||null;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
this.listQuery.endTime = val.searchTime this.listQuery.endTime = val.searchTime
@ -90,7 +90,7 @@ export default {
break; break;
case 'export': case 'export':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.name = val.name; this.listQuery.name = val.name;
this.listQuery.recTime = val.searchTime; this.listQuery.recTime = val.searchTime;
this.handleExport(); this.handleExport();

View File

@ -282,7 +282,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.energyTypeId = val.name || null; this.listQuery.energyTypeId = val.name || null;
this.listQuery.statisticType = val.statisticType || 1; this.listQuery.statisticType = val.statisticType || 1;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
@ -301,7 +301,7 @@ export default {
break; break;
case 'export': case 'export':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.energyTypeId = val.name || null; this.listQuery.energyTypeId = val.name || null;
this.listQuery.statisticType = val.statisticType || 1; this.listQuery.statisticType = val.statisticType || 1;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;

View File

@ -115,10 +115,10 @@ const tableProps = [
}, },
]; ];
const tableProps2 = [ const tableProps2 = [
{ // {
prop: 'remark', // prop: 'remark',
label: '备注', // label: '',
}, // },
{ {
prop: 'materialName', prop: 'materialName',
label: '原料名称', label: '原料名称',
@ -279,7 +279,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.materialId = val.name || null; this.listQuery.materialId = val.name || null;
this.listQuery.statisticType = val.statisticType || 1; this.listQuery.statisticType = val.statisticType || 1;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
@ -300,7 +300,7 @@ export default {
break; break;
case 'export': case 'export':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.materialId = val.name || null; this.listQuery.materialId = val.name || null;
this.listQuery.statisticType = val.statisticType || 1; this.listQuery.statisticType = val.statisticType || 1;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;

View File

@ -66,27 +66,32 @@ const tableProps = [
{ {
prop: 'thick', prop: 'thick',
label: '厚度', label: '厚度',
filter: (val) => (val != null ? Number(val).toFixed(1) : '-'),
}, },
{ {
prop: 'speed', prop: 'speed',
label: '在线速度', label: '在线速度',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'width', prop: 'width',
label: '掰边宽度', label: '掰边宽度',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'inArea', prop: 'inArea',
label: '拉引量/m²', label: '拉引量/m²',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'outArea', prop: 'outArea',
label: '下片面积/m²', label: '下片面积/m²',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'ratio', prop: 'ratio',
label: '良品率', label: '良品率',
filter: (val) => (val ? val * 100 + '%' : '-'), filter: (val) => (val ? Number(val * 100).toFixed(2) + '%' : '-'),
}, },
]; ];
export default { export default {
@ -181,7 +186,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.bindObjectId = val.name || null; this.listQuery.bindObjectId = val.name || null;
this.listQuery.statisticType = val.statisticType || 1; this.listQuery.statisticType = val.statisticType || 1;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
@ -195,7 +200,7 @@ export default {
break; break;
case 'export': case 'export':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.bindObjectId = val.name || null; this.listQuery.bindObjectId = val.name || null;
this.listQuery.statisticType = val.statisticType || 1; this.listQuery.statisticType = val.statisticType || 1;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;

View File

@ -106,10 +106,10 @@ const tableProps = [
}, },
]; ];
const tableProps2 = [ const tableProps2 = [
{ // {
prop: 'remark', // prop: 'remark',
label: '备注', // label: '',
}, // },
{ {
prop: 'otherCostName', prop: 'otherCostName',
label: '成本名称', label: '成本名称',
@ -258,7 +258,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.name = val.name || null; this.listQuery.name = val.name || null;
this.listQuery.statisticType = val.statisticType || 1; this.listQuery.statisticType = val.statisticType || 1;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
@ -279,7 +279,7 @@ export default {
break; break;
case 'export': case 'export':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.name = val.name || null; this.listQuery.name = val.name || null;
this.listQuery.statisticType = val.statisticType || 1; this.listQuery.statisticType = val.statisticType || 1;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;

View File

@ -65,6 +65,7 @@ const tableProps = [
prop: 'price', prop: 'price',
label: '成本金额', label: '成本金额',
align: 'right', align: 'right',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'remark', prop: 'remark',
@ -161,7 +162,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.name = val.name||null; this.listQuery.name = val.name||null;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
this.listQuery.endTime = val.searchTime this.listQuery.endTime = val.searchTime
@ -174,7 +175,7 @@ export default {
break; break;
case 'export': case 'export':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.name = val.name||null; this.listQuery.name = val.name||null;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
this.listQuery.endTime = val.searchTime this.listQuery.endTime = val.searchTime

View File

@ -102,29 +102,34 @@ const tableProps = [
{ {
prop: 'thick', prop: 'thick',
label: '厚度', label: '厚度',
filter: (val) => (val != null ? Number(val).toFixed(1) : '-'),
}, },
{ {
prop: 'inArea', prop: 'inArea',
label: '拉引量/m²', label: '拉引量/m²',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'outArea', prop: 'outArea',
label: '下片面积/m²', label: '下片面积/m²',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'ratio', prop: 'ratio',
label: '良品率', label: '良品率',
filter: (val) => (val ? val * 100 + '%' : '-'), filter: (val) => (val ? Number(val * 100).toFixed(2) + '%' : '-'),
}, },
{ {
prop: 'costSum', prop: 'costSum',
label: '原片成本/元', label: '原片成本/元',
align: 'right', align: 'right',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'costArea', prop: 'costArea',
label: '每平米成本/元', label: '每平米成本/元',
align: 'right', align: 'right',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
]; ];
const tableProps2 = [ const tableProps2 = [
@ -143,34 +148,40 @@ const tableProps2 = [
{ {
prop: 'inArea', prop: 'inArea',
label: '拉引量/m²', label: '拉引量/m²',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'outArea', prop: 'outArea',
label: '下片面积/m²', label: '下片面积/m²',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'outCount', prop: 'outCount',
label: '下片数量', label: '下片数量',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'ratio', prop: 'ratio',
label: '良品率', label: '良品率',
filter: (val) => (val ? val * 100 + '%' : '-'), filter: (val) => (val ? Number(val * 100).toFixed(2) + '%' : '-'),
}, },
{ {
prop: 'costSum', prop: 'costSum',
label: '原片成本/元', label: '原片成本/元',
align: 'right', align: 'right',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'costPiece', prop: 'costPiece',
label: '单片成本/元', label: '单片成本/元',
align: 'right', align: 'right',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
{ {
prop: 'costArea', prop: 'costArea',
label: '每平米成本/元', label: '每平米成本/元',
align: 'right', align: 'right',
filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
}, },
]; ];
export default { export default {
@ -308,7 +319,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.bindObjectId = val.name || null; this.listQuery.bindObjectId = val.name || null;
this.listQuery.statisticType = val.statisticType || 1; this.listQuery.statisticType = val.statisticType || 1;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
@ -329,7 +340,7 @@ export default {
break; break;
case 'export': case 'export':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 20;
this.listQuery.bindObjectId = val.name || null; this.listQuery.bindObjectId = val.name || null;
this.listQuery.statisticType = val.statisticType || 1; this.listQuery.statisticType = val.statisticType || 1;
this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null; this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;

View File

@ -30,7 +30,7 @@
<el-select v-model="form.pricingMethod" placeholder="请选择" style="width: 100%;"> <el-select v-model="form.pricingMethod" placeholder="请选择" style="width: 100%;">
<el-option label="时间段" :value= '0' ></el-option> <el-option label="时间段" :value= '0' ></el-option>
<el-option label="使用量" :value= '1' ></el-option> <el-option label="使用量" :value= '1' ></el-option>
<el-option label="固定价位" :value= '2' ></el-option> <el-option label="单一计价" :value= '2' ></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>

View File

@ -108,14 +108,14 @@
</h2> </h2>
<!-- 表单 --> <!-- 表单 -->
<div class="form-cont"> <div class="form-cont" style="margin-top: 60px;">
<el-tabs <!-- <el-tabs
class="form" class="form"
v-model="loginForm.loginType" v-model="loginForm.loginType"
style="float: none"> style="float: none">
<el-tab-pane label="账号密码登录" name="uname"></el-tab-pane> <el-tab-pane label="账号密码登录" name="uname"></el-tab-pane> -->
<!-- <el-tab-pane label="短信验证码登录" name="sms"></el-tab-pane> --> <!-- <el-tab-pane label="短信验证码登录" name="sms"></el-tab-pane> -->
</el-tabs> <!-- </el-tabs> -->
<div style=""> <div style="">
<el-form <el-form
ref="loginForm" ref="loginForm"