|
@@ -0,0 +1,2132 @@
|
|
|
+<template>
|
|
|
+<!-- 转供电实绩 -->
|
|
|
+<!-- 当有审核与取消审核权限时,默认其为审核人,审核人无法修改数据 -->
|
|
|
+ <div class="outElectricity">
|
|
|
+ <div class="box">
|
|
|
+ <div class="box-top">
|
|
|
+ <el-form
|
|
|
+ style="overflow: hidden;"
|
|
|
+ :style="filterForm.show ? null : { height: '0px' }"
|
|
|
+ size="mini"
|
|
|
+ label-width="75px"
|
|
|
+ >
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="5">
|
|
|
+ <!-- <el-form-item label="工序">
|
|
|
+ <el-select
|
|
|
+ filterable clearable
|
|
|
+ v-model="filterForm.data.networkid"
|
|
|
+ multiple
|
|
|
+ collapse-tags
|
|
|
+ placeholder="机焦厂"
|
|
|
+ style="width: 100%;"
|
|
|
+ disabled
|
|
|
+ @change="connn()"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item of nameObj.networkid.arr"
|
|
|
+ :key="item.id"
|
|
|
+ :value="item.id"
|
|
|
+ :label="item.name"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item> -->
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="6">
|
|
|
+ <el-form-item label="年份">
|
|
|
+ <zj-timegran-date
|
|
|
+ v-model="filterForm.data.yearmonth"
|
|
|
+ style="width: 100%;"
|
|
|
+ :timegranId="'YEAR'"
|
|
|
+ :oneFoo="getTableData"
|
|
|
+ :custom="1"
|
|
|
+ ></zj-timegran-date>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="5">
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="5">
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </el-form>
|
|
|
+ <div class="box-top-gjl">
|
|
|
+ <el-form size="mini" label-width="75px">
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="16">
|
|
|
+ <el-button
|
|
|
+ class="button"
|
|
|
+ type="primary"
|
|
|
+ size="mini"
|
|
|
+ icon="el-icon-plus"
|
|
|
+ @click="but_add"
|
|
|
+ :loading="loading"
|
|
|
+ >新增</el-button>
|
|
|
+ <!-- <el-button
|
|
|
+ class="button"
|
|
|
+ type="primary"
|
|
|
+ size="mini"
|
|
|
+ icon="el-icon-plus"
|
|
|
+ @click="but_copy"
|
|
|
+ :loading="loading"
|
|
|
+ v-if="butPrivilege.PUT && !isCheck"
|
|
|
+ >复制</el-button> -->
|
|
|
+ <el-button
|
|
|
+ class="button"
|
|
|
+ type="primary"
|
|
|
+ size="mini"
|
|
|
+ icon="el-icon-edit-outline"
|
|
|
+ @click="but_edit_plural()"
|
|
|
+ :loading="loading"
|
|
|
+ v-if="butPrivilege.PUT && !isCheck"
|
|
|
+ >修改</el-button>
|
|
|
+ <el-button
|
|
|
+ class="button"
|
|
|
+ type="danger"
|
|
|
+ size="mini"
|
|
|
+ icon="el-icon-delete"
|
|
|
+ v-if="butPrivilege.PUT && !isCheck"
|
|
|
+ @click="but_del_plural()"
|
|
|
+ :loading="loading"
|
|
|
+ >删除</el-button>
|
|
|
+ <!-- 当有审核与取消审核权限时,默认其为审核人,审核人无法修改数据 -->
|
|
|
+ <el-button
|
|
|
+ class="button"
|
|
|
+ type="primary"
|
|
|
+ size="mini"
|
|
|
+ icon="el-icon-view"
|
|
|
+ @click="upState()"
|
|
|
+ :loading="loading"
|
|
|
+ v-if="butPrivilege.CHECK && isCheck"
|
|
|
+ >审核</el-button>
|
|
|
+ <el-button
|
|
|
+ class="button"
|
|
|
+ size="mini"
|
|
|
+ icon="el-icon-refresh"
|
|
|
+ @click="upState('1')"
|
|
|
+ :loading="loading"
|
|
|
+ v-if="butPrivilege.UNDOCHECK && isCheck"
|
|
|
+ >撤销审核</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="8">
|
|
|
+ <div style="float:right; text-align: right;">
|
|
|
+ <el-button
|
|
|
+ class="button"
|
|
|
+ type="primary"
|
|
|
+ size="mini"
|
|
|
+ icon="el-icon-search"
|
|
|
+ v-if="butPrivilege.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['singleTable'].$el) - 45;
|
|
|
+ }
|
|
|
+ );"
|
|
|
+ >{{ filterForm.show ? '收起' : '展开' }}</el-button>
|
|
|
+ </div>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </el-form>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="box-bottom">
|
|
|
+ <el-form
|
|
|
+ size="mini"
|
|
|
+ ref="dialog_form_arr"
|
|
|
+ label-width="0px"
|
|
|
+ :model="tableFormDataObj"
|
|
|
+ >
|
|
|
+ <el-table stripe
|
|
|
+ id="singleTable"
|
|
|
+ ref="singleTable"
|
|
|
+ :data="tableData"
|
|
|
+ v-loading="tableLoading"
|
|
|
+ style="width: 100%;"
|
|
|
+ :height="singleTableHeight"
|
|
|
+ border
|
|
|
+ size="mini"
|
|
|
+ highlight-current-row
|
|
|
+ @selection-change="handleSelectionChange"
|
|
|
+ show-summary
|
|
|
+ :summary-method="getSummaries"
|
|
|
+ :span-method="arraySpanMethod"
|
|
|
+ :row-class-name="tableRowClassName"
|
|
|
+ @cell-click="cellClick"
|
|
|
+ >
|
|
|
+ <el-table-column
|
|
|
+ type="selection"
|
|
|
+ width="40"
|
|
|
+ align="center"
|
|
|
+ :selectable='checkboxT'
|
|
|
+ fixed="left"
|
|
|
+ class-name="cnspicuous"
|
|
|
+ ></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ sortable
|
|
|
+ prop="index"
|
|
|
+ type="index"
|
|
|
+ label="序号"
|
|
|
+ fixed="left"
|
|
|
+ width="50px"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ ></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="yearmonth"
|
|
|
+ label="月份"
|
|
|
+ fixed="left"
|
|
|
+ width="80px"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ ></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ fixed="left"
|
|
|
+ prop="unit"
|
|
|
+ label="计量单位"
|
|
|
+ width="100px"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ nameObj.unitid.obj[scope.row.unit] ? nameObj.unitid.obj[scope.row.unit] : scope.row.unit }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <!-- <el-table-column
|
|
|
+ prop="avgTime"
|
|
|
+ label="平均结焦时间"
|
|
|
+ fixed="left"
|
|
|
+ width="80px"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ ></el-table-column> -->
|
|
|
+ <el-table-column
|
|
|
+ prop="total"
|
|
|
+ label="合计产量"
|
|
|
+ fixed="left"
|
|
|
+ width="160px"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ ></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ label="成品焦">
|
|
|
+ <el-table-column
|
|
|
+ label="产生数量"
|
|
|
+ prop="weight"
|
|
|
+ rowsPan="3"
|
|
|
+ fixed="left"
|
|
|
+ width="120px"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ ><template slot-scope="scope">
|
|
|
+ <el-form-item
|
|
|
+ v-if="!isCheck && scope.row.isSelection && scope.row.state !== '2'"
|
|
|
+ :prop="scope.row.seq + '.weight'"
|
|
|
+ ><el-input clearable
|
|
|
+ v-for="(itemform, key) in tableFormDataObj[scope.row.seq].weight"
|
|
|
+ style="width: 100%;"
|
|
|
+ v-model="itemform['成品焦']"
|
|
|
+ v-if="!isNaN(Number(itemform['成品焦']))"
|
|
|
+ refcous="true"
|
|
|
+ :rules="tableFormRules.weight"
|
|
|
+ onkeyup="this.value = this.value.replace(/[^\d.]/g,'');"
|
|
|
+ @keydown.native="keyDown" :id="scope.$index + scope.column.id"
|
|
|
+ @change="chnageSecondVal(scope.row.seq, tableFormDataObj[scope.row.seq].secondVal, scope.$index)"
|
|
|
+ :key="key"
|
|
|
+ ></el-input>
|
|
|
+ <template slot="error" slot-scope="scope">
|
|
|
+ <p class="error" :title="scope.error">{{ scope.error }}</p>
|
|
|
+ </template>
|
|
|
+ </el-form-item>
|
|
|
+ <span v-else v-for="(item, index) in tableData[scope.row.index].weight" :key="index">{{item['成品焦']}}</span>
|
|
|
+ </template></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="weight1"
|
|
|
+ label="高炉用量"
|
|
|
+ width="120px"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ ><template slot-scope="scope">
|
|
|
+ <el-form-item
|
|
|
+ v-if="!isCheck && scope.row.isSelection && scope.row.state !== '2'"
|
|
|
+ :prop="scope.row.seq + '.weight'"
|
|
|
+ ><el-input clearable
|
|
|
+ v-for="(itemform, key) in tableFormDataObj[scope.row.seq].weight1"
|
|
|
+ style="width: 100%;"
|
|
|
+ v-model="itemform['成品焦']"
|
|
|
+ v-if="!isNaN(Number(itemform['成品焦']))"
|
|
|
+ refcous="true"
|
|
|
+ :rules="tableFormRules.weight"
|
|
|
+ onkeyup="this.value = this.value.replace(/[^\d.]/g,'');"
|
|
|
+ @keydown.native="keyDown" :id="scope.$index + scope.column.id"
|
|
|
+ @change="chnageSecondVal(scope.row.seq, tableFormDataObj[scope.row.seq].secondVal, scope.$index)"
|
|
|
+ :key="key"
|
|
|
+ ></el-input>
|
|
|
+ <template slot="error" slot-scope="scope">
|
|
|
+ <p class="error" :title="scope.error">{{ scope.error }}</p>
|
|
|
+ </template>
|
|
|
+ </el-form-item>
|
|
|
+ <span v-else v-for="(item, index) in tableData[scope.row.index].weight1" :key="index">{{item['成品焦']}}</span>
|
|
|
+ </template></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="weight2"
|
|
|
+ label="外销数量"
|
|
|
+ width="120px"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ ><template slot-scope="scope">
|
|
|
+ <el-form-item
|
|
|
+ v-if="!isCheck && scope.row.isSelection && scope.row.state !== '2'"
|
|
|
+ :prop="scope.row.seq + '.weight'"
|
|
|
+ ><el-input clearable
|
|
|
+ v-for="(itemform, key) in tableFormDataObj[scope.row.seq].weight2"
|
|
|
+ style="width: 100%;"
|
|
|
+ v-model="itemform['成品焦']"
|
|
|
+ v-if="!isNaN(Number(itemform['成品焦']))"
|
|
|
+ refcous="true"
|
|
|
+ :rules="tableFormRules.weight"
|
|
|
+ onkeyup="this.value = this.value.replace(/[^\d.]/g,'');"
|
|
|
+ @keydown.native="keyDown" :id="scope.$index + scope.column.id"
|
|
|
+ @change="chnageSecondVal(scope.row.seq, tableFormDataObj[scope.row.seq].secondVal, scope.$index)"
|
|
|
+ :key="key"
|
|
|
+ ></el-input>
|
|
|
+ <template slot="error" slot-scope="scope">
|
|
|
+ <p class="error" :title="scope.error">{{ scope.error }}</p>
|
|
|
+ </template>
|
|
|
+ </el-form-item>
|
|
|
+ <span v-else v-for="(item, index) in tableData[scope.row.index].weight2" :key="index">{{item['成品焦']}}</span>
|
|
|
+ </template></el-table-column>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ label="小粒焦">
|
|
|
+ <el-table-column
|
|
|
+ label="产生数量"
|
|
|
+ prop="weight"
|
|
|
+ fixed="left"
|
|
|
+ width="120px"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ ><template slot-scope="scope">
|
|
|
+ <el-form-item
|
|
|
+ v-if="!isCheck && scope.row.isSelection && scope.row.state !== '2'"
|
|
|
+ :prop="scope.row.seq + '.weight'"
|
|
|
+ ><el-input clearable
|
|
|
+ v-for="(itemform, key) in tableFormDataObj[scope.row.seq].weight"
|
|
|
+ style="width: 100%;"
|
|
|
+ v-model="itemform['小粒焦']"
|
|
|
+ v-if="!isNaN(Number(itemform['小粒焦']))"
|
|
|
+ refcous="true"
|
|
|
+ :rules="tableFormRules.weight"
|
|
|
+ onkeyup="this.value = this.value.replace(/[^\d.]/g,'');"
|
|
|
+ @keydown.native="keyDown" :id="scope.$index + scope.column.id"
|
|
|
+ @change="chnageSecondVal(scope.row.seq, tableFormDataObj[scope.row.seq].secondVal, scope.$index)"
|
|
|
+ :key="key"
|
|
|
+ ></el-input>
|
|
|
+ <template slot="error" slot-scope="scope">
|
|
|
+ <p class="error" :title="scope.error">{{ scope.error }}</p>
|
|
|
+ </template>
|
|
|
+ </el-form-item>
|
|
|
+ <span v-else v-for="(item, index) in tableData[scope.row.index].weight" :key="index">{{item['小粒焦']}}</span>
|
|
|
+ </template></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="weight1"
|
|
|
+ label="高炉用量"
|
|
|
+ width="120px"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ ><template slot-scope="scope">
|
|
|
+ <el-form-item
|
|
|
+ v-if="!isCheck && scope.row.isSelection && scope.row.state !== '2'"
|
|
|
+ :prop="scope.row.seq + '.weight'"
|
|
|
+ ><el-input clearable
|
|
|
+ v-for="(itemform, key) in tableFormDataObj[scope.row.seq].weight1"
|
|
|
+ style="width: 100%;"
|
|
|
+ v-model="itemform['小粒焦']"
|
|
|
+ v-if="!isNaN(Number(itemform['小粒焦']))"
|
|
|
+ refcous="true"
|
|
|
+ :rules="tableFormRules.weight"
|
|
|
+ onkeyup="this.value = this.value.replace(/[^\d.]/g,'');"
|
|
|
+ @keydown.native="keyDown" :id="scope.$index + scope.column.id"
|
|
|
+ @change="chnageSecondVal(scope.row.seq, tableFormDataObj[scope.row.seq].secondVal, scope.$index)"
|
|
|
+ :key="key"
|
|
|
+ ></el-input>
|
|
|
+ <template slot="error" slot-scope="scope">
|
|
|
+ <p class="error" :title="scope.error">{{ scope.error }}</p>
|
|
|
+ </template>
|
|
|
+ </el-form-item>
|
|
|
+ <span v-else v-for="(item, index) in tableData[scope.row.index].weight1" :key="index">{{item['小粒焦']}}</span>
|
|
|
+ </template></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="weight2"
|
|
|
+ label="外销数量"
|
|
|
+ width="120px"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ ><template slot-scope="scope">
|
|
|
+ <el-form-item
|
|
|
+ v-if="!isCheck && scope.row.isSelection && scope.row.state !== '2'"
|
|
|
+ :prop="scope.row.seq + '.weight'"
|
|
|
+ ><el-input clearable
|
|
|
+ v-for="(itemform, key) in tableFormDataObj[scope.row.seq].weight2"
|
|
|
+ style="width: 100%;"
|
|
|
+ v-model="itemform['小粒焦']"
|
|
|
+ v-if="!isNaN(Number(itemform['小粒焦']))"
|
|
|
+ refcous="true"
|
|
|
+ :rules="tableFormRules.weight"
|
|
|
+ onkeyup="this.value = this.value.replace(/[^\d.]/g,'');"
|
|
|
+ @keydown.native="keyDown" :id="scope.$index + scope.column.id"
|
|
|
+ @change="chnageSecondVal(scope.row.seq, tableFormDataObj[scope.row.seq].secondVal, scope.$index)"
|
|
|
+ :key="key"
|
|
|
+ ></el-input>
|
|
|
+ <template slot="error" slot-scope="scope">
|
|
|
+ <p class="error" :title="scope.error">{{ scope.error }}</p>
|
|
|
+ </template>
|
|
|
+ </el-form-item>
|
|
|
+ <span v-else v-for="(item, index) in tableData[scope.row.index].weight2" :key="index">{{item['小粒焦']}}</span>
|
|
|
+ </template></el-table-column>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ label="焦粉"
|
|
|
+ ><el-table-column
|
|
|
+ prop="weight"
|
|
|
+ label="产生数量"
|
|
|
+ width="120px"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ ><template slot-scope="scope">
|
|
|
+ <el-form-item
|
|
|
+ v-if="!isCheck && scope.row.isSelection && scope.row.state !== '2'"
|
|
|
+ :prop="scope.row.seq + '.weight'"
|
|
|
+ ><el-input clearable
|
|
|
+ v-for="(itemform, key) in tableFormDataObj[scope.row.seq].weight"
|
|
|
+ style="width: 100%;"
|
|
|
+ v-model="itemform['焦粉']"
|
|
|
+ v-if="!isNaN(Number(itemform['焦粉']))"
|
|
|
+ refcous="true"
|
|
|
+ :rules="tableFormRules.weight"
|
|
|
+ onkeyup="this.value = this.value.replace(/[^\d.]/g,'');"
|
|
|
+ @keydown.native="keyDown" :id="scope.$index + scope.column.id"
|
|
|
+ @change="chnageSecondVal(scope.row.seq, tableFormDataObj[scope.row.seq].secondVal, scope.$index)"
|
|
|
+ :key="key"
|
|
|
+ ></el-input>
|
|
|
+ <template slot="error" slot-scope="scope">
|
|
|
+ <p class="error" :title="scope.error">{{ scope.error }}</p>
|
|
|
+ </template>
|
|
|
+ </el-form-item>
|
|
|
+ <span v-else v-for="(item, index) in tableData[scope.row.index].weight" :key="index">{{item['焦粉']}}</span>
|
|
|
+ </template></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="weight1"
|
|
|
+ label="烧结用量"
|
|
|
+ width="120px"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ ><template slot-scope="scope">
|
|
|
+ <el-form-item
|
|
|
+ v-if="!isCheck && scope.row.isSelection && scope.row.state !== '2'"
|
|
|
+ :prop="scope.row.seq + '.weight'"
|
|
|
+ ><el-input clearable
|
|
|
+ v-for="(itemform, key) in tableFormDataObj[scope.row.seq].weight1"
|
|
|
+ style="width: 100%;"
|
|
|
+ v-model="itemform['焦粉']"
|
|
|
+ v-if="!isNaN(Number(itemform['焦粉']))"
|
|
|
+ refcous="true"
|
|
|
+ :rules="tableFormRules.weight"
|
|
|
+ onkeyup="this.value = this.value.replace(/[^\d.]/g,'');"
|
|
|
+ @keydown.native="keyDown" :id="scope.$index + scope.column.id"
|
|
|
+ @change="chnageSecondVal(scope.row.seq, tableFormDataObj[scope.row.seq].secondVal, scope.$index)"
|
|
|
+ :key="key"
|
|
|
+ ></el-input>
|
|
|
+ <template slot="error" slot-scope="scope">
|
|
|
+ <p class="error" :title="scope.error">{{ scope.error }}</p>
|
|
|
+ </template>
|
|
|
+ </el-form-item>
|
|
|
+ <span v-else v-for="(item, index) in tableData[scope.row.index].weight1" :key="index">{{item['焦粉']}}</span>
|
|
|
+ </template></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="weight2"
|
|
|
+ label="外销数量"
|
|
|
+ width="120px"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ ><template slot-scope="scope">
|
|
|
+ <el-form-item
|
|
|
+ v-if="!isCheck && scope.row.isSelection && scope.row.state !== '2'"
|
|
|
+ :prop="scope.row.seq + '.weight'"
|
|
|
+ ><el-input clearable
|
|
|
+ v-for="(itemform, key) in tableFormDataObj[scope.row.seq].weight2"
|
|
|
+ style="width: 100%;"
|
|
|
+ v-model="itemform['焦粉']"
|
|
|
+ v-if="!isNaN(Number(itemform['焦粉']))"
|
|
|
+ refcous="true"
|
|
|
+ :rules="tableFormRules.weight"
|
|
|
+ onkeyup="this.value = this.value.replace(/[^\d.]/g,'');"
|
|
|
+ @keydown.native="keyDown" :id="scope.$index + scope.column.id"
|
|
|
+ @change="chnageSecondVal(scope.row.seq, tableFormDataObj[scope.row.seq].secondVal, scope.$index)"
|
|
|
+ :key="key"
|
|
|
+ ></el-input>
|
|
|
+ <template slot="error" slot-scope="scope">
|
|
|
+ <p class="error" :title="scope.error">{{ scope.error }}</p>
|
|
|
+ </template>
|
|
|
+ </el-form-item>
|
|
|
+ <span v-else v-for="(item, index) in tableData[scope.row.index].weight2" :key="index">{{item['焦粉']}}</span>
|
|
|
+ </template></el-table-column>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ label="除尘焦粉"
|
|
|
+ ><el-table-column
|
|
|
+ prop="weight"
|
|
|
+ label="产生数量"
|
|
|
+ width="120px"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ ><template slot-scope="scope">
|
|
|
+ <el-form-item
|
|
|
+ v-if="!isCheck && scope.row.isSelection && scope.row.state !== '2'"
|
|
|
+ :prop="scope.row.seq + '.weight'"
|
|
|
+ ><el-input clearable
|
|
|
+ v-for="(itemform, key) in tableFormDataObj[scope.row.seq].weight"
|
|
|
+ style="width: 100%;"
|
|
|
+ v-model="itemform['除尘焦粉']"
|
|
|
+ v-if="!isNaN(Number(itemform['除尘焦粉']))"
|
|
|
+ refcous="true"
|
|
|
+ :rules="tableFormRules.weight"
|
|
|
+ onkeyup="this.value = this.value.replace(/[^\d.]/g,'');"
|
|
|
+ @keydown.native="keyDown" :id="scope.$index + scope.column.id"
|
|
|
+ @change="chnageSecondVal(scope.row.seq, tableFormDataObj[scope.row.seq].secondVal, scope.$index)"
|
|
|
+ :key="key"
|
|
|
+ ></el-input>
|
|
|
+ <template slot="error" slot-scope="scope">
|
|
|
+ <p class="error" :title="scope.error">{{ scope.error }}</p>
|
|
|
+ </template>
|
|
|
+ </el-form-item>
|
|
|
+ <span v-else v-for="(item, index) in tableData[scope.row.index].weight" :key="index">{{item['除尘焦粉']}}</span>
|
|
|
+ </template></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="weight1"
|
|
|
+ label="高炉用量"
|
|
|
+ width="120px"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ ><template slot-scope="scope">
|
|
|
+ <el-form-item
|
|
|
+ v-if="!isCheck && scope.row.isSelection && scope.row.state !== '2'"
|
|
|
+ :prop="scope.row.seq + '.weight'"
|
|
|
+ ><el-input clearable
|
|
|
+ v-for="(itemform, key) in tableFormDataObj[scope.row.seq].weight1"
|
|
|
+ style="width: 100%;"
|
|
|
+ v-model="itemform['除尘焦粉']"
|
|
|
+ v-if="!isNaN(Number(itemform['除尘焦粉']))"
|
|
|
+ refcous="true"
|
|
|
+ :rules="tableFormRules.weight"
|
|
|
+ onkeyup="this.value = this.value.replace(/[^\d.]/g,'');"
|
|
|
+ @keydown.native="keyDown" :id="scope.$index + scope.column.id"
|
|
|
+ @change="chnageSecondVal(scope.row.seq, tableFormDataObj[scope.row.seq].secondVal, scope.$index)"
|
|
|
+ :key="key"
|
|
|
+ ></el-input>
|
|
|
+ <template slot="error" slot-scope="scope">
|
|
|
+ <p class="error" :title="scope.error">{{ scope.error }}</p>
|
|
|
+ </template>
|
|
|
+ </el-form-item>
|
|
|
+ <span v-else v-for="(item, index) in tableData[scope.row.index].weight1" :key="index">{{item['除尘焦粉']}}</span>
|
|
|
+ </template></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="weight2"
|
|
|
+ label="外销数量"
|
|
|
+ width="120px"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ ><template slot-scope="scope">
|
|
|
+ <el-form-item
|
|
|
+ v-if="!isCheck && scope.row.isSelection && scope.row.state !== '2'"
|
|
|
+ :prop="scope.row.seq + '.weight'"
|
|
|
+ ><el-input clearable
|
|
|
+ v-for="(itemform, key) in tableFormDataObj[scope.row.seq].weight2"
|
|
|
+ style="width: 100%;"
|
|
|
+ v-model="itemform['除尘焦粉']"
|
|
|
+ v-if="!isNaN(Number(itemform['除尘焦粉']))"
|
|
|
+ refcous="true"
|
|
|
+ onkeyup="this.value = this.value.replace(/[^\d.]/g,'');"
|
|
|
+ :rules="tableFormRules.weight"
|
|
|
+ @keydown.native="keyDown" :id="scope.$index + scope.column.id"
|
|
|
+ @change="chnageSecondVal(scope.row.seq, tableFormDataObj[scope.row.seq].secondVal, scope.$index)"
|
|
|
+ :key="key"
|
|
|
+ ></el-input>
|
|
|
+ <template slot="error" slot-scope="scope">
|
|
|
+ <p class="error" :title="scope.error">{{ scope.error }}</p>
|
|
|
+ </template>
|
|
|
+ </el-form-item>
|
|
|
+ <span v-else v-for="(item, index) in tableData[scope.row.index].weight2" :key="index">{{item['除尘焦粉']}}</span>
|
|
|
+ </template></el-table-column>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="cjsj"
|
|
|
+ label="创建时间"
|
|
|
+ width="220px"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ ></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="cjr"
|
|
|
+ label="创建人"
|
|
|
+ width="160px"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ ></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="xgsj"
|
|
|
+ label="修改时间"
|
|
|
+ width="220px"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ >
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="xgr"
|
|
|
+ label="修改人"
|
|
|
+ width="160px"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ ></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="memo"
|
|
|
+ label="备注"
|
|
|
+ width="350px"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ ><template slot-scope="scope">
|
|
|
+ <el-form-item
|
|
|
+ v-if="!isCheck && scope.row.isSelection && scope.row.state !== '2'"
|
|
|
+ :prop="scope.row.seq + '.memo'"
|
|
|
+ :rules="tableFormRules.memo"
|
|
|
+ ><el-input clearable
|
|
|
+ style="width: 100%;"
|
|
|
+ v-model="tableFormDataObj[scope.row.seq].memo"
|
|
|
+ refcous="true"
|
|
|
+ @keydown.native="keyDown" :id="scope.$index + scope.column.id"
|
|
|
+ @change="chnageSecondVal(scope.row.seq, tableFormDataObj[scope.row.seq].secondVal, scope.$index)"
|
|
|
+ ></el-input>
|
|
|
+ <template slot="error" slot-scope="scope">
|
|
|
+ <p class="error" :title="scope.error">{{ scope.error }}</p>
|
|
|
+ </template>
|
|
|
+ </el-form-item>
|
|
|
+ <span v-else>{{ scope.row.memo }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="id"
|
|
|
+ label="ID"
|
|
|
+ width="140px"
|
|
|
+ v-if="filterForm.data.show"
|
|
|
+ ></el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </el-form>
|
|
|
+ <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: right;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
|
|
|
+ :model="dialog.editorBox.form.data"
|
|
|
+ ref="dialog_form"
|
|
|
+ size="mini"
|
|
|
+ label-width="95px"
|
|
|
+ :rules="dialog.editorBox.form.rules"
|
|
|
+ >
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item
|
|
|
+ label="产品名称"
|
|
|
+ prop="productid"
|
|
|
+ >
|
|
|
+ <el-select
|
|
|
+ placeholder=""
|
|
|
+ prop="productid"
|
|
|
+ v-model="dialog.editorBox.form.data.productid"
|
|
|
+ style="width: 100%;"
|
|
|
+ :rules="dialog.editorBox.form.productid"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in nameObj.productid.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="yearmonth"
|
|
|
+ >
|
|
|
+ <zj-timegran-date
|
|
|
+ v-model="dialog.editorBox.form.data.yearmonth"
|
|
|
+ style="width: 100%;"
|
|
|
+ :timegranId="'MONTH'"
|
|
|
+ :defaultOffset="-1"
|
|
|
+ :rules="dialog.editorBox.form.yearmonth"
|
|
|
+ ></zj-timegran-date>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <el-row>
|
|
|
+ <!-- <el-col :span="12">
|
|
|
+ <el-form-item
|
|
|
+ label="平均结焦时间"
|
|
|
+ prop="unit"
|
|
|
+ >
|
|
|
+ <el-time-picker
|
|
|
+ clearable
|
|
|
+ v-model="dialog.editorBox.form.data.avgTime"
|
|
|
+ style="width: 100%;"
|
|
|
+ :rules="dialog.editorBox.form.avgTime"
|
|
|
+ placeholder="选择消耗时长">
|
|
|
+ </el-time-picker>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col> -->
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item
|
|
|
+ label="产生数量"
|
|
|
+ prop="weight"
|
|
|
+ >
|
|
|
+ <el-input
|
|
|
+ clearable
|
|
|
+ v-model="dialog.editorBox.form.data.weight"
|
|
|
+ style="width: 100%;"
|
|
|
+ :rules="dialog.editorBox.form.weight"
|
|
|
+ >
|
|
|
+ </el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item
|
|
|
+ label="烧结用量"
|
|
|
+ prop="weight1"
|
|
|
+ v-if="dialog.editorBox.form.data.productid === '焦粉'"
|
|
|
+ >
|
|
|
+ <el-input
|
|
|
+ clearable
|
|
|
+ v-model="dialog.editorBox.form.data.weight1"
|
|
|
+ style="width: 100%;"
|
|
|
+ :rules="dialog.editorBox.form.weight1"
|
|
|
+ >
|
|
|
+ </el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item
|
|
|
+ label="高炉用量"
|
|
|
+ prop="weight1"
|
|
|
+ v-else
|
|
|
+ >
|
|
|
+ <el-input
|
|
|
+ clearable
|
|
|
+ v-model="dialog.editorBox.form.data.weight1"
|
|
|
+ style="width: 100%;"
|
|
|
+ :rules="dialog.editorBox.form.weight1"
|
|
|
+ >
|
|
|
+ </el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item
|
|
|
+ label="外销用量"
|
|
|
+ prop="weight2"
|
|
|
+ >
|
|
|
+ <el-input
|
|
|
+ clearable
|
|
|
+ v-model="dialog.editorBox.form.data.weight2"
|
|
|
+ style="width: 100%;"
|
|
|
+ :rules="dialog.editorBox.form.weight2"
|
|
|
+ >
|
|
|
+ </el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+<!-- </el-row>
|
|
|
+ <el-row> -->
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item
|
|
|
+ label="备注"
|
|
|
+ prop="meno"
|
|
|
+ >
|
|
|
+ <el-input
|
|
|
+ clearable
|
|
|
+ v-model="dialog.editorBox.form.data.memo"
|
|
|
+ style="width: 100%;"
|
|
|
+ >
|
|
|
+ </el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </el-form>
|
|
|
+ </div>
|
|
|
+ <span
|
|
|
+ slot="footer"
|
|
|
+ class="dialog-footer"
|
|
|
+ >
|
|
|
+ <el-button
|
|
|
+ :loading="loading"
|
|
|
+ @click="dialog.editorBox.show = false"
|
|
|
+ >取 消</el-button>
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ @click="dataSave"
|
|
|
+ :loading="loading"
|
|
|
+ >保 存</el-button>
|
|
|
+ </span>
|
|
|
+ </el-dialog>
|
|
|
+ <el-dialog
|
|
|
+ :visible.sync="dialog.editorBox2.show"
|
|
|
+ width="400px"
|
|
|
+ :close-on-click-modal="false"
|
|
|
+ :show-close="!loading"
|
|
|
+ >
|
|
|
+ <div>
|
|
|
+ <el-form
|
|
|
+ :model="dialog.editorBox2.form.data"
|
|
|
+ ref="dialog_form2"
|
|
|
+ size="mini"
|
|
|
+ label-width="300px"
|
|
|
+ :rules="dialog.editorBox2.form.rules"
|
|
|
+ >
|
|
|
+ <el-row>
|
|
|
+ <el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item
|
|
|
+ label="月份"
|
|
|
+ prop="memo"
|
|
|
+ label-width="60px"
|
|
|
+ >
|
|
|
+ <zj-timegran-date
|
|
|
+ v-model="dialog.editorBox2.form.data.yearmonth"
|
|
|
+ style="width: 150%;"
|
|
|
+ :timegranId="'MONTH'"
|
|
|
+ :defaultOffset="-1"
|
|
|
+ :rules="dialog.editorBox.form.yearmonth"
|
|
|
+ ></zj-timegran-date>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </el-form>
|
|
|
+ </div>
|
|
|
+ <span
|
|
|
+ slot="footer"
|
|
|
+ class="dialog-footer"
|
|
|
+ >
|
|
|
+ <el-button
|
|
|
+ :loading="loading"
|
|
|
+ @click="dialog.editorBox2.show = false"
|
|
|
+ >取 消</el-button>
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ @click="but_copy_plural"
|
|
|
+ :loading="loading"
|
|
|
+ >保 存</el-button>
|
|
|
+ </span>
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import { zCheckNumber1 } from '@/utils/validator.js'
|
|
|
+import timegranDate from '@/components/zg/timegranDate.vue'
|
|
|
+import {formatDate, commonSummaries, getCookie} from '@/utils/util.js';
|
|
|
+export default {
|
|
|
+ name: 'outElectricity',
|
|
|
+ components: {
|
|
|
+ 'zj-timegran-date': timegranDate
|
|
|
+ },
|
|
|
+ data () {
|
|
|
+ let setDate = new Date();
|
|
|
+ setDate.setDate(15);
|
|
|
+ setDate.setMonth((setDate.getMonth() - 1));
|
|
|
+ return {
|
|
|
+ rowIndex: '',
|
|
|
+ columnId: '',
|
|
|
+ focusTarget: null,
|
|
|
+ seqArr: [],
|
|
|
+ editSetFlag: '',
|
|
|
+ isCheck: false, // 是否为审核人
|
|
|
+ filterForm: {
|
|
|
+ show: true,
|
|
|
+ data: {
|
|
|
+ clock: '',
|
|
|
+ clockc: '',
|
|
|
+ workprocid: [],
|
|
|
+ location: [],
|
|
|
+ networkid: [],
|
|
|
+ state: '',
|
|
|
+ itemname: '',
|
|
|
+ searchtype: '0',
|
|
|
+ measureid: '',
|
|
|
+ line: '',
|
|
|
+ unit: '',
|
|
|
+ yearmonth: '',
|
|
|
+ weight: '',
|
|
|
+ weight1: '',
|
|
|
+ weight2: '',
|
|
|
+ productid: '',
|
|
|
+ avgTime: '',
|
|
|
+ cjr: '',
|
|
|
+ xgr: '',
|
|
|
+ xgsj: '',
|
|
|
+ memo: '',
|
|
|
+ cp: '',
|
|
|
+ parentid: 'JJZ',
|
|
|
+ cjsj: '',
|
|
|
+ jzsj: '',
|
|
|
+ zt: '',
|
|
|
+ show: false
|
|
|
+ },
|
|
|
+ rules: {
|
|
|
+ },
|
|
|
+ disabled: {
|
|
|
+ networkid: false
|
|
|
+ }
|
|
|
+ },
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 100,
|
|
|
+ total: 0,
|
|
|
+ singleTableHeight: 100,
|
|
|
+ tableData: [
|
|
|
+ ],
|
|
|
+ originalData: [],
|
|
|
+ loading: false,
|
|
|
+ tableLoading: false,
|
|
|
+ multipleSelection: [],
|
|
|
+ tableFormDataObj: {},
|
|
|
+ tableFormRules: {
|
|
|
+ mintvalue: [
|
|
|
+ // { required: true, message: '该项不能为空', trigger: 'change' },
|
|
|
+ { validator: zCheckNumber1, trigger: 'change' }
|
|
|
+ ],
|
|
|
+ mendvalue: [
|
|
|
+ // { required: true, message: '该项不能为空', trigger: 'change' },
|
|
|
+ { validator: zCheckNumber1, trigger: 'change' }
|
|
|
+ ],
|
|
|
+ weight: [
|
|
|
+ { required: true, message: '该项不能为空', trigger: 'change' },
|
|
|
+ { validator: zCheckNumber1, trigger: 'change' }
|
|
|
+ ],
|
|
|
+ weight1: [
|
|
|
+ { required: true, message: '该项不能为空', trigger: 'change' },
|
|
|
+ { validator: zCheckNumber1, trigger: 'change' }
|
|
|
+ ],
|
|
|
+ weight2: [
|
|
|
+ { required: true, message: '该项不能为空', trigger: 'change' },
|
|
|
+ { validator: zCheckNumber1, trigger: 'change' }
|
|
|
+ ],
|
|
|
+ wastage: [
|
|
|
+ { validator: zCheckNumber1, trigger: 'change' }
|
|
|
+ ],
|
|
|
+ secondVal: [
|
|
|
+ { validator: zCheckNumber1, trigger: 'change' }
|
|
|
+ ],
|
|
|
+ memo: [
|
|
|
+
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ nameObj: {
|
|
|
+ state: {
|
|
|
+ obj: {
|
|
|
+ '0': {
|
|
|
+ name: '未编辑',
|
|
|
+ color: '#7a7a7a'
|
|
|
+ },
|
|
|
+ '1': {
|
|
|
+ name: '已编辑',
|
|
|
+ color: 'rgb(28, 111, 217)'
|
|
|
+ },
|
|
|
+ '2': {
|
|
|
+ name: '已审核',
|
|
|
+ color: 'red'
|
|
|
+ },
|
|
|
+ '3': {
|
|
|
+ name: '已接收',
|
|
|
+ color: 'red'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ arr: [
|
|
|
+ {
|
|
|
+ id: '0',
|
|
|
+ name: '未编辑'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: '1',
|
|
|
+ name: '已编辑'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: '2',
|
|
|
+ name: '已审核'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: '已接收',
|
|
|
+ color: 'red'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ type: {
|
|
|
+ obj: {
|
|
|
+ '0': '否',
|
|
|
+ '1': '是'
|
|
|
+ },
|
|
|
+ arr: [
|
|
|
+ {
|
|
|
+ id: '0',
|
|
|
+ name: '否'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: '1',
|
|
|
+ name: '是'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ unitid: {
|
|
|
+ obj: {
|
|
|
+ 't': {
|
|
|
+ id: 't',
|
|
|
+ name: '吨'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ arr: [
|
|
|
+ {
|
|
|
+ id: 't',
|
|
|
+ name: '吨'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ workprocid: {
|
|
|
+ obj: {
|
|
|
+ 'AT3009': {
|
|
|
+ id: 'AT3009',
|
|
|
+ name: '粗苯'
|
|
|
+ },
|
|
|
+ 'AT3010': {
|
|
|
+ id: 'AT3010',
|
|
|
+ name: '硫铵'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ arr: [{
|
|
|
+ id: 'AT3009',
|
|
|
+ name: '粗苯'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 'AT3010',
|
|
|
+ name: '硫铵'
|
|
|
+ }]
|
|
|
+ },
|
|
|
+ productid: {
|
|
|
+ obj: {
|
|
|
+ '成品焦': {
|
|
|
+ id: '成品焦',
|
|
|
+ name: '成品焦'
|
|
|
+ },
|
|
|
+ '小粒焦': {
|
|
|
+ id: '小粒焦',
|
|
|
+ name: '小粒焦'
|
|
|
+ },
|
|
|
+ '焦粉': {
|
|
|
+ id: '焦粉',
|
|
|
+ name: '焦粉'
|
|
|
+ },
|
|
|
+ '除尘焦粉': {
|
|
|
+ id: '除尘焦粉',
|
|
|
+ name: '除尘焦粉'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ arr: [{
|
|
|
+ id: '成品焦',
|
|
|
+ name: '成品焦'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: '小粒焦',
|
|
|
+ name: '小粒焦'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: '焦粉',
|
|
|
+ name: '焦粉'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: '除尘焦粉',
|
|
|
+ name: '除尘焦粉'
|
|
|
+ }]
|
|
|
+ },
|
|
|
+ location: {
|
|
|
+ obj: {},
|
|
|
+ arr: [],
|
|
|
+ showDataArr: []
|
|
|
+ },
|
|
|
+ locateid: {
|
|
|
+ obj: {},
|
|
|
+ arr: []
|
|
|
+ },
|
|
|
+ networkid: {
|
|
|
+ obj: {},
|
|
|
+ arr: []
|
|
|
+ },
|
|
|
+ userId: {
|
|
|
+ obj: {},
|
|
|
+ arr: []
|
|
|
+ }
|
|
|
+ },
|
|
|
+ dialog: {
|
|
|
+ fRow: null,
|
|
|
+ editorBox: {
|
|
|
+ show: false,
|
|
|
+ type: '',
|
|
|
+ form: {
|
|
|
+ default: {
|
|
|
+ workprocid: ''
|
|
|
+ },
|
|
|
+ data: {
|
|
|
+ unitid: '',
|
|
|
+ line: '',
|
|
|
+ yearmonth: '',
|
|
|
+ weight: '',
|
|
|
+ weight1: '',
|
|
|
+ weight2: '',
|
|
|
+ productid: '',
|
|
|
+ memo: ''
|
|
|
+ },
|
|
|
+ rules: {
|
|
|
+ weight: [
|
|
|
+ { required: true, message: '该项不能为空', trigger: 'change' },
|
|
|
+ { validator: zCheckNumber1, trigger: 'change' }
|
|
|
+ ],
|
|
|
+ weight1: [
|
|
|
+ { required: true, message: '该项不能为空', trigger: 'change' },
|
|
|
+ { validator: zCheckNumber1, trigger: 'change' }
|
|
|
+ ],
|
|
|
+ weight2: [
|
|
|
+ { required: true, message: '该项不能为空', trigger: 'change' },
|
|
|
+ { validator: zCheckNumber1, trigger: 'change' }
|
|
|
+ ],
|
|
|
+ productid: [{ required: true, message: '该项不能为空', trigger: 'change' }],
|
|
|
+ yearmonth: [{ required: true, message: '该项不能为空', trigger: 'change' }],
|
|
|
+ unitid: [{ required: true, message: '该项不能为空', trigger: 'change' }],
|
|
|
+ line: [{ required: true, message: '该项不能为空', trigger: 'change' }]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ editorBox2: {
|
|
|
+ show: false,
|
|
|
+ type: '',
|
|
|
+ form: {
|
|
|
+ data: {
|
|
|
+ yearmonth: ''
|
|
|
+ },
|
|
|
+ rules: {
|
|
|
+ yearmonth: [{ required: true, message: '该项不能为空', trigger: 'change' }]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ butPrivilege: {
|
|
|
+ QUERY: false,
|
|
|
+ PUT: false,
|
|
|
+ CHECK: false,
|
|
|
+ UNDOCHECK: false
|
|
|
+ },
|
|
|
+ loginName: getCookie('loginName')
|
|
|
+ }
|
|
|
+ },
|
|
|
+ created () {
|
|
|
+ // 获取按钮权限
|
|
|
+ this.activeMenu = window.localStorage.getItem('activeMenu');
|
|
|
+ for (let key in this.butPrivilege) {
|
|
|
+ this.butPrivilege[key] = this.checkPrivilege(this.activeMenu + key);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ mounted () {
|
|
|
+ let that = this;
|
|
|
+ window.PEDataObj = {
|
|
|
+ // 将数据绑定到window上,供main页面使用
|
|
|
+ vm: that,
|
|
|
+ // tableArr:用于导出成Excel的表格的信息
|
|
|
+ tableArr: [
|
|
|
+ {
|
|
|
+ name: '',
|
|
|
+ id: 'singleTable'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ };
|
|
|
+ that.$nextTick(() => {
|
|
|
+ // 立即获取的height有一定偏差,通过setTimeout延迟来解决
|
|
|
+ setTimeout(() => {
|
|
|
+ that.singleTableHeight = that.getRoleHeight(that.$refs['singleTable'].$el) - 45;
|
|
|
+ }, 1);
|
|
|
+ });
|
|
|
+ // 接收路由参数
|
|
|
+ if (that.$route.query.networkid) {
|
|
|
+ that.filterForm.disabled.networkid = true;
|
|
|
+ that.filterForm.data.networkid = that.$route.query.networkid.split(',');
|
|
|
+ }
|
|
|
+ // 当有审核与取消审核权限时,默认其为审核人,审核人无法修改数据
|
|
|
+ if (that.butPrivilege.CHECK || that.butPrivilege.UNDOCHECK) {
|
|
|
+ that.isCheck = true;
|
|
|
+ }
|
|
|
+ // 管理员在这里录入数据
|
|
|
+ if (that.loginName === 'admin' && that.filterForm.disabled.networkid) {
|
|
|
+ that.isCheck = false;
|
|
|
+ }
|
|
|
+ // that.getLocation();
|
|
|
+ that.getLocateIdData();
|
|
|
+ that.getNetworkIdData();
|
|
|
+ // that.getTableData();
|
|
|
+ that.getUnitIdData();
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ // 计算树区域高度
|
|
|
+ getRoleHeight (dom) {
|
|
|
+ return window.innerHeight - dom.offsetTop;
|
|
|
+ },
|
|
|
+ detailMessage (row) {
|
|
|
+ // console.log(row.date)// 此时就能拿到整行的信息
|
|
|
+ },
|
|
|
+ // 自定义的表格合计方法:只给指定列进行合计
|
|
|
+ getSummaries (param) {
|
|
|
+ const prop = ['apportvalue', 'realvalue', 'wastage', 'total']; // 合计列绑定的prop
|
|
|
+ const {columns, data} = param;
|
|
|
+ const sums = commonSummaries(param, prop);
|
|
|
+ let that = this;
|
|
|
+ // js中有两种不同的数据类型,一个是基本类型,一个是引用类型,其中Object是引用类型
|
|
|
+ // 浅拷贝复制的是引用,深拷贝复制的是实体,简单的说,就是如果b复制a,现在修改b,如果a跟着改变,这种就是浅拷贝如果a不变,就是深拷贝
|
|
|
+ // 拷贝值 JSON.parse(JSON.stringify(row))
|
|
|
+ columns.forEach((column, index) => {
|
|
|
+ if (index === 1) {
|
|
|
+ sums[index] = '合计';
|
|
|
+ return;
|
|
|
+ };
|
|
|
+ let priductIdTotal = 0;
|
|
|
+ let priductIdTotal1 = 0;
|
|
|
+ let priductIdTotal2 = 0;
|
|
|
+ let priductIdTotal3 = 0;
|
|
|
+ let weiItem = 0;
|
|
|
+ switch (column.property) {
|
|
|
+ case 'weight':
|
|
|
+ priductIdTotal = 0;
|
|
|
+ priductIdTotal1 = 0;
|
|
|
+ priductIdTotal2 = 0;
|
|
|
+ priductIdTotal3 = 0;
|
|
|
+ for (let i = 0; i < that.tableData.length; i++) {
|
|
|
+ that.tableData[i].weight.forEach((item, key) => {
|
|
|
+ weiItem = (isNaN(item['成品焦']) ? 0 : item['成品焦']);
|
|
|
+ priductIdTotal += Number(weiItem);
|
|
|
+ });
|
|
|
+ that.tableData[i].weight.forEach((item, key) => {
|
|
|
+ weiItem = (isNaN(item['小粒焦']) ? 0 : item['小粒焦']);
|
|
|
+ priductIdTotal1 += Number(weiItem);
|
|
|
+ });
|
|
|
+ that.tableData[i].weight.forEach((item, key) => {
|
|
|
+ weiItem = (isNaN(item['焦粉']) ? 0 : item['焦粉']);
|
|
|
+ priductIdTotal2 += Number(weiItem);
|
|
|
+ });
|
|
|
+ that.tableData[i].weight.forEach((item, key) => {
|
|
|
+ weiItem = (isNaN(item['除尘焦粉']) ? 0 : item['除尘焦粉']);
|
|
|
+ priductIdTotal3 += Number(weiItem);
|
|
|
+ });
|
|
|
+ };
|
|
|
+ sums[index] = (index % 15 === 0) ? priductIdTotal3 : (
|
|
|
+ (index % 12 === 0) ? priductIdTotal2 : (index % 9 === 0) ? priductIdTotal1 : priductIdTotal);
|
|
|
+ break;
|
|
|
+ case 'weight1':
|
|
|
+ priductIdTotal = 0;
|
|
|
+ priductIdTotal1 = 0;
|
|
|
+ priductIdTotal2 = 0;
|
|
|
+ priductIdTotal3 = 0;
|
|
|
+ for (let i = 0; i < that.tableData.length; i++) {
|
|
|
+ that.tableData[i].weight1.forEach((item, key) => {
|
|
|
+ weiItem = (isNaN(item['成品焦']) ? 0 : item['成品焦']);
|
|
|
+ priductIdTotal += Number(weiItem);
|
|
|
+ });
|
|
|
+ that.tableData[i].weight1.forEach((item, key) => {
|
|
|
+ weiItem = (isNaN(item['小粒焦']) ? 0 : item['小粒焦']);
|
|
|
+ priductIdTotal1 += Number(weiItem);
|
|
|
+ });
|
|
|
+ that.tableData[i].weight1.forEach((item, key) => {
|
|
|
+ weiItem = (isNaN(item['焦粉']) ? 0 : item['焦粉']);
|
|
|
+ priductIdTotal2 += Number(weiItem);
|
|
|
+ });
|
|
|
+ that.tableData[i].weight1.forEach((item, key) => {
|
|
|
+ weiItem = (isNaN(item['除尘焦粉']) ? 0 : item['除尘焦粉']);
|
|
|
+ priductIdTotal3 += Number(weiItem);
|
|
|
+ });
|
|
|
+ };
|
|
|
+ sums[index] = (index % 16 === 0) ? priductIdTotal3 : (
|
|
|
+ (index % 13 === 0) ? priductIdTotal2 : (index % 10 === 0) ? priductIdTotal1 : priductIdTotal);
|
|
|
+ break;
|
|
|
+ case 'weight2':
|
|
|
+ priductIdTotal = 0;
|
|
|
+ priductIdTotal1 = 0;
|
|
|
+ priductIdTotal2 = 0;
|
|
|
+ priductIdTotal3 = 0;
|
|
|
+ for (let i = 0; i < that.tableData.length; i++) {
|
|
|
+ that.tableData[i].weight2.forEach((item, key) => {
|
|
|
+ weiItem = (isNaN(item['成品焦']) ? 0 : item['成品焦']);
|
|
|
+ priductIdTotal += Number(weiItem);
|
|
|
+ });
|
|
|
+ that.tableData[i].weight2.forEach((item, key) => {
|
|
|
+ weiItem = (isNaN(item['小粒焦']) ? 0 : item['小粒焦']);
|
|
|
+ priductIdTotal1 += Number(weiItem);
|
|
|
+ });
|
|
|
+ that.tableData[i].weight2.forEach((item, key) => {
|
|
|
+ weiItem = (isNaN(item['焦粉']) ? 0 : item['焦粉']);
|
|
|
+ priductIdTotal2 += Number(weiItem);
|
|
|
+ });
|
|
|
+ that.tableData[i].weight2.forEach((item, key) => {
|
|
|
+ weiItem = (isNaN(item['除尘焦粉']) ? 0 : item['除尘焦粉']);
|
|
|
+ priductIdTotal3 += Number(weiItem);
|
|
|
+ });
|
|
|
+ };
|
|
|
+ sums[index] = (index % 17 === 0) ? priductIdTotal3 : (
|
|
|
+ (index % 14 === 0) ? priductIdTotal2 : (index % 11 === 0) ? priductIdTotal1 : priductIdTotal);
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ return sums;
|
|
|
+ // return commonSummaries(param, prop);
|
|
|
+ },
|
|
|
+ // 获取工序列表
|
|
|
+ // getNodeData () {
|
|
|
+ // let that = this
|
|
|
+ // let url = 'pass/ems/v1/trmworkprocs/getIdAndName?issettle=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.workprocid.arr = arr;
|
|
|
+ // that.nameObj.workprocid.obj = obj;
|
|
|
+ // that.connn();
|
|
|
+ // } 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.unitid.defaults = that.nameObj.unitid.defaults ? that.nameObj.unitid.defaults : item.id;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ that.nameObj.unitid.arr = arr;
|
|
|
+ that.nameObj.unitid.obj = obj;
|
|
|
+ } else {
|
|
|
+ that.$message.error(res.message);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 获取站所
|
|
|
+ getNetworkIdData () {
|
|
|
+ let that = this
|
|
|
+ let url = 'pass/ems/v1/trmstations/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.networkid.arr = arr;
|
|
|
+ that.nameObj.networkid.obj = obj;
|
|
|
+ } else {
|
|
|
+ that.$message.error(res.message);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ but_copy_plural () {
|
|
|
+ let that = this;
|
|
|
+ let SubmitData = [];
|
|
|
+ for (let key in that.tableFormDataObj) {
|
|
|
+ SubmitData.push({
|
|
|
+ weight: that.tableFormDataObj[key].weight,
|
|
|
+ weight1: that.tableFormDataObj[key].weight1,
|
|
|
+ weight2: that.tableFormDataObj[key].weight2,
|
|
|
+ cjr: that.tableFormDataObj[key].cjr,
|
|
|
+ memo: that.tableFormDataObj[key].memo,
|
|
|
+ line: that.tableFormDataObj[key].line,
|
|
|
+ unit: that.tableFormDataObj[key].unit,
|
|
|
+ parentid: that.filterForm.data.parentid,
|
|
|
+ yearmonth: that.dialog.editorBox2.form.data.yearmonth
|
|
|
+ });
|
|
|
+ }
|
|
|
+ that.$refs['dialog_form2'].validate((valid) => {
|
|
|
+ if (valid) {
|
|
|
+ that.loading = true;
|
|
|
+ that.axios.post('pass/ems/v1/emsprodplanyears/', SubmitData, {
|
|
|
+ contentType: 'application/json'
|
|
|
+ })
|
|
|
+ .then(function (res) {
|
|
|
+ if (res.code === '0') {
|
|
|
+ that.$message({
|
|
|
+ message: '复制成功',
|
|
|
+ type: 'success'
|
|
|
+ });
|
|
|
+ that.getTableData();
|
|
|
+ that.dialog.editorBox2.show = false;
|
|
|
+ } else {
|
|
|
+ that.$message.error(res.message);
|
|
|
+ }
|
|
|
+ that.loading = false;
|
|
|
+ }).catch(function () {
|
|
|
+ that.loading = false;
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ this.$message.error('至少选择一条数据');
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ connn () {
|
|
|
+ let that = this;
|
|
|
+ if (!that.filterForm.data.networkid || that.filterForm.data.networkid.length === 0) {
|
|
|
+ that.nameObj.location.showDataArr = that.nameObj.workprocid.arr;
|
|
|
+ } else {
|
|
|
+ let url = 'pass/ems/v1/trmelectricitylocations/getWorkprocs?workshop=' + that.filterForm.data.networkid.toString();
|
|
|
+ that.axios.get(url)
|
|
|
+ .then(function (res) {
|
|
|
+ if (res.code === '0') {
|
|
|
+ let arr = [];
|
|
|
+ for (let item of res.data) {
|
|
|
+ arr.push({
|
|
|
+ id: item.id,
|
|
|
+ name: item.name
|
|
|
+ })
|
|
|
+ }
|
|
|
+ that.nameObj.location.showDataArr = arr;
|
|
|
+ } else {
|
|
|
+ that.$message.error(res.message);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 获取位置
|
|
|
+ getLocateIdData () {
|
|
|
+ let that = this
|
|
|
+ let url = 'pass/ems/v1/trmlocations/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.locateid.arr = arr;
|
|
|
+ that.nameObj.locateid.obj = obj;
|
|
|
+ } else {
|
|
|
+ that.$message.error(res.message);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 获取表格中的数据
|
|
|
+ getTableData (pageNum) {
|
|
|
+ let that = this,
|
|
|
+ params = {},
|
|
|
+ pData = {
|
|
|
+ yearmonth: that.filterForm.data.yearmonth,
|
|
|
+ workprocid: that.filterForm.data.workprocid.toString(),
|
|
|
+ location: that.filterForm.data.location.toString(),
|
|
|
+ networkid: that.filterForm.data.networkid.toString(),
|
|
|
+ itemname: that.filterForm.data.itemname,
|
|
|
+ zt: that.filterForm.data.zt,
|
|
|
+ measureid: that.filterForm.data.measureid,
|
|
|
+ exactsearch: that.filterForm.data.searchtype,
|
|
|
+ parentid: that.filterForm.data.parentid
|
|
|
+ };
|
|
|
+ for (let key in pData) {
|
|
|
+ if (pData[key]) {
|
|
|
+ params[key] = pData[key];
|
|
|
+ }
|
|
|
+ }
|
|
|
+ that.pageNum = pageNum || that.pageNum;
|
|
|
+ that.tableLoading = true;
|
|
|
+ // console.log(pData);
|
|
|
+ // let url = 'pass/ems/v1/trmtransfereactvalues/getDateEditForPage/?pageNum=' + that.pageNum + '&pageSize=' + that.pageSize;
|
|
|
+ // if (that.isCheck) {
|
|
|
+ // url = 'pass/ems/v1/trmtransfereactvalues/?pageNum=' + that.pageNum + '&pageSize=' + that.pageSize;
|
|
|
+ // }
|
|
|
+ let url = 'pass/ems/v1/emsprodplanyears/getList/?pageNum=' + that.pageNum + '&pageSize=' + that.pageSize;
|
|
|
+ that.axios.get(url, {
|
|
|
+ params: params
|
|
|
+ })
|
|
|
+ .then(function (res) {
|
|
|
+ if (res.code === '0') {
|
|
|
+ let arr = [];
|
|
|
+ let index = 0;
|
|
|
+ let chirItem = res.data.list[0];
|
|
|
+ for (let e in chirItem) {
|
|
|
+ let item = chirItem[e];
|
|
|
+ let weightArr = [];
|
|
|
+ let weightArr1 = [];
|
|
|
+ let weightArr2 = [];
|
|
|
+ let noArr = [];
|
|
|
+ let memoArr = [];
|
|
|
+ let sumRow = 0;
|
|
|
+ let sum = 0;
|
|
|
+ let indexArr = [];
|
|
|
+ let productidArr = [];
|
|
|
+ let memoLong = '';
|
|
|
+ for (let i = 0; i < chirItem[e].length; i++) {
|
|
|
+ weightArr.push({
|
|
|
+ [item[i].productid]: item[i].weight
|
|
|
+ });
|
|
|
+ weightArr1.push({
|
|
|
+ [item[i].productid]: item[i].weight1
|
|
|
+ });
|
|
|
+ weightArr2.push({
|
|
|
+ [item[i].productid]: item[i].weight2
|
|
|
+ });
|
|
|
+ productidArr.push({
|
|
|
+ [i]: item[i].productid
|
|
|
+ });
|
|
|
+ memoArr.push({
|
|
|
+ [i]: item[i].memo
|
|
|
+ });
|
|
|
+ noArr.push({
|
|
|
+ [i]: item[i].no
|
|
|
+ });
|
|
|
+ if (item[i].memo !== null && item[i].memo !== '') {
|
|
|
+ memoLong = memoLong + item[i].memo + ';';
|
|
|
+ }
|
|
|
+ indexArr.push({
|
|
|
+ [i]: [i]
|
|
|
+ })
|
|
|
+ // sum += item[i].weight + item[i].weight1 + item[i].weight2;
|
|
|
+ sum += item[i].weight;
|
|
|
+ };
|
|
|
+ arr.push({
|
|
|
+ seq: index,
|
|
|
+ unit: item[chirItem[e].length - 1].unit,
|
|
|
+ line: item[chirItem[e].length - 1].line,
|
|
|
+ yearmonth: item[chirItem[e].length - 1].yearmonth,
|
|
|
+ cjr: item[chirItem[e].length - 1].cjr,
|
|
|
+ cjsj: item[chirItem[e].length - 1].cjsj,
|
|
|
+ jzsj: item[chirItem[e].length - 1].jzsj,
|
|
|
+ xgr: item[chirItem[e].length - 1].xgr,
|
|
|
+ xgsj: item[chirItem[e].length - 1].xgsj,
|
|
|
+ cp: item[chirItem[e].length - 1].cp,
|
|
|
+ zt: item[chirItem[e].length - 1].zt,
|
|
|
+ parentid: item[chirItem[e].length - 1].parentid,
|
|
|
+ no: noArr,
|
|
|
+ id: item[chirItem[e].length - 1].id,
|
|
|
+ total: sum,
|
|
|
+ weight: weightArr,
|
|
|
+ weight1: weightArr1,
|
|
|
+ weight2: weightArr2,
|
|
|
+ productid: productidArr,
|
|
|
+ memo: memoLong
|
|
|
+ });
|
|
|
+ index = index + 1;
|
|
|
+ }
|
|
|
+ // console.log(arr);
|
|
|
+ that.total = res.data.total;
|
|
|
+ that.tableData = JSON.parse(JSON.stringify(arr));
|
|
|
+ that.originalData = JSON.parse(JSON.stringify(arr));
|
|
|
+ that.getAdds();
|
|
|
+ } else {
|
|
|
+ that.$message.error(res.message);
|
|
|
+ }
|
|
|
+ that.$nextTick(() => {
|
|
|
+ setTimeout(() => {
|
|
|
+ that.singleTableHeight = that.getRoleHeight(that.$refs['singleTable'].$el) - 46;
|
|
|
+ }, 1);
|
|
|
+ });
|
|
|
+ that.tableLoading = false;
|
|
|
+ }).catch(function () {
|
|
|
+ that.tableLoading = false;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 获取表格中的数据
|
|
|
+ getTableDataEdit () {
|
|
|
+ let that = this,
|
|
|
+ params = {},
|
|
|
+ pData = {
|
|
|
+ yearmonth: that.filterForm.data.yearmonth,
|
|
|
+ workprocid: that.filterForm.data.workprocid.toString(),
|
|
|
+ location: that.filterForm.data.location.toString(),
|
|
|
+ networkid: that.filterForm.data.networkid.toString(),
|
|
|
+ itemname: that.filterForm.data.itemname,
|
|
|
+ exactsearch: that.filterForm.data.searchtype,
|
|
|
+ parentid: that.filterForm.data.parentid
|
|
|
+ };
|
|
|
+ for (let key in pData) {
|
|
|
+ if (pData[key]) {
|
|
|
+ params[key] = pData[key];
|
|
|
+ }
|
|
|
+ }
|
|
|
+ that.tableLoading = true;
|
|
|
+ let url = 'pass/ems/v1/emsprodplanyears/getDateEditForPage/?pageNum=1&pageSize=' + that.pageSize;
|
|
|
+ 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,
|
|
|
+ unit: item.unit,
|
|
|
+ line: item.line,
|
|
|
+ yearmonth: item.yearmonth,
|
|
|
+ weight: item.weight,
|
|
|
+ weight1: item.weight1,
|
|
|
+ weight2: item.weight2,
|
|
|
+ productid: item.productid,
|
|
|
+ cjr: item.cjr,
|
|
|
+ cjsj: item.cjsj,
|
|
|
+ jzsj: item.jzsj,
|
|
|
+ xgr: item.xgr,
|
|
|
+ xgsj: item.xgsj,
|
|
|
+ cp: item.cp,
|
|
|
+ sysl: item.sysl,
|
|
|
+ zt: item.zt,
|
|
|
+ wxsy: item.wxsy
|
|
|
+ });
|
|
|
+ }
|
|
|
+ that.total = res.data.total;
|
|
|
+ that.tableData = arr;
|
|
|
+ that.getAdds();
|
|
|
+ } else {
|
|
|
+ that.$message.error(res.message);
|
|
|
+ }
|
|
|
+ that.$nextTick(() => {
|
|
|
+ setTimeout(() => {
|
|
|
+ that.singleTableHeight = that.getRoleHeight(that.$refs['singleTable'].$el) - 46;
|
|
|
+ }, 1);
|
|
|
+ });
|
|
|
+ that.tableLoading = false;
|
|
|
+ }).catch(function () {
|
|
|
+ that.tableLoading = false;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 合并相同的用电地点
|
|
|
+ arraySpanMethod ({ row, column, rowIndex, columnIndex }) {
|
|
|
+ let that = this;
|
|
|
+ let tableData = this.$refs.singleTable.tableData
|
|
|
+ let c1 = row.workprocid;
|
|
|
+ let c2 = row.location;
|
|
|
+ let c3 = row.workshop;
|
|
|
+ let c4 = row.clock;
|
|
|
+ let c5 = row.clocke;
|
|
|
+ let rowsPan = 1;
|
|
|
+ // let adds = this.$refs.singleTable.tableData[rowIndex].realvalue;
|
|
|
+ if (column['property'] === 'workprocid' || column['property'] === 'adds') {
|
|
|
+ if (rowIndex > 0 && c1 === tableData[rowIndex - 1].workprocid && c2 === tableData[rowIndex - 1].location &&
|
|
|
+ c3 === tableData[rowIndex - 1].workshop && c4 === tableData[rowIndex - 1].clock && c5 === tableData[rowIndex - 1].clocke) {
|
|
|
+ return {
|
|
|
+ rowspan: 0,
|
|
|
+ colspan: 0
|
|
|
+ };
|
|
|
+ };
|
|
|
+ while (tableData[rowIndex + rowsPan] && c1 === tableData[rowIndex + rowsPan].workprocid && c2 === tableData[rowIndex + rowsPan].location &&
|
|
|
+ c3 === tableData[rowIndex + rowsPan].workshop && c4 === tableData[rowIndex + rowsPan].clock && c5 === tableData[rowIndex + rowsPan].clocke) {
|
|
|
+ rowsPan += 1
|
|
|
+ }
|
|
|
+ return {
|
|
|
+ rowspan: rowsPan,
|
|
|
+ colspan: 1
|
|
|
+ };
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 改变表格显示条数
|
|
|
+ tableSizeChange (val) {
|
|
|
+ let that = this;
|
|
|
+ that.pageSize = val;
|
|
|
+ that.getTableData(1);
|
|
|
+ },
|
|
|
+ // 重置搜索
|
|
|
+ tableDataCancel () {
|
|
|
+ let that = this;
|
|
|
+ for (let key in that.filterForm.data) {
|
|
|
+ if (!that.filterForm.disabled || !that.filterForm.disabled[key]) {
|
|
|
+ if (that.filterForm.data[key] instanceof Array) {
|
|
|
+ that.filterForm.data[key] = [];
|
|
|
+ } else {
|
|
|
+ that.filterForm.data[key] = '';
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ that.getTableData(1);
|
|
|
+ },
|
|
|
+ keyDown (event1, disabledFlag) {
|
|
|
+ let tdTarget = event1.target;
|
|
|
+ let _this = this;
|
|
|
+ while (tdTarget.tagName !== 'TD') {
|
|
|
+ tdTarget = tdTarget.parentElement;
|
|
|
+ }
|
|
|
+ // 如果按下键盘下键或者回车键
|
|
|
+ if (event.keyCode === 40 || event.keyCode === 13) {
|
|
|
+ let index = parseInt(this.rowIndex);
|
|
|
+ // index++;
|
|
|
+ if (index !== this.seqArr[this.seqArr.length - 1]) {
|
|
|
+ for (let i = 0; i < this.seqArr.length; i++) {
|
|
|
+ if (index === this.seqArr[i]) {
|
|
|
+ index = this.seqArr[i + 1];
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.editSetFlag = index + this.columnId;
|
|
|
+ let id = '#' + this.editSetFlag;
|
|
|
+ this.$nextTick(() => {
|
|
|
+ $(id).click();
|
|
|
+ });
|
|
|
+ } else if (event.keyCode === 38) { // 键盘上键
|
|
|
+ let index = parseInt(this.rowIndex);
|
|
|
+ if (index !== this.seqArr[0]) {
|
|
|
+ for (let i = 0; i < this.seqArr.length; i++) {
|
|
|
+ if (index === this.seqArr[i]) {
|
|
|
+ index = this.seqArr[i - 1];
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.editSetFlag = index + this.columnId;
|
|
|
+ let id = '#' + this.editSetFlag;
|
|
|
+ this.$nextTick(() => {
|
|
|
+ $(id).click();
|
|
|
+ });
|
|
|
+ } else if (event.keyCode === 37) { // 键盘左键
|
|
|
+ $(tdTarget).prevAll().find('input:text').last().click();
|
|
|
+ } else if (event.keyCode === 39) { // 键盘右键
|
|
|
+ $(tdTarget).nextAll().find('input').eq(0).click();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 只允许对未接受的数据进行操作
|
|
|
+ checkboxT (row, index) {
|
|
|
+ if (row.zt === '2' && !this.isCheck) {
|
|
|
+ return false;
|
|
|
+ } else {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ handleSelectionChange (val) {
|
|
|
+ // console.log('我要改数据了');
|
|
|
+ let that = this;
|
|
|
+ let tableFormDataObj = {};
|
|
|
+ let valTwo = JSON.parse(JSON.stringify(val));
|
|
|
+ let arr = [];
|
|
|
+ for (let item of val) {
|
|
|
+ arr.push(item.seq);
|
|
|
+ }
|
|
|
+ this.seqArr = arr.sort(sortNumber);
|
|
|
+ for (let item of that.tableData) {
|
|
|
+ item.isSelection = false;
|
|
|
+ }
|
|
|
+ let arrcha = [...JSON.parse(JSON.stringify(that.originalData))].filter(x => [...val].every(y => y.id !== x.id));
|
|
|
+ for (let item of arrcha) {
|
|
|
+ that.tableData[item.seq] = JSON.parse(JSON.stringify(that.originalData[item.seq]));
|
|
|
+ };
|
|
|
+ for (let item of val) {
|
|
|
+ let obj = {};
|
|
|
+ let xId = item.seq;
|
|
|
+ if (that.tableFormDataObj[xId]) {
|
|
|
+ // 如果已存在该数据则使用该数据
|
|
|
+ tableFormDataObj[xId] = that.tableFormDataObj[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;
|
|
|
+ tableFormDataObj[xId] = obj;
|
|
|
+ }
|
|
|
+ item.isSelection = true;
|
|
|
+ }
|
|
|
+ for (let item of that.tableData) {
|
|
|
+ if (item.isSelection === false) {
|
|
|
+ that.tableData[item.seq] = JSON.parse(JSON.stringify(that.originalData[item.seq]));
|
|
|
+ item.realvalue = (!isNaN(Number(item.apportvalue)) && !isNaN(Number(item.wastage))) ? Number(item.apportvalue) + Number(item.wastage) - Number(item.secondVal) : item.realvalue;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ that.tableFormDataObj = tableFormDataObj;
|
|
|
+ that.multipleSelection = val;
|
|
|
+ this.getAdds();
|
|
|
+ },
|
|
|
+ // 当上月底码发生改变时计算抄度与实际电量
|
|
|
+ getApportValue (seq, value, rowIndex, event) {
|
|
|
+ let that = this;
|
|
|
+ if (!isNaN(Number(value))) {
|
|
|
+ if (!isNaN(Number(that.tableFormDataObj[seq].mintvalue)) && !isNaN(Number(that.tableFormDataObj[seq].mendvalue)) && that.tableFormDataObj[seq].mintvalue !== null && that.tableFormDataObj[seq].mendvalue !== null) {
|
|
|
+ let poor = that.floatComputed(Number(that.tableFormDataObj[seq].mendvalue), Number(that.tableFormDataObj[seq].mintvalue), '-');
|
|
|
+ that.tableFormDataObj[seq].apportvalue = that.floatComputed(poor, Number(that.tableFormDataObj[seq].mods), '*').toFixed(0);
|
|
|
+ let rv1 = that.floatComputed(Number(that.tableFormDataObj[seq].apportvalue), Number(that.tableFormDataObj[seq].wastage), '+');
|
|
|
+ that.tableFormDataObj[seq].realvalue = that.floatComputed(rv1, Number(that.tableFormDataObj[seq].secondVal), '-').toFixed(0);
|
|
|
+ that.showRealValue(rowIndex, that.tableFormDataObj[seq].realvalue);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 手动修改抄度后计算实际电量
|
|
|
+ chnageApportvalue (seq, value, rowIndex) {
|
|
|
+ let that = this;
|
|
|
+ if (!isNaN(Number(value)) && !isNaN(Number(that.tableFormDataObj[seq].wastage))) {
|
|
|
+ that.tableFormDataObj[seq].realvalue = that.floatComputed(Number(value), Number(that.tableFormDataObj[seq].wastage), '+').toFixed(0);
|
|
|
+ }
|
|
|
+ that.showRealValue(rowIndex, that.tableFormDataObj[seq].realvalue);
|
|
|
+ },
|
|
|
+ // 手动修改损耗后计算实际电量
|
|
|
+ chnageWastage (seq, value, rowIndex) {
|
|
|
+ let that = this;
|
|
|
+ if (!isNaN(Number(value)) && !isNaN(Number(that.tableFormDataObj[seq].apportvalue)) && that.tableFormDataObj[seq].apportvalue !== null) {
|
|
|
+ let rv1 = that.floatComputed(Number(value), Number(that.tableFormDataObj[seq].apportvalue), '+');
|
|
|
+ that.tableFormDataObj[seq].realvalue = that.floatComputed(rv1, Number(that.tableFormDataObj[seq].secondVal), '-').toFixed(0);
|
|
|
+ that.showRealValue(rowIndex, that.tableFormDataObj[seq].realvalue);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 手动修改二次转供电后计算实际电量
|
|
|
+ chnageSecondVal (seq, value, rowIndex) {
|
|
|
+ let that = this;
|
|
|
+ if (!isNaN(Number(value)) && !isNaN(Number(that.tableFormDataObj[seq].apportvalue)) && that.tableFormDataObj[seq].apportvalue !== null) {
|
|
|
+ let val1 = that.floatComputed(Number(that.tableFormDataObj[seq].apportvalue), Number(that.tableFormDataObj[seq].wastage), '+');
|
|
|
+ that.tableFormDataObj[seq].realvalue = that.floatComputed(val1, Number(value), '-').toFixed(0);
|
|
|
+ that.showRealValue(rowIndex, that.tableFormDataObj[seq].realvalue);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 统计合计值
|
|
|
+ getAdds () {
|
|
|
+ let that = this;
|
|
|
+ let wlarr = [];
|
|
|
+ for (var i = 0; i < that.tableData.length; i++) {
|
|
|
+ wlarr.push(that.tableData[i].workprocid + '-' + that.tableData[i].location + '-' + that.tableData[i].workshop + '-' + that.tableData[i].clock + '-' + that.tableData[i].clocke);
|
|
|
+ }
|
|
|
+ let wls = [...new Set(wlarr)]
|
|
|
+ let arrs = [];
|
|
|
+ for (let wl of wls) {
|
|
|
+ let adds = 0;
|
|
|
+ for (let item of that.tableData) {
|
|
|
+ if (wl === item.workprocid + '-' + item.location + '-' + item.workshop + '-' + item.clock + '-' + item.clocke) {
|
|
|
+ adds = that.floatComputed(Number(item.realvalue), adds, '+');
|
|
|
+ }
|
|
|
+ }
|
|
|
+ for (let i = 0; i < that.tableData.length; i++) {
|
|
|
+ if (wl === that.tableData[i].workprocid + '-' + that.tableData[i].location + '-' + that.tableData[i].workshop + '-' + that.tableData[i].clock + '-' + that.tableData[i].clocke) {
|
|
|
+ that.tableData[i].adds = adds;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 展示实际电量
|
|
|
+ showRealValue (rowIndex, value) {
|
|
|
+ let that = this;
|
|
|
+ for (let i = 0; i < that.tableData.length; i++) {
|
|
|
+ if (i === rowIndex) {
|
|
|
+ that.tableData[i].realvalue = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.getAdds();
|
|
|
+ },
|
|
|
+ // 批量修改
|
|
|
+ but_edit_plural () {
|
|
|
+ let that = this;
|
|
|
+ if (that.multipleSelection.length > 0) {
|
|
|
+ that.$refs['dialog_form_arr'].validate((valid, obj) => {
|
|
|
+ if (valid) {
|
|
|
+ let SubmitData = [];
|
|
|
+ for (let key in that.tableFormDataObj) {
|
|
|
+ let memoArr = that.tableFormDataObj[key].memo.split(';');
|
|
|
+ for (let i = 0; i < that.tableFormDataObj[key].weight.length; i++) {
|
|
|
+ for (let keyname in that.tableFormDataObj[key].weight[i]) {
|
|
|
+ SubmitData.push({
|
|
|
+ weight: that.tableFormDataObj[key].weight[i][keyname],
|
|
|
+ weight1: that.tableFormDataObj[key].weight1[i][keyname],
|
|
|
+ weight2: that.tableFormDataObj[key].weight2[i][keyname],
|
|
|
+ no: that.tableFormDataObj[key].no[i][i],
|
|
|
+ memo: memoArr[i],
|
|
|
+ cjsj: that.tableFormDataObj[key].cjsj,
|
|
|
+ jzsj: that.tableFormDataObj[key].jzsj,
|
|
|
+ line: that.tableFormDataObj[key].line,
|
|
|
+ xgr: that.tableFormDataObj[key].xgr,
|
|
|
+ xgsj: that.tableFormDataObj[key].xgsj,
|
|
|
+ cp: that.tableFormDataObj[key].cp,
|
|
|
+ sysl: that.tableFormDataObj[key].sysl,
|
|
|
+ zt: that.tableFormDataObj[key].zt,
|
|
|
+ wxsy: that.tableFormDataObj[key].wxsy,
|
|
|
+ unit: that.tableFormDataObj[key].unit,
|
|
|
+ parentid: that.filterForm.data.parentid,
|
|
|
+ yearmonth: that.tableFormDataObj[key].yearmonth
|
|
|
+ });
|
|
|
+ };
|
|
|
+ }
|
|
|
+ }
|
|
|
+ that.loading = true;
|
|
|
+ that.axios.put('pass/ems/v1/emsprodplanyears/batchupdateList', SubmitData)
|
|
|
+ .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;
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ this.$message.error('至少选择一条数据');
|
|
|
+ }
|
|
|
+ },
|
|
|
+ dataSave () {
|
|
|
+ let that = this;
|
|
|
+ let SubmitData = [];
|
|
|
+ SubmitData.push({
|
|
|
+ yearmonth: that.dialog.editorBox.form.data.yearmonth,
|
|
|
+ weight: that.dialog.editorBox.form.data.weight,
|
|
|
+ weight1: that.dialog.editorBox.form.data.weight1,
|
|
|
+ weight2: that.dialog.editorBox.form.data.weight2,
|
|
|
+ unit: that.dialog.editorBox.form.data.unitid,
|
|
|
+ line: that.dialog.editorBox.form.data.line,
|
|
|
+ parentid: that.filterForm.data.parentid,
|
|
|
+ productid: that.dialog.editorBox.form.data.productid,
|
|
|
+ memo: that.dialog.editorBox.form.data.memo
|
|
|
+ });
|
|
|
+ // console.log(SubmitData)
|
|
|
+ that.$refs['dialog_form'].validate((valid) => {
|
|
|
+ if (valid) {
|
|
|
+ that.loading = true;
|
|
|
+ that.axios.post('pass/ems/v1/emsprodplanyears/', 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;
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ );
|
|
|
+ },
|
|
|
+ // 批量删除
|
|
|
+ but_del_plural () {
|
|
|
+ let that = this;
|
|
|
+ if (that.multipleSelection.length > 0) {
|
|
|
+ let SubmitData = [];
|
|
|
+ for (let item of that.multipleSelection) {
|
|
|
+ if (item.zt === '2') {
|
|
|
+ this.$message.error('已经审核的数据不能删除');
|
|
|
+ return;
|
|
|
+ };
|
|
|
+ // console.log(item);
|
|
|
+ for (let noItem in item.no) {
|
|
|
+ SubmitData.push({
|
|
|
+ no: item.no[noItem][noItem]
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ that.$confirm('是否删除已选数据?', '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ state: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ that.axios.delete('pass/ems/v1/emsprodplanyears/delete', {
|
|
|
+ data: SubmitData,
|
|
|
+ contentType: 'application/json;charset=UTF-8'
|
|
|
+ })
|
|
|
+ .then(function (res) {
|
|
|
+ if (res.code === '0') {
|
|
|
+ that.$message({
|
|
|
+ message: '删除成功',
|
|
|
+ type: 'success'
|
|
|
+ });
|
|
|
+ that.getTableData();
|
|
|
+ } else {
|
|
|
+ that.$message.error(res.message);
|
|
|
+ }
|
|
|
+ }).catch(function () {
|
|
|
+ });
|
|
|
+ }).catch(() => {
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ this.$message.error('至少要选择一条数据');
|
|
|
+ }
|
|
|
+ },
|
|
|
+ upState (state = '2') {
|
|
|
+ let that = this;
|
|
|
+ let dataArr = [];
|
|
|
+ for (let item of that.multipleSelection) {
|
|
|
+ if (item.state !== state) {
|
|
|
+ dataArr.push(item);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (dataArr.length > 0) {
|
|
|
+ that.$confirm('本次将要' + (state === '2' ? '审核' : '撤销审核') + dataArr.length + '条数据,是否确定?', '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ state: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ let SubmitData = [];
|
|
|
+ for (let item of dataArr) {
|
|
|
+ SubmitData.push({
|
|
|
+ state: state,
|
|
|
+ id: item.id
|
|
|
+ });
|
|
|
+ }
|
|
|
+ that.loading = true;
|
|
|
+ that.axios.put('pass/ems/v1/trmtransfereactvalues/batchcheck2', SubmitData)
|
|
|
+ .then(function (res) {
|
|
|
+ if (res.code === '0') {
|
|
|
+ that.$message({
|
|
|
+ message: (state === '2' ? '审核' : '撤销') + '成功',
|
|
|
+ type: 'success'
|
|
|
+ });
|
|
|
+ that.getTableData();
|
|
|
+ } else {
|
|
|
+ that.$message.error(res.message);
|
|
|
+ }
|
|
|
+ that.loading = false;
|
|
|
+ }).catch(function () {
|
|
|
+ that.loading = false;
|
|
|
+ });
|
|
|
+ }).catch(() => {
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ if (that.multipleSelection.length > 0) {
|
|
|
+ this.$message.error('没有需要' + (state === '2' ? '审核' : '撤销') + '的数据');
|
|
|
+ } else {
|
|
|
+ this.$message.error('至少要选择一条数据');
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ but_add () {
|
|
|
+ let that = this;
|
|
|
+ that.dialog.editorBox.show = true;
|
|
|
+ setTimeout(() => {
|
|
|
+ that.$refs['dialog_form'].clearValidate();
|
|
|
+ }, 100);
|
|
|
+ },
|
|
|
+ but_copy () {
|
|
|
+ let that = this;
|
|
|
+ if (that.multipleSelection.length > 0) {
|
|
|
+ that.dialog.editorBox2.show = true;
|
|
|
+ setTimeout(() => {
|
|
|
+ that.$refs['dialog_form2'].clearValidate();
|
|
|
+ }, 100);
|
|
|
+ } else {
|
|
|
+ this.$message.error('至少要选择一条数据');
|
|
|
+ }
|
|
|
+ },
|
|
|
+ tableRowClassName ({row, rowIndex}) {
|
|
|
+ // 把每一行的索引放进row
|
|
|
+ row.index = rowIndex;
|
|
|
+ },
|
|
|
+ cellClick (row, column, cell, event) {
|
|
|
+ let _this = this;
|
|
|
+ this.rowIndex = row.index;
|
|
|
+ this.columnId = column.id;
|
|
|
+ _this.editSetFlag = row.index + column.id;
|
|
|
+ _this.focusTarget = event.target;
|
|
|
+ while (_this.focusTarget.tagName !== 'TD') {
|
|
|
+ _this.focusTarget = _this.focusTarget.parentElement;
|
|
|
+ }
|
|
|
+ _this.$nextTick(() => {
|
|
|
+ let target = this.focusTarget;
|
|
|
+ $(target).find('input').focus();
|
|
|
+ });
|
|
|
+ }
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ activeUsers: function () {
|
|
|
+ let that = this;
|
|
|
+ return that.tableData.filter(function (tableData) {
|
|
|
+ // console.log(tableData);
|
|
|
+ for (let item in tableData.weight) {
|
|
|
+ return isNaN((tableData.weight[item]));
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+function sortNumber (a, b) {
|
|
|
+ return a - b
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="less">
|
|
|
+.outElectricity{
|
|
|
+ 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;
|
|
|
+ padding: 7px 0;
|
|
|
+ border-top: 1px solid #ccc;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .rowDisable td {
|
|
|
+ color: #6bb025 !important;
|
|
|
+ }
|
|
|
+ .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;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .color_no {
|
|
|
+ color: #7a7a7a;
|
|
|
+ }
|
|
|
+ .color_yes {
|
|
|
+ color: #1a9f17;
|
|
|
+ }
|
|
|
+ .cnspicuous .el-checkbox__input.is-disabled .el-checkbox__inner {
|
|
|
+ background-color: #dcdfe6;
|
|
|
+ border-color: #babbbf;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|