Compare commits
No commits in common. "e32530e459950ce5b294f39fd9d04676d1074ea8" and "93ac1c474298a9a25c019178c15579eafd5ea2df" have entirely different histories.
e32530e459
...
93ac1c4742
@ -1,54 +0,0 @@
|
|||||||
/*
|
|
||||||
* @Author: zwq
|
|
||||||
* @Date: 2024-04-18 16:53:17
|
|
||||||
* @LastEditors: zwq
|
|
||||||
* @LastEditTime: 2024-09-06 14:35:13
|
|
||||||
* @Description:
|
|
||||||
*/
|
|
||||||
|
|
||||||
import request from '@/utils/request'
|
|
||||||
|
|
||||||
// 获得总成本统计-按日期分页
|
|
||||||
export function getCostSumPage(query) {
|
|
||||||
return request({
|
|
||||||
url: '/monitoring/cost-sum/page',
|
|
||||||
method: 'get',
|
|
||||||
params: query
|
|
||||||
})
|
|
||||||
}
|
|
||||||
// 更新总成本统计-按日期
|
|
||||||
export function updateCostSum(data) {
|
|
||||||
return request({
|
|
||||||
url: '/monitoring/cost-sum/update',
|
|
||||||
method: 'put',
|
|
||||||
data: data
|
|
||||||
})
|
|
||||||
}
|
|
||||||
// 获得原片成本统计成本查询分页
|
|
||||||
export function getRawCostStatisticsRealtimePage(query) {
|
|
||||||
return request({
|
|
||||||
url: '/monitoring/cost-sum/page',
|
|
||||||
method: 'get',
|
|
||||||
params: query
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
// 导出总成本统计-按日期 Excel
|
|
||||||
export function exportCostSumExcel(query) {
|
|
||||||
return request({
|
|
||||||
url: '/monitoring/cost-sum/export-excel',
|
|
||||||
method: 'get',
|
|
||||||
params: query,
|
|
||||||
responseType: 'blob'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
// 导出原片成本统计-历史成本 Excel
|
|
||||||
export function exportRawCostStatisticsHisExcel(query) {
|
|
||||||
return request({
|
|
||||||
url: '/monitoring/cost-sum/export-excel',
|
|
||||||
method: 'get',
|
|
||||||
params: query,
|
|
||||||
responseType: 'blob'
|
|
||||||
})
|
|
||||||
}
|
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-11-18 14:16:25
|
* @Date: 2021-11-18 14:16:25
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2024-09-11 15:49:14
|
* @LastEditTime: 2024-04-19 16:59:45
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -11,71 +11,46 @@
|
|||||||
:rules="dataRule"
|
:rules="dataRule"
|
||||||
ref="dataForm"
|
ref="dataForm"
|
||||||
@keyup.enter.native="dataFormSubmit()"
|
@keyup.enter.native="dataFormSubmit()"
|
||||||
label-position="top"
|
|
||||||
label-width="80px">
|
label-width="80px">
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="日期" prop="recTime">
|
<el-form-item label="原料名称" prop="materialName">
|
||||||
<el-date-picker
|
<el-input
|
||||||
v-model="dataForm.recTime"
|
v-model="dataForm.materialName"
|
||||||
type="date"
|
|
||||||
value-format="timestamp"
|
|
||||||
:style="{ width: '100%' }"
|
|
||||||
disabled
|
disabled
|
||||||
placeholder="日期"></el-date-picker>
|
placeholder="请输入原料名称" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="总成本" prop="price">
|
<el-form-item label="单价" prop="matPrice">
|
||||||
|
<el-input
|
||||||
|
v-model="dataForm.matPrice"
|
||||||
|
disabled
|
||||||
|
style="width: 70%"
|
||||||
|
placeholder="请输入单价" />
|
||||||
|
(元/吨)
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="总价" prop="price">
|
||||||
<el-input-number
|
<el-input-number
|
||||||
:min="0"
|
:min="0"
|
||||||
style="width: 80%"
|
style="width: 80%"
|
||||||
v-model="dataForm.price"
|
v-model="dataForm.price"
|
||||||
disabled
|
clearable
|
||||||
placeholder="总成本" />
|
placeholder="请输入总价" />
|
||||||
(元)
|
(元)
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="原片下片面积" prop="originArea">
|
<el-form-item label="累计用量" prop="quantity">
|
||||||
<el-input-number
|
<el-input-number
|
||||||
:min="0"
|
:min="0"
|
||||||
style="width: 80%"
|
style="width: 80%"
|
||||||
v-model="dataForm.originArea"
|
v-model="dataForm.quantity"
|
||||||
clearable
|
clearable
|
||||||
placeholder="请输入原片下片面积" />
|
placeholder="请输入累计用量" />
|
||||||
</el-form-item>
|
(吨)
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="深加工下片面积" prop="deepArea">
|
|
||||||
<el-input-number
|
|
||||||
:min="0"
|
|
||||||
style="width: 80%"
|
|
||||||
v-model="dataForm.deepArea"
|
|
||||||
clearable
|
|
||||||
placeholder="请输入深加工下片面积" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="原片成本" prop="originPrice">
|
|
||||||
<el-input-number
|
|
||||||
:min="0"
|
|
||||||
style="width: 80%"
|
|
||||||
v-model="dataForm.originPrice"
|
|
||||||
clearable
|
|
||||||
placeholder="请输入原片成本" />
|
|
||||||
(元)
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="深加工成本" prop="deepPrice">
|
|
||||||
<el-input-number
|
|
||||||
:min="0"
|
|
||||||
style="width: 80%"
|
|
||||||
v-model="dataForm.deepPrice"
|
|
||||||
clearable
|
|
||||||
placeholder="请输入深加工成本" />
|
|
||||||
(元)
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
@ -84,24 +59,28 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import basicAdd from '@/mixins/basic-add';
|
import basicAdd from '@/mixins/basic-add';
|
||||||
import { updateCostSum } from '@/api/cost/allCost';
|
import { updateMaterialHis } from '@/api/cost/costMaterial';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [basicAdd],
|
mixins: [basicAdd],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
updateURL: updateCostSum,
|
updateURL: updateMaterialHis,
|
||||||
},
|
},
|
||||||
dataForm: {
|
dataForm: {
|
||||||
id: undefined,
|
id: undefined,
|
||||||
originArea: undefined,
|
|
||||||
deepArea: undefined,
|
|
||||||
originPrice: undefined,
|
|
||||||
deepPrice: undefined,
|
|
||||||
price: undefined,
|
price: undefined,
|
||||||
|
quantity: undefined,
|
||||||
|
matPrice: undefined,
|
||||||
|
materialName: undefined,
|
||||||
|
recTime: undefined,
|
||||||
},
|
},
|
||||||
dataRule: {
|
dataRule: {
|
||||||
|
price: [{ required: true, message: '总价不能为空', trigger: 'blur' }],
|
||||||
|
quantity: [
|
||||||
|
{ required: true, message: '累计用量不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
@ -120,17 +99,10 @@ export default {
|
|||||||
if (!valid) {
|
if (!valid) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
const data = {
|
this.dataForm.modifyPrice = this.dataForm.price;
|
||||||
id: this.dataForm.id,
|
this.dataForm.modifyQuantity = this.dataForm.quantity;
|
||||||
statisticType: this.dataForm.statisticType,
|
|
||||||
modifyOriginArea: this.dataForm.originArea,
|
|
||||||
modifyOriginPrice: this.dataForm.originPrice,
|
|
||||||
modifyDeepArea: this.dataForm.deepArea,
|
|
||||||
modifyDeepPrice: this.dataForm.deepPrice,
|
|
||||||
modifyPrice: this.dataForm.deepPrice + this.dataForm.originPrice,
|
|
||||||
};
|
|
||||||
// 修改的提交
|
// 修改的提交
|
||||||
this.urlOptions.updateURL(data).then((response) => {
|
this.urlOptions.updateURL(this.dataForm).then((response) => {
|
||||||
this.$modal.msgSuccess('修改成功');
|
this.$modal.msgSuccess('修改成功');
|
||||||
this.visible = false;
|
this.visible = false;
|
||||||
this.$emit('refreshDataList');
|
this.$emit('refreshDataList');
|
||||||
|
@ -1,89 +1,78 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="app-container energyOverlimitLog">
|
||||||
<div style="background: #f2f4f9; height: 40px; width: 100%">
|
<div v-show="activeName === 'his'">
|
||||||
<ButtonNav :menus="['按日期', '按规格']" @change="currentMenu">
|
<!-- 搜索工作栏 -->
|
||||||
<template v-slot:tab1>
|
<search-bar
|
||||||
<div>按日期</div>
|
:formConfigs="formConfig"
|
||||||
</template>
|
ref="searchBarForm"
|
||||||
<template v-slot:tab2>
|
@headBtnClick="buttonClick" />
|
||||||
<div>按规格</div>
|
|
||||||
</template>
|
|
||||||
</ButtonNav>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="app-container energyOverlimitLog">
|
<div v-show="activeName === 'now'">
|
||||||
<div v-show="activeName === 'his'">
|
<!-- 搜索工作栏 -->
|
||||||
<!-- 搜索工作栏 -->
|
<search-bar
|
||||||
<search-bar
|
:formConfigs="formConfig2"
|
||||||
:formConfigs="formConfig"
|
ref="searchBarForm2"
|
||||||
ref="searchBarForm"
|
@headBtnClick="buttonClick" />
|
||||||
@headBtnClick="buttonClick" />
|
|
||||||
</div>
|
|
||||||
<div v-show="activeName === 'now'">
|
|
||||||
<!-- 搜索工作栏 -->
|
|
||||||
<search-bar
|
|
||||||
:formConfigs="formConfig2"
|
|
||||||
ref="searchBarForm2"
|
|
||||||
@headBtnClick="buttonClick" />
|
|
||||||
</div>
|
|
||||||
<!-- 列表 -->
|
|
||||||
<div v-if="activeName === 'his'">
|
|
||||||
<base-table
|
|
||||||
:page="listQuery.pageNo"
|
|
||||||
:limit="listQuery.pageSize"
|
|
||||||
:table-props="tableProps"
|
|
||||||
:table-data="tableData"
|
|
||||||
:max-height="tableH">
|
|
||||||
<method-btn
|
|
||||||
v-if="tableBtn.length"
|
|
||||||
slot="handleBtn"
|
|
||||||
:width="80"
|
|
||||||
label="操作"
|
|
||||||
:method-list="tableBtn"
|
|
||||||
@clickBtn="handleClick" />
|
|
||||||
</base-table>
|
|
||||||
</div>
|
|
||||||
<div v-if="activeName === 'now'">
|
|
||||||
<base-table
|
|
||||||
:page="listQuery.pageNo"
|
|
||||||
:limit="listQuery.pageSize"
|
|
||||||
:table-props="tableProps2"
|
|
||||||
:table-data="tableData2"
|
|
||||||
:max-height="tableH" />
|
|
||||||
</div>
|
|
||||||
<pagination
|
|
||||||
:page.sync="listQuery.pageNo"
|
|
||||||
:limit.sync="listQuery.pageSize"
|
|
||||||
:total="listQuery.total"
|
|
||||||
@pagination="getDataList" />
|
|
||||||
<base-dialog
|
|
||||||
:dialogTitle="addOrEditTitle"
|
|
||||||
:dialogVisible="addOrUpdateVisible"
|
|
||||||
@cancel="handleCancel"
|
|
||||||
@confirm="handleConfirm"
|
|
||||||
:before-close="handleCancel"
|
|
||||||
width="50%">
|
|
||||||
<add-or-update
|
|
||||||
ref="addOrUpdate"
|
|
||||||
@refreshDataList="successSubmit"></add-or-update>
|
|
||||||
</base-dialog>
|
|
||||||
</div>
|
</div>
|
||||||
|
<el-tabs v-model="activeName" @tab-click="toggleTab">
|
||||||
|
<el-tab-pane label="历史成本" name="his"></el-tab-pane>
|
||||||
|
<el-tab-pane label="成本查询" name="now"></el-tab-pane>
|
||||||
|
</el-tabs>
|
||||||
|
<!-- 列表 -->
|
||||||
|
<div v-if="activeName === 'his'">
|
||||||
|
<base-table
|
||||||
|
:page="listQuery.pageNo"
|
||||||
|
:limit="listQuery.pageSize"
|
||||||
|
:table-props="tableProps"
|
||||||
|
:table-data="tableData"
|
||||||
|
:max-height="tableH">
|
||||||
|
<method-btn
|
||||||
|
v-if="tableBtn.length"
|
||||||
|
slot="handleBtn"
|
||||||
|
:width="80"
|
||||||
|
label="操作"
|
||||||
|
:method-list="tableBtn"
|
||||||
|
@clickBtn="handleClick" />
|
||||||
|
</base-table>
|
||||||
|
</div>
|
||||||
|
<div v-if="activeName === 'now'">
|
||||||
|
<base-table
|
||||||
|
:page="listQuery.pageNo"
|
||||||
|
:limit="listQuery.pageSize"
|
||||||
|
:table-props="tableProps2"
|
||||||
|
:table-data="tableData2"
|
||||||
|
:max-height="tableH" />
|
||||||
|
</div>
|
||||||
|
<pagination
|
||||||
|
:page.sync="listQuery.pageNo"
|
||||||
|
:limit.sync="listQuery.pageSize"
|
||||||
|
:total="listQuery.total"
|
||||||
|
@pagination="getDataList" />
|
||||||
|
<base-dialog
|
||||||
|
:dialogTitle="addOrEditTitle"
|
||||||
|
:dialogVisible="addOrUpdateVisible"
|
||||||
|
@cancel="handleCancel"
|
||||||
|
@confirm="handleConfirm"
|
||||||
|
:before-close="handleCancel"
|
||||||
|
width="50%">
|
||||||
|
<add-or-update
|
||||||
|
ref="addOrUpdate"
|
||||||
|
@refreshDataList="successSubmit"></add-or-update>
|
||||||
|
</base-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AddOrUpdate from './add-or-updata';
|
import AddOrUpdate from './add-or-updata';
|
||||||
import basicPage from '@/mixins/basic-page';
|
import basicPage from '@/mixins/basic-page';
|
||||||
|
import { getMaterialPage } from '@/api/base/material';
|
||||||
import {
|
import {
|
||||||
getCostSumPage,
|
getMaterialHisPage,
|
||||||
getRawCostStatisticsRealtimePage,
|
getMaterialRealtimePage,
|
||||||
exportRawStatisticsRealtimeExcel,
|
} from '@/api/cost/costMaterial';
|
||||||
exportCostSumExcel
|
|
||||||
} from '@/api/cost/allCost';
|
|
||||||
import { parseTime } from '@/filter/code-filter';
|
import { parseTime } from '@/filter/code-filter';
|
||||||
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
import typeRule from './typeRule';
|
import typeRule from './typeRule';
|
||||||
import ButtonNav from '@/components/ButtonNav';
|
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'recTime',
|
prop: 'recTime',
|
||||||
@ -91,66 +80,56 @@ const tableProps = [
|
|||||||
filter: (val) => parseTime(val, '{y}年{m}月{d}日'),
|
filter: (val) => parseTime(val, '{y}年{m}月{d}日'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'originArea',
|
prop: 'materialName',
|
||||||
label: '原片下片面积',
|
label: '原料名称',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'deepArea',
|
prop: 'matPrice',
|
||||||
label: '深加工下片面积',
|
label: '单价(元/吨)',
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'originPrice',
|
|
||||||
label: '原片成本/元',
|
|
||||||
align: 'right',
|
align: 'right',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'deepPrice',
|
prop: 'quantity',
|
||||||
label: '深加工成本/元',
|
label: '累计使用量(吨)',
|
||||||
align: 'right',
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'price',
|
prop: 'price',
|
||||||
label: '总成本/元',
|
label: '总价(元)',
|
||||||
align: 'right',
|
align: 'right',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
const tableProps2 = [
|
const tableProps2 = [
|
||||||
{
|
{
|
||||||
prop: 'bindObjectName',
|
prop: 'materialName',
|
||||||
label: '产品名称',
|
label: '原料名称',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'spec',
|
prop: 'matPrice',
|
||||||
label: '规格',
|
label: '单价(元/吨)',
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'costSum',
|
|
||||||
label: '原片单片成本/元',
|
|
||||||
align: 'right',
|
align: 'right',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'costPiece',
|
prop: 'time',
|
||||||
label: '深加工单片成本/元',
|
label: '单价生效时间',
|
||||||
align: 'right',
|
subcomponent: typeRule,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'costPiece',
|
prop: 'quantity',
|
||||||
label: '成品单片成本/元',
|
label: '累计使用量(吨)',
|
||||||
align: 'right',
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'costArea',
|
prop: 'price',
|
||||||
label: '每平米成本/元',
|
label: '总价(元)',
|
||||||
align: 'right',
|
align: 'right',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
export default {
|
export default {
|
||||||
name: 'allCost',
|
name: 'costMaterial',
|
||||||
mixins: [basicPage, tableHeightMixin],
|
mixins: [basicPage, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
getDataListURL: getCostSumPage,
|
getDataListURL: getMaterialHisPage,
|
||||||
},
|
},
|
||||||
formConfig: [
|
formConfig: [
|
||||||
{
|
{
|
||||||
@ -165,6 +144,14 @@ export default {
|
|||||||
defaultSelect: 1, // 默认值,
|
defaultSelect: 1, // 默认值,
|
||||||
clearable: false,
|
clearable: false,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
type: 'select',
|
||||||
|
label: '原料名称',
|
||||||
|
selectOptions: [],
|
||||||
|
param: 'name',
|
||||||
|
labelField: 'name',
|
||||||
|
filterable: true,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
type: 'datePicker',
|
type: 'datePicker',
|
||||||
label: '时间范围',
|
label: '时间范围',
|
||||||
@ -182,17 +169,16 @@ export default {
|
|||||||
name: 'search',
|
name: 'search',
|
||||||
color: 'primary',
|
color: 'primary',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
type: 'separate',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: 'button',
|
|
||||||
btnName: '导出',
|
|
||||||
name: 'export',
|
|
||||||
color: 'warning',
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
formConfig2: [
|
formConfig2: [
|
||||||
|
{
|
||||||
|
type: 'select',
|
||||||
|
label: '原料名称',
|
||||||
|
selectOptions: [],
|
||||||
|
param: 'name',
|
||||||
|
labelField: 'name',
|
||||||
|
filterable: true,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
type: 'datePicker',
|
type: 'datePicker',
|
||||||
label: '时间范围',
|
label: '时间范围',
|
||||||
@ -210,15 +196,6 @@ export default {
|
|||||||
name: 'search',
|
name: 'search',
|
||||||
color: 'primary',
|
color: 'primary',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
type: 'separate',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: 'button',
|
|
||||||
btnName: '导出',
|
|
||||||
name: 'export',
|
|
||||||
color: 'warning',
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
listQuery: {
|
listQuery: {
|
||||||
statisticType: 1,
|
statisticType: 1,
|
||||||
@ -227,10 +204,12 @@ export default {
|
|||||||
tableProps,
|
tableProps,
|
||||||
tableProps2,
|
tableProps2,
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
{
|
this.$auth.hasPermi(`monitoring:cost-material-his:update`)
|
||||||
|
? {
|
||||||
type: 'edit',
|
type: 'edit',
|
||||||
btnName: '编辑',
|
btnName: '编辑',
|
||||||
}
|
}
|
||||||
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableData: [],
|
tableData: [],
|
||||||
tableData2: [],
|
tableData2: [],
|
||||||
@ -238,26 +217,24 @@ export default {
|
|||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
AddOrUpdate,
|
AddOrUpdate,
|
||||||
ButtonNav,
|
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
const params = {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 100,
|
||||||
|
};
|
||||||
|
getMaterialPage(params).then((response) => {
|
||||||
|
this.formConfig[1].selectOptions = response.data.list;
|
||||||
|
this.formConfig2[0].selectOptions = response.data.list;
|
||||||
|
});
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
buttonClick(val) {
|
buttonClick(val) {
|
||||||
if (val.statisticType === 2) {
|
|
||||||
this.tableProps[0].filter = (val) =>
|
|
||||||
parseTime(val, '{y}年第{w}周');
|
|
||||||
}else{
|
|
||||||
this.tableProps[0].filter = (val) =>
|
|
||||||
parseTime(val, '{y}年{m}月{d}日');
|
|
||||||
}
|
|
||||||
this.formConfig2[0].startPlaceholder = '开始时间';
|
|
||||||
this.formConfig2[0].endPlaceholder = '结束时间';
|
|
||||||
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 = 10;
|
||||||
this.listQuery.bindObjectId = 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;
|
||||||
this.listQuery.endTime = val.searchTime
|
this.listQuery.endTime = val.searchTime
|
||||||
@ -275,8 +252,7 @@ export default {
|
|||||||
case 'export':
|
case 'export':
|
||||||
this.listQuery.pageNo = 1;
|
this.listQuery.pageNo = 1;
|
||||||
this.listQuery.pageSize = 10;
|
this.listQuery.pageSize = 10;
|
||||||
this.listQuery.bindObjectId = val.name || null;
|
this.listQuery.name = val.name;
|
||||||
this.listQuery.statisticType = val.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
|
this.listQuery.endTime = val.searchTime
|
||||||
? val.searchTime[1].substr(0, 10) + ' 23:59:59'
|
? val.searchTime[1].substr(0, 10) + ' 23:59:59'
|
||||||
@ -287,8 +263,7 @@ export default {
|
|||||||
console.log(val);
|
console.log(val);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
currentMenu(val) {
|
toggleTab() {
|
||||||
this.activeName = val === '按日期' ? 'his' : 'now';
|
|
||||||
if (this.activeName === 'his') {
|
if (this.activeName === 'his') {
|
||||||
this.$refs.searchBarForm.resetForm();
|
this.$refs.searchBarForm.resetForm();
|
||||||
this.listQuery.name = null;
|
this.listQuery.name = null;
|
||||||
@ -299,14 +274,9 @@ export default {
|
|||||||
this.getDataList();
|
this.getDataList();
|
||||||
} else {
|
} else {
|
||||||
this.$refs.searchBarForm2.resetForm();
|
this.$refs.searchBarForm2.resetForm();
|
||||||
const end = new Date();
|
|
||||||
const start = new Date();
|
|
||||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
|
|
||||||
this.listQuery.startTime = parseTime(start).substr(0, 10) + ' 00:00:00';
|
|
||||||
this.listQuery.endTime = parseTime(end).substr(0, 10) + ' 23:59:59';
|
|
||||||
this.formConfig2[0].startPlaceholder = parseTime(start).substr(0, 10);
|
|
||||||
this.formConfig2[0].endPlaceholder = parseTime(end).substr(0, 10);
|
|
||||||
this.listQuery.name = null;
|
this.listQuery.name = null;
|
||||||
|
this.listQuery.startTime = null;
|
||||||
|
this.listQuery.endTime = null;
|
||||||
this.listQuery.pageNo = 1;
|
this.listQuery.pageNo = 1;
|
||||||
this.getDataList2();
|
this.getDataList2();
|
||||||
}
|
}
|
||||||
@ -314,7 +284,7 @@ export default {
|
|||||||
// 获取数据2列表
|
// 获取数据2列表
|
||||||
getDataList2() {
|
getDataList2() {
|
||||||
if (this.listQuery.startTime) {
|
if (this.listQuery.startTime) {
|
||||||
getRawCostStatisticsRealtimePage(this.listQuery).then((response) => {
|
getMaterialRealtimePage(this.listQuery).then((response) => {
|
||||||
this.tableData2 = response.data.list;
|
this.tableData2 = response.data.list;
|
||||||
this.listQuery.total = response.data.total;
|
this.listQuery.total = response.data.total;
|
||||||
});
|
});
|
||||||
@ -334,30 +304,6 @@ export default {
|
|||||||
this.otherMethods(val);
|
this.otherMethods(val);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
/** 导出按钮操作 */
|
|
||||||
handleExport() {
|
|
||||||
let exportURL, title;
|
|
||||||
if (this.activeName === 'his') {
|
|
||||||
exportURL = exportCostSumExcel;
|
|
||||||
title = '总成本统计-按日期';
|
|
||||||
} else {
|
|
||||||
exportURL = exportRawStatisticsRealtimeExcel;
|
|
||||||
title = '总成本统计-按规格';
|
|
||||||
}
|
|
||||||
// 处理查询参数
|
|
||||||
let params = { ...this.listQuery };
|
|
||||||
params.pageNo = undefined;
|
|
||||||
params.pageSize = undefined;
|
|
||||||
this.$modal
|
|
||||||
.confirm('是否确认导出所有数据项?')
|
|
||||||
.then(() => {
|
|
||||||
return exportURL(params);
|
|
||||||
})
|
|
||||||
.then((response) => {
|
|
||||||
this.$download.excel(response, title + '报表.xls');
|
|
||||||
})
|
|
||||||
.catch(() => {});
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -237,10 +237,13 @@ export default {
|
|||||||
activeName: 'his',
|
activeName: 'his',
|
||||||
tableProps,
|
tableProps,
|
||||||
tableProps2,
|
tableProps2,
|
||||||
tableBtn: [{
|
tableBtn: [
|
||||||
|
this.$auth.hasPermi(`monitoring:cost-deep-energy-his:update`)
|
||||||
|
? {
|
||||||
type: 'edit',
|
type: 'edit',
|
||||||
btnName: '编辑',
|
btnName: '编辑',
|
||||||
}
|
}
|
||||||
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableData: [],
|
tableData: [],
|
||||||
tableData2: [],
|
tableData2: [],
|
||||||
|
@ -212,10 +212,13 @@ export default {
|
|||||||
activeName: 'his',
|
activeName: 'his',
|
||||||
tableProps,
|
tableProps,
|
||||||
tableProps2,
|
tableProps2,
|
||||||
tableBtn: [{
|
tableBtn: [
|
||||||
|
this.$auth.hasPermi(`monitoring:cost-deep-othercost-his:update`)
|
||||||
|
? {
|
||||||
type: 'edit',
|
type: 'edit',
|
||||||
btnName: '编辑',
|
btnName: '编辑',
|
||||||
}
|
}
|
||||||
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableData: [],
|
tableData: [],
|
||||||
tableData2: [],
|
tableData2: [],
|
||||||
|
@ -82,13 +82,19 @@ export default {
|
|||||||
exportURL: exportRawOthercostLogExcel,
|
exportURL: exportRawOthercostLogExcel,
|
||||||
},
|
},
|
||||||
tableProps,
|
tableProps,
|
||||||
tableBtn: [{
|
tableBtn: [
|
||||||
|
this.$auth.hasPermi(`monitoring:cost-deep-othercost-log:update`)
|
||||||
|
? {
|
||||||
type: 'edit',
|
type: 'edit',
|
||||||
btnName: '编辑',
|
btnName: '编辑',
|
||||||
},{
|
}
|
||||||
|
: undefined,
|
||||||
|
this.$auth.hasPermi(`monitoring:cost-deep-othercost-log:delete`)
|
||||||
|
? {
|
||||||
type: 'delete',
|
type: 'delete',
|
||||||
btnName: '删除',
|
btnName: '删除',
|
||||||
}
|
}
|
||||||
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableData: [],
|
tableData: [],
|
||||||
formConfig: [
|
formConfig: [
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2024-04-15 16:52:38
|
* @Date: 2024-04-15 16:52:38
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2024-09-11 15:30:41
|
* @LastEditTime: 2024-04-22 16:46:26
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -77,10 +77,13 @@ export default {
|
|||||||
getDataListURL: getRawOthercostRulePage,
|
getDataListURL: getRawOthercostRulePage,
|
||||||
},
|
},
|
||||||
tableProps,
|
tableProps,
|
||||||
tableBtn: [{
|
tableBtn: [
|
||||||
|
this.$auth.hasPermi(`monitoring:cost-deep-othercost-rule:update`)
|
||||||
|
? {
|
||||||
type: 'edit',
|
type: 'edit',
|
||||||
btnName: '编辑',
|
btnName: '编辑',
|
||||||
}
|
}
|
||||||
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableData: [],
|
tableData: [],
|
||||||
};
|
};
|
||||||
|
@ -200,10 +200,13 @@ export default {
|
|||||||
activeName: 'his',
|
activeName: 'his',
|
||||||
tableProps,
|
tableProps,
|
||||||
tableProps2,
|
tableProps2,
|
||||||
tableBtn: [{
|
tableBtn: [
|
||||||
|
this.$auth.hasPermi(`monitoring:cost-deep-ratio-his:update`)
|
||||||
|
? {
|
||||||
type: 'edit',
|
type: 'edit',
|
||||||
btnName: '编辑',
|
btnName: '编辑',
|
||||||
}
|
}
|
||||||
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableData: [],
|
tableData: [],
|
||||||
tableData2: [],
|
tableData2: [],
|
||||||
|
@ -262,10 +262,13 @@ export default {
|
|||||||
activeName: 'his',
|
activeName: 'his',
|
||||||
tableProps,
|
tableProps,
|
||||||
tableProps2,
|
tableProps2,
|
||||||
tableBtn: [{
|
tableBtn: [
|
||||||
|
this.$auth.hasPermi(`monitoring:cost-material-his:update`)
|
||||||
|
? {
|
||||||
type: 'edit',
|
type: 'edit',
|
||||||
btnName: '编辑',
|
btnName: '编辑',
|
||||||
}
|
}
|
||||||
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableData: [],
|
tableData: [],
|
||||||
tableData2: [],
|
tableData2: [],
|
||||||
|
@ -237,10 +237,13 @@ export default {
|
|||||||
activeName: 'his',
|
activeName: 'his',
|
||||||
tableProps,
|
tableProps,
|
||||||
tableProps2,
|
tableProps2,
|
||||||
tableBtn: [{
|
tableBtn: [
|
||||||
|
this.$auth.hasPermi(`monitoring:cost-energy-his:update`)
|
||||||
|
? {
|
||||||
type: 'edit',
|
type: 'edit',
|
||||||
btnName: '编辑',
|
btnName: '编辑',
|
||||||
}
|
}
|
||||||
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableData: [],
|
tableData: [],
|
||||||
tableData2: [],
|
tableData2: [],
|
||||||
|
@ -234,10 +234,13 @@ export default {
|
|||||||
activeName: 'his',
|
activeName: 'his',
|
||||||
tableProps,
|
tableProps,
|
||||||
tableProps2,
|
tableProps2,
|
||||||
tableBtn: [{
|
tableBtn: [
|
||||||
|
this.$auth.hasPermi(`monitoring:cost-material-his:update`)
|
||||||
|
? {
|
||||||
type: 'edit',
|
type: 'edit',
|
||||||
btnName: '编辑',
|
btnName: '编辑',
|
||||||
}
|
}
|
||||||
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableData: [],
|
tableData: [],
|
||||||
tableData2: [],
|
tableData2: [],
|
||||||
|
@ -144,10 +144,13 @@ export default {
|
|||||||
statisticType: 1,
|
statisticType: 1,
|
||||||
},
|
},
|
||||||
tableProps,
|
tableProps,
|
||||||
tableBtn: [{
|
tableBtn: [
|
||||||
|
this.$auth.hasPermi(`monitoring:cost-origin-ratio-his:update`)
|
||||||
|
? {
|
||||||
type: 'edit',
|
type: 'edit',
|
||||||
btnName: '编辑',
|
btnName: '编辑',
|
||||||
}
|
}
|
||||||
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableData: [],
|
tableData: [],
|
||||||
};
|
};
|
||||||
|
@ -212,10 +212,13 @@ export default {
|
|||||||
activeName: 'his',
|
activeName: 'his',
|
||||||
tableProps,
|
tableProps,
|
||||||
tableProps2,
|
tableProps2,
|
||||||
tableBtn: [{
|
tableBtn: [
|
||||||
|
this.$auth.hasPermi(`monitoring:cost-othercost-his:update`)
|
||||||
|
? {
|
||||||
type: 'edit',
|
type: 'edit',
|
||||||
btnName: '编辑',
|
btnName: '编辑',
|
||||||
}
|
}
|
||||||
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableData: [],
|
tableData: [],
|
||||||
tableData2: [],
|
tableData2: [],
|
||||||
|
@ -82,13 +82,19 @@ export default {
|
|||||||
exportURL: exportRawOthercostLogExcel,
|
exportURL: exportRawOthercostLogExcel,
|
||||||
},
|
},
|
||||||
tableProps,
|
tableProps,
|
||||||
tableBtn: [{
|
tableBtn: [
|
||||||
|
this.$auth.hasPermi(`monitoring:cost-othercost-log:update`)
|
||||||
|
? {
|
||||||
type: 'edit',
|
type: 'edit',
|
||||||
btnName: '编辑',
|
btnName: '编辑',
|
||||||
},{
|
}
|
||||||
|
: undefined,
|
||||||
|
this.$auth.hasPermi(`monitoring:cost-othercost-log:delete`)
|
||||||
|
? {
|
||||||
type: 'delete',
|
type: 'delete',
|
||||||
btnName: '删除',
|
btnName: '删除',
|
||||||
}
|
}
|
||||||
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableData: [],
|
tableData: [],
|
||||||
formConfig: [
|
formConfig: [
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2024-04-15 16:52:38
|
* @Date: 2024-04-15 16:52:38
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2024-09-11 15:31:12
|
* @LastEditTime: 2024-04-17 17:01:26
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -77,10 +77,13 @@ export default {
|
|||||||
getDataListURL: getRawOthercostRulePage,
|
getDataListURL: getRawOthercostRulePage,
|
||||||
},
|
},
|
||||||
tableProps,
|
tableProps,
|
||||||
tableBtn: [{
|
tableBtn: [
|
||||||
|
this.$auth.hasPermi(`monitoring:cost-othercost-rule:update`)
|
||||||
|
? {
|
||||||
type: 'edit',
|
type: 'edit',
|
||||||
btnName: '编辑',
|
btnName: '编辑',
|
||||||
}
|
}
|
||||||
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableData: [],
|
tableData: [],
|
||||||
};
|
};
|
||||||
|
@ -261,10 +261,13 @@ export default {
|
|||||||
activeName: 'his',
|
activeName: 'his',
|
||||||
tableProps,
|
tableProps,
|
||||||
tableProps2,
|
tableProps2,
|
||||||
tableBtn: [{
|
tableBtn: [
|
||||||
|
this.$auth.hasPermi(`monitoring:cost-material-his:update`)
|
||||||
|
? {
|
||||||
type: 'edit',
|
type: 'edit',
|
||||||
btnName: '编辑',
|
btnName: '编辑',
|
||||||
}
|
}
|
||||||
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableData: [],
|
tableData: [],
|
||||||
tableData2: [],
|
tableData2: [],
|
||||||
|
Loading…
Reference in New Issue
Block a user