|
@@ -1,1735 +0,0 @@
|
|
-<template>
|
|
|
|
- <div class="balanceSheetData">
|
|
|
|
- <div class="box">
|
|
|
|
- <div class="box-top">
|
|
|
|
- <el-form
|
|
|
|
- style="overflow: hidden;"
|
|
|
|
- :style="filterForm.show ? null : { height: '0px' }"
|
|
|
|
- size="mini"
|
|
|
|
- label-width="70px"
|
|
|
|
- >
|
|
|
|
- <el-row>
|
|
|
|
- <el-col :span="6">
|
|
|
|
- <el-form-item label="月份">
|
|
|
|
- <zj-timegran-date
|
|
|
|
- v-model="filterForm.data.clock"
|
|
|
|
- style="width: 100%;"
|
|
|
|
- :timegranId="filterForm.data.timegranid"
|
|
|
|
- :oneFoo="getTableData"
|
|
|
|
- ></zj-timegran-date>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :span="6">
|
|
|
|
- <el-form-item label="产线">
|
|
|
|
- <el-select
|
|
|
|
- filterable clearable
|
|
|
|
- v-model="filterForm.data.workprocid"
|
|
|
|
- placeholder=""
|
|
|
|
- style="width: 100%;"
|
|
|
|
- >
|
|
|
|
- <el-option
|
|
|
|
- v-for="item of nameObj.workprocid.arr"
|
|
|
|
- :key="item.id"
|
|
|
|
- :value="item.id"
|
|
|
|
- :label="item.name"
|
|
|
|
- ></el-option>
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- </el-row>
|
|
|
|
- </el-form>
|
|
|
|
- <div class="box-top-gjl">
|
|
|
|
- <el-button
|
|
|
|
- class="button"
|
|
|
|
- type="primary"
|
|
|
|
- size="mini"
|
|
|
|
- icon="el-icon-plus"
|
|
|
|
- v-privilege="activeMenu + 'ADD'"
|
|
|
|
- @click="but_add"
|
|
|
|
- >新增</el-button>
|
|
|
|
- <el-button
|
|
|
|
- type="primary"
|
|
|
|
- size="mini"
|
|
|
|
- icon="el-icon-add-outline"
|
|
|
|
- @click="but_edit_plural()"
|
|
|
|
- >修改</el-button>
|
|
|
|
- <el-button
|
|
|
|
- class="button"
|
|
|
|
- type="danger"
|
|
|
|
- size="mini"
|
|
|
|
- icon="el-icon-delete"
|
|
|
|
- @click="but_del_plural()"
|
|
|
|
- >删除</el-button>
|
|
|
|
- <el-button
|
|
|
|
- type="primary"
|
|
|
|
- size="mini"
|
|
|
|
- icon="el-icon-add-outline"
|
|
|
|
- @click="issue(1)"
|
|
|
|
- >下发</el-button>
|
|
|
|
- <el-button
|
|
|
|
- type="primary"
|
|
|
|
- size="mini"
|
|
|
|
- icon="el-icon-add-outline"
|
|
|
|
- @click="issue(0)"
|
|
|
|
- >取消下发</el-button>
|
|
|
|
- <div style="float:right; text-align: right;">
|
|
|
|
- <el-button
|
|
|
|
- class="button"
|
|
|
|
- type="primary"
|
|
|
|
- size="mini"
|
|
|
|
- icon="el-icon-search"
|
|
|
|
- v-privilege="activeMenu + 'QUERY'"
|
|
|
|
- @click="getTableData(1)"
|
|
|
|
- >查询</el-button>
|
|
|
|
- <el-button
|
|
|
|
- size="mini"
|
|
|
|
- :icon="filterForm.show ? 'el-icon-caret-top' : 'el-icon-caret-bottom'"
|
|
|
|
- :title="filterForm.show ? '收起搜索区' : '展开搜索区'"
|
|
|
|
- @click="filterForm.show = !filterForm.show;
|
|
|
|
- $nextTick(() => {
|
|
|
|
- singleTableHeight = getRoleHeight($refs['boxBottom']) - 45;
|
|
|
|
- }
|
|
|
|
- );"
|
|
|
|
- >{{ filterForm.show ? '收起' : '展开' }}</el-button>
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
- <div class="box-bottom" ref="boxBottom">
|
|
|
|
- <div class="table-box" ref="table_box">
|
|
|
|
- <div class="table-left" :style="{ width: leftTableWidth + 'px' }">
|
|
|
|
- <el-form
|
|
|
|
- size="mini"
|
|
|
|
- ref="dialog_form_arr_1"
|
|
|
|
- label-width="0px"
|
|
|
|
- :model="tableFormDataObj"
|
|
|
|
- >
|
|
|
|
- <el-table stripe
|
|
|
|
- id="singleTable1"
|
|
|
|
- ref="singleTable1"
|
|
|
|
- :data="leftTableData"
|
|
|
|
- v-loading="leftTableLoading"
|
|
|
|
- style="width: 100%;"
|
|
|
|
- :height="singleTableHeight"
|
|
|
|
- border
|
|
|
|
- size="mini"
|
|
|
|
- highlight-current-row
|
|
|
|
- show-summary
|
|
|
|
- :summary-method="getSummaries"
|
|
|
|
- @current-change="getTableDetailData"
|
|
|
|
- >
|
|
|
|
- <el-table-column
|
|
|
|
- prop="sqno"
|
|
|
|
- label="序号"
|
|
|
|
- fixed="left"
|
|
|
|
- width="50px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- ></el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- prop="may"
|
|
|
|
- label="月份"
|
|
|
|
- min-width="100px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- ></el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- prop="workprocid"
|
|
|
|
- label="工序"
|
|
|
|
- min-width="100px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- >
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <span>{{ nameObj.workprocid.obj[scope.row.workprocid] ? nameObj.workprocid.obj[scope.row.workprocid].name : scope.row.workprocid }}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- sortable
|
|
|
|
- prop="unit"
|
|
|
|
- label="单位"
|
|
|
|
- min-width="100px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- >
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <span>{{ nameObj.unit.obj[scope.row.unit] ? nameObj.unit.obj[scope.row.unit] : scope.row.unit }}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- sortable
|
|
|
|
- prop="kxf_weight"
|
|
|
|
- label="可下发量"
|
|
|
|
- min-width="100px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- >
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- sortable
|
|
|
|
- prop="weightMonth"
|
|
|
|
- label="年度计划量(月)"
|
|
|
|
- min-width="115px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- >
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- sortable
|
|
|
|
- prop="yxf_weight"
|
|
|
|
- label="已下发量"
|
|
|
|
- min-width="100px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- >
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- prop="id"
|
|
|
|
- label="序号"
|
|
|
|
- fixed="left"
|
|
|
|
- width="50px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- v-if="filterForm.data.show"
|
|
|
|
- ></el-table-column>
|
|
|
|
- </el-table>
|
|
|
|
- </el-form>
|
|
|
|
- </div>
|
|
|
|
- <div class="table-tuodong" :style="{ height: singleTableHeight + 'px' }"
|
|
|
|
- @mousedown="tableTDMousedown"
|
|
|
|
- ></div>
|
|
|
|
- <div class="table-right" :style="{ 'margin-left': (leftTableWidth + 7) + 'px' }">
|
|
|
|
- <el-form
|
|
|
|
- size="mini"
|
|
|
|
- ref="dialog_form_arr_2"
|
|
|
|
- label-width="0px"
|
|
|
|
- :model="rightTableObj"
|
|
|
|
- >
|
|
|
|
- <el-table stripe
|
|
|
|
- id="singleTable2"
|
|
|
|
- ref="singleTable2"
|
|
|
|
- :data="rightTableData"
|
|
|
|
- v-loading="tableLoading"
|
|
|
|
- style="width: 100%;"
|
|
|
|
- :height="singleTableHeight"
|
|
|
|
- border
|
|
|
|
- size="mini"
|
|
|
|
- highlight-current-row
|
|
|
|
- show-summary
|
|
|
|
- :summary-method="getSummaries"
|
|
|
|
- @selection-change="handleSelectionChange"
|
|
|
|
- >
|
|
|
|
- <el-table-column
|
|
|
|
- type="selection"
|
|
|
|
- width="40"
|
|
|
|
- align="center"
|
|
|
|
- :selectable='checkboxT'
|
|
|
|
- fixed="left"
|
|
|
|
- class-name="cnspicuous"
|
|
|
|
- ></el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- prop="sqno"
|
|
|
|
- label="月序号"
|
|
|
|
- min-width="100px"
|
|
|
|
- v-model="filterForm.data.sqno"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- ></el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- prop="may"
|
|
|
|
- label="月份"
|
|
|
|
- min-width="100px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- >
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- prop="describe"
|
|
|
|
- label="轮次描述"
|
|
|
|
- min-width="100px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- >
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- prop="state"
|
|
|
|
- label="状态"
|
|
|
|
- min-width="100px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- >
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <span
|
|
|
|
- :style="{color: nameObj.state.obj[scope.row.state] ? nameObj.state.obj[scope.row.state].color : ''}"
|
|
|
|
- >{{ nameObj.state.obj[scope.row.state] ? nameObj.state.obj[scope.row.state].name : scope.row.state }}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- prop="grades"
|
|
|
|
- label="钢种"
|
|
|
|
- min-width="100px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- >
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <el-form-item
|
|
|
|
- :prop="scope.row.seq + '.grades'"
|
|
|
|
- v-if=" !isCheck && scope.row.isSelection && scope.row.state !== '2'"
|
|
|
|
- :rules="tableFormRules.grades"
|
|
|
|
- >
|
|
|
|
- <el-select
|
|
|
|
- filterable clearable
|
|
|
|
- v-model="rightTableObj[scope.row.seq].grades"
|
|
|
|
- placeholder=""
|
|
|
|
- >
|
|
|
|
- <el-option
|
|
|
|
- v-for="item of nameObj.grades.arr"
|
|
|
|
- :key="item.id"
|
|
|
|
- :value="item.id"
|
|
|
|
- :label="item.name"
|
|
|
|
- ></el-option>
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- <span v-else>{{ nameObj.grades.obj[scope.row.grades] ? nameObj.grades.obj[scope.row.grades].name : scope.row.grades }}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- prop="planWeight"
|
|
|
|
- label="计划量"
|
|
|
|
- min-width="100px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- >
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <el-form-item
|
|
|
|
- :prop="scope.row.seq + '.planWeight'"
|
|
|
|
- v-if=" !isCheck && scope.row.isSelection && scope.row.state !== '2'"
|
|
|
|
- :rules="tableFormRules.planWeight"
|
|
|
|
- >
|
|
|
|
- <el-input
|
|
|
|
- style="width: 100%;"
|
|
|
|
- v-model="rightTableObj[scope.row.seq].planWeight"
|
|
|
|
- refcous="true"
|
|
|
|
- ></el-input>
|
|
|
|
- </el-form-item>
|
|
|
|
- <span v-else>{{scope.row.planWeight}}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- prop="specifications"
|
|
|
|
- label="规格"
|
|
|
|
- min-width="100px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- >
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <el-form-item
|
|
|
|
- :prop="scope.row.seq + '.specifications'"
|
|
|
|
- v-if=" !isCheck && scope.row.isSelection && scope.row.state !== '2'"
|
|
|
|
- :rules="tableFormRules.specifications"
|
|
|
|
- >
|
|
|
|
- <el-select
|
|
|
|
- filterable clearable
|
|
|
|
- v-model="rightTableObj[scope.row.seq].specifications"
|
|
|
|
- placeholder=""
|
|
|
|
- >
|
|
|
|
- <el-option
|
|
|
|
- v-for="item of nameObj.specifications.arr"
|
|
|
|
- :key="item.id"
|
|
|
|
- :value="item.id"
|
|
|
|
- :label="item.name"
|
|
|
|
- ></el-option>
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- <span v-else>{{ nameObj.specifications.obj[scope.row.specifications] ? nameObj.specifications.obj[scope.row.specifications].name : scope.row.specifications }}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- prop="transportType"
|
|
|
|
- label="运输方式"
|
|
|
|
- min-width="100px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- >
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <el-form-item
|
|
|
|
- :prop="scope.row.seq + '.transportType'"
|
|
|
|
- v-if=" !isCheck && scope.row.isSelection && scope.row.state !== '2'"
|
|
|
|
- :rules="tableFormRules.transportType"
|
|
|
|
- >
|
|
|
|
- <el-select
|
|
|
|
- filterable clearable
|
|
|
|
- v-model="rightTableObj[scope.row.seq].transportType"
|
|
|
|
- placeholder=""
|
|
|
|
- >
|
|
|
|
- <el-option
|
|
|
|
- v-for="item of nameObj.transportType.arr"
|
|
|
|
- :key="item.id"
|
|
|
|
- :value="item.id"
|
|
|
|
- :label="item.name"
|
|
|
|
- ></el-option>
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- <span v-else>{{ nameObj.transportType.obj[scope.row.transportType] ? nameObj.transportType.obj[scope.row.transportType].name : scope.row.transportType }}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- prop="purpose"
|
|
|
|
- label="用途"
|
|
|
|
- min-width="100px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- >
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <el-form-item
|
|
|
|
- :prop="scope.row.seq + '.purpose'"
|
|
|
|
- :rules="tableFormRules.purpose"
|
|
|
|
- v-if=" !isCheck && scope.row.isSelection && scope.row.state !== '2'"
|
|
|
|
- >
|
|
|
|
- <el-select
|
|
|
|
- filterable clearable
|
|
|
|
- v-model="rightTableObj[scope.row.seq].purpose"
|
|
|
|
- placeholder=""
|
|
|
|
- >
|
|
|
|
- <el-option
|
|
|
|
- v-for="item of nameObj.purpose.arr"
|
|
|
|
- :key="item.id"
|
|
|
|
- :value="item.id"
|
|
|
|
- :label="item.name"
|
|
|
|
- ></el-option>
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- <span v-else>{{ nameObj.purpose.obj[scope.row.purpose] ? nameObj.purpose.obj[scope.row.purpose].name : scope.row.purpose }}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- prop="chemicalStandard"
|
|
|
|
- label="执行标准"
|
|
|
|
- min-width="100px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- >
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <el-form-item
|
|
|
|
- :prop="scope.row.seq + '.chemicalStandard'"
|
|
|
|
- :rules="tableFormRules.chemicalStandard"
|
|
|
|
- v-if=" !isCheck && scope.row.isSelection && scope.row.state !== '2'"
|
|
|
|
- >
|
|
|
|
- <el-select
|
|
|
|
- filterable clearable
|
|
|
|
- v-model="rightTableObj[scope.row.seq].chemicalStandard"
|
|
|
|
- placeholder=""
|
|
|
|
-
|
|
|
|
- >
|
|
|
|
- <el-option
|
|
|
|
- v-for="item of nameObj.chemicalStandard.arr"
|
|
|
|
- :key="item.id"
|
|
|
|
- :value="item.id"
|
|
|
|
- :label="item.name"
|
|
|
|
- ></el-option>
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- <span v-else>{{ nameObj.chemicalStandard.obj[scope.row.chemicalStandard] ? nameObj.chemicalStandard.obj[scope.row.chemicalStandard].name : scope.row.chemicalStandard }}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- prop="memo"
|
|
|
|
- label="备注"
|
|
|
|
- min-width="100px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- >
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- prop="issuedTime"
|
|
|
|
- label="下发时间"
|
|
|
|
- min-width="100px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- ></el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- prop="createman"
|
|
|
|
- label="创建人"
|
|
|
|
- min-width="100px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- ></el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- prop="createtime"
|
|
|
|
- label="创建时间"
|
|
|
|
- min-width="100px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- ></el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- prop="updateman"
|
|
|
|
- label="修改人"
|
|
|
|
- min-width="100px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- ></el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- prop="updatetime"
|
|
|
|
- label="修改时间"
|
|
|
|
- min-width="100px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- ></el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- prop="roundid"
|
|
|
|
- label="轮次序号"
|
|
|
|
- min-width="100px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- v-if="filterForm.data.show"
|
|
|
|
- ></el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- prop="parentid"
|
|
|
|
- label="月序号"
|
|
|
|
- min-width="100px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- v-if="filterForm.data.show"
|
|
|
|
- ></el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- prop="workprocType"
|
|
|
|
- label="工序类别"
|
|
|
|
- min-width="100px"
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
- v-if="filterForm.data.show"
|
|
|
|
- ></el-table-column>
|
|
|
|
- </el-table>
|
|
|
|
- </el-form>
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
- <el-pagination
|
|
|
|
- layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
- :total="total"
|
|
|
|
- :page-sizes="[10, 20, 50, 100, 500, 1000]"
|
|
|
|
- :page-size="pageSize"
|
|
|
|
- :current-page.sync="pageNum"
|
|
|
|
- @size-change="tableSizeChange"
|
|
|
|
- @current-change="getTableData()"
|
|
|
|
- style="text-align: left;margin-top: 10px;"
|
|
|
|
- ></el-pagination>
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
- <el-dialog
|
|
|
|
- title="轮次计划-高线 新增"
|
|
|
|
- :visible.sync="dialog.editorBox.show"
|
|
|
|
- width="600px"
|
|
|
|
- :close-on-click-modal="false"
|
|
|
|
- :show-close="!loading"
|
|
|
|
- >
|
|
|
|
- <div>
|
|
|
|
- <el-form
|
|
|
|
- ref="dialog_form"
|
|
|
|
- :model="dialog.editorBox.form.data"
|
|
|
|
- :rules="dialog.editorBox.form.rules"
|
|
|
|
- size="mini"
|
|
|
|
- label-width="95px"
|
|
|
|
- >
|
|
|
|
- <el-row>
|
|
|
|
- <el-col :span="12">
|
|
|
|
- <el-form-item
|
|
|
|
- label="工序"
|
|
|
|
- prop="workprocid"
|
|
|
|
- :rules="dialog.editorBox.form.workprocid"
|
|
|
|
- >
|
|
|
|
- <el-select
|
|
|
|
- filterable clearable
|
|
|
|
- v-model="dialog.editorBox.form.data.workprocid"
|
|
|
|
- placeholder=""
|
|
|
|
- style="width: 100%;"
|
|
|
|
- >
|
|
|
|
- <el-option
|
|
|
|
- v-for="item of nameObj.workprocid.arr"
|
|
|
|
- :key="item.id"
|
|
|
|
- :value="item.id"
|
|
|
|
- :label="item.name"
|
|
|
|
- ></el-option>
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :span="12">
|
|
|
|
- <el-form-item
|
|
|
|
- label="月份"
|
|
|
|
- prop="may"
|
|
|
|
- :rules="dialog.editorBox.form.may"
|
|
|
|
- >
|
|
|
|
- <zj-timegran-date
|
|
|
|
- v-model="dialog.editorBox.form.data.may"
|
|
|
|
- style="width: 100%;"
|
|
|
|
- :timegranId="filterForm.data.timegranid"
|
|
|
|
- :oneFoo="getTableData"
|
|
|
|
- ></zj-timegran-date>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- </el-row>
|
|
|
|
- <el-row>
|
|
|
|
- <el-col :span="12">
|
|
|
|
- <el-form-item
|
|
|
|
- label="轮次描述"
|
|
|
|
- prop="describe"
|
|
|
|
- :rules="dialog.editorBox.form.describe"
|
|
|
|
- >
|
|
|
|
- <el-input
|
|
|
|
- clearable
|
|
|
|
- style="width: 100%;"
|
|
|
|
- v-model="dialog.editorBox.form.data.describe"
|
|
|
|
- >
|
|
|
|
- </el-input>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :span="12">
|
|
|
|
- <el-form-item
|
|
|
|
- label="钢种"
|
|
|
|
- prop="grades"
|
|
|
|
- >
|
|
|
|
- <el-select
|
|
|
|
- filterable clearable
|
|
|
|
- v-model="dialog.editorBox.form.data.grades"
|
|
|
|
- placeholder=""
|
|
|
|
- style="width: 100%;"
|
|
|
|
- :rules="tableFormRules.grades"
|
|
|
|
- >
|
|
|
|
- <el-option
|
|
|
|
- v-for="item of nameObj.grades.arr"
|
|
|
|
- :key="item.id"
|
|
|
|
- :value="item.id"
|
|
|
|
- :label="item.name"
|
|
|
|
- ></el-option>
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- </el-row>
|
|
|
|
- <el-row>
|
|
|
|
- <el-col :span="12">
|
|
|
|
- <el-form-item
|
|
|
|
- label="规格"
|
|
|
|
- prop="specifications"
|
|
|
|
- >
|
|
|
|
- <el-select
|
|
|
|
- filterable clearable
|
|
|
|
- v-model="dialog.editorBox.form.data.specifications"
|
|
|
|
- placeholder=""
|
|
|
|
- style="width: 100%;"
|
|
|
|
- :rules="tableFormRules.specifications"
|
|
|
|
- >
|
|
|
|
- <el-option
|
|
|
|
- v-for="item of nameObj.specifications.arr"
|
|
|
|
- :key="item.id"
|
|
|
|
- :value="item.id"
|
|
|
|
- :label="item.name"
|
|
|
|
- ></el-option>
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :span="12">
|
|
|
|
- <el-form-item
|
|
|
|
- label="运输方式"
|
|
|
|
- prop="transportType"
|
|
|
|
- >
|
|
|
|
- <el-select
|
|
|
|
- filterable clearable
|
|
|
|
- v-model="dialog.editorBox.form.data.transportType"
|
|
|
|
- placeholder=""
|
|
|
|
- style="width: 100%;"
|
|
|
|
- :rules="tableFormRules.transportType"
|
|
|
|
- >
|
|
|
|
- <el-option
|
|
|
|
- v-for="item of nameObj.transportType.arr"
|
|
|
|
- :key="item.id"
|
|
|
|
- :value="item.id"
|
|
|
|
- :label="item.name"
|
|
|
|
- ></el-option>
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- </el-row>
|
|
|
|
- <el-row>
|
|
|
|
- <el-col :span="12">
|
|
|
|
- <el-form-item
|
|
|
|
- label="执行标准"
|
|
|
|
- prop="chemicalStandard"
|
|
|
|
- :rules="tableFormRules.chemicalStandard"
|
|
|
|
- >
|
|
|
|
- <el-select
|
|
|
|
- filterable clearable
|
|
|
|
- v-model="dialog.editorBox.form.data.chemicalStandard"
|
|
|
|
- placeholder=""
|
|
|
|
- style="width: 100%;"
|
|
|
|
- :rules="dialog.editorBox.form.chemicalStandard"
|
|
|
|
- >
|
|
|
|
- <el-option
|
|
|
|
- v-for="item of nameObj.chemicalStandard.arr"
|
|
|
|
- :key="item.id"
|
|
|
|
- :value="item.name"
|
|
|
|
- :label="item.name"
|
|
|
|
- ></el-option>
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :span="12">
|
|
|
|
- <el-form-item
|
|
|
|
- label="计划量"
|
|
|
|
- prop="planWeight"
|
|
|
|
- :rules="dialog.editorBox.form.planWeight"
|
|
|
|
- >
|
|
|
|
- <el-input
|
|
|
|
- clearable
|
|
|
|
- style="width: 100%;"
|
|
|
|
- v-model="dialog.editorBox.form.data.planWeight"
|
|
|
|
- >
|
|
|
|
- </el-input>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- </el-row>
|
|
|
|
- <el-row>
|
|
|
|
- <el-col :span="12">
|
|
|
|
- <el-form-item
|
|
|
|
- label="用途"
|
|
|
|
- prop="purpose"
|
|
|
|
- :rules="dialog.editorBox.form.purpose"
|
|
|
|
- >
|
|
|
|
- <el-select
|
|
|
|
- filterable clearable
|
|
|
|
- v-model="dialog.editorBox.form.data.purpose"
|
|
|
|
- placeholder=""
|
|
|
|
- style="width: 100%;"
|
|
|
|
- :rules="dialog.editorBox.form.purpose"
|
|
|
|
- >
|
|
|
|
- <el-option
|
|
|
|
- v-for="item of nameObj.purpose.arr"
|
|
|
|
- :key="item.id"
|
|
|
|
- :value="item.name"
|
|
|
|
- :label="item.name"
|
|
|
|
- ></el-option>
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- </el-row>
|
|
|
|
- </el-form>
|
|
|
|
- </div>
|
|
|
|
- <span
|
|
|
|
- slot="footer"
|
|
|
|
- class="dialog-footer"
|
|
|
|
- >
|
|
|
|
- <el-button
|
|
|
|
- @click="dialog.editorBox.show = false"
|
|
|
|
- :loading="loading"
|
|
|
|
- >取 消</el-button>
|
|
|
|
- <el-button
|
|
|
|
- type="primary"
|
|
|
|
- @click="dataSave"
|
|
|
|
- :loading="loading"
|
|
|
|
- >保 存</el-button>
|
|
|
|
- </span>
|
|
|
|
- </el-dialog>
|
|
|
|
- <zj-formulaEditor :equationEditing="dialog.equationEditing"></zj-formulaEditor>
|
|
|
|
- </div>
|
|
|
|
-</template>
|
|
|
|
-
|
|
|
|
-<script>
|
|
|
|
-import { zCheckNumber1 } from '@/utils/validator.js';
|
|
|
|
-import timegranDate from '@/components/zg/timegranDate.vue';
|
|
|
|
-import formulaEditor from '@/components/zg/formulaEditor.vue';
|
|
|
|
-import {formatDate, commonSummaries} from '@/utils/util.js';
|
|
|
|
-export default {
|
|
|
|
- name: 'balanceSheetData',
|
|
|
|
- components: {
|
|
|
|
- 'zj-timegran-date': timegranDate,
|
|
|
|
- 'zj-formulaEditor': formulaEditor
|
|
|
|
- },
|
|
|
|
- data () {
|
|
|
|
- return {
|
|
|
|
- activeMenu: '',
|
|
|
|
- isCheck: false, // 是否为审核人
|
|
|
|
- filterForm: {
|
|
|
|
- show: true,
|
|
|
|
- data: {
|
|
|
|
- id: '',
|
|
|
|
- timegranid: '',
|
|
|
|
- clock: '',
|
|
|
|
- workprocid: '',
|
|
|
|
- workprocType: '',
|
|
|
|
- energyid: '',
|
|
|
|
- propertyid: '',
|
|
|
|
- itemid: '',
|
|
|
|
- itemname: '',
|
|
|
|
- itemdesc: '',
|
|
|
|
- may: '',
|
|
|
|
- canissue: '',
|
|
|
|
- weightMonth: '',
|
|
|
|
- issue: '',
|
|
|
|
- yxf_weight: '',
|
|
|
|
- kxf_weight: '',
|
|
|
|
- describe: '',
|
|
|
|
- state: '',
|
|
|
|
- grades: '',
|
|
|
|
- specifications: '',
|
|
|
|
- lengths: '',
|
|
|
|
- chemicalStandard: '',
|
|
|
|
- surfaceStandard: '',
|
|
|
|
- transportType: '',
|
|
|
|
- parentid: '',
|
|
|
|
- purpose: '',
|
|
|
|
- sqno: '',
|
|
|
|
- show: false
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- rules: {
|
|
|
|
- },
|
|
|
|
- pageNum: 1,
|
|
|
|
- pageSize: 20,
|
|
|
|
- total: 0,
|
|
|
|
- rightTableData: [],
|
|
|
|
- singleTableHeight: 100,
|
|
|
|
- leftTableData: [],
|
|
|
|
- leftTableLoading: false,
|
|
|
|
- leftTableWidth: 550,
|
|
|
|
- difference: 0,
|
|
|
|
- rightTableObj: {},
|
|
|
|
- multipleSelection: [],
|
|
|
|
- tableFormDataObj: {},
|
|
|
|
- tableFormRules: {
|
|
|
|
- planWeight: [
|
|
|
|
- { required: true, message: '该项不能为空', trigger: 'change' },
|
|
|
|
- { validator: zCheckNumber1, trigger: 'change' }
|
|
|
|
- ],
|
|
|
|
- grades: [
|
|
|
|
- { required: true, message: '该项不能为空', trigger: 'change' }
|
|
|
|
- ],
|
|
|
|
- specifications: [
|
|
|
|
- { required: true, message: '该项不能为空', trigger: 'change' }
|
|
|
|
- ],
|
|
|
|
- transportType: [
|
|
|
|
- { required: true, message: '该项不能为空', trigger: 'change' }
|
|
|
|
- ],
|
|
|
|
- purpose: [
|
|
|
|
- { required: true, message: '该项不能为空', trigger: 'change' }
|
|
|
|
- ],
|
|
|
|
- chemicalStandard: [
|
|
|
|
- { required: true, message: '该项不能为空', trigger: 'change' }
|
|
|
|
- ]
|
|
|
|
- },
|
|
|
|
- nameObj: {
|
|
|
|
- timegranid: {
|
|
|
|
- obj: {},
|
|
|
|
- arr: []
|
|
|
|
- },
|
|
|
|
- workprocid: {
|
|
|
|
- obj: {
|
|
|
|
- 'AT2005': {
|
|
|
|
- id: 'AT2005',
|
|
|
|
- name: '一高线'
|
|
|
|
- },
|
|
|
|
- 'AT2006': {
|
|
|
|
- id: 'AT2006',
|
|
|
|
- name: '二高线'
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- arr: [{
|
|
|
|
- id: 'AT2005',
|
|
|
|
- name: '一高线'
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- id: 'AT2006',
|
|
|
|
- name: '二高线'
|
|
|
|
- }]
|
|
|
|
- },
|
|
|
|
- energyid: {
|
|
|
|
- obj: {},
|
|
|
|
- arr: []
|
|
|
|
- },
|
|
|
|
- propertyid: {
|
|
|
|
- obj: {},
|
|
|
|
- arr: []
|
|
|
|
- },
|
|
|
|
- unit: {
|
|
|
|
- obj: {},
|
|
|
|
- arr: []
|
|
|
|
- },
|
|
|
|
- state: {
|
|
|
|
- obj: {
|
|
|
|
- '0': {
|
|
|
|
- name: '已编制',
|
|
|
|
- color: '#7a7a7a'
|
|
|
|
- },
|
|
|
|
- '1': {
|
|
|
|
- name: '已下发',
|
|
|
|
- color: 'rgb(28, 111, 217)'
|
|
|
|
- },
|
|
|
|
- '2': {
|
|
|
|
- name: '已接收',
|
|
|
|
- color: 'red'
|
|
|
|
- },
|
|
|
|
- arr: [
|
|
|
|
- {
|
|
|
|
- id: '0',
|
|
|
|
- name: '已编制'
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- id: '1',
|
|
|
|
- name: '已下发'
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- id: '2',
|
|
|
|
- name: '已接收'
|
|
|
|
- }
|
|
|
|
- ]
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- grades: {
|
|
|
|
- obj: {
|
|
|
|
- '0': {name: 'Q235'},
|
|
|
|
- '1': {name: 'Q195'}
|
|
|
|
- },
|
|
|
|
- arr: [
|
|
|
|
- {
|
|
|
|
- id: '0',
|
|
|
|
- name: 'Q235'
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- id: '1',
|
|
|
|
- name: 'Q195'
|
|
|
|
- }
|
|
|
|
- ]
|
|
|
|
- },
|
|
|
|
- specifications: {
|
|
|
|
- obj: {
|
|
|
|
- '0': {name: '6.5'},
|
|
|
|
- '1': {name: '20'}
|
|
|
|
- },
|
|
|
|
- arr: [
|
|
|
|
- {
|
|
|
|
- id: '0',
|
|
|
|
- name: '6.5'
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- id: '1',
|
|
|
|
- name: '20'
|
|
|
|
- }
|
|
|
|
- ]
|
|
|
|
- },
|
|
|
|
- transportType: {
|
|
|
|
- obj: {'0': {name: '火运'}, '1': {name: '汽运'}},
|
|
|
|
- arr: [
|
|
|
|
- {
|
|
|
|
- id: '0',
|
|
|
|
- name: '火运'
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- id: '1',
|
|
|
|
- name: '汽运'
|
|
|
|
- }
|
|
|
|
- ]
|
|
|
|
- },
|
|
|
|
- chemicalStandard: {
|
|
|
|
- obj: {
|
|
|
|
- '0': {name: 'Q/JXT017-2021'},
|
|
|
|
- '1': {name: 'GB/T 700-2006'},
|
|
|
|
- '2': {name: 'GB/T 701-2008'}
|
|
|
|
- },
|
|
|
|
- arr: [
|
|
|
|
- {
|
|
|
|
- id: '0',
|
|
|
|
- name: 'Q/JXT017-2021'
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- id: '1',
|
|
|
|
- name: 'GB/T 700-2006'
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- id: '2',
|
|
|
|
- name: 'GB/T 701-2008'
|
|
|
|
- }
|
|
|
|
- ]
|
|
|
|
- },
|
|
|
|
- purpose: {
|
|
|
|
- obj: {
|
|
|
|
- '0': {name: '标准件'},
|
|
|
|
- '1': {name: '铁丝'}
|
|
|
|
- },
|
|
|
|
- arr: [
|
|
|
|
- {
|
|
|
|
- id: '0',
|
|
|
|
- name: '标准件'
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- id: '1',
|
|
|
|
- name: '铁丝'
|
|
|
|
- }
|
|
|
|
- ]
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- loading: false,
|
|
|
|
- tableLoading: false,
|
|
|
|
- dialog: {
|
|
|
|
- fRow: null,
|
|
|
|
- editorBox: {
|
|
|
|
- show: false,
|
|
|
|
- type: '',
|
|
|
|
- form: {
|
|
|
|
- default: {
|
|
|
|
- workprocid: ''
|
|
|
|
- },
|
|
|
|
- data: {
|
|
|
|
- itemid: '',
|
|
|
|
- materialid: '',
|
|
|
|
- workprocid: '',
|
|
|
|
- unitid: '',
|
|
|
|
- seqno: '',
|
|
|
|
- mes_prodline: '',
|
|
|
|
- code: '',
|
|
|
|
- digits: '',
|
|
|
|
- may: '',
|
|
|
|
- canissue: '',
|
|
|
|
- weightMonth: '',
|
|
|
|
- issue: '',
|
|
|
|
- yxf_weight: '',
|
|
|
|
- kxf_weight: '',
|
|
|
|
- describe: '',
|
|
|
|
- state: '',
|
|
|
|
- grades: '',
|
|
|
|
- specifications: '',
|
|
|
|
- lengths: '',
|
|
|
|
- chemicalStandard: '',
|
|
|
|
- surfaceStandard: '',
|
|
|
|
- transportType: '',
|
|
|
|
- workprocType: '',
|
|
|
|
- purpose: '',
|
|
|
|
- planWeight: ''
|
|
|
|
- },
|
|
|
|
- rules: {
|
|
|
|
- planWeight: [
|
|
|
|
- { required: true, message: '该项不能为空', trigger: 'change' },
|
|
|
|
- { validator: zCheckNumber1, trigger: 'change' }
|
|
|
|
- ],
|
|
|
|
- grades: [
|
|
|
|
- { required: true, message: '该项不能为空', trigger: 'change' }
|
|
|
|
- ],
|
|
|
|
- specifications: [
|
|
|
|
- { required: true, message: '该项不能为空', trigger: 'change' }
|
|
|
|
- ],
|
|
|
|
- transportType: [
|
|
|
|
- { required: true, message: '该项不能为空', trigger: 'change' }
|
|
|
|
- ],
|
|
|
|
- purpose: [
|
|
|
|
- { required: true, message: '该项不能为空', trigger: 'change' }
|
|
|
|
- ],
|
|
|
|
- chemicalStandard: [
|
|
|
|
- { required: true, message: '该项不能为空', trigger: 'change' }
|
|
|
|
- ],
|
|
|
|
- may: [
|
|
|
|
- { required: true, message: '该项不能为空', trigger: 'change' }
|
|
|
|
- ],
|
|
|
|
- workprocid: [
|
|
|
|
- { required: true, message: '该项不能为空', trigger: 'change' }
|
|
|
|
- ]
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- created () {
|
|
|
|
- this.activeMenu = window.localStorage.getItem('activeMenu');
|
|
|
|
- },
|
|
|
|
- mounted () {
|
|
|
|
- let that = this;
|
|
|
|
- window.PEDataObj = {
|
|
|
|
- // 将数据绑定到window上,供main页面使用
|
|
|
|
- vm: that,
|
|
|
|
- // tableArr:用于导出成Excel的表格的信息
|
|
|
|
- tableArr: [
|
|
|
|
- {
|
|
|
|
- name: '左表格',
|
|
|
|
- id: 'singleTable1'
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- name: '右表格',
|
|
|
|
- id: 'singleTable2'
|
|
|
|
- }
|
|
|
|
- ]
|
|
|
|
- };
|
|
|
|
- that.$nextTick(() => {
|
|
|
|
- // 立即获取的height有一定偏差,通过setTimeout延迟来解决
|
|
|
|
- setTimeout(() => {
|
|
|
|
- that.singleTableHeight = that.getRoleHeight(that.$refs['boxBottom']) - 45;
|
|
|
|
- }, 1);
|
|
|
|
- });
|
|
|
|
- that.getTimeGranData();
|
|
|
|
- that.getEnergyIdData();
|
|
|
|
- that.getPropertyIdData();
|
|
|
|
- that.getUnitIdData();
|
|
|
|
- },
|
|
|
|
- methods: {
|
|
|
|
- // 计算树区域高度
|
|
|
|
- getRoleHeight (dom) {
|
|
|
|
- return window.innerHeight - dom.offsetTop;
|
|
|
|
- },
|
|
|
|
- // 自定义的表格合计方法:只给指定列进行合计
|
|
|
|
- getSummaries (param) {
|
|
|
|
- const prop = ['kxf_weight', 'weightMonth', 'yxf_weight', 'planWeight']; // 合计列绑定的prop
|
|
|
|
- return commonSummaries(param, prop);
|
|
|
|
- },
|
|
|
|
- // 获取时间粒度(平衡表数据维护)
|
|
|
|
- getTimeGranData () {
|
|
|
|
- let that = this
|
|
|
|
- let url = 'pass/ems/v1/tcmdatasourcetimegrans/getTimegranRmBalanceValue';
|
|
|
|
- that.axios.get(url)
|
|
|
|
- .then(function (res) {
|
|
|
|
- if (res.code === '0') {
|
|
|
|
- let arr = [];
|
|
|
|
- let obj = {};
|
|
|
|
- for (let item of res.data) {
|
|
|
|
- arr.push({
|
|
|
|
- id: item.ID,
|
|
|
|
- name: item.NAME
|
|
|
|
- })
|
|
|
|
- obj[item.ID] = item.NAME;
|
|
|
|
- that.filterForm.data.timegranid = that.filterForm.data.timegranid ? that.filterForm.data.timegranid : item.ID;
|
|
|
|
- }
|
|
|
|
- that.nameObj.timegranid.arr = arr;
|
|
|
|
- that.nameObj.timegranid.obj = obj;
|
|
|
|
- } else {
|
|
|
|
- that.$message.error(res.message);
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
- checkboxT (row, index) {
|
|
|
|
- if (row.state === '2' && !this.isCheck) {
|
|
|
|
- return false;
|
|
|
|
- } else {
|
|
|
|
- return true;
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- // 获取能介(平衡表)
|
|
|
|
- getEnergyIdData () {
|
|
|
|
- let that = this
|
|
|
|
- let url = 'pass/ems/v1/trmenergys/selectNameAndId/?isbalance=1';
|
|
|
|
- that.axios.get(url)
|
|
|
|
- .then(function (res) {
|
|
|
|
- if (res.code === '0') {
|
|
|
|
- let arr = [];
|
|
|
|
- let obj = {};
|
|
|
|
- for (let item of res.data) {
|
|
|
|
- arr.push({
|
|
|
|
- id: item.id,
|
|
|
|
- name: item.name
|
|
|
|
- })
|
|
|
|
- obj[item.id] = item.name;
|
|
|
|
- }
|
|
|
|
- that.nameObj.energyid.arr = arr;
|
|
|
|
- that.nameObj.energyid.obj = obj;
|
|
|
|
- } else {
|
|
|
|
- that.$message.error(res.message);
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
- // 获取属性
|
|
|
|
- getPropertyIdData () {
|
|
|
|
- let that = this
|
|
|
|
- let url = 'pass/ems/v1/trmenergypropertys/getidandname/';
|
|
|
|
- that.axios.get(url)
|
|
|
|
- .then(function (res) {
|
|
|
|
- if (res.code === '0') {
|
|
|
|
- let arr = [];
|
|
|
|
- let obj = {};
|
|
|
|
- for (let item of res.data) {
|
|
|
|
- arr.push({
|
|
|
|
- id: item.id,
|
|
|
|
- name: item.name
|
|
|
|
- })
|
|
|
|
- obj[item.id] = item.name;
|
|
|
|
- }
|
|
|
|
- that.nameObj.propertyid.arr = arr;
|
|
|
|
- that.nameObj.propertyid.obj = obj;
|
|
|
|
- } else {
|
|
|
|
- that.$message.error(res.message);
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
- // 获取标准计量单位
|
|
|
|
- getUnitIdData () {
|
|
|
|
- let that = this
|
|
|
|
- let url = 'pass/ems/v1/trmunits/getIdAndName';
|
|
|
|
- that.axios.get(url)
|
|
|
|
- .then(function (res) {
|
|
|
|
- if (res.code === '0') {
|
|
|
|
- let arr = [];
|
|
|
|
- let obj = {};
|
|
|
|
- for (let item of res.data) {
|
|
|
|
- arr.push({
|
|
|
|
- id: item.id,
|
|
|
|
- name: item.name
|
|
|
|
- })
|
|
|
|
- obj[item.id] = item.name;
|
|
|
|
- if (item.name === '吨') {
|
|
|
|
- that.nameObj.unit.defaults = that.nameObj.unit.defaults ? that.nameObj.unit.defaults : item.id;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- that.nameObj.unit.arr = arr;
|
|
|
|
- that.nameObj.unit.obj = obj;
|
|
|
|
- } else {
|
|
|
|
- that.$message.error(res.message);
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
- // 获取表格中的数据
|
|
|
|
- getTableData (pageNum) {
|
|
|
|
- let that = this,
|
|
|
|
- params = {
|
|
|
|
- may: that.filterForm.data.clock,
|
|
|
|
- workprocid: that.filterForm.data.workprocid,
|
|
|
|
- type: 'lg'
|
|
|
|
- };
|
|
|
|
- that.pageNum = pageNum || that.pageNum;
|
|
|
|
- that.leftTableLoading = true;
|
|
|
|
- let url = 'pass/ems/v1/emsprodplanmonths/getDates/?pageNum=' + that.pageNum + '&pageSize=' + that.pageSize;
|
|
|
|
- that.axios.get(url, {
|
|
|
|
- params: params
|
|
|
|
- })
|
|
|
|
- .then(function (res) {
|
|
|
|
- if (res.code === '0') {
|
|
|
|
- let arr = [];
|
|
|
|
- for (let item of res.data.list) {
|
|
|
|
- arr.push({
|
|
|
|
- unit: item.unit,
|
|
|
|
- canissue: item.canissue,
|
|
|
|
- weightMonth: item.weightMonth,
|
|
|
|
- issue: item.issue,
|
|
|
|
- may: item.may,
|
|
|
|
- workprocid: item.workprocid,
|
|
|
|
- yxf_weight: item.yxf_weight,
|
|
|
|
- kxf_weight: item.kxf_weight,
|
|
|
|
- parentid: item.id,
|
|
|
|
- id: item.id,
|
|
|
|
- sqno: item.sqno
|
|
|
|
- })
|
|
|
|
- }
|
|
|
|
- that.leftTableData = arr;
|
|
|
|
- that.rightTableObj.tableData = [];
|
|
|
|
- that.dialog.fRow = null;
|
|
|
|
- that.total = res.data.total;
|
|
|
|
- } else {
|
|
|
|
- that.$message.error(res.message);
|
|
|
|
- }
|
|
|
|
- that.leftTableLoading = false;
|
|
|
|
- }).catch(function () {
|
|
|
|
- that.leftTableLoading = false;
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
- // 改变表格显示条数
|
|
|
|
- tableSizeChange (val) {
|
|
|
|
- let that = this;
|
|
|
|
- that.pageSize = val;
|
|
|
|
- that.getTableData(1);
|
|
|
|
- },
|
|
|
|
- // 点击查询
|
|
|
|
- getTableDetailData (row) {
|
|
|
|
- let that = this;
|
|
|
|
- let params = {
|
|
|
|
- parentid: row.id
|
|
|
|
- };
|
|
|
|
- that.tableLoading = true;
|
|
|
|
- let url = 'pass/ems/v1/emsprodplanrounds/';
|
|
|
|
- that.axios.get(url, {
|
|
|
|
- params: params
|
|
|
|
- })
|
|
|
|
- .then(function (res) {
|
|
|
|
- if (res.code === '0') {
|
|
|
|
- let arr = [];
|
|
|
|
- for (let i = 0; i < res.data.list.length; i++) {
|
|
|
|
- let item = res.data.list[i];
|
|
|
|
- arr.push({
|
|
|
|
- seq: i,
|
|
|
|
- parentid: item.parentid,
|
|
|
|
- may: item.may,
|
|
|
|
- roundid: item.id,
|
|
|
|
- describe: item.describe,
|
|
|
|
- state: item.state,
|
|
|
|
- grades: item.grades,
|
|
|
|
- planWeight: item.planWeight,
|
|
|
|
- specifications: item.specifications,
|
|
|
|
- transportType: item.transportType,
|
|
|
|
- purpose: item.purpose,
|
|
|
|
- chemicalStandard: item.chemicalStandard,
|
|
|
|
- memo: item.memo,
|
|
|
|
- issuedTime: item.issuedTime,
|
|
|
|
- createman: item.createman,
|
|
|
|
- createtime: item.createtime,
|
|
|
|
- updateman: item.updateman,
|
|
|
|
- updatetime: item.updatetime,
|
|
|
|
- sqno: item.sqno,
|
|
|
|
- workprocType: item.workprocType
|
|
|
|
- });
|
|
|
|
- }
|
|
|
|
- that.rightTableData = arr;
|
|
|
|
- that.total = res.data.total;
|
|
|
|
- } else {
|
|
|
|
- that.$message.error(res.message);
|
|
|
|
- }
|
|
|
|
- that.tableLoading = false;
|
|
|
|
- }).catch(function () {
|
|
|
|
- that.tableLoading = false;
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
- getTableDetailDatas () {
|
|
|
|
- let that = this;
|
|
|
|
- let params = {
|
|
|
|
- may: that.filterForm.data.clock,
|
|
|
|
- workprocType: that.filterForm.data.workprocid ? that.nameObj.workprocid.obj['AT2005'].id : 'AT2005'
|
|
|
|
- };
|
|
|
|
- that.tableLoading = true;
|
|
|
|
- let url = 'pass/ems/v1/emsprodplanrounds/';
|
|
|
|
- that.axios.get(url, {
|
|
|
|
- params: params
|
|
|
|
- })
|
|
|
|
- .then(function (res) {
|
|
|
|
- if (res.code === '0') {
|
|
|
|
- let arr = [];
|
|
|
|
- for (let i = 0; i < res.data.list.length; i++) {
|
|
|
|
- let item = res.data.list[i];
|
|
|
|
- arr.push({
|
|
|
|
- seq: i,
|
|
|
|
- parentid: item.parentid,
|
|
|
|
- may: item.may,
|
|
|
|
- roundid: item.id,
|
|
|
|
- describe: item.describe,
|
|
|
|
- state: item.state,
|
|
|
|
- grades: item.grades,
|
|
|
|
- planWeight: item.planWeight,
|
|
|
|
- specifications: item.specifications,
|
|
|
|
- transportType: item.transportType,
|
|
|
|
- purpose: item.purpose,
|
|
|
|
- chemicalStandard: item.chemicalStandard,
|
|
|
|
- memo: item.memo,
|
|
|
|
- issuedTime: item.issuedTime,
|
|
|
|
- createman: item.createman,
|
|
|
|
- createtime: item.createtime,
|
|
|
|
- updateman: item.updateman,
|
|
|
|
- updatetime: item.updatetime
|
|
|
|
- });
|
|
|
|
- }
|
|
|
|
- that.rightTableData = arr;
|
|
|
|
- that.total = res.data.total;
|
|
|
|
- } else {
|
|
|
|
- that.$message.error(res.message);
|
|
|
|
- }
|
|
|
|
- that.tableLoading = false;
|
|
|
|
- }).catch(function () {
|
|
|
|
- that.tableLoading = false;
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
- jsDifference () {
|
|
|
|
- let that = this;
|
|
|
|
- let fV = that.dialog.fRow.apportvalue,
|
|
|
|
- zV = 0;
|
|
|
|
- let xId = that.dialog.fRow.itemid + '-' + that.dialog.fRow.timegranid + '-' + that.dialog.fRow.clock;
|
|
|
|
- if (that.tableFormDataObj[xId]) {
|
|
|
|
- fV = that.tableFormDataObj[xId].apportvalue;
|
|
|
|
- }
|
|
|
|
- for (let item of that.rightTableObj.tableData) {
|
|
|
|
- zV = that.floatComputed(zV, item.apportvalue, '+');
|
|
|
|
- }
|
|
|
|
- that.difference = +that.floatComputed(fV, zV, '-').toFixed(3);
|
|
|
|
- },
|
|
|
|
- upTableFormDataObj () {
|
|
|
|
- // 更新右侧表格编辑模式绑定的数据
|
|
|
|
- let that = this;
|
|
|
|
- let fRow = that.dialog.fRow;
|
|
|
|
- if (fRow) {
|
|
|
|
- if (!fRow.tableFormDataArr || !fRow.isSelection) {
|
|
|
|
- // 当前选中行被勾选时不更新tableFormDataObj
|
|
|
|
- fRow.tableFormDataArr = JSON.parse(JSON.stringify(fRow.childrenArr));
|
|
|
|
- }
|
|
|
|
- if (fRow.isSelection) {
|
|
|
|
- that.rightTableObj.tableData = fRow.tableFormDataArr;
|
|
|
|
- } else {
|
|
|
|
- that.rightTableObj.tableData = fRow.childrenArr;
|
|
|
|
- }
|
|
|
|
- that.jsDifference();
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- handleSelectionChange (val) {
|
|
|
|
- let that = this;
|
|
|
|
- let rightTableObj = {};
|
|
|
|
- let arr = [];
|
|
|
|
- for (let item of val) {
|
|
|
|
- arr.push(item.seq);
|
|
|
|
- }
|
|
|
|
- this.seqArr = arr.sort(sortNumber);
|
|
|
|
- for (let item of that.rightTableData) {
|
|
|
|
- item.isSelection = false;
|
|
|
|
- }
|
|
|
|
- for (let item of val) {
|
|
|
|
- let obj = {};
|
|
|
|
- let xId = item.seq;
|
|
|
|
- if (that.rightTableObj[xId]) {
|
|
|
|
- // 如果已存在该数据则使用该数据
|
|
|
|
- rightTableObj[xId] = that.rightTableObj[xId];
|
|
|
|
- } else {
|
|
|
|
- // 负责则从对应行中获取行内原数据
|
|
|
|
- for (let key in item) {
|
|
|
|
- obj[key] = item[key];
|
|
|
|
- }
|
|
|
|
- item.realvalue = (!isNaN(Number(item.apportvalue)) && !isNaN(Number(item.wastage))) ? Number(item.apportvalue) + Number(item.wastage) - Number(item.secondVal) : item.realvalue;
|
|
|
|
- rightTableObj[xId] = obj;
|
|
|
|
- }
|
|
|
|
- item.isSelection = true;
|
|
|
|
- }
|
|
|
|
- for (let item of that.rightTableData) {
|
|
|
|
- if (item.isSelection === false) {
|
|
|
|
- item.realvalue = (!isNaN(Number(item.apportvalue)) && !isNaN(Number(item.wastage))) ? Number(item.apportvalue) + Number(item.wastage) - Number(item.secondVal) : item.realvalue;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- that.rightTableObj = rightTableObj;
|
|
|
|
- that.multipleSelection = val;
|
|
|
|
- },
|
|
|
|
- but_edit_plural () {
|
|
|
|
- let that = this;
|
|
|
|
- if (that.multipleSelection.length > 0) {
|
|
|
|
- that.$refs['dialog_form_arr_2'].validate((valid) => {
|
|
|
|
- if (valid) {
|
|
|
|
- let SubmitData = [];
|
|
|
|
- for (let key in that.rightTableObj) {
|
|
|
|
- SubmitData.push({
|
|
|
|
- parentid: that.rightTableObj[key].parentid,
|
|
|
|
- may: that.rightTableObj[key].may,
|
|
|
|
- describe: that.rightTableObj[key].describe,
|
|
|
|
- state: that.rightTableObj[key].state,
|
|
|
|
- grades: that.rightTableObj[key].grades,
|
|
|
|
- planWeight: that.rightTableObj[key].planWeight,
|
|
|
|
- specifications: that.rightTableObj[key].specifications,
|
|
|
|
- transportType: that.rightTableObj[key].transportType,
|
|
|
|
- workprocType: that.rightTableObj[key].workprocType,
|
|
|
|
- purpose: that.rightTableObj[key].purpose,
|
|
|
|
- chemicalStandard: that.rightTableObj[key].chemicalStandard,
|
|
|
|
- memo: that.rightTableObj[key].memo,
|
|
|
|
- id: that.rightTableObj[key].roundid,
|
|
|
|
- sqno: that.rightTableObj[key].sqno,
|
|
|
|
- createman: that.rightTableObj[key].createman,
|
|
|
|
- createtime: that.rightTableObj[key].createtime
|
|
|
|
- });
|
|
|
|
- }
|
|
|
|
- console.log(SubmitData)
|
|
|
|
- that.loading = true;
|
|
|
|
- that.axios.put('pass/ems/v1/emsprodplanrounds/batchUpdate', SubmitData)
|
|
|
|
- .then(function (res) {
|
|
|
|
- if (res.code === '0') {
|
|
|
|
- that.$message({
|
|
|
|
- message: '保存成功',
|
|
|
|
- type: 'success'
|
|
|
|
- });
|
|
|
|
- that.getTableDetailDatas();
|
|
|
|
- that.getTableData();
|
|
|
|
- } else {
|
|
|
|
- that.$message.error(res.message);
|
|
|
|
- }
|
|
|
|
- that.loading = false;
|
|
|
|
- }).catch(function () {
|
|
|
|
- that.loading = false;
|
|
|
|
- });
|
|
|
|
- } else {
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- } else {
|
|
|
|
- this.$message.error('至少要选择一条数据');
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- issue (sate) {
|
|
|
|
- let that = this;
|
|
|
|
- if (that.multipleSelection.length > 0) {
|
|
|
|
- that.$refs['dialog_form_arr_2'].validate((valid, obj) => {
|
|
|
|
- if (valid) {
|
|
|
|
- let SubmitData = [];
|
|
|
|
- for (let key in that.rightTableObj) {
|
|
|
|
- SubmitData.push({
|
|
|
|
- parentid: that.rightTableObj[key].parentid,
|
|
|
|
- may: that.rightTableObj[key].may,
|
|
|
|
- roundid: that.rightTableObj[key].roundid,
|
|
|
|
- describe: that.rightTableObj[key].describe,
|
|
|
|
- grades: that.rightTableObj[key].grades,
|
|
|
|
- planWeight: that.rightTableObj[key].planWeight,
|
|
|
|
- specifications: that.rightTableObj[key].specifications,
|
|
|
|
- transportType: that.rightTableObj[key].transportType,
|
|
|
|
- workprocType: that.rightTableObj[key].workprocType,
|
|
|
|
- purpose: that.rightTableObj[key].purpose,
|
|
|
|
- chemicalStandard: that.rightTableObj[key].chemicalStandard,
|
|
|
|
- memo: that.rightTableObj[key].memo,
|
|
|
|
- issuedTime: that.rightTableObj[key].issuedTime,
|
|
|
|
- createman: that.rightTableObj[key].createman,
|
|
|
|
- createtime: that.rightTableObj[key].createtime,
|
|
|
|
- updateman: that.rightTableObj[key].updateman,
|
|
|
|
- updatetime: that.rightTableObj[key].updatetime,
|
|
|
|
- id: that.rightTableObj[key].roundid,
|
|
|
|
- state: that.rightTableObj[key].state,
|
|
|
|
- sqno: that.rightTableObj[key].sqno,
|
|
|
|
- isxf: sate
|
|
|
|
- });
|
|
|
|
- }
|
|
|
|
- that.loading = true;
|
|
|
|
- that.axios.post('pass/ems/v1/emsprodplanrounds/issue', SubmitData, {
|
|
|
|
- contentType: 'application/json'
|
|
|
|
- })
|
|
|
|
- .then(function (res) {
|
|
|
|
- if (res.code === '0') {
|
|
|
|
- that.$message({
|
|
|
|
- message: '操作成功',
|
|
|
|
- type: 'success'
|
|
|
|
- });
|
|
|
|
- that.getTableData();
|
|
|
|
- that.getTableDetailDatas();
|
|
|
|
- } else {
|
|
|
|
- that.$message.error(res.message);
|
|
|
|
- }
|
|
|
|
- that.loading = false;
|
|
|
|
- }).catch(function () {
|
|
|
|
- that.loading = false;
|
|
|
|
- });
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- } else {
|
|
|
|
- this.$message.error('至少要选择一条数据');
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- but_del_plural () {
|
|
|
|
- let that = this;
|
|
|
|
- if (that.multipleSelection.length > 0) {
|
|
|
|
- that.$refs['dialog_form_arr_2'].validate((valid, obj) => {
|
|
|
|
- if (valid) {
|
|
|
|
- let SubmitData = [];
|
|
|
|
- for (let key in that.rightTableObj) {
|
|
|
|
- SubmitData.push({
|
|
|
|
- id: that.rightTableObj[key].roundid,
|
|
|
|
- state: that.rightTableObj[key].state
|
|
|
|
- });
|
|
|
|
- }
|
|
|
|
- console.log(SubmitData)
|
|
|
|
- that.loading = true;
|
|
|
|
- that.axios.post('pass/ems/v1/emsprodplanrounds/delete', SubmitData, {
|
|
|
|
- contentType: 'application/json'
|
|
|
|
- })
|
|
|
|
- .then(function (res) {
|
|
|
|
- if (res.code === '0') {
|
|
|
|
- that.$message({
|
|
|
|
- message: '删除成功',
|
|
|
|
- type: 'success'
|
|
|
|
- });
|
|
|
|
- that.getTableData();
|
|
|
|
- that.getTableDetailDatas();
|
|
|
|
- that.dialog.editorBox.show = false;
|
|
|
|
- } else {
|
|
|
|
- that.$message.error(res.message);
|
|
|
|
- }
|
|
|
|
- that.loading = false;
|
|
|
|
- }).catch(function () {
|
|
|
|
- that.loading = false;
|
|
|
|
- });
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- } else {
|
|
|
|
- this.$message.error('至少要选择一条数据');
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- dataSave () {
|
|
|
|
- let that = this;
|
|
|
|
- let SubmitData = {
|
|
|
|
- may: that.dialog.editorBox.form.data.may,
|
|
|
|
- describe: that.dialog.editorBox.form.data.describe,
|
|
|
|
- grades: that.dialog.editorBox.form.data.grades,
|
|
|
|
- specifications: that.dialog.editorBox.form.data.specifications,
|
|
|
|
- transportType: that.dialog.editorBox.form.data.transportType,
|
|
|
|
- chemicalStandard: that.dialog.editorBox.form.data.chemicalStandard,
|
|
|
|
- workprocType: that.dialog.editorBox.form.data.workprocid,
|
|
|
|
- planWeight: that.dialog.editorBox.form.data.planWeight,
|
|
|
|
- purpose: that.dialog.editorBox.form.data.purpose
|
|
|
|
- };
|
|
|
|
- console.log(SubmitData)
|
|
|
|
- that.$refs['dialog_form'].validate((valid) => {
|
|
|
|
- if (valid) {
|
|
|
|
- that.loading = true;
|
|
|
|
- that.axios.post('pass/ems/v1/emsprodplanrounds/', SubmitData, {
|
|
|
|
- contentType: 'application/json'
|
|
|
|
- })
|
|
|
|
- .then(function (res) {
|
|
|
|
- if (res.code === '0') {
|
|
|
|
- that.$message({
|
|
|
|
- message: '新增成功',
|
|
|
|
- type: 'success'
|
|
|
|
- });
|
|
|
|
- that.getTableData();
|
|
|
|
- that.dialog.editorBox.show = false;
|
|
|
|
- } else {
|
|
|
|
- that.$message.error(res.message);
|
|
|
|
- }
|
|
|
|
- that.loading = false;
|
|
|
|
- }).catch(function () {
|
|
|
|
- that.loading = false;
|
|
|
|
- });
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
- correctvalueUpFoo (row) {
|
|
|
|
- let that = this;
|
|
|
|
- // 防止数据为无效值
|
|
|
|
- if (row.correctvalue === '' || !isFinite(row.correctvalue)) {
|
|
|
|
- row.correctvalue = 0;
|
|
|
|
- row.apportvalue = row.actualvalue;
|
|
|
|
- } else {
|
|
|
|
- row.apportvalue = that.floatComputed(row.actualvalue, row.correctvalue, '+');
|
|
|
|
- }
|
|
|
|
- that.jsDifference();
|
|
|
|
- },
|
|
|
|
- apportvalueUpFoo (row) {
|
|
|
|
- let that = this;
|
|
|
|
- if (row.apportvalue === '' || !isFinite(row.apportvalue)) {
|
|
|
|
- row.correctvalue = 0;
|
|
|
|
- row.apportvalue = row.actualvalue;
|
|
|
|
- } else {
|
|
|
|
- row.correctvalue = that.floatComputed(row.apportvalue, row.actualvalue, '-');
|
|
|
|
- }
|
|
|
|
- that.jsDifference();
|
|
|
|
- },
|
|
|
|
- tableTDMousedown (e) {
|
|
|
|
- let that = this;
|
|
|
|
- let nowPageX = e.pageX,
|
|
|
|
- nowWidth = that.leftTableWidth,
|
|
|
|
- minWidth = 200,
|
|
|
|
- maxWidth = window.innerWidth - 200;
|
|
|
|
- that.$refs.table_box.style.userSelect = 'none';
|
|
|
|
- that.$refs.table_box.style.cursor = 'col-resize';
|
|
|
|
- that.$refs.table_box.onmousemove = function (e) {
|
|
|
|
- let bh = e.pageX - nowPageX;
|
|
|
|
- if (nowWidth + bh > maxWidth) {
|
|
|
|
- that.leftTableWidth = maxWidth;
|
|
|
|
- } else if (nowWidth + bh < minWidth) {
|
|
|
|
- that.leftTableWidth = minWidth;
|
|
|
|
- } else {
|
|
|
|
- that.leftTableWidth = nowWidth + bh;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- that.$refs.table_box.onmouseup = function () {
|
|
|
|
- that.$refs.table_box.onmousemove = false;
|
|
|
|
- that.$refs.table_box.onmouseup = false;
|
|
|
|
- that.$refs.table_box.style.userSelect = '';
|
|
|
|
- that.$refs.table_box.style.cursor = ''
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- // 对proportion的值进行处理,使其符合要求
|
|
|
|
- proportionFormat (row) {
|
|
|
|
- let that = this;
|
|
|
|
- if (row.proportion === '' || !isFinite(row.proportion)) {
|
|
|
|
- row.proportion = 0;
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- // 重新计算,根据自定义的分配比例来自动调整最终值
|
|
|
|
- againCount () {
|
|
|
|
- let that = this;
|
|
|
|
- if (that.multipleSelection.length > 0) {
|
|
|
|
- for (let item of that.multipleSelection) {
|
|
|
|
- let xId = item.itemid + '-' + item.timegranid + '-' + item.clock;
|
|
|
|
- let objItem = that.tableFormDataObj[xId];
|
|
|
|
- let bl = 0;
|
|
|
|
- for (let dataObj of item.tableFormDataArr) {
|
|
|
|
- bl = +that.floatComputed(bl, dataObj.proportion, '+');
|
|
|
|
- }
|
|
|
|
- if (bl !== 100) {
|
|
|
|
- this.$message.error('所有比例之和不为100%,请调整比例后再执行计算。');
|
|
|
|
- continue;
|
|
|
|
- }
|
|
|
|
- let sum = objItem.apportvalue;
|
|
|
|
- for (let i = 0, ilength = item.tableFormDataArr.length; i < ilength; i++) {
|
|
|
|
- if (i === (ilength - 1)) {
|
|
|
|
- item.tableFormDataArr[i].apportvalue = sum;
|
|
|
|
- } else {
|
|
|
|
- let z = that.floatComputed(objItem.apportvalue, item.tableFormDataArr[i].proportion, '*');
|
|
|
|
- item.tableFormDataArr[i].apportvalue = that.floatComputed(z, 100, '/');
|
|
|
|
- sum = that.floatComputed(sum, item.tableFormDataArr[i].apportvalue, '-');
|
|
|
|
- }
|
|
|
|
- item.tableFormDataArr[i].correctvalue = that.floatComputed(item.tableFormDataArr[i].apportvalue, item.tableFormDataArr[i].actualvalue, '-');
|
|
|
|
- }
|
|
|
|
- that.jsDifference();
|
|
|
|
- }
|
|
|
|
- } else {
|
|
|
|
- this.$message.error('请勾选一条数据');
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- but_add () {
|
|
|
|
- let that = this;
|
|
|
|
- that.dialog.editorBox.show = true;
|
|
|
|
- setTimeout(() => {
|
|
|
|
- that.$refs['dialog_form'].clearValidate();
|
|
|
|
- }, 100);
|
|
|
|
- },
|
|
|
|
- getChildTable (row, expandedRows) {
|
|
|
|
- let that = this;
|
|
|
|
- if (!row.getTable) {
|
|
|
|
- let params = {
|
|
|
|
- clock: row.clock,
|
|
|
|
- energyid: row.energyid
|
|
|
|
- };
|
|
|
|
- row.tableLoading = true;
|
|
|
|
- let url = 'pass/ems/v1/trmbalancevalues/getitem';
|
|
|
|
- that.axios.get(url, {
|
|
|
|
- params: params
|
|
|
|
- })
|
|
|
|
- .then(function (res) {
|
|
|
|
- if (res.code === '0') {
|
|
|
|
- let arr = [];
|
|
|
|
- for (let item of res.data) {
|
|
|
|
- arr.push({
|
|
|
|
- clock: item.CLOCK,
|
|
|
|
- itemname: item.ITEMNAME,
|
|
|
|
- timegranid: item.TIMEGRANID,
|
|
|
|
- apportvalue: item.APPORTVALUE
|
|
|
|
- })
|
|
|
|
- }
|
|
|
|
- console.log(arr)
|
|
|
|
- row.tableData = arr;
|
|
|
|
- row.getTable = true;
|
|
|
|
- } else {
|
|
|
|
- that.$message.error(res.message);
|
|
|
|
- }
|
|
|
|
- row.tableLoading = false;
|
|
|
|
- }).catch(function () {
|
|
|
|
- row.tableLoading = false;
|
|
|
|
- });
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-function sortNumber (a, b) {
|
|
|
|
- return a - b
|
|
|
|
-}
|
|
|
|
-</script>
|
|
|
|
-
|
|
|
|
-<style lang="less">
|
|
|
|
-.balanceSheetData {
|
|
|
|
- min-width: 700px;
|
|
|
|
- height: 100%;
|
|
|
|
- .box {
|
|
|
|
- height: 100%;
|
|
|
|
- padding: 15px 15px 0 15px;
|
|
|
|
- .box-top {
|
|
|
|
- .el-form-item {
|
|
|
|
- margin-bottom: 7px;
|
|
|
|
- }
|
|
|
|
- .box-top-gjl {
|
|
|
|
- overflow: hidden;
|
|
|
|
- // margin-top: -7px;
|
|
|
|
- padding: 7px 0;
|
|
|
|
- border-top: 1px solid #ccc;
|
|
|
|
- // border-bottom: 1px solid #ccc;
|
|
|
|
- // margin-bottom: 6px;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- .table-box {
|
|
|
|
- .table-left {
|
|
|
|
- float: left;
|
|
|
|
- width: 550px;
|
|
|
|
- }
|
|
|
|
- .table-tuodong {
|
|
|
|
- float: left;
|
|
|
|
- width: 5px;
|
|
|
|
- margin: 0 1px 0 1px;
|
|
|
|
- cursor: col-resize;
|
|
|
|
- }
|
|
|
|
- .table-right {
|
|
|
|
- margin-left: 557px;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- .el-table .el-table__row {
|
|
|
|
- height: 35px;
|
|
|
|
- }
|
|
|
|
- .el-table__body .el-form-item--mini.el-form-item {
|
|
|
|
- margin: 0px;
|
|
|
|
- .error {
|
|
|
|
- overflow: hidden;
|
|
|
|
- color: #f56c6c;
|
|
|
|
- font-size: 12px;
|
|
|
|
- line-height: 1;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- // 隐藏全选按钮
|
|
|
|
- thead .el-table-column--selection .cell {
|
|
|
|
- display: none;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-</style>
|
|
|