123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991 |
- <template>
- <div class="app-container" style="overflow-x: auto;">
- <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
- <el-form-item label="报告日期" prop="reportDate">
- <el-date-picker clearable size="small" style="width: 200px"
- @change="handleQuery"
- v-model="queryParams.reportDate"
- type="date"
- value-format="yyyy-MM-dd"
- placeholder="选择报告日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item>
- <el-button
- type="info"
- icon="el-icon-upload2"
- size="mini"
- @click="handleImport"
- v-hasPermi="['production:report:edit']"
- >导入</el-button>
- <el-button
- type="warning"
- icon="el-icon-download"
- size="mini"
- @click="handleExport"
- v-hasPermi="['production:report:export']"
- >导出</el-button>
- </el-form-item>
- </el-form>
- <div style="height: calc(100vh - 200px);">
- <table border>
- <tr class="bg-yellow">
- <td class="no-border ft-blue" colspan="10">Confidential 保密信息</td>
- <td class="no-border" colspan="6" style="font-size: 26px;">Cracker & Aromatics Daily Production Report</td>
- <td class="no-border" colspan="4"></td>
- <td class="no-border" colspan="2">CBP-7.5.1-SCFPP-002</td>
- </tr>
- <tr class="bg-yellow">
- <td class="no-border" colspan="10"></td>
- <td class="no-border bg-blue">{{reportData.fromDate}}</td>
- <td class="no-border bg-blue-green-neon">TO</td>
- <td class="no-border bg-blue">{{reportData.toDate}}</td>
- <td class="no-border">Duration</td>
- <td class="no-border">1</td>
- <td class="no-border">Days</td>
- <td class="no-border" colspan="5"></td>
- <td class="no-border">REV.06</td>
- </tr>
- <tr class="bg-yellow">
- <td class="no-border"></td>
- <td class="no-border" colspan="3">Material Balance</td>
- <td class="no-border" colspan="14"></td>
- <td class="no-border">Unit: </td>
- <td class="no-border">Ton</td>
- <td class="no-border">Date: </td>
- <td class="no-border bg-blue">{{reportData.reportDate}}</td>
- </tr>
- <tr>
- <td class="bg-blue-light">Nap</td>
- <td class="no-border" rowspan="35"></td>
- <td class="bg-green" rowspan="35">Cracker</td>
- <td class="no-border" rowspan="35" colspan="2"></td>
- <td class="bg-blue-light"></td>
- <td class="bg-blue-light">yield %</td>
- <td class="bg-blue-light">Produced</td>
- <td class="bg-blue-light">Inventory</td>
- <td class="bg-blue-light">Change</td>
- <td class="bg-blue-light">Import</td>
- <td class="bg-blue-light">Export</td>
- </tr>
- <tr>
- <td class="bg-yellow-light">{{reportData.nap}}</td>
- <td class="bg-blue-light" rowspan="2">H2</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.h2YieldPercentage}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.h2Produced}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.h2Inventory}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.h2Change}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.h2Import}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.h2Export}}</td>
- <td class="bg-blue-light">To PGU</td>
- <td class="bg-blue-light">To YPC</td>
- <td class="bg-blue-light">To OXO</td>
- <td class="bg-blue-light">Fr Syngas to SUB</td>
- </tr>
- <tr>
- <td class="bg-blue-light">C5</td>
- <td class="bg-yellow-light">{{reportData.h2ToPgu}}</td>
- <td class="bg-yellow-light">{{reportData.h2ToYpc}}</td>
- <td class="bg-yellow-light">{{reportData.h2ToOxo}}</td>
- <td class="bg-yellow-light">{{reportData.h2FrSyngasToSub}}</td>
- </tr>
- <tr>
- <td class="bg-yellow-light">{{reportData.c5}}</td>
- <td class="bg-blue-light" rowspan="2">ETHYLEN</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.ethylenYieldPercentage}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.ethylenProduced}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.ethylenInventory}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.ethylenChange}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.ethylenImport}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.ethylenExport}}</td>
- <td class="bg-blue-light">To TM</td>
- <td class="bg-blue-light">To TS</td>
- <td class="bg-blue-light">To EO/EG</td>
- <td class="bg-blue-light">To OXO</td>
- <td class="bg-blue-light">To YBS</td>
- <td class="bg-blue-light">To YPC</td>
- <td class="bg-blue-light">To Wacker</td>
- <td class="bg-blue-light">To Dyna</td>
- <td class="bg-blue-light">To Celan./longx.</td>
- <td class="bg-blue-light">Fr YPC</td>
- <td class="bg-blue-light">Fr Longxiang</td>
- </tr>
- <tr>
- <td class="bg-blue-light">C6-C8-NA</td>
- <td class="bg-yellow-light">{{reportData.ethylenToTm}}</td>
- <td class="bg-yellow-light">{{reportData.ethylenToTs}}</td>
- <td class="bg-yellow-light">{{reportData.ethylenToEoEg}}</td>
- <td class="bg-yellow-light">{{reportData.ethylenToOxo}}</td>
- <td class="bg-yellow-light">{{reportData.ethylenToYbs}}</td>
- <td class="bg-yellow-light">{{reportData.ethylenToYpc}}</td>
- <td class="bg-yellow-light">{{reportData.ethylenToWacker}}</td>
- <td class="bg-yellow-light">{{reportData.ethylenToDyna}}</td>
- <td class="bg-yellow-light">{{reportData.ethylenToCelanLongx}}</td>
- <td class="bg-yellow-light">{{reportData.ethylenFrYpc}}</td>
- <td class="bg-yellow-light">{{reportData.ethylenFrLongxiang}}</td>
- </tr>
- <tr>
- <td class="bg-yellow-light">{{reportData.c6C8Na}}</td>
- <td class="bg-blue-light" rowspan="2">Propylene</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.propyleneYieldPercentage}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.propyleneProduced}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.propyleneInventory}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.propyleneChange}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.propyleneImport}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.propyleneExport}}</td>
- <td class="bg-blue-light">To AA/AE</td>
- <td class="bg-blue-light">To GAA</td>
- <td class="bg-blue-light">To OXO</td>
- <td class="bg-blue-light">To LDPE</td>
- <td class="bg-blue-light">To YPC</td>
- <td class="bg-blue-light">To Road</td>
- <td class="bg-blue-light">To Ship</td>
- <td class="bg-blue-light">Fr YPC</td>
- <td class="bg-blue-light">Fr Ship</td>
- <td class="bg-blue-light">Fr Chengzhi</td>
- </tr>
- <tr>
- <td class="bg-blue-light">wison Ethane </td>
- <td class="bg-yellow-light">{{reportData.propyleneToAaAe}}</td>
- <td class="bg-yellow-light">{{reportData.propyleneToGaa}}</td>
- <td class="bg-yellow-light">{{reportData.propyleneToOxo}}</td>
- <td class="bg-yellow-light">{{reportData.propyleneToLdpe}}</td>
- <td class="bg-yellow-light">{{reportData.propyleneToYpc}}</td>
- <td class="bg-yellow-light">{{reportData.propyleneToRoad}}</td>
- <td class="bg-yellow-light">{{reportData.propyleneToShip}}</td>
- <td class="bg-yellow-light">{{reportData.propyleneFrYpc}}</td>
- <td class="bg-yellow-light">{{reportData.propyleneFrShip}}</td>
- <td class="bg-yellow-light">{{reportData.propyleneFrChengzhi}}</td>
- </tr>
- <tr>
- <td class="bg-yellow-light">{{reportData.wisonEthane}}</td>
- <td class="bg-blue-light">C3 LPG</td>
- <td class="bg-yellow-light">{{reportData.c3LpgYieldPercentage}}</td>
- <td class="bg-yellow-light">{{reportData.c3LpgProduced}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.c3C4Inventory}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.c3C4Change}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.c3C4Import}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.c3C4Export}}</td>
- <td class="bg-blue-light">To SUB</td>
- <td class="bg-blue-light">To Fur as fule</td>
- <td class="bg-blue-light">As Feed</td>
- <td class="bg-blue-light">Fr YPC</td>
- <td class="bg-blue-light">Fr Truck</td>
- </tr>
- <tr>
- <td class="bg-blue-light">LPG to furnace</td>
- <td class="bg-blue-light">C4 LPG</td>
- <td class="bg-yellow-light">{{reportData.c4LpgYieldPercentage}}</td>
- <td class="bg-yellow-light">{{reportData.c4LpgProduced}}</td>
- <td class="bg-yellow-light">{{reportData.c3C4ToSub}}</td>
- <td class="bg-yellow-light">{{reportData.c3C4ToFurAsFule}}</td>
- <td class="bg-yellow-light">{{reportData.c3C4AsFeed}}</td>
- <td class="bg-yellow-light">{{reportData.c3C4FrYpc}}</td>
- <td class="bg-yellow-light">{{reportData.c3C4FrTruck}}</td>
- </tr>
- <tr>
- <td class="bg-yellow-light">{{reportData.lpgToFurnace}}</td>
- <td class="bg-blue-light" rowspan="2">MixedC4'S</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.mixedC4sYieldPercentage}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.mixedC4sProduced}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.mixedC4sInventory}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.mixedC4sChange}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.mixedC4sImport}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.mixedC4sExport}}</td>
- <td class="bg-blue-light">To BD</td>
- <td class="bg-blue-light">To YPC</td>
- <td class="bg-blue-light">To Truck</td>
- <td class="bg-blue-light">To ship</td>
- <td class="bg-blue-light">Fr YPC</td>
- <td class="bg-blue-light">Fr Truck</td>
- <td class="bg-blue-light">Fr ship</td>
- <td class="bg-blue-light">FR BD R1</td>
- <td class="bg-blue-light">TO R800</td>
- </tr>
- <tr>
- <td class="bg-blue-light">Raff1 fr BD</td>
- <td class="bg-yellow-light">{{reportData.mixedC4sToBd}}</td>
- <td class="bg-yellow-light">{{reportData.mixedC4sToYpc}}</td>
- <td class="bg-yellow-light">{{reportData.mixedC4sToTruck}}</td>
- <td class="bg-yellow-light">{{reportData.mixedC4sToShip}}</td>
- <td class="bg-yellow-light">{{reportData.mixedC4sFrYpc}}</td>
- <td class="bg-yellow-light">{{reportData.mixedC4sFrTruck}}</td>
- <td class="bg-yellow-light">{{reportData.mixedC4sFrShip}}</td>
- <td class="bg-yellow-light">{{reportData.mixedC4sFrBdR1}}</td>
- <td class="bg-yellow-light">{{reportData.mixedC4sToR800}}</td>
- </tr>
- <tr>
- <td class="bg-yellow-light">{{reportData.raff1FrBd}}</td>
- <td class="bg-blue-light" rowspan="2">EBO</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.eboYieldPercentage}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.eboProduced}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.eboInventory}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.eboChange}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.eboImport}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.eboExport}}</td>
- <td class="bg-blue-light">To Ship</td>
- <td class="bg-blue-light">To RTTF</td>
- <td class="bg-blue-light">To Train</td>
- <td class="bg-blue-light">Fr BD</td>
- </tr>
- <tr>
- <td class="bg-blue-light">Raff2 fr IB</td>
- <td class="bg-yellow-light">{{reportData.eboToShip}}</td>
- <td class="bg-yellow-light">{{reportData.eboToRttf}}</td>
- <td class="bg-yellow-light">{{reportData.eboToTrain}}</td>
- <td class="bg-yellow-light">{{reportData.eboFrBd}}</td>
- </tr>
- <tr>
- <td class="bg-yellow-light">{{reportData.raff2FrIb}}</td>
- <td class="bg-blue-light" rowspan="2">Naphthalene</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.naphthaleneYieldPercentage}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.naphthaleneProduced}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.naphthaleneInventory}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.naphthaleneChange}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.naphthaleneImport}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.naphthaleneExport}}</td>
- <td class="bg-blue-light">To Truck</td>
- <td class="no-border" colspan="7"></td>
- <td class="bg-blue-light" colspan="2">Export & Import</td>
- </tr>
- <tr>
- <td class="bg-blue-light">Raff3 fr BD</td>
- <td class="bg-yellow-light">{{reportData.naphthaleneToTruck}}</td>
- <td class="no-border" colspan="7"></td>
- <td class="bg-blue-light">To ship</td>
- <td class="bg-blue-light">Fr ship</td>
- </tr>
- <tr>
- <td class="bg-yellow-light">{{reportData.raff3FrBd}}</td>
- <td class="bg-blue-light" rowspan="2">PO/Flux Oil</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.poFluxOilYieldPercentage}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.poFluxOilProduced}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.poFluxOilInventory}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.poFluxOilChange}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.poFluxOilImport}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.poFluxOilExport}}</td>
- <td class="bg-blue-light">To BD</td>
- <td class="no-border" colspan="7"></td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- </tr>
- <tr>
- <td class="bg-blue-light">Raffinate II P fr 2PH</td>
- <td class="bg-yellow-light">{{reportData.poFluxOilToBd}}</td>
- <td class="no-border" colspan="7"></td>
- <td class="bg-blue-light">To YBS</td>
- <td class="bg-blue-light"></td>
- </tr>
- <tr>
- <td class="bg-yellow-light">{{reportData.raffinate2pFr2ph}}</td>
- <td class="bg-blue-light" rowspan="2">Offags</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.offgasYieldPercentage}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.offgasProduced}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.offgasInventory}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.offgasChange}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.offgasImport}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.offgasExport}}</td>
- <td class="bg-blue-light">To Furnace</td>
- <td class="bg-blue-light">To YBS</td>
- <td class="bg-blue-light">To c-ERU</td>
- <td class="bg-blue-light">SuB(inclose U2)</td>
- <td class="bg-blue-light">Flare+SCTU</td>
- <td class="bg-blue-light">To U2(nm3)</td>
- <td class="bg-blue-light">Flare loss (T)</td>
- <td class="no-border"></td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light"></td>
- </tr>
- <tr>
- <td class="bg-blue-light">C2 fr LDPE</td>
- <td class="bg-yellow-light">{{reportData.offgasToFurnance}}</td>
- <td class="bg-yellow-light">{{reportData.offgasToYbs}}</td>
- <td class="bg-yellow-light">{{reportData.offgasToCEru}}</td>
- <td class="bg-yellow-light">{{reportData.offgasSubInCloseU2}}</td>
- <td class="bg-yellow-light">{{reportData.offgasFlareSctu}}</td>
- <td class="bg-yellow-light">{{reportData.offgasToU2Nm3}}</td>
- <td class="bg-yellow-light">{{reportData.offgasFlareLossT}}</td>
- <td class="no-border"></td>
- <td class="bg-blue-light">To RTTF</td>
- <td class="bg-blue-light">To Train</td>
- </tr>
- <tr>
- <td class="bg-yellow-light">{{reportData.c2FrLdpe}}</td>
- <td class="bg-blue-light" rowspan="2">RPG</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.rpgYieldPercentage}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.rpgProduced}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.rpgInventory}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.rpgChange}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.rpgImport}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.rpgExport}}</td>
- <td class="bg-blue-light">To PGU</td>
- <td class="bg-blue-light">Fr YFCC</td>
- <td class="no-border" colspan="6"></td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- </tr>
- <tr>
- <td class="bg-blue-light">C3 fr OXO</td>
- <td class="bg-yellow-light">{{reportData.rpgToPgu}}</td>
- <td class="bg-yellow-light">{{reportData.rpgFrYfcc}}</td>
- </tr>
- <tr>
- <td class="bg-yellow-light">{{reportData.c3FrOxo}}</td>
- <td class="bg-blue-light" rowspan="2">Methane</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.methaneYieldPercentage}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.methaneProduced}}</td>
- <td class="bg-blue-light">To EO/EG</td>
- <td class="no-border" colspan="8"></td>
- <td class="bg-blue-light">yield %</td>
- <td class="bg-blue-light">Inventory</td>
- <td class="no-border"></td>
- <td class="bg-blue-light">To Ship</td>
- <td class="bg-blue-light">Fr Ship</td>
- </tr>
- <tr>
- <td class="bg-blue-light">MIXED C3/C4 </td>
- <td class="bg-yellow-light">{{reportData.methaneToEoEg}}</td>
- <td class="no-border" colspan="5"></td>
- <td class="bg-green" rowspan="14">AEU</td>
- <td class="no-border" colspan="2"></td>
- <td class="bg-blue-light">Produced</td>
- <td class="bg-blue-light">Change</td>
- <td class="no-border"></td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- </tr>
- <tr>
- <td class="bg-yellow-light">{{reportData.mixedC3C4}}</td>
- <td class="bg-blue-light" rowspan="2">Residue oil</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.residueOilYieldPercentage}}</td>
- <td class="bg-yellow-light" rowspan="2">{{reportData.residueOilProduced}}</td>
- <td class="no-border" colspan="8"></td>
- <td class="bg-blue-light" rowspan="2">Benzene</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="no-border"></td>
- <td class="bg-blue-light">To YPC</td>
- <td class="bg-blue-light">Fr YPC</td>
- </tr>
- <tr>
- <td class="bg-blue-light">Hy C9</td>
- <td class="no-border" colspan="8"></td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="no-border"></td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- </tr>
- <tr>
- <td class="bg-yellow-light">{{reportData.hyC9}}</td>
- <td class="no-border" colspan="11"></td>
- <td class="bg-blue-light" rowspan="2">Toluene</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="no-border"></td>
- <td class="bg-blue-light">To RTTF</td>
- <td class="bg-blue-light">Fr YBS</td>
- </tr>
- <tr>
- <td class="bg-blue-light">PGU Offgas</td>
- <td class="no-border" colspan="11"></td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="no-border"></td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- </tr>
- <tr>
- <td class="bg-yellow-light">{{reportData.pguOffgas}}</td>
- <td class="no-border" colspan="7"></td>
- <td class="no-border bg-yellow">t/h</td>
- <td class="no-border bg-yellow">{{reportData.pguAeuTH}}</td>
- <td class="no-border"></td>
- <td class="bg-blue-light" rowspan="2">Xylene</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="no-border"></td>
- <td class="bg-blue-light">To EU</td>
- <td class="bg-blue-light"></td>
- </tr>
- <tr>
- <td class="bg-blue-light">Wash Oil</td>
- <td class="no-border" colspan="2"></td>
- <td class="bg-green" rowspan="14">PGU</td>
- <td class="no-border" colspan="2"></td>
- <td class="bg-blue-light">yield %</td>
- <td class="bg-blue-light">Inventory</td>
- <td class="bg-blue-light">Export</td>
- <td class="no-border" colspan="4"></td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="no-border"></td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light"></td>
- </tr>
- <tr>
- <td class="bg-yellow-light">{{reportData.washOil}}</td>
- <td class="no-border" colspan="5"></td>
- <td class="bg-blue-light">Produced</td>
- <td class="bg-blue-light">Change</td>
- <td class="bg-blue-light">To AEU</td>
- <td class="no-border bg-yellow-light">{{reportData.pguToAeu}}</td>
- <td class="no-border"></td>
- <td class="bg-blue-light" rowspan="2">C6-C8 NA</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- </tr>
- <tr>
- <td class="bg-blue-light">Toluene</td>
- <td class="no-border bg-yellow">t/h</td>
- <td class="bg-yellow no-border">{{reportData.pguRpgTH}}</td>
- <td class="no-border"></td>
- <td class="bg-blue-light">BTX</td>
- <td class="bg-yellow-light">{{reportData.pguBtxYeildPercentage}}</td>
- <td class="bg-yellow-light">{{reportData.pguBtxInventory}}</td>
- <td>{{reportData.pguBtxExport}}</td>
- <td class="no-border" colspan="4"></td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="no-border"></td>
- <td class="bg-blue-light">To ship</td>
- <td class="bg-blue-light">Fr ship</td>
- </tr>
- <tr>
- <td class="bg-yellow-light">{{reportData.toluene}}</td>
- <td class="bg-blue-light">RPG</td>
- <td class="no-border">{{reportData.rpgToPgu2}}</td>
- <td class="no-border"></td>
- <td class="bg-blue-light">Product</td>
- <td class="bg-yellow-light">{{reportData.pguBtxProduced}}</td>
- <td class="bg-yellow-light">{{reportData.pguBtxChange}}</td>
- <td class="bg-yellow-light">{{reportData.pguBtxToAeu}}</td>
- <td class="no-border bg-yellow-light">{{reportData.aeuToPgu}}</td>
- <td class="no-border" colspan="5"></td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- </tr>
- <tr>
- <td class="bg-blue-light">Hy C4 fr R800</td>
- <td>{{reportData.pguRpg1}}</td>
- <td class="no-border" colspan="11"></td>
- <td class="no-border">AEU</td>
- <td class="no-border">PGU&AEU</td>
- <td class="no-border"></td>
- <td class="bg-blue-light">To YPC</td>
- <td class="bg-blue-light">Fr YPC</td>
- </tr>
- <tr>
- <td class="bg-yellow-light">{{reportData.hyC4FrR800}}</td>
- <td class="bg-yellow-light">{{reportData.pguRpg2}}</td>
- <td class="bg-yellow-light no-border">{{reportData.pguToRpg}}</td>
- <td class="no-border" colspan="8"></td>
- <td class="no-border bg-blue-light">total Feed</td>
- <td class="no-border bg-yellow-light">0</td>
- <td class="no-border bg-yellow-light">0</td>
- <td class="no-border"></td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- </tr>
- <tr>
- <td class="no-border" colspan="9"></td>
- <td class="bg-blue-light" rowspan="2">Washoil</td>
- <td class="bg-yellow-light">{{reportData.pguWashoilYeildPercentage}}</td>
- <td class="bg-yellow-light">{{reportData.pguWashoilInventory}}</td>
- <td class="bg-blue-light">To EU</td>
- <td class="no-border" colspan="3"></td>
- <td class="no-border bg-blue-light">output</td>
- <td class="no-border bg-yellow-light">0</td>
- <td class="no-border bg-yellow-light">0</td>
- <td class="no-border"></td>
- <td class="bg-blue-light">To rttf</td>
- <td class="bg-blue-light">Fr rttf</td>
- </tr>
- <tr>
- <td class="bg-blue-light" colspan="2">Total input</td>
- <td class="bg-yellow-light">{{reportData.totalInput}}</td>
- <td class="no-border" colspan="2"></td>
- <td class="bg-blue-light">H2</td>
- <td class="no-border" colspan="4"></td>
- <td class="bg-yellow-light">{{reportData.pguWashoilProduced}}</td>
- <td class="bg-yellow-light">{{reportData.pguWashoilChange}}</td>
- <td class="bg-yellow-light">{{reportData.pguWashoilToEu}}</td>
- <td class="no-border" colspan="3"></td>
- <td class="no-border bg-blue-light">Total loss</td>
- <td class="no-border bg-yellow-light">0</td>
- <td class="no-border bg-yellow-light">0</td>
- <td class="no-border"></td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- </tr>
- <tr>
- <td class="bg-blue-light" colspan="2">Total output</td>
- <td class="bg-yellow-light">{{reportData.totalOutput}}</td>
- <td class="no-border" colspan="2"></td>
- <td class="bg-yellow-light">{{reportData.pguH2}}</td>
- <td class="no-border" colspan="3"></td>
- <td class="bg-blue-light" rowspan="2">offags</td>
- <td class="bg-yellow-light">{{reportData.pguOffgasYeildPercentage}}</td>
- <td class="bg-yellow-light">{{reportData.pguOffgasInventory}}</td>
- <td class="bg-blue-light">To EU</td>
- <td class="no-border" colspan="3"></td>
- <td class="no-border bg-blue-light">loss%</td>
- <td class="no-border bg-yellow-light">0</td>
- <td class="no-border bg-yellow-light">0</td>
- </tr>
- <tr>
- <td class="bg-blue-light" colspan="2">Total loss</td>
- <td class="bg-yellow-light ft-red">{{reportData.totalLoss}}</td>
- <td class="no-border" colspan="6"></td>
- <td class="bg-yellow-light">{{reportData.pguOffgasProduced}}</td>
- <td class="bg-yellow-light">{{reportData.pguOffgasChange}}</td>
- <td class="bg-yellow-light">{{reportData.pguOffgasToEu}}</td>
- <td class="no-border" colspan="3"></td>
- <td class="no-border bg-blue">Load%</td>
- <td class="no-border bg-blue">0</td>
- <td class="no-border bg-blue">0</td>
- <td class="no-border"></td>
- <td class="bg-blue-light">To EU</td>
- <td class="bg-blue-light">To YPC</td>
- </tr>
- <tr>
- <td class="bg-blue-light" colspan="2">loss%</td>
- <td class="bg-yellow-light ft-red">{{reportData.lossPercentage}}</td>
- <td class="no-border" colspan="2"></td>
- <td class="no-border bg-blue-light">total Feed</td>
- <td class="no-border bg-yellow-light">{{reportData.pguTotalFeed}}</td>
- <td class="no-border"></td>
- <td class="bg-blue-light" rowspan="2">C5</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-blue-light">To EU</td>
- <td class="bg-blue-light">To Yuanguan</td>
- <td class="no-border" colspan="5"></td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- </tr>
- <tr>
- <td class="bg-blue-light" colspan="2">Total Furnace Feed</td>
- <td class="bg-yellow-light">{{reportData.totalFurnanceFeed}}</td>
- <td class="no-border" colspan="2"></td>
- <td class="no-border bg-blue-light">output</td>
- <td class="no-border bg-yellow-light">{{reportData.pguOutput}}</td>
- <td class="no-border"></td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- </tr>
- <tr>
- <td class="bg-blue-light" colspan="2">NAP fr CLTF</td>
- <td class="bg-blue">{{reportData.napFrCltf}}</td>
- <td class="no-border" colspan="2"></td>
- <td class="no-border bg-blue-light">Total loss</td>
- <td class="no-border bg-yellow-light">{{reportData.pguTotalLoss}}</td>
- <td class="no-border"></td>
- <td class="bg-blue-light" rowspan="2">C9</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-blue-light">To RTTF</td>
- <td class="bg-blue-light">To ship</td>
- <td class="bg-blue-light">To YFCC</td>
- </tr>
- <tr>
- <td class="bg-blue-light" colspan="2">Total P/E</td>
- <td class="bg-yellow-light">{{reportData.totalPE}}</td>
- <td class="no-border" colspan="2"></td>
- <td class="no-border bg-blue-light">loss%</td>
- <td class="no-border bg-yellow-light">{{reportData.pguLossPercentage}}</td>
- <td class="no-border"></td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- </tr>
- <tr>
- <td class="bg-blue-light" colspan="2">Plant mode is</td>
- <td class="bg-yellow-light">{{reportData.plantModeIs}}</td>
- <td class="no-border" colspan="2"></td>
- <td class="no-border bg-blue">Feed Load%</td>
- <td class="no-border bg-blue">{{reportData.pguFeedLoadPercentage}}</td>
- </tr>
- <tr>
- <td class="bg-blue" colspan="2">plant load (3495t/d)</td>
- <td class="bg-blue">{{reportData.plantLoad3495tD}}</td>
- </tr>
- <tr>
- <td class="bg-blue" colspan="2">Avg. Furnace feed(t/h)</td>
- <td class="bg-blue">{{reportData.avgFurnanceFeedTH}}</td>
- </tr>
- <tr>
- <td class="bg-blue" colspan="2">Feeding ratio %</td>
- <td class="bg-blue">{{reportData.feedingRatioPercentage}}</td>
- <td class="bg-yellow-light" colspan="12">Specific Energy Consumption</td>
- <td class="no-border"></td>
- <td class="bg-yellow" colspan="6">SCTF STORAGE 当前罐容</td>
- </tr>
- <tr>
- <td class="bg-blue-dark" rowspan="3">Items</td>
- <td class="bg-blue-dark" rowspan="3">unit</td>
- <td class="bg-blue-dark" colspan="3" rowspan="2">Conversion</td>
- <td class="bg-blue-dark" colspan="4">Cracker</td>
- <td class="bg-blue-dark" colspan="4">PGU+AEU</td>
- <td class="bg-blue-dark">SCTU+Flare</td>
- <td class="bg-blue-dark">SUB</td>
- <td class="bg-blue-dark">BCC</td>
- <td class="bg-green-blue-neon">Total C2</td>
- <td class="bg-blue-light">TK1061</td>
- <td class="bg-blue-light">TK1062</td>
- <td class="bg-blue-light">TK1063</td>
- <td class="bg-blue-light">TK1064</td>
- <td class="bg-blue-light">TK1065 (Off)</td>
- </tr>
- <tr>
- <td class="bg-blue-dark" rowspan="2">Consumption</td>
- <td class="bg-blue-dark" rowspan="2">t/t</td>
- <td class="bg-blue-dark" colspan="2">Energy</td>
- <td class="bg-blue-dark" rowspan="2">Consumption</td>
- <td class="bg-blue-dark" rowspan="2">t/t</td>
- <td class="bg-blue-dark" colspan="2">Energy</td>
- <td class="bg-blue-dark">Consumption</td>
- <td class="bg-blue-dark">Consumption</td>
- <td class="bg-blue-dark">Consumption</td>
- <td class="bg-green-blue-neon">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- </tr>
- <tr>
- <td class="bg-blue-dark">TOE/unit</td>
- <td class="bg-blue-dark">TCE/unit</td>
- <td class="bg-blue-dark">Pre-standard</td>
- <td class="bg-blue-dark">kgOE/t C2=</td>
- <td class="bg-blue-dark">kgCE/t C2=</td>
- <td class="bg-blue-dark">kgOE/t BTX</td>
- <td class="bg-blue-dark">kgCE/t BTX</td>
- <td class="bg-blue-dark">unit</td>
- <td class="bg-blue-dark">unit</td>
- <td class="bg-blue-dark">unit</td>
- <td class="bg-green-blue-neon">Total C3</td>
- <td class="bg-blue-light">TK1011</td>
- <td class="bg-blue-light">TK1012</td>
- <td class="bg-blue-light">TK1013</td>
- <td class="bg-blue-light">TK1014</td>
- <td class="bg-blue-light">TK1040 (Off)</td>
- </tr>
- <tr>
- <td class="bg-blue-dark">HHP</td>
- <td class="bg-blue-dark">t</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-green-blue-neon">0</td>
- <td class="bg-blue-light">0</td>
- <td class="bg-blue-light">0</td>
- <td class="bg-blue-light">0</td>
- <td class="bg-blue-light">0</td>
- <td class="bg-blue-light">0</td>
- </tr>
- <tr>
- <td class="bg-blue-dark">NG</td>
- <td class="bg-blue-dark">Km3</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-blue-light">TK1120(LPG)</td>
- <td class="bg-blue-light">TK1111(C4's)</td>
- <td class="bg-blue-light">TK1520(RPG)</td>
- <td class="bg-blue-light">TK1350(PO)</td>
- <td class="bg-green">TK1310(BTX)</td>
- <td class="bg-blue-light">TK1330(EBO)</td>
- </tr>
- <tr>
- <td class="bg-blue-dark">Fuel Gas(offags)</td>
- <td class="bg-blue-dark">t</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-blue-light">0</td>
- <td class="bg-blue-light">0</td>
- <td class="bg-blue-light">0</td>
- <td class="bg-blue-light">0</td>
- <td class="bg-green">0</td>
- <td class="bg-blue-light">0</td>
- </tr>
- <tr>
- <td class="bg-blue-dark">SHP</td>
- <td class="bg-blue-dark">t</td>
- <td class="bg-yellow">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-blue-light">TK1430(LFO)</td>
- <td class="bg-green">TK1320(off-btx)</td>
- <td class="bg-green">T201(BTX)</td>
- <td class="bg-green">TK1340(C9)</td>
- <td class="bg-green">CLT1350(C9)</td>
- <td class="bg-green">TK1160(NH3)</td>
- </tr>
- <tr>
- <td class="bg-blue-dark">HP</td>
- <td class="bg-blue-dark">t</td>
- <td class="bg-yellow">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-blue-light">0</td>
- <td class="bg-green">0</td>
- <td class="bg-green">0</td>
- <td class="bg-green">0</td>
- <td class="bg-green">0</td>
- <td class="bg-green">0</td>
- </tr>
- <tr>
- <td class="bg-blue-dark">MP</td>
- <td class="bg-blue-dark">t</td>
- <td class="bg-yellow">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="no-border"></td>
- <td class="bg-green">TK1510(B)</td>
- <td class="bg-green">CLT1370(B)</td>
- <td class="bg-green">TK1360(T)</td>
- <td class="bg-green">TK1410(X)</td>
- <td class="bg-green">CLT1380(X)</td>
- </tr>
- <tr>
- <td class="bg-blue-dark">LP</td>
- <td class="bg-blue-dark">t</td>
- <td class="bg-yellow">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="no-border"></td>
- <td class="bg-green">0</td>
- <td class="bg-green">0</td>
- <td class="bg-green">0</td>
- <td class="bg-green">0</td>
- <td class="bg-green">0</td>
- </tr>
- <tr>
- <td class="bg-blue-dark">Electricity</td>
- <td class="bg-blue-dark">MWh</td>
- <td class="bg-yellow">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="no-border" colspan="2"></td>
- <td class="bg-blue-light">TK1420(Dimer)</td>
- <td class="bg-blue-light">TK1110(R1)</td>
- <td class="bg-blue-light">TK1130(IB)</td>
- <td class="bg-blue-light">TK1150(R3)</td>
- </tr>
- <tr>
- <td class="bg-blue-dark">coolling water</td>
- <td class="bg-blue-dark">kt</td>
- <td class="bg-yellow">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="no-border" colspan="2"></td>
- <td class="bg-blue-light">0</td>
- <td class="bg-blue-light">0</td>
- <td class="bg-blue-light">0</td>
- <td class="bg-blue-light">0</td>
- </tr>
- <tr>
- <td class="bg-blue-dark">Polished Condensate</td>
- <td class="bg-blue-dark">t</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="no-border" colspan="3"></td>
- <td class="bg-blue-light">TK1140(BD)</td>
- <td class="bg-blue-light">TK1141(BD)</td>
- <td class="bg-blue-light">TK1142(BD)</td>
- </tr>
- <tr>
- <td class="bg-blue-dark">HP BFW</td>
- <td class="bg-blue-dark">t</td>
- <td class="bg-yellow">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="no-border" colspan="3"></td>
- <td class="bg-blue-light">0</td>
- <td class="bg-blue-light">0</td>
- <td class="bg-blue-light">0</td>
- </tr>
- <tr>
- <td class="bg-blue-dark">Production Water</td>
- <td class="bg-blue-dark">t</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="no-border" colspan="2"></td>
- <td class="bg-green-neon">total NAP</td>
- <td class="bg-grey-light">CLTF1621</td>
- <td class="bg-grey-light">CLTF1622</td>
- <td class="bg-grey-light">CLTF1623</td>
- </tr>
- <tr>
- <td class="bg-blue-dark">Turbine Condensate</td>
- <td class="bg-blue-dark">t</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="no-border" colspan="2"></td>
- <td class="bg-green-neon">0</td>
- <td class="bg-grey-light">0</td>
- <td class="bg-grey-light">0</td>
- <td class="bg-grey-light">0</td>
- </tr>
- <tr>
- <td class="bg-blue-dark">PA&IA</td>
- <td class="bg-blue-dark">pnm3</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- </tr>
- <tr>
- <td class="bg-blue-dark">N2</td>
- <td class="bg-blue-dark">pnm3</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-purple-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- <td class="bg-yellow-light">0</td>
- </tr>
- <tr>
- <td class="bg-orange">Total</td>
- <td class="bg-orange" rowspan="3">t</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-blue">0</td>
- <td class="bg-blue">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-blue">0</td>
- <td class="bg-blue">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">FR EO/EG</td>
- <td class="bg-purple">320FC2161</td>
- <td class="bg-green">C210 PDI</td>
- <td class="bg-yellow">气温</td>
- <td class="bg-blue-dark">裂解炉烧焦</td>
- </tr>
- <tr>
- <td class="bg-orange">Target</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-blue">0</td>
- <td class="bg-blue">0</td>
- <td class="bg-blue">load%</td>
- <td class="bg-purple">0</td>
- <td class="bg-green">0</td>
- <td class="bg-yellow">0</td>
- <td class="bg-blue-dark">0</td>
- </tr>
- <tr>
- <td class="bg-orange">Produced</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-orange">0</td>
- <td class="bg-blue">0</td>
- <td class="bg-blue">0</td>
- <td class="bg-blue">HS Producet</td>
- <td class="bg-purple">kg/h</td>
- <td class="bg-green">Kpa</td>
- <td class="bg-yellow">℃</td>
- <td class="bg-blue-dark">台</td>
- </tr>
- </table>
- </div>
- </div>
- </template>
- <script>
- import { getReportByReportDate, listReport, getReport, delReport, addReport, updateReport, exportReport, importTemplate} from "@/api/production/report";
- import { treeselect } from "@/api/system/dept";
- import { getToken } from "@/utils/auth";
- import Treeselect from "@riophae/vue-treeselect";
- import "@riophae/vue-treeselect/dist/vue-treeselect.css";
- export default {
- name: "DailyProductionReport",
- components: { Treeselect },
- data() {
- return {
- // 遮罩层
- loading: true,
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 每日生产报告表格数据
- reportList: [],
- // 弹出层标题
- title: "",
- // 部门树选项
- deptOptions: undefined,
- clientHeight:300,
- // 是否显示弹出层
- open: false,
- // 用户导入参数
- upload: {
- // 是否显示弹出层(用户导入)
- open: false,
- // 弹出层标题(用户导入)
- title: "",
- // 是否禁用上传
- isUploading: false,
- // 是否更新已经存在的用户数据
- updateSupport: 0,
- // 设置上传的请求头部
- headers: { Authorization: "Bearer " + getToken() },
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + "/production/report/importData"
- },
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 20,
- fromDate: null,
- toDate: null,
- reportDate: null,
- reportCode: null,
- nap: null,
- c5: null,
- c6C8Na: null,
- wisonEthane: null,
- lpgToFurnace: null,
- raff1FrBd: null,
- raff2FrIb: null,
- raff3FrBd: null,
- raffinate2pFr2ph: null,
- c2FrLdpe: null,
- c3FrOxo: null,
- mixedC3C4: null,
- hyC9: null,
- pguOffgas: null,
- washOil: null,
- toluene: null,
- hyC4FrR800: null,
- h2YieldPercentage: null,
- h2Produced: null,
- h2Inventory: null,
- h2Change: null,
- h2Import: null,
- h2Export: null,
- h2ToPgu: null,
- h2ToYpc: null,
- h2ToOxo: null,
- h2FrSyngasToSub: null,
- ethylenYieldPercentage: null,
- ethylenProduced: null,
- ethylenInventory: null,
- ethylenChange: null,
- ethylenImport: null,
- ethylenExport: null,
- ethylenToTm: null,
- ethylenToTs: null,
- ethylenToEoEg: null,
- ethylenToOxo: null,
- ethylenToYbs: null,
- ethylenToYpc: null,
- ethylenToWacker: null,
- ethylenToDyna: null,
- ethylenToCelanLongx: null,
- ethylenFrYpc: null,
- ethylenFrLongxiang: null,
- propyleneYieldPercentage: null,
- propyleneProduced: null,
- propyleneInventory: null,
- propyleneChange: null,
- propyleneImport: null,
- propyleneExport: null,
- propyleneToAaAe: null,
- propyleneToGaa: null,
- propyleneToOxo: null,
- propyleneToLdpe: null,
- propyleneToYpc: null,
- propyleneToRoad: null,
- propyleneToShip: null,
- propyleneFrYpc: null,
- propyleneFrShip: null,
- propyleneFrChengzhi: null,
- c3LpgYieldPercentage: null,
- c4LpgYieldPercentage: null,
- c3LpgProduced: null,
- c4LpgProduced: null,
- c3C4Inventory: null,
- c3C4Change: null,
- c3C4Import: null,
- c3C4Export: null,
- c3C4ToSub: null,
- c3C4ToFurAsFule: null,
- c3C4AsFeed: null,
- c3C4FrYpc: null,
- c3C4FrTruck: null,
- mixedC4sYieldPercentage: null,
- mixedC4sProduced: null,
- mixedC4sInventory: null,
- mixedC4sChange: null,
- mixedC4sImport: null,
- mixedC4sExport: null,
- mixedC4sToBd: null,
- mixedC4sToYpc: null,
- mixedC4sToTruck: null,
- mixedC4sToShip: null,
- mixedC4sFrYpc: null,
- mixedC4sFrTruck: null,
- mixedC4sFrShip: null,
- mixedC4sFrBdR1: null,
- mixedC4sToR800: null,
- eboYieldPercentage: null,
- eboProduced: null,
- eboInventory: null,
- eboChange: null,
- eboImport: null,
- eboExport: null,
- eboToShip: null,
- eboToRttf: null,
- eboToTrain: null,
- eboFrBd: null,
- naphthaleneYieldPercentage: null,
- naphthaleneProduced: null,
- naphthaleneInventory: null,
- naphthaleneChange: null,
- naphthaleneImport: null,
- naphthaleneExport: null,
- naphthaleneToTruck: null,
- poFluxOilYieldPercentage: null,
- poFluxOilProduced: null,
- poFluxOilInventory: null,
- poFluxOilChange: null,
- poFluxOilImport: null,
- poFluxOilExport: null,
- poFluxOilToBd: null,
- offgasYieldPercentage: null,
- offgasProduced: null,
- offgasInventory: null,
- offgasChange: null,
- offgasImport: null,
- offgasExport: null,
- offgasToFurnance: null,
- offgasToYbs: null,
- offgasToCEru: null,
- offgasSubInCloseU2: null,
- offgasFlareSctu: null,
- offgasToU2Nm3: null,
- offgasFlareLossT: null,
- rpgYieldPercentage: null,
- rpgProduced: null,
- rpgInventory: null,
- rpgChange: null,
- rpgImport: null,
- rpgExport: null,
- rpgToPgu: null,
- rpgFrYfcc: null,
- methaneYieldPercentage: null,
- methaneProduced: null,
- methaneToEoEg: null,
- residueOilYieldPercentage: null,
- residueOilProduced: null,
- totalInput: null,
- totalOutput: null,
- totalLoss: null,
- lossPercentage: null,
- totalFurnanceFeed: null,
- napFrCltf: null,
- totalPE: null,
- plantModeIs: null,
- plantLoad3495tD: null,
- avgFurnanceFeedTH: null,
- feedingRatioPercentage: null,
- hhpToe: null,
- hhpTce: null,
- hhpPre: null,
- hhpCracker: null,
- hhpCrackerTT: null,
- hhpCrackerKgoe: null,
- hhpCrackerKgce: null,
- hhpPguAeu: null,
- hhpPguAeuTT: null,
- hhpPguAeuKgoe: null,
- hhpPguAeuKgce: null,
- hhpSctuFlare: null,
- hhpSub: null,
- hhpBcc: null,
- ngToe: null,
- ngTce: null,
- ngPre: null,
- ngCracker: null,
- ngCrackerTT: null,
- ngCrackerKgoe: null,
- ngCrackerKgce: null,
- ngPguAeu: null,
- ngPguAeuTT: null,
- ngPguAeuKgoe: null,
- ngPguAeuKgce: null,
- ngSctuFlare: null,
- ngSub: null,
- ngBcc: null,
- fuelGasOffgasToe: null,
- fuelGasOffgasTce: null,
- fuelGasOffgasPre: null,
- fuelGasOffgasCracker: null,
- fuelGasOffgasCrackerTT: null,
- fuelGasOffgasCrackerKgoe: null,
- fuelGasOffgasCrackerKgce: null,
- fuelGasOffgasPguAeu: null,
- fuelGasOffgasPguAeuTT: null,
- fuelGasOffgasPguAeuKgoe: null,
- fuelGasOffgasPguAeuKgce: null,
- fuelGasOffgasSctuFlare: null,
- fuelGasOffgasSub: null,
- fuelGasOffgasBcc: null,
- shpToe: null,
- shpTce: null,
- shpPre: null,
- shpCracker: null,
- shpCrackerTT: null,
- shpCrackerKgoe: null,
- shpCrackerKgce: null,
- shpPguAeu: null,
- shpPguAeuTT: null,
- shpPguAeuKgoe: null,
- shpPguAeuKgce: null,
- shpSctuFlare: null,
- shpSub: null,
- shpBcc: null,
- hpToe: null,
- hpTce: null,
- hpPre: null,
- hpCracker: null,
- hpCrackerTT: null,
- hpCrackerKgoe: null,
- hpCrackerKgce: null,
- hpPguAeu: null,
- hpPguAeuTT: null,
- hpPguAeuKgoe: null,
- hpPguAeuKgce: null,
- hpSctuFlare: null,
- hpSub: null,
- hpBcc: null,
- mpToe: null,
- mpTce: null,
- mpPre: null,
- mpCracker: null,
- mpCrackerTT: null,
- mpCrackerKgoe: null,
- mpCrackerKgce: null,
- mpPguAeu: null,
- mpPguAeuTT: null,
- mpPguAeuKgoe: null,
- mpPguAeuKgce: null,
- mpSctuFlare: null,
- mpSub: null,
- mpBcc: null,
- lpToe: null,
- lpTce: null,
- lpPre: null,
- lpCracker: null,
- lpCrackerTT: null,
- lpCrackerKgoe: null,
- lpCrackerKgce: null,
- lpPguAeu: null,
- lpPguAeuTT: null,
- lpPguAeuKgoe: null,
- lpPguAeuKgce: null,
- lpSctuFlare: null,
- lpSub: null,
- lpBcc: null,
- electricityToe: null,
- electricityTce: null,
- electricityPre: null,
- electricityCracker: null,
- electricityCrackerTT: null,
- electricityCrackerKgoe: null,
- electricityCrackerKgce: null,
- electricityPguAeu: null,
- electricityPguAeuTT: null,
- electricityPguAeuKgoe: null,
- electricityPguAeuKgce: null,
- electricitySctuFlare: null,
- electricitySub: null,
- electricityBcc: null,
- coolingWaterToe: null,
- coolingWaterTce: null,
- coolingWaterPre: null,
- coolingWaterCracker: null,
- coolingWaterCrackerTT: null,
- coolingWaterCrackerKgoe: null,
- coolingWaterCrackerKgce: null,
- coolingWaterPguAeu: null,
- coolingWaterPguAeuTT: null,
- coolingWaterPguAeuKgoe: null,
- coolingWaterPguAeuKgce: null,
- coolingWaterSctuFlare: null,
- coolingWaterSub: null,
- coolingWaterBcc: null,
- polishedConToe: null,
- polishedConTce: null,
- polishedConPre: null,
- polishedConCracker: null,
- polishedConCrackerTT: null,
- polishedConCrackerKgoe: null,
- polishedConCrackerKgce: null,
- polishedConPguAeu: null,
- polishedConPguAeuTT: null,
- polishedConPguAeuKgoe: null,
- polishedConPguAeuKgce: null,
- polishedConSctuFlare: null,
- polishedConSub: null,
- polishedConBcc: null,
- hpBfwToe: null,
- hpBfwTce: null,
- hpBfwPre: null,
- hpBfwCracker: null,
- hpBfwCrackerTT: null,
- hpBfwCrackerKgoe: null,
- hpBfwCrackerKgce: null,
- hpBfwPguAeu: null,
- hpBfwPguAeuTT: null,
- hpBfwPguAeuKgoe: null,
- hpBfwPguAeuKgce: null,
- hpBfwSctuFlare: null,
- hpBfwSub: null,
- hpBfwBcc: null,
- prodWaterToe: null,
- prodWaterTce: null,
- prodWaterPre: null,
- prodWaterCracker: null,
- prodWaterCrackerTT: null,
- prodWaterCrackerKgoe: null,
- prodWaterCrackerKgce: null,
- prodWaterPguAeu: null,
- prodWaterPguAeuTT: null,
- prodWaterPguAeuKgoe: null,
- prodWaterPguAeuKgce: null,
- prodWaterSctuFlare: null,
- prodWaterSub: null,
- prodWaterBcc: null,
- turbineConToe: null,
- turbineConTce: null,
- turbineConPre: null,
- turbineConCracker: null,
- turbineConCrackerTT: null,
- turbineConCrackerKgoe: null,
- turbineConCrackerKgce: null,
- turbineConPguAeu: null,
- turbineConPguAeuTT: null,
- turbineConPguAeuKgoe: null,
- turbineConPguAeuKgce: null,
- turbineConSctuFlare: null,
- turbineConSub: null,
- turbineConBcc: null,
- paIaToe: null,
- paIaTce: null,
- paIaPre: null,
- paIaCracker: null,
- paIaCrackerTT: null,
- paIaCrackerKgoe: null,
- paIaCrackerKgce: null,
- paIaPguAeu: null,
- paIaPguAeuTT: null,
- paIaPguAeuKgoe: null,
- paIaPguAeuKgce: null,
- paIaSctuFlare: null,
- paIaSub: null,
- paIaBcc: null,
- n2Toe: null,
- n2Tce: null,
- n2Pre: null,
- n2Cracker: null,
- n2CrackerTT: null,
- n2CrackerKgoe: null,
- n2CrackerKgce: null,
- n2PguAeu: null,
- n2PguAeuTT: null,
- n2PguAeuKgoe: null,
- n2PguAeuKgce: null,
- n2SctuFlare: null,
- n2Sub: null,
- n2Bcc: null,
- totalToe: null,
- totalTce: null,
- totalPre: null,
- totalCracker: null,
- totalCrackerTT: null,
- totalCrackerKgoe: null,
- totalCrackerKgce: null,
- totalPguAeu: null,
- totalPguAeuTT: null,
- totalPguAeuKgoe: null,
- totalPguAeuKgce: null,
- targetToe: null,
- targetTce: null,
- targetPre: null,
- targetCracker: null,
- targetCrackerTT: null,
- targetCrackerKgoe: null,
- targetCrackerKgce: null,
- targetPguAeu: null,
- targetPguAeuTT: null,
- targetPguAeuKgoe: null,
- targetPguAeuKgce: null,
- producedToe: null,
- producedTce: null,
- producedPre: null,
- producedCracker: null,
- producedCrackerTT: null,
- producedCrackerKgoe: null,
- producedCrackerKgce: null,
- producedPguAeu: null,
- producedPguAeuTT: null,
- producedPguAeuKgoe: null,
- producedPguAeuKgce: null,
- frEoEg: null,
- loadPercentage: null,
- hsProducet: null,
- sctfStorageTotalC2: null,
- sctfStorageTk1061: null,
- sctfStorageTk1062: null,
- sctfStorageTk1063: null,
- sctfStorageTk1064: null,
- sctfStorageTk1065Off: null,
- sctfStorageTotalC3: null,
- sctfStorageTk1011: null,
- sctfStorageTk1012: null,
- sctfStorageTk1013: null,
- sctfStorageTk1014: null,
- sctfStorageTk1040Off: null,
- sctfStorageTk1020Lpg: null,
- sctfStorageTk1111C4s: null,
- sctfStorageTk1520Rpg: null,
- sctfStorageTk1350Po: null,
- sctfStorageTk1310Btx: null,
- sctfStorageTk1330Ebo: null,
- sctfStorageTk1430Lfo: null,
- sctfStorageTk1320OffBtx: null,
- sctfStorageT201Btx: null,
- sctfStorageTk1340C9: null,
- sctfStorageClt1350C9: null,
- sctfStorageTk1160Nh3: null,
- sctfStorageTk1510B: null,
- sctfStorageClt1370B: null,
- sctfStorageTk1360T: null,
- sctfStorageTk1410X: null,
- sctfStorageClt1380X: null,
- sctfStorageTk1420Dimer: null,
- sctfStorageTk1110R1: null,
- sctfStorageTk1130Ib: null,
- sctfStorageTk1150R3: null,
- sctfStorageTk1140Bd: null,
- sctfStorageTk1141Bd: null,
- sctfStorageTk1142Bd: null,
- sctfStorageTotalNap: null,
- sctfStorageCltf1621: null,
- sctfStorageCltf1622: null,
- sctfStorageCltf1623: null,
- pguToRpg: null,
- rpgToPgu2: null,
- pguRpgTH: null,
- pguRpg1: null,
- pguRpg2: null,
- pguH2: null,
- pguTotalFeed: null,
- pguOutput: null,
- pguTotalLoss: null,
- pguLossPercentage: null,
- pguFeedLoadPercentage: null,
- pguToAeu: null,
- aeuToPgu: null,
- pguAeuTH: null,
- pguBtxYeildPercentage: null,
- pguBtxProduced: null,
- pguBtxInventory: null,
- pguBtxChange: null,
- pguBtxExport: null,
- pguBtxToAeu: null,
- pguWashoilYeildPercentage: null,
- pguWashoilProduced: null,
- pguWashoilInventory: null,
- pguWashoilChange: null,
- pguWashoilExport: null,
- pguWashoilToEu: null,
- pguOffgasYeildPercentage: null,
- pguOffgasProduced: null,
- pguOffgasInventory: null,
- pguOffgasChange: null,
- pguOffgasExport: null,
- pguOffgasToEu: null,
- pguC5YeildPercentage: null,
- pguC5Produced: null,
- pguC5Inventory: null,
- pguC5Change: null,
- pguC5Export: null,
- pguC5ToAeu: null,
- pguC5ToEu: null,
- pguC5ToYuanguan: null,
- pguC9YeildPercentage: null,
- pguC9Produced: null,
- pguC9Inventory: null,
- pguC9Change: null,
- pguC9Export: null,
- pguC9ToAeu: null,
- pguC9ToRttf: null,
- pguC9ToShip: null,
- pguC9ToYfcc: null,
- aeuBenzeneYeildPercentage: null,
- aeuBenzeneProduced: null,
- aeuBenzeneInventory: null,
- aeuBenzeneChange: null,
- aeuBenzeneToShip: null,
- aeuBenzeneFrShip: null,
- aeuBenzeneToYbs: null,
- aeuBenzeneToRttf: null,
- aeuBenzeneToTrain: null,
- aeuTolueneYeildPercentage: null,
- aeuTolueneProduced: null,
- aeuTolueneInventory: null,
- aeuTolueneChange: null,
- aeuTolueneToShip: null,
- aeuTolueneFrShip: null,
- aeuTolueneToYpc: null,
- aeuTolueneFrYpc: null,
- aeuTolueneToRttf: null,
- aeuTolueneFrYbs: null,
- aeuTolueneToEu: null,
- aeuXyleneYeildPercentage: null,
- aeuXyleneProduced: null,
- aeuXyleneInventory: null,
- aeuXyleneChange: null,
- aeuXyleneToShip: null,
- aeuXyleneFrShip: null,
- aeuXyleneToYpc: null,
- aeuXyleneFrYpc: null,
- aeuXyleneToRttf: null,
- aeuC6C8NaYeildPercentage: null,
- aeuC6C8NaProduced: null,
- aeuC6C8NaInventory: null,
- aeuC6C8NaChange: null,
- aeuC6C8NaToEu: null,
- aeuC6C8NaToYpc: null,
- aeuTotalFeed: null,
- aeuOutput: null,
- aeuTotalLoss: null,
- aeuLossPercentage: null,
- aeuFeedLoadPercentage: null,
- pguAeuTotalFeed: null,
- pguAeuOutput: null,
- pguAeuTotalLoss: null,
- pguAeuLossPercentage: null,
- pguAeuFeedLoadPercentage: null
- },
- // 表单参数
- form: {},
- // 表单校验
- rules: {
- },
- // 每日生产报告数据
- reportData: {
- fromDate: null,
- toDate: null,
- reportDate: null,
- nap: null,
- c5: null,
- c6C8Na: null,
- wisonEthane: null,
- lpgToFurnace: null,
- raff1FrBd: null,
- raff2FrIb: null,
- raff3FrBd: null,
- raffinate2pFr2ph: null,
- c2FrLdpe: null,
- c3FrOxo: null,
- mixedC3C4: null,
- hyC9: null,
- pguOffgas: null,
- washOil: null,
- toluene: null,
- hyC4FrR800: null,
- h2YieldPercentage: null,
- h2Produced: null,
- h2Inventory: null,
- h2Change: null,
- h2Import: null,
- h2Export: null,
- h2ToPgu: null,
- h2ToYpc: null,
- h2ToOxo: null,
- h2FrSyngasToSub: null,
- ethylenYieldPercentage: null,
- ethylenProduced: null,
- ethylenInventory: null,
- ethylenChange: null,
- ethylenImport: null,
- ethylenExport: null,
- ethylenToTm: null,
- ethylenToTs: null,
- ethylenToEoEg: null,
- ethylenToOxo: null,
- ethylenToYbs: null,
- ethylenToYpc: null,
- ethylenToWacker: null,
- ethylenToDyna: null,
- ethylenToCelanLongx: null,
- ethylenFrYpc: null,
- ethylenFrLongxiang: null,
- propyleneYieldPercentage: null,
- propyleneProduced: null,
- propyleneInventory: null,
- propyleneChange: null,
- propyleneImport: null,
- propyleneExport: null,
- propyleneToAaAe: null,
- propyleneToGaa: null,
- propyleneToOxo: null,
- propyleneToLdpe: null,
- propyleneToYpc: null,
- propyleneToRoad: null,
- propyleneToShip: null,
- propyleneFrYpc: null,
- propyleneFrShip: null,
- propyleneFrChengzhi: null,
- c3LpgYieldPercentage: null,
- c4LpgYieldPercentage: null,
- c3LpgProduced: null,
- c4LpgProduced: null,
- c3C4Inventory: null,
- c3C4Change: null,
- c3C4Import: null,
- c3C4Export: null,
- c3C4ToSub: null,
- c3C4ToFurAsFule: null,
- c3C4AsFeed: null,
- c3C4FrYpc: null,
- c3C4FrTruck: null,
- mixedC4sYieldPercentage: null,
- mixedC4sProduced: null,
- mixedC4sInventory: null,
- mixedC4sChange: null,
- mixedC4sImport: null,
- mixedC4sExport: null,
- mixedC4sToBd: null,
- mixedC4sToYpc: null,
- mixedC4sToTruck: null,
- mixedC4sToShip: null,
- mixedC4sFrYpc: null,
- mixedC4sFrTruck: null,
- mixedC4sFrShip: null,
- mixedC4sFrBdR1: null,
- mixedC4sToR800: null,
- eboYieldPercentage: null,
- eboProduced: null,
- eboInventory: null,
- eboChange: null,
- eboImport: null,
- eboExport: null,
- eboToShip: null,
- eboToRttf: null,
- eboToTrain: null,
- eboFrBd: null,
- naphthaleneYieldPercentage: null,
- naphthaleneProduced: null,
- naphthaleneInventory: null,
- naphthaleneChange: null,
- naphthaleneImport: null,
- naphthaleneExport: null,
- naphthaleneToTruck: null,
- poFluxOilYieldPercentage: null,
- poFluxOilProduced: null,
- poFluxOilInventory: null,
- poFluxOilChange: null,
- poFluxOilImport: null,
- poFluxOilExport: null,
- poFluxOilToBd: null,
- offgasYieldPercentage: null,
- offgasProduced: null,
- offgasInventory: null,
- offgasChange: null,
- offgasImport: null,
- offgasExport: null,
- offgasToFurnance: null,
- offgasToYbs: null,
- offgasToCEru: null,
- offgasSubInCloseU2: null,
- offgasFlareSctu: null,
- offgasToU2Nm3: null,
- offgasFlareLossT: null,
- rpgYieldPercentage: null,
- rpgProduced: null,
- rpgInventory: null,
- rpgChange: null,
- rpgImport: null,
- rpgExport: null,
- rpgToPgu: null,
- rpgFrYfcc: null,
- methaneYieldPercentage: null,
- methaneProduced: null,
- methaneToEoEg: null,
- residueOilYieldPercentage: null,
- residueOilProduced: null,
- totalInput: null,
- totalOutput: null,
- totalLoss: null,
- lossPercentage: null,
- totalFurnanceFeed: null,
- napFrCltf: null,
- totalPE: null,
- plantModeIs: null,
- plantLoad3495tD: null,
- avgFurnanceFeedTH: null,
- feedingRatioPercentage: null,
- hhpToe: null,
- hhpTce: null,
- hhpPre: null,
- hhpCracker: null,
- hhpCrackerTT: null,
- hhpCrackerKgoe: null,
- hhpCrackerKgce: null,
- hhpPguAeu: null,
- hhpPguAeuTT: null,
- hhpPguAeuKgoe: null,
- hhpPguAeuKgce: null,
- hhpSctuFlare: null,
- hhpSub: null,
- hhpBcc: null,
- ngToe: null,
- ngTce: null,
- ngPre: null,
- ngCracker: null,
- ngCrackerTT: null,
- ngCrackerKgoe: null,
- ngCrackerKgce: null,
- ngPguAeu: null,
- ngPguAeuTT: null,
- ngPguAeuKgoe: null,
- ngPguAeuKgce: null,
- ngSctuFlare: null,
- ngSub: null,
- ngBcc: null,
- fuelGasOffgasToe: null,
- fuelGasOffgasTce: null,
- fuelGasOffgasPre: null,
- fuelGasOffgasCracker: null,
- fuelGasOffgasCrackerTT: null,
- fuelGasOffgasCrackerKgoe: null,
- fuelGasOffgasCrackerKgce: null,
- fuelGasOffgasPguAeu: null,
- fuelGasOffgasPguAeuTT: null,
- fuelGasOffgasPguAeuKgoe: null,
- fuelGasOffgasPguAeuKgce: null,
- fuelGasOffgasSctuFlare: null,
- fuelGasOffgasSub: null,
- fuelGasOffgasBcc: null,
- shpToe: null,
- shpTce: null,
- shpPre: null,
- shpCracker: null,
- shpCrackerTT: null,
- shpCrackerKgoe: null,
- shpCrackerKgce: null,
- shpPguAeu: null,
- shpPguAeuTT: null,
- shpPguAeuKgoe: null,
- shpPguAeuKgce: null,
- shpSctuFlare: null,
- shpSub: null,
- shpBcc: null,
- hpToe: null,
- hpTce: null,
- hpPre: null,
- hpCracker: null,
- hpCrackerTT: null,
- hpCrackerKgoe: null,
- hpCrackerKgce: null,
- hpPguAeu: null,
- hpPguAeuTT: null,
- hpPguAeuKgoe: null,
- hpPguAeuKgce: null,
- hpSctuFlare: null,
- hpSub: null,
- hpBcc: null,
- mpToe: null,
- mpTce: null,
- mpPre: null,
- mpCracker: null,
- mpCrackerTT: null,
- mpCrackerKgoe: null,
- mpCrackerKgce: null,
- mpPguAeu: null,
- mpPguAeuTT: null,
- mpPguAeuKgoe: null,
- mpPguAeuKgce: null,
- mpSctuFlare: null,
- mpSub: null,
- mpBcc: null,
- lpToe: null,
- lpTce: null,
- lpPre: null,
- lpCracker: null,
- lpCrackerTT: null,
- lpCrackerKgoe: null,
- lpCrackerKgce: null,
- lpPguAeu: null,
- lpPguAeuTT: null,
- lpPguAeuKgoe: null,
- lpPguAeuKgce: null,
- lpSctuFlare: null,
- lpSub: null,
- lpBcc: null,
- electricityToe: null,
- electricityTce: null,
- electricityPre: null,
- electricityCracker: null,
- electricityCrackerTT: null,
- electricityCrackerKgoe: null,
- electricityCrackerKgce: null,
- electricityPguAeu: null,
- electricityPguAeuTT: null,
- electricityPguAeuKgoe: null,
- electricityPguAeuKgce: null,
- electricitySctuFlare: null,
- electricitySub: null,
- electricityBcc: null,
- coolingWaterToe: null,
- coolingWaterTce: null,
- coolingWaterPre: null,
- coolingWaterCracker: null,
- coolingWaterCrackerTT: null,
- coolingWaterCrackerKgoe: null,
- coolingWaterCrackerKgce: null,
- coolingWaterPguAeu: null,
- coolingWaterPguAeuTT: null,
- coolingWaterPguAeuKgoe: null,
- coolingWaterPguAeuKgce: null,
- coolingWaterSctuFlare: null,
- coolingWaterSub: null,
- coolingWaterBcc: null,
- polishedConToe: null,
- polishedConTce: null,
- polishedConPre: null,
- polishedConCracker: null,
- polishedConCrackerTT: null,
- polishedConCrackerKgoe: null,
- polishedConCrackerKgce: null,
- polishedConPguAeu: null,
- polishedConPguAeuTT: null,
- polishedConPguAeuKgoe: null,
- polishedConPguAeuKgce: null,
- polishedConSctuFlare: null,
- polishedConSub: null,
- polishedConBcc: null,
- hpBfwToe: null,
- hpBfwTce: null,
- hpBfwPre: null,
- hpBfwCracker: null,
- hpBfwCrackerTT: null,
- hpBfwCrackerKgoe: null,
- hpBfwCrackerKgce: null,
- hpBfwPguAeu: null,
- hpBfwPguAeuTT: null,
- hpBfwPguAeuKgoe: null,
- hpBfwPguAeuKgce: null,
- hpBfwSctuFlare: null,
- hpBfwSub: null,
- hpBfwBcc: null,
- prodWaterToe: null,
- prodWaterTce: null,
- prodWaterPre: null,
- prodWaterCracker: null,
- prodWaterCrackerTT: null,
- prodWaterCrackerKgoe: null,
- prodWaterCrackerKgce: null,
- prodWaterPguAeu: null,
- prodWaterPguAeuTT: null,
- prodWaterPguAeuKgoe: null,
- prodWaterPguAeuKgce: null,
- prodWaterSctuFlare: null,
- prodWaterSub: null,
- prodWaterBcc: null,
- turbineConToe: null,
- turbineConTce: null,
- turbineConPre: null,
- turbineConCracker: null,
- turbineConCrackerTT: null,
- turbineConCrackerKgoe: null,
- turbineConCrackerKgce: null,
- turbineConPguAeu: null,
- turbineConPguAeuTT: null,
- turbineConPguAeuKgoe: null,
- turbineConPguAeuKgce: null,
- turbineConSctuFlare: null,
- turbineConSub: null,
- turbineConBcc: null,
- paIaToe: null,
- paIaTce: null,
- paIaPre: null,
- paIaCracker: null,
- paIaCrackerTT: null,
- paIaCrackerKgoe: null,
- paIaCrackerKgce: null,
- paIaPguAeu: null,
- paIaPguAeuTT: null,
- paIaPguAeuKgoe: null,
- paIaPguAeuKgce: null,
- paIaSctuFlare: null,
- paIaSub: null,
- paIaBcc: null,
- n2Toe: null,
- n2Tce: null,
- n2Pre: null,
- n2Cracker: null,
- n2CrackerTT: null,
- n2CrackerKgoe: null,
- n2CrackerKgce: null,
- n2PguAeu: null,
- n2PguAeuTT: null,
- n2PguAeuKgoe: null,
- n2PguAeuKgce: null,
- n2SctuFlare: null,
- n2Sub: null,
- n2Bcc: null,
- totalToe: null,
- totalTce: null,
- totalPre: null,
- totalCracker: null,
- totalCrackerTT: null,
- totalCrackerKgoe: null,
- totalCrackerKgce: null,
- totalPguAeu: null,
- totalPguAeuTT: null,
- totalPguAeuKgoe: null,
- totalPguAeuKgce: null,
- targetToe: null,
- targetTce: null,
- targetPre: null,
- targetCracker: null,
- targetCrackerTT: null,
- targetCrackerKgoe: null,
- targetCrackerKgce: null,
- targetPguAeu: null,
- targetPguAeuTT: null,
- targetPguAeuKgoe: null,
- targetPguAeuKgce: null,
- producedToe: null,
- producedTce: null,
- producedPre: null,
- producedCracker: null,
- producedCrackerTT: null,
- producedCrackerKgoe: null,
- producedCrackerKgce: null,
- producedPguAeu: null,
- producedPguAeuTT: null,
- producedPguAeuKgoe: null,
- producedPguAeuKgce: null,
- frEoEg: null,
- loadPercentage: null,
- hsProducet: null,
- sctfStorageTotalC2: null,
- sctfStorageTk1061: null,
- sctfStorageTk1062: null,
- sctfStorageTk1063: null,
- sctfStorageTk1064: null,
- sctfStorageTk1065Off: null,
- sctfStorageTotalC3: null,
- sctfStorageTk1011: null,
- sctfStorageTk1012: null,
- sctfStorageTk1013: null,
- sctfStorageTk1014: null,
- sctfStorageTk1040Off: null,
- sctfStorageTk1020Lpg: null,
- sctfStorageTk1111C4s: null,
- sctfStorageTk1520Rpg: null,
- sctfStorageTk1350Po: null,
- sctfStorageTk1310Btx: null,
- sctfStorageTk1330Ebo: null,
- sctfStorageTk1430Lfo: null,
- sctfStorageTk1320OffBtx: null,
- sctfStorageT201Btx: null,
- sctfStorageTk1340C9: null,
- sctfStorageClt1350C9: null,
- sctfStorageTk1160Nh3: null,
- sctfStorageTk1510B: null,
- sctfStorageClt1370B: null,
- sctfStorageTk1360T: null,
- sctfStorageTk1410X: null,
- sctfStorageClt1380X: null,
- sctfStorageTk1420Dimer: null,
- sctfStorageTk1110R1: null,
- sctfStorageTk1130Ib: null,
- sctfStorageTk1150R3: null,
- sctfStorageTk1140Bd: null,
- sctfStorageTk1141Bd: null,
- sctfStorageTk1142Bd: null,
- sctfStorageTotalNap: null,
- sctfStorageCltf1621: null,
- sctfStorageCltf1622: null,
- sctfStorageCltf1623: null,
- pguToRpg: null,
- rpgToPgu2: null,
- pguRpgTH: null,
- pguRpg1: null,
- pguRpg2: null,
- pguH2: null,
- pguTotalFeed: null,
- pguOutput: null,
- pguTotalLoss: null,
- pguLossPercentage: null,
- pguFeedLoadPercentage: null,
- pguToAeu: null,
- aeuToPgu: null,
- pguAeuTH: null,
- pguBtxYeildPercentage: null,
- pguBtxProduced: null,
- pguBtxInventory: null,
- pguBtxChange: null,
- pguBtxExport: null,
- pguBtxToAeu: null,
- pguWashoilYeildPercentage: null,
- pguWashoilProduced: null,
- pguWashoilInventory: null,
- pguWashoilChange: null,
- pguWashoilExport: null,
- pguWashoilToEu: null,
- pguOffgasYeildPercentage: null,
- pguOffgasProduced: null,
- pguOffgasInventory: null,
- pguOffgasChange: null,
- pguOffgasExport: null,
- pguOffgasToEu: null,
- pguC5YeildPercentage: null,
- pguC5Produced: null,
- pguC5Inventory: null,
- pguC5Change: null,
- pguC5Export: null,
- pguC5ToAeu: null,
- pguC5ToEu: null,
- pguC5ToYuanguan: null,
- pguC9YeildPercentage: null,
- pguC9Produced: null,
- pguC9Inventory: null,
- pguC9Change: null,
- pguC9Export: null,
- pguC9ToAeu: null,
- pguC9ToRttf: null,
- pguC9ToShip: null,
- pguC9ToYfcc: null,
- aeuBenzeneYeildPercentage: null,
- aeuBenzeneProduced: null,
- aeuBenzeneInventory: null,
- aeuBenzeneChange: null,
- aeuBenzeneToShip: null,
- aeuBenzeneFrShip: null,
- aeuBenzeneToYbs: null,
- aeuBenzeneToRttf: null,
- aeuBenzeneToTrain: null,
- aeuTolueneYeildPercentage: null,
- aeuTolueneProduced: null,
- aeuTolueneInventory: null,
- aeuTolueneChange: null,
- aeuTolueneToShip: null,
- aeuTolueneFrShip: null,
- aeuTolueneToYpc: null,
- aeuTolueneFrYpc: null,
- aeuTolueneToRttf: null,
- aeuTolueneFrYbs: null,
- aeuTolueneToEu: null,
- aeuXyleneYeildPercentage: null,
- aeuXyleneProduced: null,
- aeuXyleneInventory: null,
- aeuXyleneChange: null,
- aeuXyleneToShip: null,
- aeuXyleneFrShip: null,
- aeuXyleneToYpc: null,
- aeuXyleneFrYpc: null,
- aeuXyleneToRttf: null,
- aeuC6C8NaYeildPercentage: null,
- aeuC6C8NaProduced: null,
- aeuC6C8NaInventory: null,
- aeuC6C8NaChange: null,
- aeuC6C8NaToEu: null,
- aeuC6C8NaToYpc: null,
- aeuTotalFeed: null,
- aeuOutput: null,
- aeuTotalLoss: null,
- aeuLossPercentage: null,
- aeuFeedLoadPercentage: null,
- pguAeuTotalFeed: null,
- pguAeuOutput: null,
- pguAeuTotalLoss: null,
- pguAeuLossPercentage: null,
- pguAeuFeedLoadPercentage: null
- },
- // 日期保留
- lastSelectedDate: null
- };
- },
- watch: {
- // 根据名称筛选部门树
- deptName(val) {
- this.$refs.tree.filter(val);
- }
- },
- created() {
- //设置表格高度对应屏幕高度
- this.$nextTick(() => {
- this.clientHeight = document.body.clientHeight -250
- })
- this.setDateAsToday();
- this.getReport();
- this.getTreeselect();
- this.loading = false;
- },
- methods: {
- /** 设置日期 */
- setDateAsToday() {
- let today = new Date();
- let todayString = today.getFullYear()
- + "-" + (today.getMonth() + 1)
- + "-" + today.getDate();
- // this.queryParams.reportDate = todayString;
- // this.lastSelectedDate = todayString;
- this.queryParams.reportDate = "2022-8-8";
- this.lastSelectedDate = "2022-8-8";
- },
- /** 查询生产报告 */
- getReport() {
- this.loading = true;
- listReport(this.queryParams).then(response => {
- if (response.rows.length != 0) {
- this.lastSelectedDate = this.queryParams.reportDate;
- this.reportData = response.rows[0];
- this.loading = false;
- } else {
- let str = "未查询到" + this.queryParams.reportDate + "的日报,请修改搜索日期或手动导入数据。";
- this.queryParams.reportDate = this.lastSelectedDate;
- this.$message.error(str);
- this.loading = false;
- }
- });
- },
- /** 查询每日生产报告列表 */
- getList() {
- this.loading = true;
- listReport(this.queryParams).then(response => {
- this.reportList = response.rows;
- this.total = response.total;
- this.loading = false;
- });
- },
- /** 查询部门下拉树结构 */
- getTreeselect() {
- treeselect().then(response => {
- this.deptOptions = response.data;
- });
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.reset();
- },
- // 表单重置
- reset() {
- this.form = {
- id: null,
- fromDate: null,
- toDate: null,
- reportDate: null,
- reportCode: null,
- nap: null,
- c5: null,
- c6C8Na: null,
- wisonEthane: null,
- lpgToFurnace: null,
- raff1FrBd: null,
- raff2FrIb: null,
- raff3FrBd: null,
- raffinate2pFr2ph: null,
- c2FrLdpe: null,
- c3FrOxo: null,
- mixedC3C4: null,
- hyC9: null,
- pguOffgas: null,
- washOil: null,
- toluene: null,
- hyC4FrR800: null,
- h2YieldPercentage: null,
- h2Produced: null,
- h2Inventory: null,
- h2Change: null,
- h2Import: null,
- h2Export: null,
- h2ToPgu: null,
- h2ToYpc: null,
- h2ToOxo: null,
- h2FrSyngasToSub: null,
- ethylenYieldPercentage: null,
- ethylenProduced: null,
- ethylenInventory: null,
- ethylenChange: null,
- ethylenImport: null,
- ethylenExport: null,
- ethylenToTm: null,
- ethylenToTs: null,
- ethylenToEoEg: null,
- ethylenToOxo: null,
- ethylenToYbs: null,
- ethylenToYpc: null,
- ethylenToWacker: null,
- ethylenToDyna: null,
- ethylenToCelanLongx: null,
- ethylenFrYpc: null,
- ethylenFrLongxiang: null,
- propyleneYieldPercentage: null,
- propyleneProduced: null,
- propyleneInventory: null,
- propyleneChange: null,
- propyleneImport: null,
- propyleneExport: null,
- propyleneToAaAe: null,
- propyleneToGaa: null,
- propyleneToOxo: null,
- propyleneToLdpe: null,
- propyleneToYpc: null,
- propyleneToRoad: null,
- propyleneToShip: null,
- propyleneFrYpc: null,
- propyleneFrShip: null,
- propyleneFrChengzhi: null,
- c3LpgYieldPercentage: null,
- c4LpgYieldPercentage: null,
- c3LpgProduced: null,
- c4LpgProduced: null,
- c3C4Inventory: null,
- c3C4Change: null,
- c3C4Import: null,
- c3C4Export: null,
- c3C4ToSub: null,
- c3C4ToFurAsFule: null,
- c3C4AsFeed: null,
- c3C4FrYpc: null,
- c3C4FrTruck: null,
- mixedC4sYieldPercentage: null,
- mixedC4sProduced: null,
- mixedC4sInventory: null,
- mixedC4sChange: null,
- mixedC4sImport: null,
- mixedC4sExport: null,
- mixedC4sToBd: null,
- mixedC4sToYpc: null,
- mixedC4sToTruck: null,
- mixedC4sToShip: null,
- mixedC4sFrYpc: null,
- mixedC4sFrTruck: null,
- mixedC4sFrShip: null,
- mixedC4sFrBdR1: null,
- mixedC4sToR800: null,
- eboYieldPercentage: null,
- eboProduced: null,
- eboInventory: null,
- eboChange: null,
- eboImport: null,
- eboExport: null,
- eboToShip: null,
- eboToRttf: null,
- eboToTrain: null,
- eboFrBd: null,
- naphthaleneYieldPercentage: null,
- naphthaleneProduced: null,
- naphthaleneInventory: null,
- naphthaleneChange: null,
- naphthaleneImport: null,
- naphthaleneExport: null,
- naphthaleneToTruck: null,
- poFluxOilYieldPercentage: null,
- poFluxOilProduced: null,
- poFluxOilInventory: null,
- poFluxOilChange: null,
- poFluxOilImport: null,
- poFluxOilExport: null,
- poFluxOilToBd: null,
- offgasYieldPercentage: null,
- offgasProduced: null,
- offgasInventory: null,
- offgasChange: null,
- offgasImport: null,
- offgasExport: null,
- offgasToFurnance: null,
- offgasToYbs: null,
- offgasToCEru: null,
- offgasSubInCloseU2: null,
- offgasFlareSctu: null,
- offgasToU2Nm3: null,
- offgasFlareLossT: null,
- rpgYieldPercentage: null,
- rpgProduced: null,
- rpgInventory: null,
- rpgChange: null,
- rpgImport: null,
- rpgExport: null,
- rpgToPgu: null,
- rpgFrYfcc: null,
- methaneYieldPercentage: null,
- methaneProduced: null,
- methaneToEoEg: null,
- residueOilYieldPercentage: null,
- residueOilProduced: null,
- totalInput: null,
- totalOutput: null,
- totalLoss: null,
- lossPercentage: null,
- totalFurnanceFeed: null,
- napFrCltf: null,
- totalPE: null,
- plantModeIs: null,
- plantLoad3495tD: null,
- avgFurnanceFeedTH: null,
- feedingRatioPercentage: null,
- hhpToe: null,
- hhpTce: null,
- hhpPre: null,
- hhpCracker: null,
- hhpCrackerTT: null,
- hhpCrackerKgoe: null,
- hhpCrackerKgce: null,
- hhpPguAeu: null,
- hhpPguAeuTT: null,
- hhpPguAeuKgoe: null,
- hhpPguAeuKgce: null,
- hhpSctuFlare: null,
- hhpSub: null,
- hhpBcc: null,
- ngToe: null,
- ngTce: null,
- ngPre: null,
- ngCracker: null,
- ngCrackerTT: null,
- ngCrackerKgoe: null,
- ngCrackerKgce: null,
- ngPguAeu: null,
- ngPguAeuTT: null,
- ngPguAeuKgoe: null,
- ngPguAeuKgce: null,
- ngSctuFlare: null,
- ngSub: null,
- ngBcc: null,
- fuelGasOffgasToe: null,
- fuelGasOffgasTce: null,
- fuelGasOffgasPre: null,
- fuelGasOffgasCracker: null,
- fuelGasOffgasCrackerTT: null,
- fuelGasOffgasCrackerKgoe: null,
- fuelGasOffgasCrackerKgce: null,
- fuelGasOffgasPguAeu: null,
- fuelGasOffgasPguAeuTT: null,
- fuelGasOffgasPguAeuKgoe: null,
- fuelGasOffgasPguAeuKgce: null,
- fuelGasOffgasSctuFlare: null,
- fuelGasOffgasSub: null,
- fuelGasOffgasBcc: null,
- shpToe: null,
- shpTce: null,
- shpPre: null,
- shpCracker: null,
- shpCrackerTT: null,
- shpCrackerKgoe: null,
- shpCrackerKgce: null,
- shpPguAeu: null,
- shpPguAeuTT: null,
- shpPguAeuKgoe: null,
- shpPguAeuKgce: null,
- shpSctuFlare: null,
- shpSub: null,
- shpBcc: null,
- hpToe: null,
- hpTce: null,
- hpPre: null,
- hpCracker: null,
- hpCrackerTT: null,
- hpCrackerKgoe: null,
- hpCrackerKgce: null,
- hpPguAeu: null,
- hpPguAeuTT: null,
- hpPguAeuKgoe: null,
- hpPguAeuKgce: null,
- hpSctuFlare: null,
- hpSub: null,
- hpBcc: null,
- mpToe: null,
- mpTce: null,
- mpPre: null,
- mpCracker: null,
- mpCrackerTT: null,
- mpCrackerKgoe: null,
- mpCrackerKgce: null,
- mpPguAeu: null,
- mpPguAeuTT: null,
- mpPguAeuKgoe: null,
- mpPguAeuKgce: null,
- mpSctuFlare: null,
- mpSub: null,
- mpBcc: null,
- lpToe: null,
- lpTce: null,
- lpPre: null,
- lpCracker: null,
- lpCrackerTT: null,
- lpCrackerKgoe: null,
- lpCrackerKgce: null,
- lpPguAeu: null,
- lpPguAeuTT: null,
- lpPguAeuKgoe: null,
- lpPguAeuKgce: null,
- lpSctuFlare: null,
- lpSub: null,
- lpBcc: null,
- electricityToe: null,
- electricityTce: null,
- electricityPre: null,
- electricityCracker: null,
- electricityCrackerTT: null,
- electricityCrackerKgoe: null,
- electricityCrackerKgce: null,
- electricityPguAeu: null,
- electricityPguAeuTT: null,
- electricityPguAeuKgoe: null,
- electricityPguAeuKgce: null,
- electricitySctuFlare: null,
- electricitySub: null,
- electricityBcc: null,
- coolingWaterToe: null,
- coolingWaterTce: null,
- coolingWaterPre: null,
- coolingWaterCracker: null,
- coolingWaterCrackerTT: null,
- coolingWaterCrackerKgoe: null,
- coolingWaterCrackerKgce: null,
- coolingWaterPguAeu: null,
- coolingWaterPguAeuTT: null,
- coolingWaterPguAeuKgoe: null,
- coolingWaterPguAeuKgce: null,
- coolingWaterSctuFlare: null,
- coolingWaterSub: null,
- coolingWaterBcc: null,
- polishedConToe: null,
- polishedConTce: null,
- polishedConPre: null,
- polishedConCracker: null,
- polishedConCrackerTT: null,
- polishedConCrackerKgoe: null,
- polishedConCrackerKgce: null,
- polishedConPguAeu: null,
- polishedConPguAeuTT: null,
- polishedConPguAeuKgoe: null,
- polishedConPguAeuKgce: null,
- polishedConSctuFlare: null,
- polishedConSub: null,
- polishedConBcc: null,
- hpBfwToe: null,
- hpBfwTce: null,
- hpBfwPre: null,
- hpBfwCracker: null,
- hpBfwCrackerTT: null,
- hpBfwCrackerKgoe: null,
- hpBfwCrackerKgce: null,
- hpBfwPguAeu: null,
- hpBfwPguAeuTT: null,
- hpBfwPguAeuKgoe: null,
- hpBfwPguAeuKgce: null,
- hpBfwSctuFlare: null,
- hpBfwSub: null,
- hpBfwBcc: null,
- prodWaterToe: null,
- prodWaterTce: null,
- prodWaterPre: null,
- prodWaterCracker: null,
- prodWaterCrackerTT: null,
- prodWaterCrackerKgoe: null,
- prodWaterCrackerKgce: null,
- prodWaterPguAeu: null,
- prodWaterPguAeuTT: null,
- prodWaterPguAeuKgoe: null,
- prodWaterPguAeuKgce: null,
- prodWaterSctuFlare: null,
- prodWaterSub: null,
- prodWaterBcc: null,
- turbineConToe: null,
- turbineConTce: null,
- turbineConPre: null,
- turbineConCracker: null,
- turbineConCrackerTT: null,
- turbineConCrackerKgoe: null,
- turbineConCrackerKgce: null,
- turbineConPguAeu: null,
- turbineConPguAeuTT: null,
- turbineConPguAeuKgoe: null,
- turbineConPguAeuKgce: null,
- turbineConSctuFlare: null,
- turbineConSub: null,
- turbineConBcc: null,
- paIaToe: null,
- paIaTce: null,
- paIaPre: null,
- paIaCracker: null,
- paIaCrackerTT: null,
- paIaCrackerKgoe: null,
- paIaCrackerKgce: null,
- paIaPguAeu: null,
- paIaPguAeuTT: null,
- paIaPguAeuKgoe: null,
- paIaPguAeuKgce: null,
- paIaSctuFlare: null,
- paIaSub: null,
- paIaBcc: null,
- n2Toe: null,
- n2Tce: null,
- n2Pre: null,
- n2Cracker: null,
- n2CrackerTT: null,
- n2CrackerKgoe: null,
- n2CrackerKgce: null,
- n2PguAeu: null,
- n2PguAeuTT: null,
- n2PguAeuKgoe: null,
- n2PguAeuKgce: null,
- n2SctuFlare: null,
- n2Sub: null,
- n2Bcc: null,
- totalToe: null,
- totalTce: null,
- totalPre: null,
- totalCracker: null,
- totalCrackerTT: null,
- totalCrackerKgoe: null,
- totalCrackerKgce: null,
- totalPguAeu: null,
- totalPguAeuTT: null,
- totalPguAeuKgoe: null,
- totalPguAeuKgce: null,
- targetToe: null,
- targetTce: null,
- targetPre: null,
- targetCracker: null,
- targetCrackerTT: null,
- targetCrackerKgoe: null,
- targetCrackerKgce: null,
- targetPguAeu: null,
- targetPguAeuTT: null,
- targetPguAeuKgoe: null,
- targetPguAeuKgce: null,
- producedToe: null,
- producedTce: null,
- producedPre: null,
- producedCracker: null,
- producedCrackerTT: null,
- producedCrackerKgoe: null,
- producedCrackerKgce: null,
- producedPguAeu: null,
- producedPguAeuTT: null,
- producedPguAeuKgoe: null,
- producedPguAeuKgce: null,
- frEoEg: null,
- loadPercentage: null,
- hsProducet: null,
- sctfStorageTotalC2: null,
- sctfStorageTk1061: null,
- sctfStorageTk1062: null,
- sctfStorageTk1063: null,
- sctfStorageTk1064: null,
- sctfStorageTk1065Off: null,
- sctfStorageTotalC3: null,
- sctfStorageTk1011: null,
- sctfStorageTk1012: null,
- sctfStorageTk1013: null,
- sctfStorageTk1014: null,
- sctfStorageTk1040Off: null,
- sctfStorageTk1020Lpg: null,
- sctfStorageTk1111C4s: null,
- sctfStorageTk1520Rpg: null,
- sctfStorageTk1350Po: null,
- sctfStorageTk1310Btx: null,
- sctfStorageTk1330Ebo: null,
- sctfStorageTk1430Lfo: null,
- sctfStorageTk1320OffBtx: null,
- sctfStorageT201Btx: null,
- sctfStorageTk1340C9: null,
- sctfStorageClt1350C9: null,
- sctfStorageTk1160Nh3: null,
- sctfStorageTk1510B: null,
- sctfStorageClt1370B: null,
- sctfStorageTk1360T: null,
- sctfStorageTk1410X: null,
- sctfStorageClt1380X: null,
- sctfStorageTk1420Dimer: null,
- sctfStorageTk1110R1: null,
- sctfStorageTk1130Ib: null,
- sctfStorageTk1150R3: null,
- sctfStorageTk1140Bd: null,
- sctfStorageTk1141Bd: null,
- sctfStorageTk1142Bd: null,
- sctfStorageTotalNap: null,
- sctfStorageCltf1621: null,
- sctfStorageCltf1622: null,
- sctfStorageCltf1623: null,
- pguToRpg: null,
- rpgToPgu2: null,
- pguRpgTH: null,
- pguRpg1: null,
- pguRpg2: null,
- pguH2: null,
- pguTotalFeed: null,
- pguOutput: null,
- pguTotalLoss: null,
- pguLossPercentage: null,
- pguFeedLoadPercentage: null,
- pguToAeu: null,
- aeuToPgu: null,
- pguAeuTH: null,
- pguBtxYeildPercentage: null,
- pguBtxProduced: null,
- pguBtxInventory: null,
- pguBtxChange: null,
- pguBtxExport: null,
- pguBtxToAeu: null,
- pguWashoilYeildPercentage: null,
- pguWashoilProduced: null,
- pguWashoilInventory: null,
- pguWashoilChange: null,
- pguWashoilExport: null,
- pguWashoilToEu: null,
- pguOffgasYeildPercentage: null,
- pguOffgasProduced: null,
- pguOffgasInventory: null,
- pguOffgasChange: null,
- pguOffgasExport: null,
- pguOffgasToEu: null,
- pguC5YeildPercentage: null,
- pguC5Produced: null,
- pguC5Inventory: null,
- pguC5Change: null,
- pguC5Export: null,
- pguC5ToAeu: null,
- pguC5ToEu: null,
- pguC5ToYuanguan: null,
- pguC9YeildPercentage: null,
- pguC9Produced: null,
- pguC9Inventory: null,
- pguC9Change: null,
- pguC9Export: null,
- pguC9ToAeu: null,
- pguC9ToRttf: null,
- pguC9ToShip: null,
- pguC9ToYfcc: null,
- aeuBenzeneYeildPercentage: null,
- aeuBenzeneProduced: null,
- aeuBenzeneInventory: null,
- aeuBenzeneChange: null,
- aeuBenzeneToShip: null,
- aeuBenzeneFrShip: null,
- aeuBenzeneToYbs: null,
- aeuBenzeneToRttf: null,
- aeuBenzeneToTrain: null,
- aeuTolueneYeildPercentage: null,
- aeuTolueneProduced: null,
- aeuTolueneInventory: null,
- aeuTolueneChange: null,
- aeuTolueneToShip: null,
- aeuTolueneFrShip: null,
- aeuTolueneToYpc: null,
- aeuTolueneFrYpc: null,
- aeuTolueneToRttf: null,
- aeuTolueneFrYbs: null,
- aeuTolueneToEu: null,
- aeuXyleneYeildPercentage: null,
- aeuXyleneProduced: null,
- aeuXyleneInventory: null,
- aeuXyleneChange: null,
- aeuXyleneToShip: null,
- aeuXyleneFrShip: null,
- aeuXyleneToYpc: null,
- aeuXyleneFrYpc: null,
- aeuXyleneToRttf: null,
- aeuC6C8NaYeildPercentage: null,
- aeuC6C8NaProduced: null,
- aeuC6C8NaInventory: null,
- aeuC6C8NaChange: null,
- aeuC6C8NaToEu: null,
- aeuC6C8NaToYpc: null,
- aeuTotalFeed: null,
- aeuOutput: null,
- aeuTotalLoss: null,
- aeuLossPercentage: null,
- aeuFeedLoadPercentage: null,
- pguAeuTotalFeed: null,
- pguAeuOutput: null,
- pguAeuTotalLoss: null,
- pguAeuLossPercentage: null,
- pguAeuFeedLoadPercentage: null
- };
- this.resetForm("form");
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.getReport();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.resetForm("queryForm");
- this.handleQuery();
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map(item => item.id)
- this.single = selection.length!==1
- this.multiple = !selection.length
- },
- /** 新增按钮操作 */
- handleAdd() {
- this.reset();
- this.open = true;
- this.title = "添加每日生产报告";
- },
- /** 修改按钮操作 */
- handleUpdate(row) {
- this.reset();
- const id = row.id || this.ids
- getReport(id).then(response => {
- this.form = response.data;
- this.open = true;
- this.title = "修改每日生产报告";
- });
- },
- /** 提交按钮 */
- submitForm() {
- this.$refs["form"].validate(valid => {
- if (valid) {
- if (this.form.id != null) {
- updateReport(this.form).then(response => {
- this.msgSuccess("修改成功");
- this.open = false;
- this.getList();
- });
- } else {
- addReport(this.form).then(response => {
- this.msgSuccess("新增成功");
- this.open = false;
- this.getList();
- });
- }
- }
- });
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- const ids = row.id || this.ids;
- this.$confirm('是否确认删除?', "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(function() {
- return delReport(ids);
- }).then(() => {
- this.getList();
- this.msgSuccess("删除成功");
- })
- },
- /** 导出按钮操作 */
- handleExport() {
- const queryParams = this.queryParams;
- this.$confirm('是否确认导出所有每日生产报告数据项?', "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(function() {
- return exportReport(queryParams);
- }).then(response => {
- this.download(response.msg);
- })
- },
- /** 导入按钮操作 */
- handleImport() {
- this.upload.title = "用户导入";
- this.upload.open = true;
- },
- /** 下载模板操作 */
- importTemplate() {
- importTemplate().then(response => {
- this.download(response.msg);
- });
- },
- // 文件上传中处理
- handleFileUploadProgress(event, file, fileList) {
- this.upload.isUploading = true;
- },
- // 文件上传成功处理
- handleFileSuccess(response, file, fileList) {
- this.upload.open = false;
- this.upload.isUploading = false;
- this.$refs.upload.clearFiles();
- this.$alert(response.msg, "导入结果", { dangerouslyUseHTMLString: true });
- this.getList();
- },
- // 提交上传文件
- submitFileForm() {
- this.$refs.upload.submit();
- }
- }
- };
- </script>
- <style scoped>
- table{
- border-width: 0px;
- border-spacing: 0px;
- }
- td{
- padding: 4px;
- white-space: nowrap;
- }
- .no-border{
- border: 0px;
- }
- .bg-yellow{
- background-color: #FFFF00;
- }
- .bg-yellow-light{
- background-color: #FCFEBA;
- }
- .bg-blue{
- background-color: #00FFFF;
- }
- .bg-blue-light{
- background-color: #CCFFFF;
- }
- .bg-blue-dark{
- background-color: #00B0F0;
- }
- .bg-blue-green-neon{
- background-color: #00FFCC;
- }
- .bg-green{
- background-color: #92D050;
- }
- .bg-green-neon{
- background-color: #00FF00;
- }
- .bg-green-blue-neon{
- background-color: #00FF99;
- }
- .bg-orange{
- background-color: #FFC000;
- }
- .bg-purple{
- background-color: #CCC0DA;
- }
- .bg-purple-light{
- background-color: #CCECFF;
- }
- .bg-grey-light{
- background-color: #EBF1DE;
- }
- .ft-red{
- color: red;
- }
- .ft-blue{
- color: blue;
- }
- </style>
|