12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547 |
- <template>
- <!-- 指标数据维护 -->
- <div class="indexDataMaintain">
- <div class="box">
- <div class="box-left" :style="listTopicTree.show ? null : { width: '22px' }">
- <div class="box-left-bt" style="overflow: hidden;">
- <span v-show="listTopicTree.show">指标</span>
- <div style="float: right;height: 100%;padding-right: 4px;">
- <span
- class="el-icon-d-arrow-right"
- style="cursor: pointer; transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;"
- :style="listTopicTree.show ? { transform: 'rotate(180deg)'} : { transform: 'rotate(0deg)'} "
- @click="listTopicTree.show = !listTopicTree.show;"
- ></span>
- </div>
- </div>
- <div class="box-left-tree">
- <el-tree
- v-show="listTopicTree.show"
- :data="listTopicTree.data"
- :props="listTopicTree.defaultProps"
- :load="loadNode"
- lazy
- v-loading="listTopicTree.loading"
- >
- <span
- class="custom-tree-node"
- :class="{'tree-row-on': filterForm.node.id === data.id}"
- style="width:100%; font-size:12px;"
- slot-scope="{ node, data }"
- >
- <p
- style="overflow:hidden; text-overflow:ellipsis; white-space:nowrap;"
- :title="node.label"
- @click="selectByTopicId(data)"
- >{{ node.label }}</p>
- </span>
- </el-tree>
- </div>
- </div>
- <div class="box-right" :style="listTopicTree.show ? null : { 'margin-left': '22px' }">
- <div class="box-top">
- <div style="border-bottom: 1px solid #ccc;overflow: hidden;">
- <el-form
- style="overflow: hidden;"
- :style="filterForm.show ? null : { height: '0px' }"
- class="box-top-form"
- size="mini"
- label-width="70px"
- >
- <el-row>
- <el-col :span="8">
- <el-form-item label="时间粒度">
- <el-select
- filterable clearable
- v-model="filterForm.data.timegranid"
- placeholder=""
- style="width: 100%;"
- >
- <el-option
- v-for="item of nameObj.timegranid.arr"
- :key="item.id"
- :value="item.id"
- :label="item.name"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="时间">
- <zj-timegran-date
- v-model="filterForm.data.clock"
- style="width: 100%;"
- :type="'daterange'"
- :timegranId="filterForm.data.timegranid"
- :defaultOffset="-1"
- ></zj-timegran-date>
- </el-form-item>
- <!-- <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="8">
- <el-form-item label="项目编号">
- <el-input clearable
- v-model="filterForm.data.itemid"
- placeholder=""
- style="width: 100%;"
- @keyup.enter.native="getTableData(1)"
- ></el-input>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="8">
- <el-form-item label="项目名称">
- <el-input clearable
- v-model="filterForm.data.itemname"
- placeholder=""
- style="width: 100%;"
- @keyup.enter.native="getTableData(1)"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="用途">
- <el-select
- filterable clearable
- v-model="filterForm.data.itemtype"
- placeholder=""
- multiple
- collapse-tags
- style="width: 100%;"
- >
- <el-option
- v-for="item of nameObj.itemtype.arr"
- :key="item.id"
- :value="item.id"
- :label="item.name"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="指标类型">
- <el-select
- filterable clearable
- style="width: 100%;"
- v-model="filterForm.data.indextype"
- disabled
- >
- <el-option
- v-for="item of nameObj.indextype.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="8">
- <el-form-item label="指标类型1">
- <el-select
- filterable clearable
- v-model="filterForm.data.type1"
- placeholder=""
- style="width: 100%;"
- >
- <el-option
- v-for="item of nameObj.type1.arr"
- :key="item.id"
- :value="item.id"
- :label="item.name"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="指标类型2">
- <el-select
- filterable clearable
- v-model="filterForm.data.type2"
- placeholder=""
- style="width: 100%;"
- >
- <el-option
- v-for="item of nameObj.type2.arr"
- :key="item.id"
- :value="item.id"
- :label="item.name"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="指标类型3">
- <el-select
- filterable clearable
- v-model="filterForm.data.type3"
- placeholder=""
- style="width: 100%;"
- >
- <el-option
- v-for="item of nameObj.type3.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="8">
- <el-form-item label="能介">
- <el-select
- filterable clearable
- v-model="filterForm.data.energyid"
- placeholder=""
- multiple
- collapse-tags
- style="width: 100%;"
- >
- <el-option
- v-for="item of nameObj.energyid.arr"
- :key="item.id"
- :value="item.id"
- :label="item.name"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="工序">
- <el-select
- filterable clearable
- v-model="filterForm.data.workprocid"
- placeholder=""
- multiple
- collapse-tags
- 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="8">
- <el-form-item label="工厂">
- <el-select
- filterable clearable
- v-model="filterForm.data.factoryid"
- placeholder=""
- style="width: 100%;"
- >
- <el-option
- v-for="item of nameObj.factoryid.arr"
- :key="item.id"
- :value="item.id"
- :label="item.name"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- </div>
- </div>
- <div class="box-top-gjl">
- <el-button
- class="button"
- type="primary"
- size="mini"
- icon="el-icon-edit-outline"
- v-privilege="activeMenu + 'PUT'"
- @click="but_edit_plural()"
- :loading="loading"
- >修改</el-button>
- <el-button
- class="button"
- type="primary"
- size="mini"
- icon="el-icon-refresh"
- v-privilege="activeMenu + 'PUT'"
- :loading="loading"
- @click="but_re_compute()"
- >重新计算</el-button>
- <el-button
- class="button"
- type="primary"
- size="mini"
- v-privilege="activeMenu + 'PUT'"
- @click="but_redata()"
- :loading="loading"
- >重新生成数据</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
- class="button"
- type="primary"
- size="mini"
- icon="el-icon-refresh"
- v-privilege="activeMenu + 'QUERY'"
- @click="tableDataCancel();"
- >重置</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['box_bottom']) - 60;
- }
- );"
- >{{ filterForm.show ? '收起' : '展开' }}</el-button>
- </div>
- </div>
- <div ref="box_bottom" class="box-bottom">
- <el-form
- size="mini"
- ref="dialog_form_arr"
- label-width="0px"
- :model="tableFormDataObj"
- >
- <el-table
- stripe
- id="singleTable"
- :data="tableData"
- v-loading="table.tableLoading"
- style="width: 100%;"
- :height="singleTableHeight"
- border
- size="mini"
- highlight-current-row
- show-summary
- @selection-change="handleSelectionChange"
- :summary-method="getSummaries"
- :row-class-name="tableRowClassName"
- @cell-click="cellClick">
- <el-table-column
- type="selection"
- width="40"
- align="center"
- fixed="left"
- ></el-table-column>
- <el-table-column
- sortable
- prop="timegranid"
- label="时间粒度"
- width="72px"
- :show-overflow-tooltip="true"
- >
- <template slot-scope="scope">
- <span>{{ nameObj.timegranid.obj[scope.row.timegranid] ? nameObj.timegranid.obj[scope.row.timegranid] : scope.row.timegranid }}</span>
- </template>
- </el-table-column>
- <el-table-column
- sortable
- prop="clock"
- label="时间"
- width="78px"
- :show-overflow-tooltip="true"
- ></el-table-column>
- <el-table-column
- sortable
- prop="itemid"
- label="项目编号"
- width="190px"
- :show-overflow-tooltip="true"
- ></el-table-column>
- <el-table-column
- sortable
- prop="itemname"
- label="项目名称"
- width="290px"
- :show-overflow-tooltip="true"
- ></el-table-column>
- <el-table-column
- sortable
- prop="workprocid"
- label="工序名称"
- width="170px"
- :show-overflow-tooltip="true"
- >
- <template slot-scope="scope">
- <span>{{ nameObj.workprocid.obj[scope.row.workprocid] ? nameObj.workprocid.obj[scope.row.workprocid] : scope.row.workprocid }}</span>
- </template>
- </el-table-column>
- <el-table-column
- sortable
- prop="energyid"
- label="能介"
- width="85px"
- :show-overflow-tooltip="true"
- >
- <template slot-scope="scope">
- <span>{{ nameObj.energyid.obj[scope.row.energyid] ? nameObj.energyid.obj[scope.row.energyid] : scope.row.energyid }}</span>
- </template>
- </el-table-column>
- <el-table-column
- sortable
- prop="itemtype"
- label="用途"
- width="60px"
- :show-overflow-tooltip="true"
- >
- <template slot-scope="scope">
- <span>{{ nameObj.itemtype.obj[scope.row.itemtype] ? nameObj.itemtype.obj[scope.row.itemtype] : scope.row.itemtype }}</span>
- </template>
- </el-table-column>
- <el-table-column
- sortable
- prop="actualvalue"
- label="计算值"
- width="90px"
- :show-overflow-tooltip="true"
- ></el-table-column>
- <el-table-column
- sortable
- prop="correctvalue"
- label="修正值"
- width="135px"
- :show-overflow-tooltip="true"
- >
- <template slot-scope="scope">
- <el-form-item
- v-if="scope.row.isSelection"
- :prop="'s' + scope.row.seq + '.correctvalue'"
- :rules="dialog.editorBox.form.rules.correctvalue"
- >
- <el-input @keydown.native="keyDown" :id="scope.column.id + scope.$index"
- clearable style="width: 100%;"
- v-model.trim="tableFormDataObj['s' + scope.row.seq].correctvalue"
- @change="getApportvalue('s' + scope.row.seq)"
- ></el-input>
- </el-form-item>
- <span v-else>{{scope.row.correctvalue}}</span>
- </template>
- </el-table-column>
- <el-table-column
- sortable
- prop="apportvalue"
- label="最终值"
- width="135px"
- :show-overflow-tooltip="true"
- >
- <template slot-scope="scope">
- <el-form-item
- v-if="scope.row.isSelection"
- :prop="'s' + scope.row.seq + '.apportvalue'"
- :rules="dialog.editorBox.form.rules.apportvalue"
- >
- <el-input @keydown.native="keyDown" :id="scope.column.id + scope.$index"
- clearable style="width: 100%;"
- v-model.trim="tableFormDataObj['s' + scope.row.seq].apportvalue"
- @change="getCorrectvalue('s' + scope.row.seq)"
- ></el-input>
- </el-form-item>
- <span v-else>{{scope.row.apportvalue}}</span>
- </template>
- </el-table-column>
- <el-table-column
- sortable
- prop="bz"
- label="备注"
- min-width="90px"
- :show-overflow-tooltip="true"
- >
- <template slot-scope="scope">
- <el-form-item
- v-if="scope.row.isSelection"
- :prop="'s' + scope.row.seq + '.bz'"
- :rules="dialog.editorBox.form.rules.bz"
- >
- <el-input @keydown.native="keyDown" :id="scope.column.id + scope.$index"
- clearable style="width: 100%;"
- v-model.trim="tableFormDataObj['s' + scope.row.seq].bz"
- ></el-input>
- </el-form-item>
- <span v-else>{{scope.row.bz}}</span>
- </template>
- </el-table-column>
- <el-table-column
- sortable
- :sort-by="function(row, index) { return sortFoo(row, index, 'unitid') }"
- prop="unitid"
- label="计量单位"
- width="100px"
- :show-overflow-tooltip="true"
- >
- <template slot-scope="scope">
- <span>{{ nameObj.unitid.obj[scope.row.unitid] ? nameObj.unitid.obj[scope.row.unitid] : scope.row.unitid }}</span>
- </template>
- </el-table-column>
- <el-table-column
- sortable
- prop="rectime"
- label="记录创建时间"
- width="130px"
- :show-overflow-tooltip="true"
- ></el-table-column>
- <el-table-column
- sortable
- prop="code"
- label="序号"
- width="100px"
- :show-overflow-tooltip="true"
- >
- <template slot-scope="scope">
- <el-form-item
- v-if="scope.row.isSelection"
- :prop="'s' + scope.row.seq + '.code'"
- :rules="dialog.editorBox.form.rules.code"
- >
- <el-input @keydown.native="keyDown" :id="scope.column.id + scope.$index"
- clearable style="width: 100%;"
- v-model.trim="tableFormDataObj['s' + scope.row.seq].code"
- ></el-input>
- </el-form-item>
- <span v-else>{{scope.row.code}}</span>
- </template>
- </el-table-column>
- <!-- <el-table-column
- sortable
- prop="modifyflag"
- label="修改标记"
- min-width="100px"
- :show-overflow-tooltip="true"
- ></el-table-column> -->
- <el-table-column
- class-name="gn-TableDownloadExcel-none"
- label="操作"
- align="center"
- width="86px"
- fixed="right"
- >
- <template slot-scope="scope">
- <div>
- <!-- <el-button
- type="primary"
- size="mini"
- @click="but_edit(scope.row)"
- >修改</el-button> -->
- <el-button
- type="primary"
- size="mini"
- v-privilege="activeMenu + 'QUERY'"
- @click="but_sdata(scope.row)"
- >计算过程</el-button>
- </div>
- </template>
- </el-table-column>
- </el-table>
- </el-form>
- <el-pagination
- layout="total, sizes, prev, pager, next, jumper"
- :total="table.total"
- :page-sizes="[10, 20, 50, 100, 500, 1000]"
- :page-size="table.pageSize"
- :current-page.sync="table.pageNum"
- @size-change="tableSizeChange"
- @current-change="getTableData()"
- style="text-align: right;margin-top: 10px;"
- ></el-pagination>
- </div>
- </div>
- </div>
- <el-dialog
- :title="'数据 - ' + (dialog.editorBox.type === 'add' ? '新增' : '修改')"
- :visible.sync="dialog.editorBox.show"
- width="320px"
- :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="65px"
- >
- <el-form-item label="计算值">
- <el-input clearable
- style="width: 95%;"
- v-model="dialog.editorBox.form.data.actualvalue"
- readonly
- ></el-input>
- </el-form-item>
- <el-form-item label="修正值" prop="correctvalue">
- <el-input clearable
- style="width: 95%;"
- v-model="dialog.editorBox.form.data.correctvalue"
- @change="dialog.editorBox.form.data.apportvalue = floatComputed(dialog.editorBox.form.data.actualvalue, dialog.editorBox.form.data.correctvalue, '+')"
- ></el-input>
- </el-form-item>
- <el-form-item label="最终值" prop="apportvalue">
- <el-input clearable
- style="width: 95%;"
- v-model="dialog.editorBox.form.data.apportvalue"
- @change="dialog.editorBox.form.data.correctvalue = floatComputed(dialog.editorBox.form.data.apportvalue, dialog.editorBox.form.data.actualvalue, '-')"
- ></el-input>
- </el-form-item>
- </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>
- </div>
- </template>
- <script>
- import { zCheckNumber1 } from '~/utils/validator.js'
- import timegranDate from '~/components/zg/timegranDate.vue'
- import {formatDate, XtcommonSummaries} from '@/utils/util.js';
- export default {
- name: 'indexDataMaintain',
- components: {
- 'zj-timegran-date': timegranDate
- },
- data () {
- return {
- rowIndex: '',
- columnId: '',
- focusTarget: null,
- seqArr: [],
- editSetFlag: '',
- multipleSelection: [],
- tableFormDataObj: {},
- activeMenu: '',
- filterForm: {
- show: true,
- node: {
- id: '',
- indextype: ''
- },
- data: {
- timegranid: 'MONTH',
- clock: '',
- itemid: '',
- itemname: '',
- itemtype: [],
- indextype: '',
- type1: '',
- type2: '',
- type3: '',
- type4: '',
- energyid: [],
- workprocid: [],
- factoryid: ''
- },
- rules: {
- }
- },
- listTopicTree: {
- show: true,
- loading: false,
- data: [],
- defaultProps: {
- children: 'children',
- label: 'name'
- }
- },
- tableData: [],
- table: {
- pageNum: 1,
- pageSize: 100,
- total: 0,
- tableLoading: false
- },
- nameObj: {
- timegranid: {
- obj: {
- 'DAY': '日',
- 'MONTH': '月',
- 'YEAR': '年'
- },
- arr: [{id: 'DAY', name: '日'}, {id: 'MONTH', name: '月'}, {id: 'YEAR', name: '年'}]
- },
- itemtype: {
- obj: {},
- arr: []
- },
- type1: {
- obj: {},
- arr: []
- },
- type2: {
- obj: {},
- arr: []
- },
- type3: {
- obj: {},
- arr: []
- },
- type4: {
- obj: {},
- arr: []
- },
- energyid: {
- obj: {},
- arr: []
- },
- workprocid: {
- obj: {},
- arr: []
- },
- factoryid: {
- obj: {},
- arr: []
- },
- indextype: {
- obj: {},
- arr: []
- },
- unitid: {
- obj: {},
- arr: []
- }
- },
- singleTableHeight: 100,
- loading: false,
- dialog: {
- editorBox: {
- show: false,
- type: '',
- form: {
- data: {
- itemid: '',
- clock: '',
- timegranid: '',
- actualvalue: '',
- correctvalue: '',
- apportvalue: '',
- code: ''
- },
- rules: {
- correctvalue: [
- { required: true, message: '该项不能为空', trigger: 'change' },
- { validator: zCheckNumber1, trigger: 'change' }
- ],
- apportvalue: [
- { required: true, message: '该项不能为空', trigger: 'change' },
- { validator: zCheckNumber1, trigger: 'change' }
- ],
- bz: [],
- code: []
- }
- }
- }
- }
- }
- },
- created () {
- this.activeMenu = window.localStorage.getItem('activeMenu');
- },
- 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['box_bottom']) - 60;
- }, 1);
- });
- // that.getTimeGranData();
- that.getEnergyIdData();
- that.getNodeData();
- that.getFactoryIdData();
- that.getUnitIdData();
- that.getType();
- that.getIndexItemTypeData();
- },
- methods: {
- // 获取指标用途类型
- getIndexItemTypeData () {
- let that = this
- let url = 'pass/ems/v1/trmindexitemtypes/?pageSize=500&pageNum=1';
- that.axios.get(url)
- .then(function (res) {
- if (res.code === '0') {
- let arr = [];
- let obj = {};
- for (let item of res.data.list) {
- arr.push({
- id: item.id,
- name: item.name
- })
- obj[item.id] = item.name;
- }
- that.nameObj.itemtype.arr = arr;
- that.nameObj.itemtype.obj = obj;
- } else {
- that.$message.error(res.message);
- }
- });
- },
- // 计算树区域高度
- getRoleHeight (dom) {
- return window.innerHeight - dom.offsetTop;
- },
- // 用于表格特殊列的过滤方法(:sort-by="function(row, index) { return sortFoo() }")
- sortFoo (row, index, objName, name) {
- name = name || objName;
- let s = this.nameObj[objName].obj[row[name]] ? this.nameObj[objName].obj[row[name]] : row[name];
- return s;
- },
- // 自定义的表格合计方法:只给指定列进行合计
- getSummaries (param) {
- const prop = []; // 合计列绑定的prop
- return XtcommonSummaries(param, prop);
- },
- // 获取时间粒度(指标数据数据维护)
- getTimeGranData () {
- let that = this
- let url = 'pass/ems/v1/tcmdatasourcetimegrans/getTimegranRmindexvalue';
- 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);
- }
- });
- },
- // 获取能介
- getEnergyIdData () {
- let that = this
- let url = 'pass/ems/v1/trmenergys/selectNameAndId/';
- 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);
- }
- });
- },
- // 获取工序列表
- getNodeData () {
- let that = this
- let url = 'pass/ems/v1/trmworkprocs/getIdAndName?isreal=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;
- } else {
- that.$message.error(res.message);
- }
- });
- },
- // 获取工厂
- getFactoryIdData () {
- let that = this
- let url = 'pass/ems/v1/trmfactorys/getIAndName';
- 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.factoryid.arr = arr;
- that.nameObj.factoryid.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.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);
- }
- });
- },
- // 分类获取所有指标类型
- getType () {
- let that = this
- let url = 'pass/ems/v1/trmindextypes/?pageSize=1000000';
- that.axios.get(url)
- .then(function (res) {
- if (res.code === '0') {
- let arr = [],
- arr1 = [],
- arr2 = [],
- arr3 = [],
- arr4 = [];
- let obj = {},
- obj1 = {},
- obj2 = {},
- obj3 = {},
- obj4 = {};
- for (let item of res.data.list) {
- if (item.indexcol === 'INDEXTYPE') {
- arr.push({
- id: item.indexid,
- name: item.indexname
- })
- obj[item.indexid] = item.indexname;
- } else if (item.indexcol === 'TYPE1') {
- arr1.push({
- id: item.indexid,
- name: item.indexname
- })
- obj1[item.indexid] = item.indexname;
- } else if (item.indexcol === 'TYPE2') {
- arr2.push({
- id: item.indexid,
- name: item.indexname
- })
- obj2[item.indexid] = item.indexname;
- } else if (item.indexcol === 'TYPE3') {
- arr3.push({
- id: item.indexid,
- name: item.indexname
- })
- obj3[item.indexid] = item.indexname;
- } else if (item.indexcol === 'TYPE4') {
- arr4.push({
- id: item.indexid,
- name: item.indexname
- })
- obj4[item.indexid] = item.indexname;
- }
- }
- that.nameObj.indextype.arr = arr;
- that.nameObj.indextype.obj = obj;
- that.nameObj.type1.arr = arr1;
- that.nameObj.type1.obj = obj1;
- that.nameObj.type2.arr = arr2;
- that.nameObj.type2.obj = obj2;
- that.nameObj.type3.arr = arr3;
- that.nameObj.type3.obj = obj3;
- that.nameObj.type4.arr = arr4;
- that.nameObj.type4.obj = obj4;
- } else {
- that.$message.error(res.message);
- }
- });
- },
- selectByTopicId (data) {
- let that = this;
- // console.log(data);
- that.filterForm.node.id = data.id;
- that.filterForm.node.indextype = data.indextype;
- that.filterForm.data.indextype = that.filterForm.node.indextype;
- that.getTableData(1);
- },
- // 懒加载节点数
- loadNode (node, resolve) {
- let that = this;
- // console.log(node)
- if (node.level === 0) {
- let url = 'pass/ems/v1/trmindextypes/getIdAndName';
- that.axios.get(url)
- .then(function (res) {
- if (res.code === '0') {
- let arr = [];
- for (let item of res.data) {
- arr.push({
- id: item.indexid,
- name: item.indexname,
- desc: item.indexdesc,
- level: node.level + 1,
- indextype: item.indexid
- })
- }
- return resolve(arr);
- } else {
- that.$message.error(res.message);
- }
- });
- }
- if (node.level === 1 || node.level === 2) {
- let url = 'pass/ems/v1/trmindexitems/getTrees?pageSize=1000000',
- params = {};
- if (node.level === 1) {
- params = {
- indextype: node.data.id,
- itemflag: 1
- }
- } else {
- params = {
- parentid: node.data.id
- }
- }
- that.axios.get(url, {
- params: params
- })
- .then(function (res) {
- if (res.code === '0') {
- let arr = [];
- for (let item of res.data.list) {
- arr.push({
- id: item.ITEMID,
- name: item.ITEMNAME,
- desc: item.ITEMDESC,
- level: node.level + 1,
- indextype: item.INDEXTYPE
- })
- }
- return resolve(arr);
- } else {
- that.$message.error(res.message);
- }
- });
- }
- if (node.level === 3) {
- return resolve([]);
- }
- },
- // 获取表格中的数据
- getTableData (pageNum) {
- let that = this,
- params = {
- timegranid: that.filterForm.data.timegranid,
- clock: that.filterForm.data.clock[0],
- clocke: that.filterForm.data.clock[1],
- itemid: that.filterForm.data.itemid,
- itemname: that.filterForm.data.itemname,
- itemtype: that.filterForm.data.itemtype.join(','),
- indextype: that.filterForm.data.indextype,
- type1: that.filterForm.data.type1,
- type2: that.filterForm.data.type2,
- type3: that.filterForm.data.type3,
- type4: that.filterForm.data.type4,
- energyid: that.filterForm.data.energyid.join(','),
- workprocid: that.filterForm.data.workprocid.join(','),
- factoryid: that.filterForm.data.factoryid,
- parentid: that.filterForm.node.id,
- code: that.filterForm.data.code
- };
- that.table.pageNum = pageNum || that.table.pageNum;
- that.table.tableLoading = true;
- let url = 'pass/ems/v1/trmindexvalues/getTRmIndexValues/?pageNum=' + that.table.pageNum + '&pageSize=' + that.table.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,
- itemid: item.ITEMID,
- clock: item.CLOCK,
- timegranid: item.TIMEGRANID,
- itemname: item.ITEMNAME,
- actualvalue: item.ACTUALVALUE,
- correctvalue: item.CORRECTVALUE,
- apportvalue: item.APPORTVALUE,
- sumvalue: item.SUMVALUE,
- unitid: item.UNITID,
- rectime: item.REC_TIME,
- modifyflag: item.MODIFYFLAG,
- itemtype: item.ITEMTYPE,
- bz: item.BZ,
- workprocid: item.WORKPROCID,
- energyid: item.ENERGYID,
- code: item.CODE
- })
- }
- that.tableData = arr;
- that.table.total = res.data.total;
- } else {
- that.$message.error(res.message);
- }
- that.table.tableLoading = false;
- }).catch(function () {
- that.table.tableLoading = false;
- });
- },
- // 改变表格显示条数
- tableSizeChange (val) {
- let that = this;
- that.table.pageSize = val;
- that.getTableData(1);
- },
- // 重置搜索
- tableDataCancel () {
- let that = this;
- for (let key in that.filterForm.data) {
- if (that.filterForm.data[key] instanceof Array) {
- that.filterForm.data[key] = [];
- } else {
- that.filterForm.data[key] = '';
- }
- }
- that.filterForm.data.indextype = that.filterForm.node.indextype;
- that.getTableData(1);
- },
- but_edit (row) {
- let that = this;
- that.dialog.editorBox.form.data.itemid = row.itemid;
- that.dialog.editorBox.form.data.clock = row.clock;
- that.dialog.editorBox.form.data.timegranid = row.timegranid;
- that.dialog.editorBox.form.data.actualvalue = row.actualvalue;
- that.dialog.editorBox.form.data.correctvalue = row.correctvalue;
- that.dialog.editorBox.form.data.apportvalue = row.apportvalue;
- that.dialog.editorBox.type = 'edit';
- that.dialog.editorBox.show = true;
- },
- dataSave () {
- let that = this;
- let SubmitData = {
- itemid: that.dialog.editorBox.form.data.itemid,
- clock: that.dialog.editorBox.form.data.clock,
- timegranid: that.dialog.editorBox.form.data.timegranid,
- correctvalue: that.dialog.editorBox.form.data.correctvalue,
- apportvalue: that.dialog.editorBox.form.data.apportvalue,
- actualvalue: that.dialog.editorBox.form.data.actualvalue
- };
- that.$refs['dialog_form'].validate((valid) => {
- if (valid) {
- that.loading = true;
- that.axios.put('pass/ems/v1/trmindexvalues/update', 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;
- });
- }
- });
- },
- // 表格中多选按钮的相关方法
- handleSelectionChange (val) {
- let that = this;
- let tableFormDataObj = {};
- 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;
- }
- for (let item of val) {
- let obj = {};
- let xId = 's' + item.seq;
- if (that.tableFormDataObj[xId]) {
- tableFormDataObj[xId] = that.tableFormDataObj[xId];
- } else {
- for (let key in item) {
- obj[key] = item[key];
- }
- tableFormDataObj[xId] = obj;
- }
- item.isSelection = true;
- }
- that.tableFormDataObj = tableFormDataObj;
- that.multipleSelection = val;
- },
- 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 = column.id + row.index;
- _this.focusTarget = event.target;
- while (_this.focusTarget.tagName !== 'TD') {
- _this.focusTarget = _this.focusTarget.parentElement;
- }
- _this.$nextTick(() => {
- let target = this.focusTarget;
- $(target).find('input').focus();
- });
- },
- keyDown (event1) {
- 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);
- 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 = this.columnId + index;
- 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 = this.columnId + index;
- let id = '#' + this.editSetFlag;
- this.$nextTick(() => {
- $(id).click();
- });
- } else if (event.keyCode === 37) { // 键盘左键
- $(tdTarget).prev().click();
- $(tdTarget).prev().find('input').select();
- } else if (event.keyCode === 39) { // 键盘右键
- $(tdTarget).next().click();
- $(tdTarget).next().find('input').select();
- }
- },
- // 计算最终值
- getApportvalue (ids) {
- let that = this;
- let apportvalue = that.floatComputed(that.tableFormDataObj[ids].actualvalue, that.tableFormDataObj[ids].correctvalue, '+');
- that.tableFormDataObj[ids].apportvalue = apportvalue;
- },
- // 计算修正值
- getCorrectvalue (ids) {
- console.log(this.tableFormDataObj[ids].correctvalue)
- let that = this;
- let correctvalue = that.floatComputed(that.tableFormDataObj[ids].apportvalue, that.tableFormDataObj[ids].actualvalue, '-');
- that.tableFormDataObj[ids].correctvalue = correctvalue;
- },
- // 批量修改
- 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) {
- SubmitData.push({
- itemid: that.tableFormDataObj[key].itemid,
- clock: that.tableFormDataObj[key].clock,
- timegranid: that.tableFormDataObj[key].timegranid,
- correctvalue: that.tableFormDataObj[key].correctvalue,
- apportvalue: that.tableFormDataObj[key].apportvalue,
- actualvalue: that.tableFormDataObj[key].actualvalue,
- bz: that.tableFormDataObj[key].bz,
- code: that.tableFormDataObj[key].code
- });
- }
- that.loading = true;
- that.axios.put('pass/ems/v1/trmindexvalues/batchupdate', SubmitData)
- .then(function (res) {
- if (res.code === '0') {
- that.$message({
- message: '修改成功',
- type: 'success'
- });
- that.getTableData();
- } else {
- that.$message.error(res.message);
- }
- that.loading = false;
- }).catch(function () {
- that.loading = false;
- });
- } else {
- this.$message.error('数据不完整或者格式错误');
- }
- });
- } else {
- this.$message.error('至少要选择一条数据');
- }
- },
- // 批量重新计算
- but_re_compute () {
- let that = this;
- if (that.multipleSelection.length > 0) {
- that.$refs['dialog_form_arr'].validate((valid) => {
- if (valid) {
- let SubmitData = [];
- for (let key in that.tableFormDataObj) {
- SubmitData.push({
- clock: that.tableFormDataObj[key].clock,
- timegranid: that.tableFormDataObj[key].timegranid,
- itemid: that.tableFormDataObj[key].itemid
- });
- }
- that.loading = true;
- that.axios.put('pass/ems/v1/trmindexvalues/batchCompute', SubmitData)
- .then(function (res) {
- if (res.code === '0') {
- that.$message({
- message: '重新生成数据成功',
- type: 'success'
- });
- that.getTableData();
- } else {
- that.$message.error(res.message);
- }
- that.loading = false;
- }).catch(function () {
- that.loading = false;
- });
- }
- });
- } else {
- this.$message.error('至少要选择一条数据');
- }
- },
- // 重新生成数据
- but_redata () {
- let that = this;
- if (!that.filterForm.data.clock || that.filterForm.data.clock.length === 0) {
- that.$message.warning('请选择时间范围');
- return true;
- }
- if (!that.filterForm.data.clock[0] || !that.filterForm.data.clock[1]) {
- that.$message.warning('请选择开始时间与结束时间');
- return true;
- }
- if (!that.filterForm.data.timegranid) {
- that.$message.warning('请选择时间粒度');
- return true;
- }
- let params = {
- timegranid: that.filterForm.data.timegranid,
- clock: that.filterForm.data.clock[0],
- clocke: that.filterForm.data.clock[1],
- itemid: that.filterForm.data.itemid,
- itemname: that.filterForm.data.itemname,
- itemtype: that.filterForm.data.itemtype.join(','),
- indextype: that.filterForm.data.indextype,
- type1: that.filterForm.data.type1,
- type2: that.filterForm.data.type2,
- type3: that.filterForm.data.type3,
- type4: that.filterForm.data.type4,
- energyid: that.filterForm.data.energyid.join(','),
- workprocid: that.filterForm.data.workprocid.join(','),
- factoryid: that.filterForm.data.factoryid,
- parentid: that.filterForm.node.id
- };
- that.$confirm('是否重新生成数据?日期跨度不易太长!否则运行时间较长', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- state: 'warning'
- }).then(() => {
- that.loading = true;
- let url = 'pass/ems/v1/trmindexvalues/reData'
- that.axios.get(url, {
- params: params
- })
- .then(function (res) {
- if (res.code === '0') {
- if (res.message && res.message !== '操作成功') {
- that.$message.warning('重新生成数据成功, 其中【' + res.message + '】');
- } else {
- that.$message({
- message: '重新生成数据成功',
- type: 'success'
- });
- }
- that.getTableData();
- } else {
- that.$message.error(res.message);
- }
- that.loading = false;
- }).catch(function () {
- that.loading = false;
- });
- }).catch(() => {
- });
- },
- // 计算过程
- but_sdata (row) {
- let that = this;
- let params = {
- timegranid: row.timegranid,
- clock: row.clock, // 开始时间
- itemid: row.itemid // 项目编号
- };
- that.axios.get('pass/ems/v1/formulas/getAnaByVal/', {
- params: params
- }).then(function (res) {
- if (res.code === '0') {
- that.$message({
- message: res.data,
- type: 'success'
- });
- } else {
- that.$message.error(res.message);
- }
- }).catch(function () {});
- }
- }
- }
- function sortNumber (a, b) {
- return a - b
- }
- </script>
- <style lang="less">
- .indexDataMaintain {
- min-width: 700px;
- height: 100%;
- .box {
- height: 100%;
- padding: 15px 15px 0 15px;
- .box-left {
- float: left;
- width: 200px;
- height: calc(100% - 3px);
- overflow: auto;
- .box-left-bt {
- line-height: 35px;
- font-size: 16px;
- border-bottom: 1px solid #ccc;
- }
- .box-left-tree {
- height: calc(100% - 50px);
- overflow: auto;
- padding: 7px 7px 0 0;
- .tree-row-on {
- color: #3279e8;
- font-weight: 600;
- }
- }
- }
- .box-right {
- // float: left;
- // width: calc(100% - 200px);
- margin-left: 200px;
- border-left: 1px solid #ccc;
- .box-top {
- .box-top-form {
- padding-left: 7px;
- .el-form-item {
- margin-bottom: 7px;
- }
- }
- margin-bottom: 6px;
- }
- .box-top-gjl {
- overflow: hidden;
- padding-left: 7px;
- margin-bottom: 6px;
- }
- .box-bottom {
- padding-left: 7px;
- }
- }
- .el-table__body .el-form-item--mini.el-form-item {
- margin: 0px;
- .error {
- overflow: hidden;
- color: #f56c6c;
- font-size: 12px;
- line-height: 1;
- }
- }
- }
- }
- </style>
|