index.vue 105 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991
  1. <template>
  2. <div class="app-container" style="overflow-x: auto;">
  3. <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
  4. <el-form-item label="报告日期" prop="reportDate">
  5. <el-date-picker clearable size="small" style="width: 200px"
  6. @change="handleQuery"
  7. v-model="queryParams.reportDate"
  8. type="date"
  9. value-format="yyyy-MM-dd"
  10. placeholder="选择报告日期">
  11. </el-date-picker>
  12. </el-form-item>
  13. <el-form-item>
  14. <el-button
  15. type="info"
  16. icon="el-icon-upload2"
  17. size="mini"
  18. @click="handleImport"
  19. v-hasPermi="['production:report:edit']"
  20. >导入</el-button>
  21. <el-button
  22. type="warning"
  23. icon="el-icon-download"
  24. size="mini"
  25. @click="handleExport"
  26. v-hasPermi="['production:report:export']"
  27. >导出</el-button>
  28. </el-form-item>
  29. </el-form>
  30. <div style="height: calc(100vh - 200px);">
  31. <table border>
  32. <tr class="bg-yellow">
  33. <td class="no-border ft-blue" colspan="10">Confidential 保密信息</td>
  34. <td class="no-border" colspan="6" style="font-size: 26px;">Cracker & Aromatics Daily Production Report</td>
  35. <td class="no-border" colspan="4"></td>
  36. <td class="no-border" colspan="2">CBP-7.5.1-SCFPP-002</td>
  37. </tr>
  38. <tr class="bg-yellow">
  39. <td class="no-border" colspan="10"></td>
  40. <td class="no-border bg-blue">{{reportData.fromDate}}</td>
  41. <td class="no-border bg-blue-green-neon">TO</td>
  42. <td class="no-border bg-blue">{{reportData.toDate}}</td>
  43. <td class="no-border">Duration</td>
  44. <td class="no-border">1</td>
  45. <td class="no-border">Days</td>
  46. <td class="no-border" colspan="5"></td>
  47. <td class="no-border">REV.06</td>
  48. </tr>
  49. <tr class="bg-yellow">
  50. <td class="no-border"></td>
  51. <td class="no-border" colspan="3">Material Balance</td>
  52. <td class="no-border" colspan="14"></td>
  53. <td class="no-border">Unit: </td>
  54. <td class="no-border">Ton</td>
  55. <td class="no-border">Date: </td>
  56. <td class="no-border bg-blue">{{reportData.reportDate}}</td>
  57. </tr>
  58. <tr>
  59. <td class="bg-blue-light">Nap</td>
  60. <td class="no-border" rowspan="35"></td>
  61. <td class="bg-green" rowspan="35">Cracker</td>
  62. <td class="no-border" rowspan="35" colspan="2"></td>
  63. <td class="bg-blue-light"></td>
  64. <td class="bg-blue-light">yield %</td>
  65. <td class="bg-blue-light">Produced</td>
  66. <td class="bg-blue-light">Inventory</td>
  67. <td class="bg-blue-light">Change</td>
  68. <td class="bg-blue-light">Import</td>
  69. <td class="bg-blue-light">Export</td>
  70. </tr>
  71. <tr>
  72. <td class="bg-yellow-light">{{reportData.nap}}</td>
  73. <td class="bg-blue-light" rowspan="2">H2</td>
  74. <td class="bg-yellow-light" rowspan="2">{{reportData.h2YieldPercentage}}</td>
  75. <td class="bg-yellow-light" rowspan="2">{{reportData.h2Produced}}</td>
  76. <td class="bg-yellow-light" rowspan="2">{{reportData.h2Inventory}}</td>
  77. <td class="bg-yellow-light" rowspan="2">{{reportData.h2Change}}</td>
  78. <td class="bg-yellow-light" rowspan="2">{{reportData.h2Import}}</td>
  79. <td class="bg-yellow-light" rowspan="2">{{reportData.h2Export}}</td>
  80. <td class="bg-blue-light">To PGU</td>
  81. <td class="bg-blue-light">To YPC</td>
  82. <td class="bg-blue-light">To OXO</td>
  83. <td class="bg-blue-light">Fr Syngas to SUB</td>
  84. </tr>
  85. <tr>
  86. <td class="bg-blue-light">C5</td>
  87. <td class="bg-yellow-light">{{reportData.h2ToPgu}}</td>
  88. <td class="bg-yellow-light">{{reportData.h2ToYpc}}</td>
  89. <td class="bg-yellow-light">{{reportData.h2ToOxo}}</td>
  90. <td class="bg-yellow-light">{{reportData.h2FrSyngasToSub}}</td>
  91. </tr>
  92. <tr>
  93. <td class="bg-yellow-light">{{reportData.c5}}</td>
  94. <td class="bg-blue-light" rowspan="2">ETHYLEN</td>
  95. <td class="bg-yellow-light" rowspan="2">{{reportData.ethylenYieldPercentage}}</td>
  96. <td class="bg-yellow-light" rowspan="2">{{reportData.ethylenProduced}}</td>
  97. <td class="bg-yellow-light" rowspan="2">{{reportData.ethylenInventory}}</td>
  98. <td class="bg-yellow-light" rowspan="2">{{reportData.ethylenChange}}</td>
  99. <td class="bg-yellow-light" rowspan="2">{{reportData.ethylenImport}}</td>
  100. <td class="bg-yellow-light" rowspan="2">{{reportData.ethylenExport}}</td>
  101. <td class="bg-blue-light">To TM</td>
  102. <td class="bg-blue-light">To TS</td>
  103. <td class="bg-blue-light">To EO/EG</td>
  104. <td class="bg-blue-light">To OXO</td>
  105. <td class="bg-blue-light">To YBS</td>
  106. <td class="bg-blue-light">To YPC</td>
  107. <td class="bg-blue-light">To Wacker</td>
  108. <td class="bg-blue-light">To Dyna</td>
  109. <td class="bg-blue-light">To Celan./longx.</td>
  110. <td class="bg-blue-light">Fr YPC</td>
  111. <td class="bg-blue-light">Fr Longxiang</td>
  112. </tr>
  113. <tr>
  114. <td class="bg-blue-light">C6-C8-NA</td>
  115. <td class="bg-yellow-light">{{reportData.ethylenToTm}}</td>
  116. <td class="bg-yellow-light">{{reportData.ethylenToTs}}</td>
  117. <td class="bg-yellow-light">{{reportData.ethylenToEoEg}}</td>
  118. <td class="bg-yellow-light">{{reportData.ethylenToOxo}}</td>
  119. <td class="bg-yellow-light">{{reportData.ethylenToYbs}}</td>
  120. <td class="bg-yellow-light">{{reportData.ethylenToYpc}}</td>
  121. <td class="bg-yellow-light">{{reportData.ethylenToWacker}}</td>
  122. <td class="bg-yellow-light">{{reportData.ethylenToDyna}}</td>
  123. <td class="bg-yellow-light">{{reportData.ethylenToCelanLongx}}</td>
  124. <td class="bg-yellow-light">{{reportData.ethylenFrYpc}}</td>
  125. <td class="bg-yellow-light">{{reportData.ethylenFrLongxiang}}</td>
  126. </tr>
  127. <tr>
  128. <td class="bg-yellow-light">{{reportData.c6C8Na}}</td>
  129. <td class="bg-blue-light" rowspan="2">Propylene</td>
  130. <td class="bg-yellow-light" rowspan="2">{{reportData.propyleneYieldPercentage}}</td>
  131. <td class="bg-yellow-light" rowspan="2">{{reportData.propyleneProduced}}</td>
  132. <td class="bg-yellow-light" rowspan="2">{{reportData.propyleneInventory}}</td>
  133. <td class="bg-yellow-light" rowspan="2">{{reportData.propyleneChange}}</td>
  134. <td class="bg-yellow-light" rowspan="2">{{reportData.propyleneImport}}</td>
  135. <td class="bg-yellow-light" rowspan="2">{{reportData.propyleneExport}}</td>
  136. <td class="bg-blue-light">To AA/AE</td>
  137. <td class="bg-blue-light">To GAA</td>
  138. <td class="bg-blue-light">To OXO</td>
  139. <td class="bg-blue-light">To LDPE</td>
  140. <td class="bg-blue-light">To YPC</td>
  141. <td class="bg-blue-light">To Road</td>
  142. <td class="bg-blue-light">To Ship</td>
  143. <td class="bg-blue-light">Fr YPC</td>
  144. <td class="bg-blue-light">Fr Ship</td>
  145. <td class="bg-blue-light">Fr Chengzhi</td>
  146. </tr>
  147. <tr>
  148. <td class="bg-blue-light">wison Ethane </td>
  149. <td class="bg-yellow-light">{{reportData.propyleneToAaAe}}</td>
  150. <td class="bg-yellow-light">{{reportData.propyleneToGaa}}</td>
  151. <td class="bg-yellow-light">{{reportData.propyleneToOxo}}</td>
  152. <td class="bg-yellow-light">{{reportData.propyleneToLdpe}}</td>
  153. <td class="bg-yellow-light">{{reportData.propyleneToYpc}}</td>
  154. <td class="bg-yellow-light">{{reportData.propyleneToRoad}}</td>
  155. <td class="bg-yellow-light">{{reportData.propyleneToShip}}</td>
  156. <td class="bg-yellow-light">{{reportData.propyleneFrYpc}}</td>
  157. <td class="bg-yellow-light">{{reportData.propyleneFrShip}}</td>
  158. <td class="bg-yellow-light">{{reportData.propyleneFrChengzhi}}</td>
  159. </tr>
  160. <tr>
  161. <td class="bg-yellow-light">{{reportData.wisonEthane}}</td>
  162. <td class="bg-blue-light">C3 LPG</td>
  163. <td class="bg-yellow-light">{{reportData.c3LpgYieldPercentage}}</td>
  164. <td class="bg-yellow-light">{{reportData.c3LpgProduced}}</td>
  165. <td class="bg-yellow-light" rowspan="2">{{reportData.c3C4Inventory}}</td>
  166. <td class="bg-yellow-light" rowspan="2">{{reportData.c3C4Change}}</td>
  167. <td class="bg-yellow-light" rowspan="2">{{reportData.c3C4Import}}</td>
  168. <td class="bg-yellow-light" rowspan="2">{{reportData.c3C4Export}}</td>
  169. <td class="bg-blue-light">To SUB</td>
  170. <td class="bg-blue-light">To Fur as fule</td>
  171. <td class="bg-blue-light">As Feed</td>
  172. <td class="bg-blue-light">Fr YPC</td>
  173. <td class="bg-blue-light">Fr Truck</td>
  174. </tr>
  175. <tr>
  176. <td class="bg-blue-light">LPG to furnace</td>
  177. <td class="bg-blue-light">C4 LPG</td>
  178. <td class="bg-yellow-light">{{reportData.c4LpgYieldPercentage}}</td>
  179. <td class="bg-yellow-light">{{reportData.c4LpgProduced}}</td>
  180. <td class="bg-yellow-light">{{reportData.c3C4ToSub}}</td>
  181. <td class="bg-yellow-light">{{reportData.c3C4ToFurAsFule}}</td>
  182. <td class="bg-yellow-light">{{reportData.c3C4AsFeed}}</td>
  183. <td class="bg-yellow-light">{{reportData.c3C4FrYpc}}</td>
  184. <td class="bg-yellow-light">{{reportData.c3C4FrTruck}}</td>
  185. </tr>
  186. <tr>
  187. <td class="bg-yellow-light">{{reportData.lpgToFurnace}}</td>
  188. <td class="bg-blue-light" rowspan="2">MixedC4'S</td>
  189. <td class="bg-yellow-light" rowspan="2">{{reportData.mixedC4sYieldPercentage}}</td>
  190. <td class="bg-yellow-light" rowspan="2">{{reportData.mixedC4sProduced}}</td>
  191. <td class="bg-yellow-light" rowspan="2">{{reportData.mixedC4sInventory}}</td>
  192. <td class="bg-yellow-light" rowspan="2">{{reportData.mixedC4sChange}}</td>
  193. <td class="bg-yellow-light" rowspan="2">{{reportData.mixedC4sImport}}</td>
  194. <td class="bg-yellow-light" rowspan="2">{{reportData.mixedC4sExport}}</td>
  195. <td class="bg-blue-light">To BD</td>
  196. <td class="bg-blue-light">To YPC</td>
  197. <td class="bg-blue-light">To Truck</td>
  198. <td class="bg-blue-light">To ship</td>
  199. <td class="bg-blue-light">Fr YPC</td>
  200. <td class="bg-blue-light">Fr Truck</td>
  201. <td class="bg-blue-light">Fr ship</td>
  202. <td class="bg-blue-light">FR BD R1</td>
  203. <td class="bg-blue-light">TO R800</td>
  204. </tr>
  205. <tr>
  206. <td class="bg-blue-light">Raff1 fr BD</td>
  207. <td class="bg-yellow-light">{{reportData.mixedC4sToBd}}</td>
  208. <td class="bg-yellow-light">{{reportData.mixedC4sToYpc}}</td>
  209. <td class="bg-yellow-light">{{reportData.mixedC4sToTruck}}</td>
  210. <td class="bg-yellow-light">{{reportData.mixedC4sToShip}}</td>
  211. <td class="bg-yellow-light">{{reportData.mixedC4sFrYpc}}</td>
  212. <td class="bg-yellow-light">{{reportData.mixedC4sFrTruck}}</td>
  213. <td class="bg-yellow-light">{{reportData.mixedC4sFrShip}}</td>
  214. <td class="bg-yellow-light">{{reportData.mixedC4sFrBdR1}}</td>
  215. <td class="bg-yellow-light">{{reportData.mixedC4sToR800}}</td>
  216. </tr>
  217. <tr>
  218. <td class="bg-yellow-light">{{reportData.raff1FrBd}}</td>
  219. <td class="bg-blue-light" rowspan="2">EBO</td>
  220. <td class="bg-yellow-light" rowspan="2">{{reportData.eboYieldPercentage}}</td>
  221. <td class="bg-yellow-light" rowspan="2">{{reportData.eboProduced}}</td>
  222. <td class="bg-yellow-light" rowspan="2">{{reportData.eboInventory}}</td>
  223. <td class="bg-yellow-light" rowspan="2">{{reportData.eboChange}}</td>
  224. <td class="bg-yellow-light" rowspan="2">{{reportData.eboImport}}</td>
  225. <td class="bg-yellow-light" rowspan="2">{{reportData.eboExport}}</td>
  226. <td class="bg-blue-light">To Ship</td>
  227. <td class="bg-blue-light">To RTTF</td>
  228. <td class="bg-blue-light">To Train</td>
  229. <td class="bg-blue-light">Fr BD</td>
  230. </tr>
  231. <tr>
  232. <td class="bg-blue-light">Raff2 fr IB</td>
  233. <td class="bg-yellow-light">{{reportData.eboToShip}}</td>
  234. <td class="bg-yellow-light">{{reportData.eboToRttf}}</td>
  235. <td class="bg-yellow-light">{{reportData.eboToTrain}}</td>
  236. <td class="bg-yellow-light">{{reportData.eboFrBd}}</td>
  237. </tr>
  238. <tr>
  239. <td class="bg-yellow-light">{{reportData.raff2FrIb}}</td>
  240. <td class="bg-blue-light" rowspan="2">Naphthalene</td>
  241. <td class="bg-yellow-light" rowspan="2">{{reportData.naphthaleneYieldPercentage}}</td>
  242. <td class="bg-yellow-light" rowspan="2">{{reportData.naphthaleneProduced}}</td>
  243. <td class="bg-yellow-light" rowspan="2">{{reportData.naphthaleneInventory}}</td>
  244. <td class="bg-yellow-light" rowspan="2">{{reportData.naphthaleneChange}}</td>
  245. <td class="bg-yellow-light" rowspan="2">{{reportData.naphthaleneImport}}</td>
  246. <td class="bg-yellow-light" rowspan="2">{{reportData.naphthaleneExport}}</td>
  247. <td class="bg-blue-light">To Truck</td>
  248. <td class="no-border" colspan="7"></td>
  249. <td class="bg-blue-light" colspan="2">Export & Import</td>
  250. </tr>
  251. <tr>
  252. <td class="bg-blue-light">Raff3 fr BD</td>
  253. <td class="bg-yellow-light">{{reportData.naphthaleneToTruck}}</td>
  254. <td class="no-border" colspan="7"></td>
  255. <td class="bg-blue-light">To ship</td>
  256. <td class="bg-blue-light">Fr ship</td>
  257. </tr>
  258. <tr>
  259. <td class="bg-yellow-light">{{reportData.raff3FrBd}}</td>
  260. <td class="bg-blue-light" rowspan="2">PO/Flux Oil</td>
  261. <td class="bg-yellow-light" rowspan="2">{{reportData.poFluxOilYieldPercentage}}</td>
  262. <td class="bg-yellow-light" rowspan="2">{{reportData.poFluxOilProduced}}</td>
  263. <td class="bg-yellow-light" rowspan="2">{{reportData.poFluxOilInventory}}</td>
  264. <td class="bg-yellow-light" rowspan="2">{{reportData.poFluxOilChange}}</td>
  265. <td class="bg-yellow-light" rowspan="2">{{reportData.poFluxOilImport}}</td>
  266. <td class="bg-yellow-light" rowspan="2">{{reportData.poFluxOilExport}}</td>
  267. <td class="bg-blue-light">To BD</td>
  268. <td class="no-border" colspan="7"></td>
  269. <td class="bg-yellow-light">0</td>
  270. <td class="bg-yellow-light">0</td>
  271. </tr>
  272. <tr>
  273. <td class="bg-blue-light">Raffinate II P fr 2PH</td>
  274. <td class="bg-yellow-light">{{reportData.poFluxOilToBd}}</td>
  275. <td class="no-border" colspan="7"></td>
  276. <td class="bg-blue-light">To YBS</td>
  277. <td class="bg-blue-light"></td>
  278. </tr>
  279. <tr>
  280. <td class="bg-yellow-light">{{reportData.raffinate2pFr2ph}}</td>
  281. <td class="bg-blue-light" rowspan="2">Offags</td>
  282. <td class="bg-yellow-light" rowspan="2">{{reportData.offgasYieldPercentage}}</td>
  283. <td class="bg-yellow-light" rowspan="2">{{reportData.offgasProduced}}</td>
  284. <td class="bg-yellow-light" rowspan="2">{{reportData.offgasInventory}}</td>
  285. <td class="bg-yellow-light" rowspan="2">{{reportData.offgasChange}}</td>
  286. <td class="bg-yellow-light" rowspan="2">{{reportData.offgasImport}}</td>
  287. <td class="bg-yellow-light" rowspan="2">{{reportData.offgasExport}}</td>
  288. <td class="bg-blue-light">To Furnace</td>
  289. <td class="bg-blue-light">To YBS</td>
  290. <td class="bg-blue-light">To c-ERU</td>
  291. <td class="bg-blue-light">SuB(inclose U2)</td>
  292. <td class="bg-blue-light">Flare+SCTU</td>
  293. <td class="bg-blue-light">To U2(nm3)</td>
  294. <td class="bg-blue-light">Flare loss (T)</td>
  295. <td class="no-border"></td>
  296. <td class="bg-yellow-light">0</td>
  297. <td class="bg-yellow-light"></td>
  298. </tr>
  299. <tr>
  300. <td class="bg-blue-light">C2 fr LDPE</td>
  301. <td class="bg-yellow-light">{{reportData.offgasToFurnance}}</td>
  302. <td class="bg-yellow-light">{{reportData.offgasToYbs}}</td>
  303. <td class="bg-yellow-light">{{reportData.offgasToCEru}}</td>
  304. <td class="bg-yellow-light">{{reportData.offgasSubInCloseU2}}</td>
  305. <td class="bg-yellow-light">{{reportData.offgasFlareSctu}}</td>
  306. <td class="bg-yellow-light">{{reportData.offgasToU2Nm3}}</td>
  307. <td class="bg-yellow-light">{{reportData.offgasFlareLossT}}</td>
  308. <td class="no-border"></td>
  309. <td class="bg-blue-light">To RTTF</td>
  310. <td class="bg-blue-light">To Train</td>
  311. </tr>
  312. <tr>
  313. <td class="bg-yellow-light">{{reportData.c2FrLdpe}}</td>
  314. <td class="bg-blue-light" rowspan="2">RPG</td>
  315. <td class="bg-yellow-light" rowspan="2">{{reportData.rpgYieldPercentage}}</td>
  316. <td class="bg-yellow-light" rowspan="2">{{reportData.rpgProduced}}</td>
  317. <td class="bg-yellow-light" rowspan="2">{{reportData.rpgInventory}}</td>
  318. <td class="bg-yellow-light" rowspan="2">{{reportData.rpgChange}}</td>
  319. <td class="bg-yellow-light" rowspan="2">{{reportData.rpgImport}}</td>
  320. <td class="bg-yellow-light" rowspan="2">{{reportData.rpgExport}}</td>
  321. <td class="bg-blue-light">To PGU</td>
  322. <td class="bg-blue-light">Fr YFCC</td>
  323. <td class="no-border" colspan="6"></td>
  324. <td class="bg-yellow-light">0</td>
  325. <td class="bg-yellow-light">0</td>
  326. </tr>
  327. <tr>
  328. <td class="bg-blue-light">C3 fr OXO</td>
  329. <td class="bg-yellow-light">{{reportData.rpgToPgu}}</td>
  330. <td class="bg-yellow-light">{{reportData.rpgFrYfcc}}</td>
  331. </tr>
  332. <tr>
  333. <td class="bg-yellow-light">{{reportData.c3FrOxo}}</td>
  334. <td class="bg-blue-light" rowspan="2">Methane</td>
  335. <td class="bg-yellow-light" rowspan="2">{{reportData.methaneYieldPercentage}}</td>
  336. <td class="bg-yellow-light" rowspan="2">{{reportData.methaneProduced}}</td>
  337. <td class="bg-blue-light">To EO/EG</td>
  338. <td class="no-border" colspan="8"></td>
  339. <td class="bg-blue-light">yield %</td>
  340. <td class="bg-blue-light">Inventory</td>
  341. <td class="no-border"></td>
  342. <td class="bg-blue-light">To Ship</td>
  343. <td class="bg-blue-light">Fr Ship</td>
  344. </tr>
  345. <tr>
  346. <td class="bg-blue-light">MIXED C3/C4 </td>
  347. <td class="bg-yellow-light">{{reportData.methaneToEoEg}}</td>
  348. <td class="no-border" colspan="5"></td>
  349. <td class="bg-green" rowspan="14">AEU</td>
  350. <td class="no-border" colspan="2"></td>
  351. <td class="bg-blue-light">Produced</td>
  352. <td class="bg-blue-light">Change</td>
  353. <td class="no-border"></td>
  354. <td class="bg-yellow-light">0</td>
  355. <td class="bg-yellow-light">0</td>
  356. </tr>
  357. <tr>
  358. <td class="bg-yellow-light">{{reportData.mixedC3C4}}</td>
  359. <td class="bg-blue-light" rowspan="2">Residue oil</td>
  360. <td class="bg-yellow-light" rowspan="2">{{reportData.residueOilYieldPercentage}}</td>
  361. <td class="bg-yellow-light" rowspan="2">{{reportData.residueOilProduced}}</td>
  362. <td class="no-border" colspan="8"></td>
  363. <td class="bg-blue-light" rowspan="2">Benzene</td>
  364. <td class="bg-yellow-light">0</td>
  365. <td class="bg-yellow-light">0</td>
  366. <td class="no-border"></td>
  367. <td class="bg-blue-light">To YPC</td>
  368. <td class="bg-blue-light">Fr YPC</td>
  369. </tr>
  370. <tr>
  371. <td class="bg-blue-light">Hy C9</td>
  372. <td class="no-border" colspan="8"></td>
  373. <td class="bg-yellow-light">0</td>
  374. <td class="bg-yellow-light">0</td>
  375. <td class="no-border"></td>
  376. <td class="bg-yellow-light">0</td>
  377. <td class="bg-yellow-light">0</td>
  378. </tr>
  379. <tr>
  380. <td class="bg-yellow-light">{{reportData.hyC9}}</td>
  381. <td class="no-border" colspan="11"></td>
  382. <td class="bg-blue-light" rowspan="2">Toluene</td>
  383. <td class="bg-yellow-light">0</td>
  384. <td class="bg-yellow-light">0</td>
  385. <td class="no-border"></td>
  386. <td class="bg-blue-light">To RTTF</td>
  387. <td class="bg-blue-light">Fr YBS</td>
  388. </tr>
  389. <tr>
  390. <td class="bg-blue-light">PGU Offgas</td>
  391. <td class="no-border" colspan="11"></td>
  392. <td class="bg-yellow-light">0</td>
  393. <td class="bg-yellow-light">0</td>
  394. <td class="no-border"></td>
  395. <td class="bg-yellow-light">0</td>
  396. <td class="bg-yellow-light">0</td>
  397. </tr>
  398. <tr>
  399. <td class="bg-yellow-light">{{reportData.pguOffgas}}</td>
  400. <td class="no-border" colspan="7"></td>
  401. <td class="no-border bg-yellow">t/h</td>
  402. <td class="no-border bg-yellow">{{reportData.pguAeuTH}}</td>
  403. <td class="no-border"></td>
  404. <td class="bg-blue-light" rowspan="2">Xylene</td>
  405. <td class="bg-yellow-light">0</td>
  406. <td class="bg-yellow-light">0</td>
  407. <td class="no-border"></td>
  408. <td class="bg-blue-light">To EU</td>
  409. <td class="bg-blue-light"></td>
  410. </tr>
  411. <tr>
  412. <td class="bg-blue-light">Wash Oil</td>
  413. <td class="no-border" colspan="2"></td>
  414. <td class="bg-green" rowspan="14">PGU</td>
  415. <td class="no-border" colspan="2"></td>
  416. <td class="bg-blue-light">yield %</td>
  417. <td class="bg-blue-light">Inventory</td>
  418. <td class="bg-blue-light">Export</td>
  419. <td class="no-border" colspan="4"></td>
  420. <td class="bg-yellow-light">0</td>
  421. <td class="bg-yellow-light">0</td>
  422. <td class="no-border"></td>
  423. <td class="bg-yellow-light">0</td>
  424. <td class="bg-yellow-light"></td>
  425. </tr>
  426. <tr>
  427. <td class="bg-yellow-light">{{reportData.washOil}}</td>
  428. <td class="no-border" colspan="5"></td>
  429. <td class="bg-blue-light">Produced</td>
  430. <td class="bg-blue-light">Change</td>
  431. <td class="bg-blue-light">To AEU</td>
  432. <td class="no-border bg-yellow-light">{{reportData.pguToAeu}}</td>
  433. <td class="no-border"></td>
  434. <td class="bg-blue-light" rowspan="2">C6-C8 NA</td>
  435. <td class="bg-yellow-light">0</td>
  436. <td class="bg-yellow-light">0</td>
  437. </tr>
  438. <tr>
  439. <td class="bg-blue-light">Toluene</td>
  440. <td class="no-border bg-yellow">t/h</td>
  441. <td class="bg-yellow no-border">{{reportData.pguRpgTH}}</td>
  442. <td class="no-border"></td>
  443. <td class="bg-blue-light">BTX</td>
  444. <td class="bg-yellow-light">{{reportData.pguBtxYeildPercentage}}</td>
  445. <td class="bg-yellow-light">{{reportData.pguBtxInventory}}</td>
  446. <td>{{reportData.pguBtxExport}}</td>
  447. <td class="no-border" colspan="4"></td>
  448. <td class="bg-yellow-light">0</td>
  449. <td class="bg-yellow-light">0</td>
  450. <td class="no-border"></td>
  451. <td class="bg-blue-light">To ship</td>
  452. <td class="bg-blue-light">Fr ship</td>
  453. </tr>
  454. <tr>
  455. <td class="bg-yellow-light">{{reportData.toluene}}</td>
  456. <td class="bg-blue-light">RPG</td>
  457. <td class="no-border">{{reportData.rpgToPgu2}}</td>
  458. <td class="no-border"></td>
  459. <td class="bg-blue-light">Product</td>
  460. <td class="bg-yellow-light">{{reportData.pguBtxProduced}}</td>
  461. <td class="bg-yellow-light">{{reportData.pguBtxChange}}</td>
  462. <td class="bg-yellow-light">{{reportData.pguBtxToAeu}}</td>
  463. <td class="no-border bg-yellow-light">{{reportData.aeuToPgu}}</td>
  464. <td class="no-border" colspan="5"></td>
  465. <td class="bg-yellow-light">0</td>
  466. <td class="bg-yellow-light">0</td>
  467. </tr>
  468. <tr>
  469. <td class="bg-blue-light">Hy C4 fr R800</td>
  470. <td>{{reportData.pguRpg1}}</td>
  471. <td class="no-border" colspan="11"></td>
  472. <td class="no-border">AEU</td>
  473. <td class="no-border">PGU&AEU</td>
  474. <td class="no-border"></td>
  475. <td class="bg-blue-light">To YPC</td>
  476. <td class="bg-blue-light">Fr YPC</td>
  477. </tr>
  478. <tr>
  479. <td class="bg-yellow-light">{{reportData.hyC4FrR800}}</td>
  480. <td class="bg-yellow-light">{{reportData.pguRpg2}}</td>
  481. <td class="bg-yellow-light no-border">{{reportData.pguToRpg}}</td>
  482. <td class="no-border" colspan="8"></td>
  483. <td class="no-border bg-blue-light">total Feed</td>
  484. <td class="no-border bg-yellow-light">0</td>
  485. <td class="no-border bg-yellow-light">0</td>
  486. <td class="no-border"></td>
  487. <td class="bg-yellow-light">0</td>
  488. <td class="bg-yellow-light">0</td>
  489. </tr>
  490. <tr>
  491. <td class="no-border" colspan="9"></td>
  492. <td class="bg-blue-light" rowspan="2">Washoil</td>
  493. <td class="bg-yellow-light">{{reportData.pguWashoilYeildPercentage}}</td>
  494. <td class="bg-yellow-light">{{reportData.pguWashoilInventory}}</td>
  495. <td class="bg-blue-light">To EU</td>
  496. <td class="no-border" colspan="3"></td>
  497. <td class="no-border bg-blue-light">output</td>
  498. <td class="no-border bg-yellow-light">0</td>
  499. <td class="no-border bg-yellow-light">0</td>
  500. <td class="no-border"></td>
  501. <td class="bg-blue-light">To rttf</td>
  502. <td class="bg-blue-light">Fr rttf</td>
  503. </tr>
  504. <tr>
  505. <td class="bg-blue-light" colspan="2">Total input</td>
  506. <td class="bg-yellow-light">{{reportData.totalInput}}</td>
  507. <td class="no-border" colspan="2"></td>
  508. <td class="bg-blue-light">H2</td>
  509. <td class="no-border" colspan="4"></td>
  510. <td class="bg-yellow-light">{{reportData.pguWashoilProduced}}</td>
  511. <td class="bg-yellow-light">{{reportData.pguWashoilChange}}</td>
  512. <td class="bg-yellow-light">{{reportData.pguWashoilToEu}}</td>
  513. <td class="no-border" colspan="3"></td>
  514. <td class="no-border bg-blue-light">Total loss</td>
  515. <td class="no-border bg-yellow-light">0</td>
  516. <td class="no-border bg-yellow-light">0</td>
  517. <td class="no-border"></td>
  518. <td class="bg-yellow-light">0</td>
  519. <td class="bg-yellow-light">0</td>
  520. </tr>
  521. <tr>
  522. <td class="bg-blue-light" colspan="2">Total output</td>
  523. <td class="bg-yellow-light">{{reportData.totalOutput}}</td>
  524. <td class="no-border" colspan="2"></td>
  525. <td class="bg-yellow-light">{{reportData.pguH2}}</td>
  526. <td class="no-border" colspan="3"></td>
  527. <td class="bg-blue-light" rowspan="2">offags</td>
  528. <td class="bg-yellow-light">{{reportData.pguOffgasYeildPercentage}}</td>
  529. <td class="bg-yellow-light">{{reportData.pguOffgasInventory}}</td>
  530. <td class="bg-blue-light">To EU</td>
  531. <td class="no-border" colspan="3"></td>
  532. <td class="no-border bg-blue-light">loss%</td>
  533. <td class="no-border bg-yellow-light">0</td>
  534. <td class="no-border bg-yellow-light">0</td>
  535. </tr>
  536. <tr>
  537. <td class="bg-blue-light" colspan="2">Total loss</td>
  538. <td class="bg-yellow-light ft-red">{{reportData.totalLoss}}</td>
  539. <td class="no-border" colspan="6"></td>
  540. <td class="bg-yellow-light">{{reportData.pguOffgasProduced}}</td>
  541. <td class="bg-yellow-light">{{reportData.pguOffgasChange}}</td>
  542. <td class="bg-yellow-light">{{reportData.pguOffgasToEu}}</td>
  543. <td class="no-border" colspan="3"></td>
  544. <td class="no-border bg-blue">Load%</td>
  545. <td class="no-border bg-blue">0</td>
  546. <td class="no-border bg-blue">0</td>
  547. <td class="no-border"></td>
  548. <td class="bg-blue-light">To EU</td>
  549. <td class="bg-blue-light">To YPC</td>
  550. </tr>
  551. <tr>
  552. <td class="bg-blue-light" colspan="2">loss%</td>
  553. <td class="bg-yellow-light ft-red">{{reportData.lossPercentage}}</td>
  554. <td class="no-border" colspan="2"></td>
  555. <td class="no-border bg-blue-light">total Feed</td>
  556. <td class="no-border bg-yellow-light">{{reportData.pguTotalFeed}}</td>
  557. <td class="no-border"></td>
  558. <td class="bg-blue-light" rowspan="2">C5</td>
  559. <td class="bg-yellow-light">0</td>
  560. <td class="bg-yellow-light">0</td>
  561. <td class="bg-yellow-light">0</td>
  562. <td class="bg-blue-light">To EU</td>
  563. <td class="bg-blue-light">To Yuanguan</td>
  564. <td class="no-border" colspan="5"></td>
  565. <td class="bg-yellow-light">0</td>
  566. <td class="bg-yellow-light">0</td>
  567. </tr>
  568. <tr>
  569. <td class="bg-blue-light" colspan="2">Total Furnace Feed</td>
  570. <td class="bg-yellow-light">{{reportData.totalFurnanceFeed}}</td>
  571. <td class="no-border" colspan="2"></td>
  572. <td class="no-border bg-blue-light">output</td>
  573. <td class="no-border bg-yellow-light">{{reportData.pguOutput}}</td>
  574. <td class="no-border"></td>
  575. <td class="bg-yellow-light">0</td>
  576. <td class="bg-yellow-light">0</td>
  577. <td class="bg-yellow-light">0</td>
  578. <td class="bg-yellow-light">0</td>
  579. <td class="bg-yellow-light">0</td>
  580. </tr>
  581. <tr>
  582. <td class="bg-blue-light" colspan="2">NAP fr CLTF</td>
  583. <td class="bg-blue">{{reportData.napFrCltf}}</td>
  584. <td class="no-border" colspan="2"></td>
  585. <td class="no-border bg-blue-light">Total loss</td>
  586. <td class="no-border bg-yellow-light">{{reportData.pguTotalLoss}}</td>
  587. <td class="no-border"></td>
  588. <td class="bg-blue-light" rowspan="2">C9</td>
  589. <td class="bg-yellow-light">0</td>
  590. <td class="bg-yellow-light">0</td>
  591. <td class="bg-yellow-light">0</td>
  592. <td class="bg-blue-light">To RTTF</td>
  593. <td class="bg-blue-light">To ship</td>
  594. <td class="bg-blue-light">To YFCC</td>
  595. </tr>
  596. <tr>
  597. <td class="bg-blue-light" colspan="2">Total P/E</td>
  598. <td class="bg-yellow-light">{{reportData.totalPE}}</td>
  599. <td class="no-border" colspan="2"></td>
  600. <td class="no-border bg-blue-light">loss%</td>
  601. <td class="no-border bg-yellow-light">{{reportData.pguLossPercentage}}</td>
  602. <td class="no-border"></td>
  603. <td class="bg-yellow-light">0</td>
  604. <td class="bg-yellow-light">0</td>
  605. <td class="bg-yellow-light">0</td>
  606. <td class="bg-yellow-light">0</td>
  607. <td class="bg-yellow-light">0</td>
  608. <td class="bg-yellow-light">0</td>
  609. </tr>
  610. <tr>
  611. <td class="bg-blue-light" colspan="2">Plant mode is</td>
  612. <td class="bg-yellow-light">{{reportData.plantModeIs}}</td>
  613. <td class="no-border" colspan="2"></td>
  614. <td class="no-border bg-blue">Feed Load%</td>
  615. <td class="no-border bg-blue">{{reportData.pguFeedLoadPercentage}}</td>
  616. </tr>
  617. <tr>
  618. <td class="bg-blue" colspan="2">plant load (3495t/d)</td>
  619. <td class="bg-blue">{{reportData.plantLoad3495tD}}</td>
  620. </tr>
  621. <tr>
  622. <td class="bg-blue" colspan="2">Avg. Furnace feed(t/h)</td>
  623. <td class="bg-blue">{{reportData.avgFurnanceFeedTH}}</td>
  624. </tr>
  625. <tr>
  626. <td class="bg-blue" colspan="2">Feeding ratio %</td>
  627. <td class="bg-blue">{{reportData.feedingRatioPercentage}}</td>
  628. <td class="bg-yellow-light" colspan="12">Specific Energy Consumption</td>
  629. <td class="no-border"></td>
  630. <td class="bg-yellow" colspan="6">SCTF STORAGE 当前罐容</td>
  631. </tr>
  632. <tr>
  633. <td class="bg-blue-dark" rowspan="3">Items</td>
  634. <td class="bg-blue-dark" rowspan="3">unit</td>
  635. <td class="bg-blue-dark" colspan="3" rowspan="2">Conversion</td>
  636. <td class="bg-blue-dark" colspan="4">Cracker</td>
  637. <td class="bg-blue-dark" colspan="4">PGU+AEU</td>
  638. <td class="bg-blue-dark">SCTU+Flare</td>
  639. <td class="bg-blue-dark">SUB</td>
  640. <td class="bg-blue-dark">BCC</td>
  641. <td class="bg-green-blue-neon">Total C2</td>
  642. <td class="bg-blue-light">TK1061</td>
  643. <td class="bg-blue-light">TK1062</td>
  644. <td class="bg-blue-light">TK1063</td>
  645. <td class="bg-blue-light">TK1064</td>
  646. <td class="bg-blue-light">TK1065 (Off)</td>
  647. </tr>
  648. <tr>
  649. <td class="bg-blue-dark" rowspan="2">Consumption</td>
  650. <td class="bg-blue-dark" rowspan="2">t/t</td>
  651. <td class="bg-blue-dark" colspan="2">Energy</td>
  652. <td class="bg-blue-dark" rowspan="2">Consumption</td>
  653. <td class="bg-blue-dark" rowspan="2">t/t</td>
  654. <td class="bg-blue-dark" colspan="2">Energy</td>
  655. <td class="bg-blue-dark">Consumption</td>
  656. <td class="bg-blue-dark">Consumption</td>
  657. <td class="bg-blue-dark">Consumption</td>
  658. <td class="bg-green-blue-neon">0</td>
  659. <td class="bg-purple-light">0</td>
  660. <td class="bg-purple-light">0</td>
  661. <td class="bg-purple-light">0</td>
  662. <td class="bg-purple-light">0</td>
  663. <td class="bg-purple-light">0</td>
  664. </tr>
  665. <tr>
  666. <td class="bg-blue-dark">TOE/unit</td>
  667. <td class="bg-blue-dark">TCE/unit</td>
  668. <td class="bg-blue-dark">Pre-standard</td>
  669. <td class="bg-blue-dark">kgOE/t C2=</td>
  670. <td class="bg-blue-dark">kgCE/t C2=</td>
  671. <td class="bg-blue-dark">kgOE/t BTX</td>
  672. <td class="bg-blue-dark">kgCE/t BTX</td>
  673. <td class="bg-blue-dark">unit</td>
  674. <td class="bg-blue-dark">unit</td>
  675. <td class="bg-blue-dark">unit</td>
  676. <td class="bg-green-blue-neon">Total C3</td>
  677. <td class="bg-blue-light">TK1011</td>
  678. <td class="bg-blue-light">TK1012</td>
  679. <td class="bg-blue-light">TK1013</td>
  680. <td class="bg-blue-light">TK1014</td>
  681. <td class="bg-blue-light">TK1040 (Off)</td>
  682. </tr>
  683. <tr>
  684. <td class="bg-blue-dark">HHP</td>
  685. <td class="bg-blue-dark">t</td>
  686. <td class="bg-purple-light">0</td>
  687. <td class="bg-purple-light">0</td>
  688. <td class="bg-purple-light">0</td>
  689. <td class="bg-yellow-light">0</td>
  690. <td class="bg-yellow-light">0</td>
  691. <td class="bg-yellow-light">0</td>
  692. <td class="bg-yellow-light">0</td>
  693. <td class="bg-yellow-light">0</td>
  694. <td class="bg-yellow-light">0</td>
  695. <td class="bg-yellow-light">0</td>
  696. <td class="bg-yellow-light">0</td>
  697. <td class="bg-yellow-light">0</td>
  698. <td class="bg-yellow-light">0</td>
  699. <td class="bg-yellow-light">0</td>
  700. <td class="bg-green-blue-neon">0</td>
  701. <td class="bg-blue-light">0</td>
  702. <td class="bg-blue-light">0</td>
  703. <td class="bg-blue-light">0</td>
  704. <td class="bg-blue-light">0</td>
  705. <td class="bg-blue-light">0</td>
  706. </tr>
  707. <tr>
  708. <td class="bg-blue-dark">NG</td>
  709. <td class="bg-blue-dark">Km3</td>
  710. <td class="bg-purple-light">0</td>
  711. <td class="bg-purple-light">0</td>
  712. <td class="bg-purple-light">0</td>
  713. <td class="bg-yellow-light">0</td>
  714. <td class="bg-yellow-light">0</td>
  715. <td class="bg-yellow-light">0</td>
  716. <td class="bg-yellow-light">0</td>
  717. <td class="bg-yellow-light">0</td>
  718. <td class="bg-yellow-light">0</td>
  719. <td class="bg-yellow-light">0</td>
  720. <td class="bg-yellow-light">0</td>
  721. <td class="bg-yellow-light">0</td>
  722. <td class="bg-yellow-light">0</td>
  723. <td class="bg-yellow-light">0</td>
  724. <td class="bg-blue-light">TK1120(LPG)</td>
  725. <td class="bg-blue-light">TK1111(C4's)</td>
  726. <td class="bg-blue-light">TK1520(RPG)</td>
  727. <td class="bg-blue-light">TK1350(PO)</td>
  728. <td class="bg-green">TK1310(BTX)</td>
  729. <td class="bg-blue-light">TK1330(EBO)</td>
  730. </tr>
  731. <tr>
  732. <td class="bg-blue-dark">Fuel Gas(offags)</td>
  733. <td class="bg-blue-dark">t</td>
  734. <td class="bg-purple-light">0</td>
  735. <td class="bg-purple-light">0</td>
  736. <td class="bg-purple-light">0</td>
  737. <td class="bg-yellow-light">0</td>
  738. <td class="bg-yellow-light">0</td>
  739. <td class="bg-yellow-light">0</td>
  740. <td class="bg-yellow-light">0</td>
  741. <td class="bg-yellow-light">0</td>
  742. <td class="bg-yellow-light">0</td>
  743. <td class="bg-yellow-light">0</td>
  744. <td class="bg-yellow-light">0</td>
  745. <td class="bg-yellow-light">0</td>
  746. <td class="bg-yellow-light">0</td>
  747. <td class="bg-yellow-light">0</td>
  748. <td class="bg-blue-light">0</td>
  749. <td class="bg-blue-light">0</td>
  750. <td class="bg-blue-light">0</td>
  751. <td class="bg-blue-light">0</td>
  752. <td class="bg-green">0</td>
  753. <td class="bg-blue-light">0</td>
  754. </tr>
  755. <tr>
  756. <td class="bg-blue-dark">SHP</td>
  757. <td class="bg-blue-dark">t</td>
  758. <td class="bg-yellow">0</td>
  759. <td class="bg-purple-light">0</td>
  760. <td class="bg-purple-light">0</td>
  761. <td class="bg-yellow-light">0</td>
  762. <td class="bg-yellow-light">0</td>
  763. <td class="bg-yellow-light">0</td>
  764. <td class="bg-yellow-light">0</td>
  765. <td class="bg-yellow-light">0</td>
  766. <td class="bg-yellow-light">0</td>
  767. <td class="bg-yellow-light">0</td>
  768. <td class="bg-yellow-light">0</td>
  769. <td class="bg-yellow-light">0</td>
  770. <td class="bg-yellow-light">0</td>
  771. <td class="bg-yellow-light">0</td>
  772. <td class="bg-blue-light">TK1430(LFO)</td>
  773. <td class="bg-green">TK1320(off-btx)</td>
  774. <td class="bg-green">T201(BTX)</td>
  775. <td class="bg-green">TK1340(C9)</td>
  776. <td class="bg-green">CLT1350(C9)</td>
  777. <td class="bg-green">TK1160(NH3)</td>
  778. </tr>
  779. <tr>
  780. <td class="bg-blue-dark">HP</td>
  781. <td class="bg-blue-dark">t</td>
  782. <td class="bg-yellow">0</td>
  783. <td class="bg-purple-light">0</td>
  784. <td class="bg-purple-light">0</td>
  785. <td class="bg-yellow-light">0</td>
  786. <td class="bg-yellow-light">0</td>
  787. <td class="bg-yellow-light">0</td>
  788. <td class="bg-yellow-light">0</td>
  789. <td class="bg-yellow-light">0</td>
  790. <td class="bg-yellow-light">0</td>
  791. <td class="bg-yellow-light">0</td>
  792. <td class="bg-yellow-light">0</td>
  793. <td class="bg-yellow-light">0</td>
  794. <td class="bg-yellow-light">0</td>
  795. <td class="bg-yellow-light">0</td>
  796. <td class="bg-blue-light">0</td>
  797. <td class="bg-green">0</td>
  798. <td class="bg-green">0</td>
  799. <td class="bg-green">0</td>
  800. <td class="bg-green">0</td>
  801. <td class="bg-green">0</td>
  802. </tr>
  803. <tr>
  804. <td class="bg-blue-dark">MP</td>
  805. <td class="bg-blue-dark">t</td>
  806. <td class="bg-yellow">0</td>
  807. <td class="bg-purple-light">0</td>
  808. <td class="bg-purple-light">0</td>
  809. <td class="bg-yellow-light">0</td>
  810. <td class="bg-yellow-light">0</td>
  811. <td class="bg-yellow-light">0</td>
  812. <td class="bg-yellow-light">0</td>
  813. <td class="bg-yellow-light">0</td>
  814. <td class="bg-yellow-light">0</td>
  815. <td class="bg-yellow-light">0</td>
  816. <td class="bg-yellow-light">0</td>
  817. <td class="bg-yellow-light">0</td>
  818. <td class="bg-yellow-light">0</td>
  819. <td class="bg-yellow-light">0</td>
  820. <td class="no-border"></td>
  821. <td class="bg-green">TK1510(B)</td>
  822. <td class="bg-green">CLT1370(B)</td>
  823. <td class="bg-green">TK1360(T)</td>
  824. <td class="bg-green">TK1410(X)</td>
  825. <td class="bg-green">CLT1380(X)</td>
  826. </tr>
  827. <tr>
  828. <td class="bg-blue-dark">LP</td>
  829. <td class="bg-blue-dark">t</td>
  830. <td class="bg-yellow">0</td>
  831. <td class="bg-purple-light">0</td>
  832. <td class="bg-purple-light">0</td>
  833. <td class="bg-yellow-light">0</td>
  834. <td class="bg-yellow-light">0</td>
  835. <td class="bg-yellow-light">0</td>
  836. <td class="bg-yellow-light">0</td>
  837. <td class="bg-yellow-light">0</td>
  838. <td class="bg-yellow-light">0</td>
  839. <td class="bg-yellow-light">0</td>
  840. <td class="bg-yellow-light">0</td>
  841. <td class="bg-yellow-light">0</td>
  842. <td class="bg-yellow-light">0</td>
  843. <td class="bg-yellow-light">0</td>
  844. <td class="no-border"></td>
  845. <td class="bg-green">0</td>
  846. <td class="bg-green">0</td>
  847. <td class="bg-green">0</td>
  848. <td class="bg-green">0</td>
  849. <td class="bg-green">0</td>
  850. </tr>
  851. <tr>
  852. <td class="bg-blue-dark">Electricity</td>
  853. <td class="bg-blue-dark">MWh</td>
  854. <td class="bg-yellow">0</td>
  855. <td class="bg-purple-light">0</td>
  856. <td class="bg-purple-light">0</td>
  857. <td class="bg-yellow-light">0</td>
  858. <td class="bg-yellow-light">0</td>
  859. <td class="bg-yellow-light">0</td>
  860. <td class="bg-yellow-light">0</td>
  861. <td class="bg-yellow-light">0</td>
  862. <td class="bg-yellow-light">0</td>
  863. <td class="bg-yellow-light">0</td>
  864. <td class="bg-yellow-light">0</td>
  865. <td class="bg-yellow-light">0</td>
  866. <td class="bg-yellow-light">0</td>
  867. <td class="bg-yellow-light">0</td>
  868. <td class="no-border" colspan="2"></td>
  869. <td class="bg-blue-light">TK1420(Dimer)</td>
  870. <td class="bg-blue-light">TK1110(R1)</td>
  871. <td class="bg-blue-light">TK1130(IB)</td>
  872. <td class="bg-blue-light">TK1150(R3)</td>
  873. </tr>
  874. <tr>
  875. <td class="bg-blue-dark">coolling water</td>
  876. <td class="bg-blue-dark">kt</td>
  877. <td class="bg-yellow">0</td>
  878. <td class="bg-purple-light">0</td>
  879. <td class="bg-purple-light">0</td>
  880. <td class="bg-yellow-light">0</td>
  881. <td class="bg-yellow-light">0</td>
  882. <td class="bg-yellow-light">0</td>
  883. <td class="bg-yellow-light">0</td>
  884. <td class="bg-yellow-light">0</td>
  885. <td class="bg-yellow-light">0</td>
  886. <td class="bg-yellow-light">0</td>
  887. <td class="bg-yellow-light">0</td>
  888. <td class="bg-yellow-light">0</td>
  889. <td class="bg-yellow-light">0</td>
  890. <td class="bg-yellow-light">0</td>
  891. <td class="no-border" colspan="2"></td>
  892. <td class="bg-blue-light">0</td>
  893. <td class="bg-blue-light">0</td>
  894. <td class="bg-blue-light">0</td>
  895. <td class="bg-blue-light">0</td>
  896. </tr>
  897. <tr>
  898. <td class="bg-blue-dark">Polished Condensate</td>
  899. <td class="bg-blue-dark">t</td>
  900. <td class="bg-purple-light">0</td>
  901. <td class="bg-purple-light">0</td>
  902. <td class="bg-purple-light">0</td>
  903. <td class="bg-yellow-light">0</td>
  904. <td class="bg-yellow-light">0</td>
  905. <td class="bg-yellow-light">0</td>
  906. <td class="bg-yellow-light">0</td>
  907. <td class="bg-yellow-light">0</td>
  908. <td class="bg-yellow-light">0</td>
  909. <td class="bg-yellow-light">0</td>
  910. <td class="bg-yellow-light">0</td>
  911. <td class="bg-yellow-light">0</td>
  912. <td class="bg-yellow-light">0</td>
  913. <td class="bg-yellow-light">0</td>
  914. <td class="no-border" colspan="3"></td>
  915. <td class="bg-blue-light">TK1140(BD)</td>
  916. <td class="bg-blue-light">TK1141(BD)</td>
  917. <td class="bg-blue-light">TK1142(BD)</td>
  918. </tr>
  919. <tr>
  920. <td class="bg-blue-dark">HP BFW</td>
  921. <td class="bg-blue-dark">t</td>
  922. <td class="bg-yellow">0</td>
  923. <td class="bg-purple-light">0</td>
  924. <td class="bg-purple-light">0</td>
  925. <td class="bg-yellow-light">0</td>
  926. <td class="bg-yellow-light">0</td>
  927. <td class="bg-yellow-light">0</td>
  928. <td class="bg-yellow-light">0</td>
  929. <td class="bg-yellow-light">0</td>
  930. <td class="bg-yellow-light">0</td>
  931. <td class="bg-yellow-light">0</td>
  932. <td class="bg-yellow-light">0</td>
  933. <td class="bg-yellow-light">0</td>
  934. <td class="bg-yellow-light">0</td>
  935. <td class="bg-yellow-light">0</td>
  936. <td class="no-border" colspan="3"></td>
  937. <td class="bg-blue-light">0</td>
  938. <td class="bg-blue-light">0</td>
  939. <td class="bg-blue-light">0</td>
  940. </tr>
  941. <tr>
  942. <td class="bg-blue-dark">Production Water</td>
  943. <td class="bg-blue-dark">t</td>
  944. <td class="bg-purple-light">0</td>
  945. <td class="bg-purple-light">0</td>
  946. <td class="bg-purple-light">0</td>
  947. <td class="bg-yellow-light">0</td>
  948. <td class="bg-yellow-light">0</td>
  949. <td class="bg-yellow-light">0</td>
  950. <td class="bg-yellow-light">0</td>
  951. <td class="bg-yellow-light">0</td>
  952. <td class="bg-yellow-light">0</td>
  953. <td class="bg-yellow-light">0</td>
  954. <td class="bg-yellow-light">0</td>
  955. <td class="bg-yellow-light">0</td>
  956. <td class="bg-yellow-light">0</td>
  957. <td class="bg-yellow-light">0</td>
  958. <td class="no-border" colspan="2"></td>
  959. <td class="bg-green-neon">total NAP</td>
  960. <td class="bg-grey-light">CLTF1621</td>
  961. <td class="bg-grey-light">CLTF1622</td>
  962. <td class="bg-grey-light">CLTF1623</td>
  963. </tr>
  964. <tr>
  965. <td class="bg-blue-dark">Turbine Condensate</td>
  966. <td class="bg-blue-dark">t</td>
  967. <td class="bg-purple-light">0</td>
  968. <td class="bg-purple-light">0</td>
  969. <td class="bg-purple-light">0</td>
  970. <td class="bg-yellow-light">0</td>
  971. <td class="bg-yellow-light">0</td>
  972. <td class="bg-yellow-light">0</td>
  973. <td class="bg-yellow-light">0</td>
  974. <td class="bg-yellow-light">0</td>
  975. <td class="bg-yellow-light">0</td>
  976. <td class="bg-yellow-light">0</td>
  977. <td class="bg-yellow-light">0</td>
  978. <td class="bg-yellow-light">0</td>
  979. <td class="bg-yellow-light">0</td>
  980. <td class="bg-yellow-light">0</td>
  981. <td class="no-border" colspan="2"></td>
  982. <td class="bg-green-neon">0</td>
  983. <td class="bg-grey-light">0</td>
  984. <td class="bg-grey-light">0</td>
  985. <td class="bg-grey-light">0</td>
  986. </tr>
  987. <tr>
  988. <td class="bg-blue-dark">PA&IA</td>
  989. <td class="bg-blue-dark">pnm3</td>
  990. <td class="bg-purple-light">0</td>
  991. <td class="bg-purple-light">0</td>
  992. <td class="bg-purple-light">0</td>
  993. <td class="bg-yellow-light">0</td>
  994. <td class="bg-yellow-light">0</td>
  995. <td class="bg-yellow-light">0</td>
  996. <td class="bg-yellow-light">0</td>
  997. <td class="bg-yellow-light">0</td>
  998. <td class="bg-yellow-light">0</td>
  999. <td class="bg-yellow-light">0</td>
  1000. <td class="bg-yellow-light">0</td>
  1001. <td class="bg-yellow-light">0</td>
  1002. <td class="bg-yellow-light">0</td>
  1003. <td class="bg-yellow-light">0</td>
  1004. </tr>
  1005. <tr>
  1006. <td class="bg-blue-dark">N2</td>
  1007. <td class="bg-blue-dark">pnm3</td>
  1008. <td class="bg-purple-light">0</td>
  1009. <td class="bg-purple-light">0</td>
  1010. <td class="bg-purple-light">0</td>
  1011. <td class="bg-yellow-light">0</td>
  1012. <td class="bg-yellow-light">0</td>
  1013. <td class="bg-yellow-light">0</td>
  1014. <td class="bg-yellow-light">0</td>
  1015. <td class="bg-yellow-light">0</td>
  1016. <td class="bg-yellow-light">0</td>
  1017. <td class="bg-yellow-light">0</td>
  1018. <td class="bg-yellow-light">0</td>
  1019. <td class="bg-yellow-light">0</td>
  1020. <td class="bg-yellow-light">0</td>
  1021. <td class="bg-yellow-light">0</td>
  1022. </tr>
  1023. <tr>
  1024. <td class="bg-orange">Total</td>
  1025. <td class="bg-orange" rowspan="3">t</td>
  1026. <td class="bg-orange">0</td>
  1027. <td class="bg-orange">0</td>
  1028. <td class="bg-orange">0</td>
  1029. <td class="bg-orange">0</td>
  1030. <td class="bg-orange">0</td>
  1031. <td class="bg-blue">0</td>
  1032. <td class="bg-blue">0</td>
  1033. <td class="bg-orange">0</td>
  1034. <td class="bg-orange">0</td>
  1035. <td class="bg-blue">0</td>
  1036. <td class="bg-blue">0</td>
  1037. <td class="bg-orange">0</td>
  1038. <td class="bg-orange">0</td>
  1039. <td class="bg-orange">FR EO/EG</td>
  1040. <td class="bg-purple">320FC2161</td>
  1041. <td class="bg-green">C210 PDI</td>
  1042. <td class="bg-yellow">气温</td>
  1043. <td class="bg-blue-dark">裂解炉烧焦</td>
  1044. </tr>
  1045. <tr>
  1046. <td class="bg-orange">Target</td>
  1047. <td class="bg-orange">0</td>
  1048. <td class="bg-orange">0</td>
  1049. <td class="bg-orange">0</td>
  1050. <td class="bg-orange">0</td>
  1051. <td class="bg-orange">0</td>
  1052. <td class="bg-orange">0</td>
  1053. <td class="bg-orange">0</td>
  1054. <td class="bg-orange">0</td>
  1055. <td class="bg-orange">0</td>
  1056. <td class="bg-orange">0</td>
  1057. <td class="bg-orange">0</td>
  1058. <td class="bg-blue">0</td>
  1059. <td class="bg-blue">0</td>
  1060. <td class="bg-blue">load%</td>
  1061. <td class="bg-purple">0</td>
  1062. <td class="bg-green">0</td>
  1063. <td class="bg-yellow">0</td>
  1064. <td class="bg-blue-dark">0</td>
  1065. </tr>
  1066. <tr>
  1067. <td class="bg-orange">Produced</td>
  1068. <td class="bg-orange">0</td>
  1069. <td class="bg-orange">0</td>
  1070. <td class="bg-orange">0</td>
  1071. <td class="bg-orange">0</td>
  1072. <td class="bg-orange">0</td>
  1073. <td class="bg-orange">0</td>
  1074. <td class="bg-orange">0</td>
  1075. <td class="bg-orange">0</td>
  1076. <td class="bg-orange">0</td>
  1077. <td class="bg-orange">0</td>
  1078. <td class="bg-orange">0</td>
  1079. <td class="bg-blue">0</td>
  1080. <td class="bg-blue">0</td>
  1081. <td class="bg-blue">HS Producet</td>
  1082. <td class="bg-purple">kg/h</td>
  1083. <td class="bg-green">Kpa</td>
  1084. <td class="bg-yellow">℃</td>
  1085. <td class="bg-blue-dark">台</td>
  1086. </tr>
  1087. </table>
  1088. </div>
  1089. </div>
  1090. </template>
  1091. <script>
  1092. import { getReportByReportDate, listReport, getReport, delReport, addReport, updateReport, exportReport, importTemplate} from "@/api/production/report";
  1093. import { treeselect } from "@/api/system/dept";
  1094. import { getToken } from "@/utils/auth";
  1095. import Treeselect from "@riophae/vue-treeselect";
  1096. import "@riophae/vue-treeselect/dist/vue-treeselect.css";
  1097. export default {
  1098. name: "DailyProductionReport",
  1099. components: { Treeselect },
  1100. data() {
  1101. return {
  1102. // 遮罩层
  1103. loading: true,
  1104. // 选中数组
  1105. ids: [],
  1106. // 非单个禁用
  1107. single: true,
  1108. // 非多个禁用
  1109. multiple: true,
  1110. // 显示搜索条件
  1111. showSearch: true,
  1112. // 总条数
  1113. total: 0,
  1114. // 每日生产报告表格数据
  1115. reportList: [],
  1116. // 弹出层标题
  1117. title: "",
  1118. // 部门树选项
  1119. deptOptions: undefined,
  1120. clientHeight:300,
  1121. // 是否显示弹出层
  1122. open: false,
  1123. // 用户导入参数
  1124. upload: {
  1125. // 是否显示弹出层(用户导入)
  1126. open: false,
  1127. // 弹出层标题(用户导入)
  1128. title: "",
  1129. // 是否禁用上传
  1130. isUploading: false,
  1131. // 是否更新已经存在的用户数据
  1132. updateSupport: 0,
  1133. // 设置上传的请求头部
  1134. headers: { Authorization: "Bearer " + getToken() },
  1135. // 上传的地址
  1136. url: process.env.VUE_APP_BASE_API + "/production/report/importData"
  1137. },
  1138. // 查询参数
  1139. queryParams: {
  1140. pageNum: 1,
  1141. pageSize: 20,
  1142. fromDate: null,
  1143. toDate: null,
  1144. reportDate: null,
  1145. reportCode: null,
  1146. nap: null,
  1147. c5: null,
  1148. c6C8Na: null,
  1149. wisonEthane: null,
  1150. lpgToFurnace: null,
  1151. raff1FrBd: null,
  1152. raff2FrIb: null,
  1153. raff3FrBd: null,
  1154. raffinate2pFr2ph: null,
  1155. c2FrLdpe: null,
  1156. c3FrOxo: null,
  1157. mixedC3C4: null,
  1158. hyC9: null,
  1159. pguOffgas: null,
  1160. washOil: null,
  1161. toluene: null,
  1162. hyC4FrR800: null,
  1163. h2YieldPercentage: null,
  1164. h2Produced: null,
  1165. h2Inventory: null,
  1166. h2Change: null,
  1167. h2Import: null,
  1168. h2Export: null,
  1169. h2ToPgu: null,
  1170. h2ToYpc: null,
  1171. h2ToOxo: null,
  1172. h2FrSyngasToSub: null,
  1173. ethylenYieldPercentage: null,
  1174. ethylenProduced: null,
  1175. ethylenInventory: null,
  1176. ethylenChange: null,
  1177. ethylenImport: null,
  1178. ethylenExport: null,
  1179. ethylenToTm: null,
  1180. ethylenToTs: null,
  1181. ethylenToEoEg: null,
  1182. ethylenToOxo: null,
  1183. ethylenToYbs: null,
  1184. ethylenToYpc: null,
  1185. ethylenToWacker: null,
  1186. ethylenToDyna: null,
  1187. ethylenToCelanLongx: null,
  1188. ethylenFrYpc: null,
  1189. ethylenFrLongxiang: null,
  1190. propyleneYieldPercentage: null,
  1191. propyleneProduced: null,
  1192. propyleneInventory: null,
  1193. propyleneChange: null,
  1194. propyleneImport: null,
  1195. propyleneExport: null,
  1196. propyleneToAaAe: null,
  1197. propyleneToGaa: null,
  1198. propyleneToOxo: null,
  1199. propyleneToLdpe: null,
  1200. propyleneToYpc: null,
  1201. propyleneToRoad: null,
  1202. propyleneToShip: null,
  1203. propyleneFrYpc: null,
  1204. propyleneFrShip: null,
  1205. propyleneFrChengzhi: null,
  1206. c3LpgYieldPercentage: null,
  1207. c4LpgYieldPercentage: null,
  1208. c3LpgProduced: null,
  1209. c4LpgProduced: null,
  1210. c3C4Inventory: null,
  1211. c3C4Change: null,
  1212. c3C4Import: null,
  1213. c3C4Export: null,
  1214. c3C4ToSub: null,
  1215. c3C4ToFurAsFule: null,
  1216. c3C4AsFeed: null,
  1217. c3C4FrYpc: null,
  1218. c3C4FrTruck: null,
  1219. mixedC4sYieldPercentage: null,
  1220. mixedC4sProduced: null,
  1221. mixedC4sInventory: null,
  1222. mixedC4sChange: null,
  1223. mixedC4sImport: null,
  1224. mixedC4sExport: null,
  1225. mixedC4sToBd: null,
  1226. mixedC4sToYpc: null,
  1227. mixedC4sToTruck: null,
  1228. mixedC4sToShip: null,
  1229. mixedC4sFrYpc: null,
  1230. mixedC4sFrTruck: null,
  1231. mixedC4sFrShip: null,
  1232. mixedC4sFrBdR1: null,
  1233. mixedC4sToR800: null,
  1234. eboYieldPercentage: null,
  1235. eboProduced: null,
  1236. eboInventory: null,
  1237. eboChange: null,
  1238. eboImport: null,
  1239. eboExport: null,
  1240. eboToShip: null,
  1241. eboToRttf: null,
  1242. eboToTrain: null,
  1243. eboFrBd: null,
  1244. naphthaleneYieldPercentage: null,
  1245. naphthaleneProduced: null,
  1246. naphthaleneInventory: null,
  1247. naphthaleneChange: null,
  1248. naphthaleneImport: null,
  1249. naphthaleneExport: null,
  1250. naphthaleneToTruck: null,
  1251. poFluxOilYieldPercentage: null,
  1252. poFluxOilProduced: null,
  1253. poFluxOilInventory: null,
  1254. poFluxOilChange: null,
  1255. poFluxOilImport: null,
  1256. poFluxOilExport: null,
  1257. poFluxOilToBd: null,
  1258. offgasYieldPercentage: null,
  1259. offgasProduced: null,
  1260. offgasInventory: null,
  1261. offgasChange: null,
  1262. offgasImport: null,
  1263. offgasExport: null,
  1264. offgasToFurnance: null,
  1265. offgasToYbs: null,
  1266. offgasToCEru: null,
  1267. offgasSubInCloseU2: null,
  1268. offgasFlareSctu: null,
  1269. offgasToU2Nm3: null,
  1270. offgasFlareLossT: null,
  1271. rpgYieldPercentage: null,
  1272. rpgProduced: null,
  1273. rpgInventory: null,
  1274. rpgChange: null,
  1275. rpgImport: null,
  1276. rpgExport: null,
  1277. rpgToPgu: null,
  1278. rpgFrYfcc: null,
  1279. methaneYieldPercentage: null,
  1280. methaneProduced: null,
  1281. methaneToEoEg: null,
  1282. residueOilYieldPercentage: null,
  1283. residueOilProduced: null,
  1284. totalInput: null,
  1285. totalOutput: null,
  1286. totalLoss: null,
  1287. lossPercentage: null,
  1288. totalFurnanceFeed: null,
  1289. napFrCltf: null,
  1290. totalPE: null,
  1291. plantModeIs: null,
  1292. plantLoad3495tD: null,
  1293. avgFurnanceFeedTH: null,
  1294. feedingRatioPercentage: null,
  1295. hhpToe: null,
  1296. hhpTce: null,
  1297. hhpPre: null,
  1298. hhpCracker: null,
  1299. hhpCrackerTT: null,
  1300. hhpCrackerKgoe: null,
  1301. hhpCrackerKgce: null,
  1302. hhpPguAeu: null,
  1303. hhpPguAeuTT: null,
  1304. hhpPguAeuKgoe: null,
  1305. hhpPguAeuKgce: null,
  1306. hhpSctuFlare: null,
  1307. hhpSub: null,
  1308. hhpBcc: null,
  1309. ngToe: null,
  1310. ngTce: null,
  1311. ngPre: null,
  1312. ngCracker: null,
  1313. ngCrackerTT: null,
  1314. ngCrackerKgoe: null,
  1315. ngCrackerKgce: null,
  1316. ngPguAeu: null,
  1317. ngPguAeuTT: null,
  1318. ngPguAeuKgoe: null,
  1319. ngPguAeuKgce: null,
  1320. ngSctuFlare: null,
  1321. ngSub: null,
  1322. ngBcc: null,
  1323. fuelGasOffgasToe: null,
  1324. fuelGasOffgasTce: null,
  1325. fuelGasOffgasPre: null,
  1326. fuelGasOffgasCracker: null,
  1327. fuelGasOffgasCrackerTT: null,
  1328. fuelGasOffgasCrackerKgoe: null,
  1329. fuelGasOffgasCrackerKgce: null,
  1330. fuelGasOffgasPguAeu: null,
  1331. fuelGasOffgasPguAeuTT: null,
  1332. fuelGasOffgasPguAeuKgoe: null,
  1333. fuelGasOffgasPguAeuKgce: null,
  1334. fuelGasOffgasSctuFlare: null,
  1335. fuelGasOffgasSub: null,
  1336. fuelGasOffgasBcc: null,
  1337. shpToe: null,
  1338. shpTce: null,
  1339. shpPre: null,
  1340. shpCracker: null,
  1341. shpCrackerTT: null,
  1342. shpCrackerKgoe: null,
  1343. shpCrackerKgce: null,
  1344. shpPguAeu: null,
  1345. shpPguAeuTT: null,
  1346. shpPguAeuKgoe: null,
  1347. shpPguAeuKgce: null,
  1348. shpSctuFlare: null,
  1349. shpSub: null,
  1350. shpBcc: null,
  1351. hpToe: null,
  1352. hpTce: null,
  1353. hpPre: null,
  1354. hpCracker: null,
  1355. hpCrackerTT: null,
  1356. hpCrackerKgoe: null,
  1357. hpCrackerKgce: null,
  1358. hpPguAeu: null,
  1359. hpPguAeuTT: null,
  1360. hpPguAeuKgoe: null,
  1361. hpPguAeuKgce: null,
  1362. hpSctuFlare: null,
  1363. hpSub: null,
  1364. hpBcc: null,
  1365. mpToe: null,
  1366. mpTce: null,
  1367. mpPre: null,
  1368. mpCracker: null,
  1369. mpCrackerTT: null,
  1370. mpCrackerKgoe: null,
  1371. mpCrackerKgce: null,
  1372. mpPguAeu: null,
  1373. mpPguAeuTT: null,
  1374. mpPguAeuKgoe: null,
  1375. mpPguAeuKgce: null,
  1376. mpSctuFlare: null,
  1377. mpSub: null,
  1378. mpBcc: null,
  1379. lpToe: null,
  1380. lpTce: null,
  1381. lpPre: null,
  1382. lpCracker: null,
  1383. lpCrackerTT: null,
  1384. lpCrackerKgoe: null,
  1385. lpCrackerKgce: null,
  1386. lpPguAeu: null,
  1387. lpPguAeuTT: null,
  1388. lpPguAeuKgoe: null,
  1389. lpPguAeuKgce: null,
  1390. lpSctuFlare: null,
  1391. lpSub: null,
  1392. lpBcc: null,
  1393. electricityToe: null,
  1394. electricityTce: null,
  1395. electricityPre: null,
  1396. electricityCracker: null,
  1397. electricityCrackerTT: null,
  1398. electricityCrackerKgoe: null,
  1399. electricityCrackerKgce: null,
  1400. electricityPguAeu: null,
  1401. electricityPguAeuTT: null,
  1402. electricityPguAeuKgoe: null,
  1403. electricityPguAeuKgce: null,
  1404. electricitySctuFlare: null,
  1405. electricitySub: null,
  1406. electricityBcc: null,
  1407. coolingWaterToe: null,
  1408. coolingWaterTce: null,
  1409. coolingWaterPre: null,
  1410. coolingWaterCracker: null,
  1411. coolingWaterCrackerTT: null,
  1412. coolingWaterCrackerKgoe: null,
  1413. coolingWaterCrackerKgce: null,
  1414. coolingWaterPguAeu: null,
  1415. coolingWaterPguAeuTT: null,
  1416. coolingWaterPguAeuKgoe: null,
  1417. coolingWaterPguAeuKgce: null,
  1418. coolingWaterSctuFlare: null,
  1419. coolingWaterSub: null,
  1420. coolingWaterBcc: null,
  1421. polishedConToe: null,
  1422. polishedConTce: null,
  1423. polishedConPre: null,
  1424. polishedConCracker: null,
  1425. polishedConCrackerTT: null,
  1426. polishedConCrackerKgoe: null,
  1427. polishedConCrackerKgce: null,
  1428. polishedConPguAeu: null,
  1429. polishedConPguAeuTT: null,
  1430. polishedConPguAeuKgoe: null,
  1431. polishedConPguAeuKgce: null,
  1432. polishedConSctuFlare: null,
  1433. polishedConSub: null,
  1434. polishedConBcc: null,
  1435. hpBfwToe: null,
  1436. hpBfwTce: null,
  1437. hpBfwPre: null,
  1438. hpBfwCracker: null,
  1439. hpBfwCrackerTT: null,
  1440. hpBfwCrackerKgoe: null,
  1441. hpBfwCrackerKgce: null,
  1442. hpBfwPguAeu: null,
  1443. hpBfwPguAeuTT: null,
  1444. hpBfwPguAeuKgoe: null,
  1445. hpBfwPguAeuKgce: null,
  1446. hpBfwSctuFlare: null,
  1447. hpBfwSub: null,
  1448. hpBfwBcc: null,
  1449. prodWaterToe: null,
  1450. prodWaterTce: null,
  1451. prodWaterPre: null,
  1452. prodWaterCracker: null,
  1453. prodWaterCrackerTT: null,
  1454. prodWaterCrackerKgoe: null,
  1455. prodWaterCrackerKgce: null,
  1456. prodWaterPguAeu: null,
  1457. prodWaterPguAeuTT: null,
  1458. prodWaterPguAeuKgoe: null,
  1459. prodWaterPguAeuKgce: null,
  1460. prodWaterSctuFlare: null,
  1461. prodWaterSub: null,
  1462. prodWaterBcc: null,
  1463. turbineConToe: null,
  1464. turbineConTce: null,
  1465. turbineConPre: null,
  1466. turbineConCracker: null,
  1467. turbineConCrackerTT: null,
  1468. turbineConCrackerKgoe: null,
  1469. turbineConCrackerKgce: null,
  1470. turbineConPguAeu: null,
  1471. turbineConPguAeuTT: null,
  1472. turbineConPguAeuKgoe: null,
  1473. turbineConPguAeuKgce: null,
  1474. turbineConSctuFlare: null,
  1475. turbineConSub: null,
  1476. turbineConBcc: null,
  1477. paIaToe: null,
  1478. paIaTce: null,
  1479. paIaPre: null,
  1480. paIaCracker: null,
  1481. paIaCrackerTT: null,
  1482. paIaCrackerKgoe: null,
  1483. paIaCrackerKgce: null,
  1484. paIaPguAeu: null,
  1485. paIaPguAeuTT: null,
  1486. paIaPguAeuKgoe: null,
  1487. paIaPguAeuKgce: null,
  1488. paIaSctuFlare: null,
  1489. paIaSub: null,
  1490. paIaBcc: null,
  1491. n2Toe: null,
  1492. n2Tce: null,
  1493. n2Pre: null,
  1494. n2Cracker: null,
  1495. n2CrackerTT: null,
  1496. n2CrackerKgoe: null,
  1497. n2CrackerKgce: null,
  1498. n2PguAeu: null,
  1499. n2PguAeuTT: null,
  1500. n2PguAeuKgoe: null,
  1501. n2PguAeuKgce: null,
  1502. n2SctuFlare: null,
  1503. n2Sub: null,
  1504. n2Bcc: null,
  1505. totalToe: null,
  1506. totalTce: null,
  1507. totalPre: null,
  1508. totalCracker: null,
  1509. totalCrackerTT: null,
  1510. totalCrackerKgoe: null,
  1511. totalCrackerKgce: null,
  1512. totalPguAeu: null,
  1513. totalPguAeuTT: null,
  1514. totalPguAeuKgoe: null,
  1515. totalPguAeuKgce: null,
  1516. targetToe: null,
  1517. targetTce: null,
  1518. targetPre: null,
  1519. targetCracker: null,
  1520. targetCrackerTT: null,
  1521. targetCrackerKgoe: null,
  1522. targetCrackerKgce: null,
  1523. targetPguAeu: null,
  1524. targetPguAeuTT: null,
  1525. targetPguAeuKgoe: null,
  1526. targetPguAeuKgce: null,
  1527. producedToe: null,
  1528. producedTce: null,
  1529. producedPre: null,
  1530. producedCracker: null,
  1531. producedCrackerTT: null,
  1532. producedCrackerKgoe: null,
  1533. producedCrackerKgce: null,
  1534. producedPguAeu: null,
  1535. producedPguAeuTT: null,
  1536. producedPguAeuKgoe: null,
  1537. producedPguAeuKgce: null,
  1538. frEoEg: null,
  1539. loadPercentage: null,
  1540. hsProducet: null,
  1541. sctfStorageTotalC2: null,
  1542. sctfStorageTk1061: null,
  1543. sctfStorageTk1062: null,
  1544. sctfStorageTk1063: null,
  1545. sctfStorageTk1064: null,
  1546. sctfStorageTk1065Off: null,
  1547. sctfStorageTotalC3: null,
  1548. sctfStorageTk1011: null,
  1549. sctfStorageTk1012: null,
  1550. sctfStorageTk1013: null,
  1551. sctfStorageTk1014: null,
  1552. sctfStorageTk1040Off: null,
  1553. sctfStorageTk1020Lpg: null,
  1554. sctfStorageTk1111C4s: null,
  1555. sctfStorageTk1520Rpg: null,
  1556. sctfStorageTk1350Po: null,
  1557. sctfStorageTk1310Btx: null,
  1558. sctfStorageTk1330Ebo: null,
  1559. sctfStorageTk1430Lfo: null,
  1560. sctfStorageTk1320OffBtx: null,
  1561. sctfStorageT201Btx: null,
  1562. sctfStorageTk1340C9: null,
  1563. sctfStorageClt1350C9: null,
  1564. sctfStorageTk1160Nh3: null,
  1565. sctfStorageTk1510B: null,
  1566. sctfStorageClt1370B: null,
  1567. sctfStorageTk1360T: null,
  1568. sctfStorageTk1410X: null,
  1569. sctfStorageClt1380X: null,
  1570. sctfStorageTk1420Dimer: null,
  1571. sctfStorageTk1110R1: null,
  1572. sctfStorageTk1130Ib: null,
  1573. sctfStorageTk1150R3: null,
  1574. sctfStorageTk1140Bd: null,
  1575. sctfStorageTk1141Bd: null,
  1576. sctfStorageTk1142Bd: null,
  1577. sctfStorageTotalNap: null,
  1578. sctfStorageCltf1621: null,
  1579. sctfStorageCltf1622: null,
  1580. sctfStorageCltf1623: null,
  1581. pguToRpg: null,
  1582. rpgToPgu2: null,
  1583. pguRpgTH: null,
  1584. pguRpg1: null,
  1585. pguRpg2: null,
  1586. pguH2: null,
  1587. pguTotalFeed: null,
  1588. pguOutput: null,
  1589. pguTotalLoss: null,
  1590. pguLossPercentage: null,
  1591. pguFeedLoadPercentage: null,
  1592. pguToAeu: null,
  1593. aeuToPgu: null,
  1594. pguAeuTH: null,
  1595. pguBtxYeildPercentage: null,
  1596. pguBtxProduced: null,
  1597. pguBtxInventory: null,
  1598. pguBtxChange: null,
  1599. pguBtxExport: null,
  1600. pguBtxToAeu: null,
  1601. pguWashoilYeildPercentage: null,
  1602. pguWashoilProduced: null,
  1603. pguWashoilInventory: null,
  1604. pguWashoilChange: null,
  1605. pguWashoilExport: null,
  1606. pguWashoilToEu: null,
  1607. pguOffgasYeildPercentage: null,
  1608. pguOffgasProduced: null,
  1609. pguOffgasInventory: null,
  1610. pguOffgasChange: null,
  1611. pguOffgasExport: null,
  1612. pguOffgasToEu: null,
  1613. pguC5YeildPercentage: null,
  1614. pguC5Produced: null,
  1615. pguC5Inventory: null,
  1616. pguC5Change: null,
  1617. pguC5Export: null,
  1618. pguC5ToAeu: null,
  1619. pguC5ToEu: null,
  1620. pguC5ToYuanguan: null,
  1621. pguC9YeildPercentage: null,
  1622. pguC9Produced: null,
  1623. pguC9Inventory: null,
  1624. pguC9Change: null,
  1625. pguC9Export: null,
  1626. pguC9ToAeu: null,
  1627. pguC9ToRttf: null,
  1628. pguC9ToShip: null,
  1629. pguC9ToYfcc: null,
  1630. aeuBenzeneYeildPercentage: null,
  1631. aeuBenzeneProduced: null,
  1632. aeuBenzeneInventory: null,
  1633. aeuBenzeneChange: null,
  1634. aeuBenzeneToShip: null,
  1635. aeuBenzeneFrShip: null,
  1636. aeuBenzeneToYbs: null,
  1637. aeuBenzeneToRttf: null,
  1638. aeuBenzeneToTrain: null,
  1639. aeuTolueneYeildPercentage: null,
  1640. aeuTolueneProduced: null,
  1641. aeuTolueneInventory: null,
  1642. aeuTolueneChange: null,
  1643. aeuTolueneToShip: null,
  1644. aeuTolueneFrShip: null,
  1645. aeuTolueneToYpc: null,
  1646. aeuTolueneFrYpc: null,
  1647. aeuTolueneToRttf: null,
  1648. aeuTolueneFrYbs: null,
  1649. aeuTolueneToEu: null,
  1650. aeuXyleneYeildPercentage: null,
  1651. aeuXyleneProduced: null,
  1652. aeuXyleneInventory: null,
  1653. aeuXyleneChange: null,
  1654. aeuXyleneToShip: null,
  1655. aeuXyleneFrShip: null,
  1656. aeuXyleneToYpc: null,
  1657. aeuXyleneFrYpc: null,
  1658. aeuXyleneToRttf: null,
  1659. aeuC6C8NaYeildPercentage: null,
  1660. aeuC6C8NaProduced: null,
  1661. aeuC6C8NaInventory: null,
  1662. aeuC6C8NaChange: null,
  1663. aeuC6C8NaToEu: null,
  1664. aeuC6C8NaToYpc: null,
  1665. aeuTotalFeed: null,
  1666. aeuOutput: null,
  1667. aeuTotalLoss: null,
  1668. aeuLossPercentage: null,
  1669. aeuFeedLoadPercentage: null,
  1670. pguAeuTotalFeed: null,
  1671. pguAeuOutput: null,
  1672. pguAeuTotalLoss: null,
  1673. pguAeuLossPercentage: null,
  1674. pguAeuFeedLoadPercentage: null
  1675. },
  1676. // 表单参数
  1677. form: {},
  1678. // 表单校验
  1679. rules: {
  1680. },
  1681. // 每日生产报告数据
  1682. reportData: {
  1683. fromDate: null,
  1684. toDate: null,
  1685. reportDate: null,
  1686. nap: null,
  1687. c5: null,
  1688. c6C8Na: null,
  1689. wisonEthane: null,
  1690. lpgToFurnace: null,
  1691. raff1FrBd: null,
  1692. raff2FrIb: null,
  1693. raff3FrBd: null,
  1694. raffinate2pFr2ph: null,
  1695. c2FrLdpe: null,
  1696. c3FrOxo: null,
  1697. mixedC3C4: null,
  1698. hyC9: null,
  1699. pguOffgas: null,
  1700. washOil: null,
  1701. toluene: null,
  1702. hyC4FrR800: null,
  1703. h2YieldPercentage: null,
  1704. h2Produced: null,
  1705. h2Inventory: null,
  1706. h2Change: null,
  1707. h2Import: null,
  1708. h2Export: null,
  1709. h2ToPgu: null,
  1710. h2ToYpc: null,
  1711. h2ToOxo: null,
  1712. h2FrSyngasToSub: null,
  1713. ethylenYieldPercentage: null,
  1714. ethylenProduced: null,
  1715. ethylenInventory: null,
  1716. ethylenChange: null,
  1717. ethylenImport: null,
  1718. ethylenExport: null,
  1719. ethylenToTm: null,
  1720. ethylenToTs: null,
  1721. ethylenToEoEg: null,
  1722. ethylenToOxo: null,
  1723. ethylenToYbs: null,
  1724. ethylenToYpc: null,
  1725. ethylenToWacker: null,
  1726. ethylenToDyna: null,
  1727. ethylenToCelanLongx: null,
  1728. ethylenFrYpc: null,
  1729. ethylenFrLongxiang: null,
  1730. propyleneYieldPercentage: null,
  1731. propyleneProduced: null,
  1732. propyleneInventory: null,
  1733. propyleneChange: null,
  1734. propyleneImport: null,
  1735. propyleneExport: null,
  1736. propyleneToAaAe: null,
  1737. propyleneToGaa: null,
  1738. propyleneToOxo: null,
  1739. propyleneToLdpe: null,
  1740. propyleneToYpc: null,
  1741. propyleneToRoad: null,
  1742. propyleneToShip: null,
  1743. propyleneFrYpc: null,
  1744. propyleneFrShip: null,
  1745. propyleneFrChengzhi: null,
  1746. c3LpgYieldPercentage: null,
  1747. c4LpgYieldPercentage: null,
  1748. c3LpgProduced: null,
  1749. c4LpgProduced: null,
  1750. c3C4Inventory: null,
  1751. c3C4Change: null,
  1752. c3C4Import: null,
  1753. c3C4Export: null,
  1754. c3C4ToSub: null,
  1755. c3C4ToFurAsFule: null,
  1756. c3C4AsFeed: null,
  1757. c3C4FrYpc: null,
  1758. c3C4FrTruck: null,
  1759. mixedC4sYieldPercentage: null,
  1760. mixedC4sProduced: null,
  1761. mixedC4sInventory: null,
  1762. mixedC4sChange: null,
  1763. mixedC4sImport: null,
  1764. mixedC4sExport: null,
  1765. mixedC4sToBd: null,
  1766. mixedC4sToYpc: null,
  1767. mixedC4sToTruck: null,
  1768. mixedC4sToShip: null,
  1769. mixedC4sFrYpc: null,
  1770. mixedC4sFrTruck: null,
  1771. mixedC4sFrShip: null,
  1772. mixedC4sFrBdR1: null,
  1773. mixedC4sToR800: null,
  1774. eboYieldPercentage: null,
  1775. eboProduced: null,
  1776. eboInventory: null,
  1777. eboChange: null,
  1778. eboImport: null,
  1779. eboExport: null,
  1780. eboToShip: null,
  1781. eboToRttf: null,
  1782. eboToTrain: null,
  1783. eboFrBd: null,
  1784. naphthaleneYieldPercentage: null,
  1785. naphthaleneProduced: null,
  1786. naphthaleneInventory: null,
  1787. naphthaleneChange: null,
  1788. naphthaleneImport: null,
  1789. naphthaleneExport: null,
  1790. naphthaleneToTruck: null,
  1791. poFluxOilYieldPercentage: null,
  1792. poFluxOilProduced: null,
  1793. poFluxOilInventory: null,
  1794. poFluxOilChange: null,
  1795. poFluxOilImport: null,
  1796. poFluxOilExport: null,
  1797. poFluxOilToBd: null,
  1798. offgasYieldPercentage: null,
  1799. offgasProduced: null,
  1800. offgasInventory: null,
  1801. offgasChange: null,
  1802. offgasImport: null,
  1803. offgasExport: null,
  1804. offgasToFurnance: null,
  1805. offgasToYbs: null,
  1806. offgasToCEru: null,
  1807. offgasSubInCloseU2: null,
  1808. offgasFlareSctu: null,
  1809. offgasToU2Nm3: null,
  1810. offgasFlareLossT: null,
  1811. rpgYieldPercentage: null,
  1812. rpgProduced: null,
  1813. rpgInventory: null,
  1814. rpgChange: null,
  1815. rpgImport: null,
  1816. rpgExport: null,
  1817. rpgToPgu: null,
  1818. rpgFrYfcc: null,
  1819. methaneYieldPercentage: null,
  1820. methaneProduced: null,
  1821. methaneToEoEg: null,
  1822. residueOilYieldPercentage: null,
  1823. residueOilProduced: null,
  1824. totalInput: null,
  1825. totalOutput: null,
  1826. totalLoss: null,
  1827. lossPercentage: null,
  1828. totalFurnanceFeed: null,
  1829. napFrCltf: null,
  1830. totalPE: null,
  1831. plantModeIs: null,
  1832. plantLoad3495tD: null,
  1833. avgFurnanceFeedTH: null,
  1834. feedingRatioPercentage: null,
  1835. hhpToe: null,
  1836. hhpTce: null,
  1837. hhpPre: null,
  1838. hhpCracker: null,
  1839. hhpCrackerTT: null,
  1840. hhpCrackerKgoe: null,
  1841. hhpCrackerKgce: null,
  1842. hhpPguAeu: null,
  1843. hhpPguAeuTT: null,
  1844. hhpPguAeuKgoe: null,
  1845. hhpPguAeuKgce: null,
  1846. hhpSctuFlare: null,
  1847. hhpSub: null,
  1848. hhpBcc: null,
  1849. ngToe: null,
  1850. ngTce: null,
  1851. ngPre: null,
  1852. ngCracker: null,
  1853. ngCrackerTT: null,
  1854. ngCrackerKgoe: null,
  1855. ngCrackerKgce: null,
  1856. ngPguAeu: null,
  1857. ngPguAeuTT: null,
  1858. ngPguAeuKgoe: null,
  1859. ngPguAeuKgce: null,
  1860. ngSctuFlare: null,
  1861. ngSub: null,
  1862. ngBcc: null,
  1863. fuelGasOffgasToe: null,
  1864. fuelGasOffgasTce: null,
  1865. fuelGasOffgasPre: null,
  1866. fuelGasOffgasCracker: null,
  1867. fuelGasOffgasCrackerTT: null,
  1868. fuelGasOffgasCrackerKgoe: null,
  1869. fuelGasOffgasCrackerKgce: null,
  1870. fuelGasOffgasPguAeu: null,
  1871. fuelGasOffgasPguAeuTT: null,
  1872. fuelGasOffgasPguAeuKgoe: null,
  1873. fuelGasOffgasPguAeuKgce: null,
  1874. fuelGasOffgasSctuFlare: null,
  1875. fuelGasOffgasSub: null,
  1876. fuelGasOffgasBcc: null,
  1877. shpToe: null,
  1878. shpTce: null,
  1879. shpPre: null,
  1880. shpCracker: null,
  1881. shpCrackerTT: null,
  1882. shpCrackerKgoe: null,
  1883. shpCrackerKgce: null,
  1884. shpPguAeu: null,
  1885. shpPguAeuTT: null,
  1886. shpPguAeuKgoe: null,
  1887. shpPguAeuKgce: null,
  1888. shpSctuFlare: null,
  1889. shpSub: null,
  1890. shpBcc: null,
  1891. hpToe: null,
  1892. hpTce: null,
  1893. hpPre: null,
  1894. hpCracker: null,
  1895. hpCrackerTT: null,
  1896. hpCrackerKgoe: null,
  1897. hpCrackerKgce: null,
  1898. hpPguAeu: null,
  1899. hpPguAeuTT: null,
  1900. hpPguAeuKgoe: null,
  1901. hpPguAeuKgce: null,
  1902. hpSctuFlare: null,
  1903. hpSub: null,
  1904. hpBcc: null,
  1905. mpToe: null,
  1906. mpTce: null,
  1907. mpPre: null,
  1908. mpCracker: null,
  1909. mpCrackerTT: null,
  1910. mpCrackerKgoe: null,
  1911. mpCrackerKgce: null,
  1912. mpPguAeu: null,
  1913. mpPguAeuTT: null,
  1914. mpPguAeuKgoe: null,
  1915. mpPguAeuKgce: null,
  1916. mpSctuFlare: null,
  1917. mpSub: null,
  1918. mpBcc: null,
  1919. lpToe: null,
  1920. lpTce: null,
  1921. lpPre: null,
  1922. lpCracker: null,
  1923. lpCrackerTT: null,
  1924. lpCrackerKgoe: null,
  1925. lpCrackerKgce: null,
  1926. lpPguAeu: null,
  1927. lpPguAeuTT: null,
  1928. lpPguAeuKgoe: null,
  1929. lpPguAeuKgce: null,
  1930. lpSctuFlare: null,
  1931. lpSub: null,
  1932. lpBcc: null,
  1933. electricityToe: null,
  1934. electricityTce: null,
  1935. electricityPre: null,
  1936. electricityCracker: null,
  1937. electricityCrackerTT: null,
  1938. electricityCrackerKgoe: null,
  1939. electricityCrackerKgce: null,
  1940. electricityPguAeu: null,
  1941. electricityPguAeuTT: null,
  1942. electricityPguAeuKgoe: null,
  1943. electricityPguAeuKgce: null,
  1944. electricitySctuFlare: null,
  1945. electricitySub: null,
  1946. electricityBcc: null,
  1947. coolingWaterToe: null,
  1948. coolingWaterTce: null,
  1949. coolingWaterPre: null,
  1950. coolingWaterCracker: null,
  1951. coolingWaterCrackerTT: null,
  1952. coolingWaterCrackerKgoe: null,
  1953. coolingWaterCrackerKgce: null,
  1954. coolingWaterPguAeu: null,
  1955. coolingWaterPguAeuTT: null,
  1956. coolingWaterPguAeuKgoe: null,
  1957. coolingWaterPguAeuKgce: null,
  1958. coolingWaterSctuFlare: null,
  1959. coolingWaterSub: null,
  1960. coolingWaterBcc: null,
  1961. polishedConToe: null,
  1962. polishedConTce: null,
  1963. polishedConPre: null,
  1964. polishedConCracker: null,
  1965. polishedConCrackerTT: null,
  1966. polishedConCrackerKgoe: null,
  1967. polishedConCrackerKgce: null,
  1968. polishedConPguAeu: null,
  1969. polishedConPguAeuTT: null,
  1970. polishedConPguAeuKgoe: null,
  1971. polishedConPguAeuKgce: null,
  1972. polishedConSctuFlare: null,
  1973. polishedConSub: null,
  1974. polishedConBcc: null,
  1975. hpBfwToe: null,
  1976. hpBfwTce: null,
  1977. hpBfwPre: null,
  1978. hpBfwCracker: null,
  1979. hpBfwCrackerTT: null,
  1980. hpBfwCrackerKgoe: null,
  1981. hpBfwCrackerKgce: null,
  1982. hpBfwPguAeu: null,
  1983. hpBfwPguAeuTT: null,
  1984. hpBfwPguAeuKgoe: null,
  1985. hpBfwPguAeuKgce: null,
  1986. hpBfwSctuFlare: null,
  1987. hpBfwSub: null,
  1988. hpBfwBcc: null,
  1989. prodWaterToe: null,
  1990. prodWaterTce: null,
  1991. prodWaterPre: null,
  1992. prodWaterCracker: null,
  1993. prodWaterCrackerTT: null,
  1994. prodWaterCrackerKgoe: null,
  1995. prodWaterCrackerKgce: null,
  1996. prodWaterPguAeu: null,
  1997. prodWaterPguAeuTT: null,
  1998. prodWaterPguAeuKgoe: null,
  1999. prodWaterPguAeuKgce: null,
  2000. prodWaterSctuFlare: null,
  2001. prodWaterSub: null,
  2002. prodWaterBcc: null,
  2003. turbineConToe: null,
  2004. turbineConTce: null,
  2005. turbineConPre: null,
  2006. turbineConCracker: null,
  2007. turbineConCrackerTT: null,
  2008. turbineConCrackerKgoe: null,
  2009. turbineConCrackerKgce: null,
  2010. turbineConPguAeu: null,
  2011. turbineConPguAeuTT: null,
  2012. turbineConPguAeuKgoe: null,
  2013. turbineConPguAeuKgce: null,
  2014. turbineConSctuFlare: null,
  2015. turbineConSub: null,
  2016. turbineConBcc: null,
  2017. paIaToe: null,
  2018. paIaTce: null,
  2019. paIaPre: null,
  2020. paIaCracker: null,
  2021. paIaCrackerTT: null,
  2022. paIaCrackerKgoe: null,
  2023. paIaCrackerKgce: null,
  2024. paIaPguAeu: null,
  2025. paIaPguAeuTT: null,
  2026. paIaPguAeuKgoe: null,
  2027. paIaPguAeuKgce: null,
  2028. paIaSctuFlare: null,
  2029. paIaSub: null,
  2030. paIaBcc: null,
  2031. n2Toe: null,
  2032. n2Tce: null,
  2033. n2Pre: null,
  2034. n2Cracker: null,
  2035. n2CrackerTT: null,
  2036. n2CrackerKgoe: null,
  2037. n2CrackerKgce: null,
  2038. n2PguAeu: null,
  2039. n2PguAeuTT: null,
  2040. n2PguAeuKgoe: null,
  2041. n2PguAeuKgce: null,
  2042. n2SctuFlare: null,
  2043. n2Sub: null,
  2044. n2Bcc: null,
  2045. totalToe: null,
  2046. totalTce: null,
  2047. totalPre: null,
  2048. totalCracker: null,
  2049. totalCrackerTT: null,
  2050. totalCrackerKgoe: null,
  2051. totalCrackerKgce: null,
  2052. totalPguAeu: null,
  2053. totalPguAeuTT: null,
  2054. totalPguAeuKgoe: null,
  2055. totalPguAeuKgce: null,
  2056. targetToe: null,
  2057. targetTce: null,
  2058. targetPre: null,
  2059. targetCracker: null,
  2060. targetCrackerTT: null,
  2061. targetCrackerKgoe: null,
  2062. targetCrackerKgce: null,
  2063. targetPguAeu: null,
  2064. targetPguAeuTT: null,
  2065. targetPguAeuKgoe: null,
  2066. targetPguAeuKgce: null,
  2067. producedToe: null,
  2068. producedTce: null,
  2069. producedPre: null,
  2070. producedCracker: null,
  2071. producedCrackerTT: null,
  2072. producedCrackerKgoe: null,
  2073. producedCrackerKgce: null,
  2074. producedPguAeu: null,
  2075. producedPguAeuTT: null,
  2076. producedPguAeuKgoe: null,
  2077. producedPguAeuKgce: null,
  2078. frEoEg: null,
  2079. loadPercentage: null,
  2080. hsProducet: null,
  2081. sctfStorageTotalC2: null,
  2082. sctfStorageTk1061: null,
  2083. sctfStorageTk1062: null,
  2084. sctfStorageTk1063: null,
  2085. sctfStorageTk1064: null,
  2086. sctfStorageTk1065Off: null,
  2087. sctfStorageTotalC3: null,
  2088. sctfStorageTk1011: null,
  2089. sctfStorageTk1012: null,
  2090. sctfStorageTk1013: null,
  2091. sctfStorageTk1014: null,
  2092. sctfStorageTk1040Off: null,
  2093. sctfStorageTk1020Lpg: null,
  2094. sctfStorageTk1111C4s: null,
  2095. sctfStorageTk1520Rpg: null,
  2096. sctfStorageTk1350Po: null,
  2097. sctfStorageTk1310Btx: null,
  2098. sctfStorageTk1330Ebo: null,
  2099. sctfStorageTk1430Lfo: null,
  2100. sctfStorageTk1320OffBtx: null,
  2101. sctfStorageT201Btx: null,
  2102. sctfStorageTk1340C9: null,
  2103. sctfStorageClt1350C9: null,
  2104. sctfStorageTk1160Nh3: null,
  2105. sctfStorageTk1510B: null,
  2106. sctfStorageClt1370B: null,
  2107. sctfStorageTk1360T: null,
  2108. sctfStorageTk1410X: null,
  2109. sctfStorageClt1380X: null,
  2110. sctfStorageTk1420Dimer: null,
  2111. sctfStorageTk1110R1: null,
  2112. sctfStorageTk1130Ib: null,
  2113. sctfStorageTk1150R3: null,
  2114. sctfStorageTk1140Bd: null,
  2115. sctfStorageTk1141Bd: null,
  2116. sctfStorageTk1142Bd: null,
  2117. sctfStorageTotalNap: null,
  2118. sctfStorageCltf1621: null,
  2119. sctfStorageCltf1622: null,
  2120. sctfStorageCltf1623: null,
  2121. pguToRpg: null,
  2122. rpgToPgu2: null,
  2123. pguRpgTH: null,
  2124. pguRpg1: null,
  2125. pguRpg2: null,
  2126. pguH2: null,
  2127. pguTotalFeed: null,
  2128. pguOutput: null,
  2129. pguTotalLoss: null,
  2130. pguLossPercentage: null,
  2131. pguFeedLoadPercentage: null,
  2132. pguToAeu: null,
  2133. aeuToPgu: null,
  2134. pguAeuTH: null,
  2135. pguBtxYeildPercentage: null,
  2136. pguBtxProduced: null,
  2137. pguBtxInventory: null,
  2138. pguBtxChange: null,
  2139. pguBtxExport: null,
  2140. pguBtxToAeu: null,
  2141. pguWashoilYeildPercentage: null,
  2142. pguWashoilProduced: null,
  2143. pguWashoilInventory: null,
  2144. pguWashoilChange: null,
  2145. pguWashoilExport: null,
  2146. pguWashoilToEu: null,
  2147. pguOffgasYeildPercentage: null,
  2148. pguOffgasProduced: null,
  2149. pguOffgasInventory: null,
  2150. pguOffgasChange: null,
  2151. pguOffgasExport: null,
  2152. pguOffgasToEu: null,
  2153. pguC5YeildPercentage: null,
  2154. pguC5Produced: null,
  2155. pguC5Inventory: null,
  2156. pguC5Change: null,
  2157. pguC5Export: null,
  2158. pguC5ToAeu: null,
  2159. pguC5ToEu: null,
  2160. pguC5ToYuanguan: null,
  2161. pguC9YeildPercentage: null,
  2162. pguC9Produced: null,
  2163. pguC9Inventory: null,
  2164. pguC9Change: null,
  2165. pguC9Export: null,
  2166. pguC9ToAeu: null,
  2167. pguC9ToRttf: null,
  2168. pguC9ToShip: null,
  2169. pguC9ToYfcc: null,
  2170. aeuBenzeneYeildPercentage: null,
  2171. aeuBenzeneProduced: null,
  2172. aeuBenzeneInventory: null,
  2173. aeuBenzeneChange: null,
  2174. aeuBenzeneToShip: null,
  2175. aeuBenzeneFrShip: null,
  2176. aeuBenzeneToYbs: null,
  2177. aeuBenzeneToRttf: null,
  2178. aeuBenzeneToTrain: null,
  2179. aeuTolueneYeildPercentage: null,
  2180. aeuTolueneProduced: null,
  2181. aeuTolueneInventory: null,
  2182. aeuTolueneChange: null,
  2183. aeuTolueneToShip: null,
  2184. aeuTolueneFrShip: null,
  2185. aeuTolueneToYpc: null,
  2186. aeuTolueneFrYpc: null,
  2187. aeuTolueneToRttf: null,
  2188. aeuTolueneFrYbs: null,
  2189. aeuTolueneToEu: null,
  2190. aeuXyleneYeildPercentage: null,
  2191. aeuXyleneProduced: null,
  2192. aeuXyleneInventory: null,
  2193. aeuXyleneChange: null,
  2194. aeuXyleneToShip: null,
  2195. aeuXyleneFrShip: null,
  2196. aeuXyleneToYpc: null,
  2197. aeuXyleneFrYpc: null,
  2198. aeuXyleneToRttf: null,
  2199. aeuC6C8NaYeildPercentage: null,
  2200. aeuC6C8NaProduced: null,
  2201. aeuC6C8NaInventory: null,
  2202. aeuC6C8NaChange: null,
  2203. aeuC6C8NaToEu: null,
  2204. aeuC6C8NaToYpc: null,
  2205. aeuTotalFeed: null,
  2206. aeuOutput: null,
  2207. aeuTotalLoss: null,
  2208. aeuLossPercentage: null,
  2209. aeuFeedLoadPercentage: null,
  2210. pguAeuTotalFeed: null,
  2211. pguAeuOutput: null,
  2212. pguAeuTotalLoss: null,
  2213. pguAeuLossPercentage: null,
  2214. pguAeuFeedLoadPercentage: null
  2215. },
  2216. // 日期保留
  2217. lastSelectedDate: null
  2218. };
  2219. },
  2220. watch: {
  2221. // 根据名称筛选部门树
  2222. deptName(val) {
  2223. this.$refs.tree.filter(val);
  2224. }
  2225. },
  2226. created() {
  2227. //设置表格高度对应屏幕高度
  2228. this.$nextTick(() => {
  2229. this.clientHeight = document.body.clientHeight -250
  2230. })
  2231. this.setDateAsToday();
  2232. this.getReport();
  2233. this.getTreeselect();
  2234. this.loading = false;
  2235. },
  2236. methods: {
  2237. /** 设置日期 */
  2238. setDateAsToday() {
  2239. let today = new Date();
  2240. let todayString = today.getFullYear()
  2241. + "-" + (today.getMonth() + 1)
  2242. + "-" + today.getDate();
  2243. // this.queryParams.reportDate = todayString;
  2244. // this.lastSelectedDate = todayString;
  2245. this.queryParams.reportDate = "2022-8-8";
  2246. this.lastSelectedDate = "2022-8-8";
  2247. },
  2248. /** 查询生产报告 */
  2249. getReport() {
  2250. this.loading = true;
  2251. listReport(this.queryParams).then(response => {
  2252. if (response.rows.length != 0) {
  2253. this.lastSelectedDate = this.queryParams.reportDate;
  2254. this.reportData = response.rows[0];
  2255. this.loading = false;
  2256. } else {
  2257. let str = "未查询到" + this.queryParams.reportDate + "的日报,请修改搜索日期或手动导入数据。";
  2258. this.queryParams.reportDate = this.lastSelectedDate;
  2259. this.$message.error(str);
  2260. this.loading = false;
  2261. }
  2262. });
  2263. },
  2264. /** 查询每日生产报告列表 */
  2265. getList() {
  2266. this.loading = true;
  2267. listReport(this.queryParams).then(response => {
  2268. this.reportList = response.rows;
  2269. this.total = response.total;
  2270. this.loading = false;
  2271. });
  2272. },
  2273. /** 查询部门下拉树结构 */
  2274. getTreeselect() {
  2275. treeselect().then(response => {
  2276. this.deptOptions = response.data;
  2277. });
  2278. },
  2279. // 取消按钮
  2280. cancel() {
  2281. this.open = false;
  2282. this.reset();
  2283. },
  2284. // 表单重置
  2285. reset() {
  2286. this.form = {
  2287. id: null,
  2288. fromDate: null,
  2289. toDate: null,
  2290. reportDate: null,
  2291. reportCode: null,
  2292. nap: null,
  2293. c5: null,
  2294. c6C8Na: null,
  2295. wisonEthane: null,
  2296. lpgToFurnace: null,
  2297. raff1FrBd: null,
  2298. raff2FrIb: null,
  2299. raff3FrBd: null,
  2300. raffinate2pFr2ph: null,
  2301. c2FrLdpe: null,
  2302. c3FrOxo: null,
  2303. mixedC3C4: null,
  2304. hyC9: null,
  2305. pguOffgas: null,
  2306. washOil: null,
  2307. toluene: null,
  2308. hyC4FrR800: null,
  2309. h2YieldPercentage: null,
  2310. h2Produced: null,
  2311. h2Inventory: null,
  2312. h2Change: null,
  2313. h2Import: null,
  2314. h2Export: null,
  2315. h2ToPgu: null,
  2316. h2ToYpc: null,
  2317. h2ToOxo: null,
  2318. h2FrSyngasToSub: null,
  2319. ethylenYieldPercentage: null,
  2320. ethylenProduced: null,
  2321. ethylenInventory: null,
  2322. ethylenChange: null,
  2323. ethylenImport: null,
  2324. ethylenExport: null,
  2325. ethylenToTm: null,
  2326. ethylenToTs: null,
  2327. ethylenToEoEg: null,
  2328. ethylenToOxo: null,
  2329. ethylenToYbs: null,
  2330. ethylenToYpc: null,
  2331. ethylenToWacker: null,
  2332. ethylenToDyna: null,
  2333. ethylenToCelanLongx: null,
  2334. ethylenFrYpc: null,
  2335. ethylenFrLongxiang: null,
  2336. propyleneYieldPercentage: null,
  2337. propyleneProduced: null,
  2338. propyleneInventory: null,
  2339. propyleneChange: null,
  2340. propyleneImport: null,
  2341. propyleneExport: null,
  2342. propyleneToAaAe: null,
  2343. propyleneToGaa: null,
  2344. propyleneToOxo: null,
  2345. propyleneToLdpe: null,
  2346. propyleneToYpc: null,
  2347. propyleneToRoad: null,
  2348. propyleneToShip: null,
  2349. propyleneFrYpc: null,
  2350. propyleneFrShip: null,
  2351. propyleneFrChengzhi: null,
  2352. c3LpgYieldPercentage: null,
  2353. c4LpgYieldPercentage: null,
  2354. c3LpgProduced: null,
  2355. c4LpgProduced: null,
  2356. c3C4Inventory: null,
  2357. c3C4Change: null,
  2358. c3C4Import: null,
  2359. c3C4Export: null,
  2360. c3C4ToSub: null,
  2361. c3C4ToFurAsFule: null,
  2362. c3C4AsFeed: null,
  2363. c3C4FrYpc: null,
  2364. c3C4FrTruck: null,
  2365. mixedC4sYieldPercentage: null,
  2366. mixedC4sProduced: null,
  2367. mixedC4sInventory: null,
  2368. mixedC4sChange: null,
  2369. mixedC4sImport: null,
  2370. mixedC4sExport: null,
  2371. mixedC4sToBd: null,
  2372. mixedC4sToYpc: null,
  2373. mixedC4sToTruck: null,
  2374. mixedC4sToShip: null,
  2375. mixedC4sFrYpc: null,
  2376. mixedC4sFrTruck: null,
  2377. mixedC4sFrShip: null,
  2378. mixedC4sFrBdR1: null,
  2379. mixedC4sToR800: null,
  2380. eboYieldPercentage: null,
  2381. eboProduced: null,
  2382. eboInventory: null,
  2383. eboChange: null,
  2384. eboImport: null,
  2385. eboExport: null,
  2386. eboToShip: null,
  2387. eboToRttf: null,
  2388. eboToTrain: null,
  2389. eboFrBd: null,
  2390. naphthaleneYieldPercentage: null,
  2391. naphthaleneProduced: null,
  2392. naphthaleneInventory: null,
  2393. naphthaleneChange: null,
  2394. naphthaleneImport: null,
  2395. naphthaleneExport: null,
  2396. naphthaleneToTruck: null,
  2397. poFluxOilYieldPercentage: null,
  2398. poFluxOilProduced: null,
  2399. poFluxOilInventory: null,
  2400. poFluxOilChange: null,
  2401. poFluxOilImport: null,
  2402. poFluxOilExport: null,
  2403. poFluxOilToBd: null,
  2404. offgasYieldPercentage: null,
  2405. offgasProduced: null,
  2406. offgasInventory: null,
  2407. offgasChange: null,
  2408. offgasImport: null,
  2409. offgasExport: null,
  2410. offgasToFurnance: null,
  2411. offgasToYbs: null,
  2412. offgasToCEru: null,
  2413. offgasSubInCloseU2: null,
  2414. offgasFlareSctu: null,
  2415. offgasToU2Nm3: null,
  2416. offgasFlareLossT: null,
  2417. rpgYieldPercentage: null,
  2418. rpgProduced: null,
  2419. rpgInventory: null,
  2420. rpgChange: null,
  2421. rpgImport: null,
  2422. rpgExport: null,
  2423. rpgToPgu: null,
  2424. rpgFrYfcc: null,
  2425. methaneYieldPercentage: null,
  2426. methaneProduced: null,
  2427. methaneToEoEg: null,
  2428. residueOilYieldPercentage: null,
  2429. residueOilProduced: null,
  2430. totalInput: null,
  2431. totalOutput: null,
  2432. totalLoss: null,
  2433. lossPercentage: null,
  2434. totalFurnanceFeed: null,
  2435. napFrCltf: null,
  2436. totalPE: null,
  2437. plantModeIs: null,
  2438. plantLoad3495tD: null,
  2439. avgFurnanceFeedTH: null,
  2440. feedingRatioPercentage: null,
  2441. hhpToe: null,
  2442. hhpTce: null,
  2443. hhpPre: null,
  2444. hhpCracker: null,
  2445. hhpCrackerTT: null,
  2446. hhpCrackerKgoe: null,
  2447. hhpCrackerKgce: null,
  2448. hhpPguAeu: null,
  2449. hhpPguAeuTT: null,
  2450. hhpPguAeuKgoe: null,
  2451. hhpPguAeuKgce: null,
  2452. hhpSctuFlare: null,
  2453. hhpSub: null,
  2454. hhpBcc: null,
  2455. ngToe: null,
  2456. ngTce: null,
  2457. ngPre: null,
  2458. ngCracker: null,
  2459. ngCrackerTT: null,
  2460. ngCrackerKgoe: null,
  2461. ngCrackerKgce: null,
  2462. ngPguAeu: null,
  2463. ngPguAeuTT: null,
  2464. ngPguAeuKgoe: null,
  2465. ngPguAeuKgce: null,
  2466. ngSctuFlare: null,
  2467. ngSub: null,
  2468. ngBcc: null,
  2469. fuelGasOffgasToe: null,
  2470. fuelGasOffgasTce: null,
  2471. fuelGasOffgasPre: null,
  2472. fuelGasOffgasCracker: null,
  2473. fuelGasOffgasCrackerTT: null,
  2474. fuelGasOffgasCrackerKgoe: null,
  2475. fuelGasOffgasCrackerKgce: null,
  2476. fuelGasOffgasPguAeu: null,
  2477. fuelGasOffgasPguAeuTT: null,
  2478. fuelGasOffgasPguAeuKgoe: null,
  2479. fuelGasOffgasPguAeuKgce: null,
  2480. fuelGasOffgasSctuFlare: null,
  2481. fuelGasOffgasSub: null,
  2482. fuelGasOffgasBcc: null,
  2483. shpToe: null,
  2484. shpTce: null,
  2485. shpPre: null,
  2486. shpCracker: null,
  2487. shpCrackerTT: null,
  2488. shpCrackerKgoe: null,
  2489. shpCrackerKgce: null,
  2490. shpPguAeu: null,
  2491. shpPguAeuTT: null,
  2492. shpPguAeuKgoe: null,
  2493. shpPguAeuKgce: null,
  2494. shpSctuFlare: null,
  2495. shpSub: null,
  2496. shpBcc: null,
  2497. hpToe: null,
  2498. hpTce: null,
  2499. hpPre: null,
  2500. hpCracker: null,
  2501. hpCrackerTT: null,
  2502. hpCrackerKgoe: null,
  2503. hpCrackerKgce: null,
  2504. hpPguAeu: null,
  2505. hpPguAeuTT: null,
  2506. hpPguAeuKgoe: null,
  2507. hpPguAeuKgce: null,
  2508. hpSctuFlare: null,
  2509. hpSub: null,
  2510. hpBcc: null,
  2511. mpToe: null,
  2512. mpTce: null,
  2513. mpPre: null,
  2514. mpCracker: null,
  2515. mpCrackerTT: null,
  2516. mpCrackerKgoe: null,
  2517. mpCrackerKgce: null,
  2518. mpPguAeu: null,
  2519. mpPguAeuTT: null,
  2520. mpPguAeuKgoe: null,
  2521. mpPguAeuKgce: null,
  2522. mpSctuFlare: null,
  2523. mpSub: null,
  2524. mpBcc: null,
  2525. lpToe: null,
  2526. lpTce: null,
  2527. lpPre: null,
  2528. lpCracker: null,
  2529. lpCrackerTT: null,
  2530. lpCrackerKgoe: null,
  2531. lpCrackerKgce: null,
  2532. lpPguAeu: null,
  2533. lpPguAeuTT: null,
  2534. lpPguAeuKgoe: null,
  2535. lpPguAeuKgce: null,
  2536. lpSctuFlare: null,
  2537. lpSub: null,
  2538. lpBcc: null,
  2539. electricityToe: null,
  2540. electricityTce: null,
  2541. electricityPre: null,
  2542. electricityCracker: null,
  2543. electricityCrackerTT: null,
  2544. electricityCrackerKgoe: null,
  2545. electricityCrackerKgce: null,
  2546. electricityPguAeu: null,
  2547. electricityPguAeuTT: null,
  2548. electricityPguAeuKgoe: null,
  2549. electricityPguAeuKgce: null,
  2550. electricitySctuFlare: null,
  2551. electricitySub: null,
  2552. electricityBcc: null,
  2553. coolingWaterToe: null,
  2554. coolingWaterTce: null,
  2555. coolingWaterPre: null,
  2556. coolingWaterCracker: null,
  2557. coolingWaterCrackerTT: null,
  2558. coolingWaterCrackerKgoe: null,
  2559. coolingWaterCrackerKgce: null,
  2560. coolingWaterPguAeu: null,
  2561. coolingWaterPguAeuTT: null,
  2562. coolingWaterPguAeuKgoe: null,
  2563. coolingWaterPguAeuKgce: null,
  2564. coolingWaterSctuFlare: null,
  2565. coolingWaterSub: null,
  2566. coolingWaterBcc: null,
  2567. polishedConToe: null,
  2568. polishedConTce: null,
  2569. polishedConPre: null,
  2570. polishedConCracker: null,
  2571. polishedConCrackerTT: null,
  2572. polishedConCrackerKgoe: null,
  2573. polishedConCrackerKgce: null,
  2574. polishedConPguAeu: null,
  2575. polishedConPguAeuTT: null,
  2576. polishedConPguAeuKgoe: null,
  2577. polishedConPguAeuKgce: null,
  2578. polishedConSctuFlare: null,
  2579. polishedConSub: null,
  2580. polishedConBcc: null,
  2581. hpBfwToe: null,
  2582. hpBfwTce: null,
  2583. hpBfwPre: null,
  2584. hpBfwCracker: null,
  2585. hpBfwCrackerTT: null,
  2586. hpBfwCrackerKgoe: null,
  2587. hpBfwCrackerKgce: null,
  2588. hpBfwPguAeu: null,
  2589. hpBfwPguAeuTT: null,
  2590. hpBfwPguAeuKgoe: null,
  2591. hpBfwPguAeuKgce: null,
  2592. hpBfwSctuFlare: null,
  2593. hpBfwSub: null,
  2594. hpBfwBcc: null,
  2595. prodWaterToe: null,
  2596. prodWaterTce: null,
  2597. prodWaterPre: null,
  2598. prodWaterCracker: null,
  2599. prodWaterCrackerTT: null,
  2600. prodWaterCrackerKgoe: null,
  2601. prodWaterCrackerKgce: null,
  2602. prodWaterPguAeu: null,
  2603. prodWaterPguAeuTT: null,
  2604. prodWaterPguAeuKgoe: null,
  2605. prodWaterPguAeuKgce: null,
  2606. prodWaterSctuFlare: null,
  2607. prodWaterSub: null,
  2608. prodWaterBcc: null,
  2609. turbineConToe: null,
  2610. turbineConTce: null,
  2611. turbineConPre: null,
  2612. turbineConCracker: null,
  2613. turbineConCrackerTT: null,
  2614. turbineConCrackerKgoe: null,
  2615. turbineConCrackerKgce: null,
  2616. turbineConPguAeu: null,
  2617. turbineConPguAeuTT: null,
  2618. turbineConPguAeuKgoe: null,
  2619. turbineConPguAeuKgce: null,
  2620. turbineConSctuFlare: null,
  2621. turbineConSub: null,
  2622. turbineConBcc: null,
  2623. paIaToe: null,
  2624. paIaTce: null,
  2625. paIaPre: null,
  2626. paIaCracker: null,
  2627. paIaCrackerTT: null,
  2628. paIaCrackerKgoe: null,
  2629. paIaCrackerKgce: null,
  2630. paIaPguAeu: null,
  2631. paIaPguAeuTT: null,
  2632. paIaPguAeuKgoe: null,
  2633. paIaPguAeuKgce: null,
  2634. paIaSctuFlare: null,
  2635. paIaSub: null,
  2636. paIaBcc: null,
  2637. n2Toe: null,
  2638. n2Tce: null,
  2639. n2Pre: null,
  2640. n2Cracker: null,
  2641. n2CrackerTT: null,
  2642. n2CrackerKgoe: null,
  2643. n2CrackerKgce: null,
  2644. n2PguAeu: null,
  2645. n2PguAeuTT: null,
  2646. n2PguAeuKgoe: null,
  2647. n2PguAeuKgce: null,
  2648. n2SctuFlare: null,
  2649. n2Sub: null,
  2650. n2Bcc: null,
  2651. totalToe: null,
  2652. totalTce: null,
  2653. totalPre: null,
  2654. totalCracker: null,
  2655. totalCrackerTT: null,
  2656. totalCrackerKgoe: null,
  2657. totalCrackerKgce: null,
  2658. totalPguAeu: null,
  2659. totalPguAeuTT: null,
  2660. totalPguAeuKgoe: null,
  2661. totalPguAeuKgce: null,
  2662. targetToe: null,
  2663. targetTce: null,
  2664. targetPre: null,
  2665. targetCracker: null,
  2666. targetCrackerTT: null,
  2667. targetCrackerKgoe: null,
  2668. targetCrackerKgce: null,
  2669. targetPguAeu: null,
  2670. targetPguAeuTT: null,
  2671. targetPguAeuKgoe: null,
  2672. targetPguAeuKgce: null,
  2673. producedToe: null,
  2674. producedTce: null,
  2675. producedPre: null,
  2676. producedCracker: null,
  2677. producedCrackerTT: null,
  2678. producedCrackerKgoe: null,
  2679. producedCrackerKgce: null,
  2680. producedPguAeu: null,
  2681. producedPguAeuTT: null,
  2682. producedPguAeuKgoe: null,
  2683. producedPguAeuKgce: null,
  2684. frEoEg: null,
  2685. loadPercentage: null,
  2686. hsProducet: null,
  2687. sctfStorageTotalC2: null,
  2688. sctfStorageTk1061: null,
  2689. sctfStorageTk1062: null,
  2690. sctfStorageTk1063: null,
  2691. sctfStorageTk1064: null,
  2692. sctfStorageTk1065Off: null,
  2693. sctfStorageTotalC3: null,
  2694. sctfStorageTk1011: null,
  2695. sctfStorageTk1012: null,
  2696. sctfStorageTk1013: null,
  2697. sctfStorageTk1014: null,
  2698. sctfStorageTk1040Off: null,
  2699. sctfStorageTk1020Lpg: null,
  2700. sctfStorageTk1111C4s: null,
  2701. sctfStorageTk1520Rpg: null,
  2702. sctfStorageTk1350Po: null,
  2703. sctfStorageTk1310Btx: null,
  2704. sctfStorageTk1330Ebo: null,
  2705. sctfStorageTk1430Lfo: null,
  2706. sctfStorageTk1320OffBtx: null,
  2707. sctfStorageT201Btx: null,
  2708. sctfStorageTk1340C9: null,
  2709. sctfStorageClt1350C9: null,
  2710. sctfStorageTk1160Nh3: null,
  2711. sctfStorageTk1510B: null,
  2712. sctfStorageClt1370B: null,
  2713. sctfStorageTk1360T: null,
  2714. sctfStorageTk1410X: null,
  2715. sctfStorageClt1380X: null,
  2716. sctfStorageTk1420Dimer: null,
  2717. sctfStorageTk1110R1: null,
  2718. sctfStorageTk1130Ib: null,
  2719. sctfStorageTk1150R3: null,
  2720. sctfStorageTk1140Bd: null,
  2721. sctfStorageTk1141Bd: null,
  2722. sctfStorageTk1142Bd: null,
  2723. sctfStorageTotalNap: null,
  2724. sctfStorageCltf1621: null,
  2725. sctfStorageCltf1622: null,
  2726. sctfStorageCltf1623: null,
  2727. pguToRpg: null,
  2728. rpgToPgu2: null,
  2729. pguRpgTH: null,
  2730. pguRpg1: null,
  2731. pguRpg2: null,
  2732. pguH2: null,
  2733. pguTotalFeed: null,
  2734. pguOutput: null,
  2735. pguTotalLoss: null,
  2736. pguLossPercentage: null,
  2737. pguFeedLoadPercentage: null,
  2738. pguToAeu: null,
  2739. aeuToPgu: null,
  2740. pguAeuTH: null,
  2741. pguBtxYeildPercentage: null,
  2742. pguBtxProduced: null,
  2743. pguBtxInventory: null,
  2744. pguBtxChange: null,
  2745. pguBtxExport: null,
  2746. pguBtxToAeu: null,
  2747. pguWashoilYeildPercentage: null,
  2748. pguWashoilProduced: null,
  2749. pguWashoilInventory: null,
  2750. pguWashoilChange: null,
  2751. pguWashoilExport: null,
  2752. pguWashoilToEu: null,
  2753. pguOffgasYeildPercentage: null,
  2754. pguOffgasProduced: null,
  2755. pguOffgasInventory: null,
  2756. pguOffgasChange: null,
  2757. pguOffgasExport: null,
  2758. pguOffgasToEu: null,
  2759. pguC5YeildPercentage: null,
  2760. pguC5Produced: null,
  2761. pguC5Inventory: null,
  2762. pguC5Change: null,
  2763. pguC5Export: null,
  2764. pguC5ToAeu: null,
  2765. pguC5ToEu: null,
  2766. pguC5ToYuanguan: null,
  2767. pguC9YeildPercentage: null,
  2768. pguC9Produced: null,
  2769. pguC9Inventory: null,
  2770. pguC9Change: null,
  2771. pguC9Export: null,
  2772. pguC9ToAeu: null,
  2773. pguC9ToRttf: null,
  2774. pguC9ToShip: null,
  2775. pguC9ToYfcc: null,
  2776. aeuBenzeneYeildPercentage: null,
  2777. aeuBenzeneProduced: null,
  2778. aeuBenzeneInventory: null,
  2779. aeuBenzeneChange: null,
  2780. aeuBenzeneToShip: null,
  2781. aeuBenzeneFrShip: null,
  2782. aeuBenzeneToYbs: null,
  2783. aeuBenzeneToRttf: null,
  2784. aeuBenzeneToTrain: null,
  2785. aeuTolueneYeildPercentage: null,
  2786. aeuTolueneProduced: null,
  2787. aeuTolueneInventory: null,
  2788. aeuTolueneChange: null,
  2789. aeuTolueneToShip: null,
  2790. aeuTolueneFrShip: null,
  2791. aeuTolueneToYpc: null,
  2792. aeuTolueneFrYpc: null,
  2793. aeuTolueneToRttf: null,
  2794. aeuTolueneFrYbs: null,
  2795. aeuTolueneToEu: null,
  2796. aeuXyleneYeildPercentage: null,
  2797. aeuXyleneProduced: null,
  2798. aeuXyleneInventory: null,
  2799. aeuXyleneChange: null,
  2800. aeuXyleneToShip: null,
  2801. aeuXyleneFrShip: null,
  2802. aeuXyleneToYpc: null,
  2803. aeuXyleneFrYpc: null,
  2804. aeuXyleneToRttf: null,
  2805. aeuC6C8NaYeildPercentage: null,
  2806. aeuC6C8NaProduced: null,
  2807. aeuC6C8NaInventory: null,
  2808. aeuC6C8NaChange: null,
  2809. aeuC6C8NaToEu: null,
  2810. aeuC6C8NaToYpc: null,
  2811. aeuTotalFeed: null,
  2812. aeuOutput: null,
  2813. aeuTotalLoss: null,
  2814. aeuLossPercentage: null,
  2815. aeuFeedLoadPercentage: null,
  2816. pguAeuTotalFeed: null,
  2817. pguAeuOutput: null,
  2818. pguAeuTotalLoss: null,
  2819. pguAeuLossPercentage: null,
  2820. pguAeuFeedLoadPercentage: null
  2821. };
  2822. this.resetForm("form");
  2823. },
  2824. /** 搜索按钮操作 */
  2825. handleQuery() {
  2826. this.getReport();
  2827. },
  2828. /** 重置按钮操作 */
  2829. resetQuery() {
  2830. this.resetForm("queryForm");
  2831. this.handleQuery();
  2832. },
  2833. // 多选框选中数据
  2834. handleSelectionChange(selection) {
  2835. this.ids = selection.map(item => item.id)
  2836. this.single = selection.length!==1
  2837. this.multiple = !selection.length
  2838. },
  2839. /** 新增按钮操作 */
  2840. handleAdd() {
  2841. this.reset();
  2842. this.open = true;
  2843. this.title = "添加每日生产报告";
  2844. },
  2845. /** 修改按钮操作 */
  2846. handleUpdate(row) {
  2847. this.reset();
  2848. const id = row.id || this.ids
  2849. getReport(id).then(response => {
  2850. this.form = response.data;
  2851. this.open = true;
  2852. this.title = "修改每日生产报告";
  2853. });
  2854. },
  2855. /** 提交按钮 */
  2856. submitForm() {
  2857. this.$refs["form"].validate(valid => {
  2858. if (valid) {
  2859. if (this.form.id != null) {
  2860. updateReport(this.form).then(response => {
  2861. this.msgSuccess("修改成功");
  2862. this.open = false;
  2863. this.getList();
  2864. });
  2865. } else {
  2866. addReport(this.form).then(response => {
  2867. this.msgSuccess("新增成功");
  2868. this.open = false;
  2869. this.getList();
  2870. });
  2871. }
  2872. }
  2873. });
  2874. },
  2875. /** 删除按钮操作 */
  2876. handleDelete(row) {
  2877. const ids = row.id || this.ids;
  2878. this.$confirm('是否确认删除?', "警告", {
  2879. confirmButtonText: "确定",
  2880. cancelButtonText: "取消",
  2881. type: "warning"
  2882. }).then(function() {
  2883. return delReport(ids);
  2884. }).then(() => {
  2885. this.getList();
  2886. this.msgSuccess("删除成功");
  2887. })
  2888. },
  2889. /** 导出按钮操作 */
  2890. handleExport() {
  2891. const queryParams = this.queryParams;
  2892. this.$confirm('是否确认导出所有每日生产报告数据项?', "警告", {
  2893. confirmButtonText: "确定",
  2894. cancelButtonText: "取消",
  2895. type: "warning"
  2896. }).then(function() {
  2897. return exportReport(queryParams);
  2898. }).then(response => {
  2899. this.download(response.msg);
  2900. })
  2901. },
  2902. /** 导入按钮操作 */
  2903. handleImport() {
  2904. this.upload.title = "用户导入";
  2905. this.upload.open = true;
  2906. },
  2907. /** 下载模板操作 */
  2908. importTemplate() {
  2909. importTemplate().then(response => {
  2910. this.download(response.msg);
  2911. });
  2912. },
  2913. // 文件上传中处理
  2914. handleFileUploadProgress(event, file, fileList) {
  2915. this.upload.isUploading = true;
  2916. },
  2917. // 文件上传成功处理
  2918. handleFileSuccess(response, file, fileList) {
  2919. this.upload.open = false;
  2920. this.upload.isUploading = false;
  2921. this.$refs.upload.clearFiles();
  2922. this.$alert(response.msg, "导入结果", { dangerouslyUseHTMLString: true });
  2923. this.getList();
  2924. },
  2925. // 提交上传文件
  2926. submitFileForm() {
  2927. this.$refs.upload.submit();
  2928. }
  2929. }
  2930. };
  2931. </script>
  2932. <style scoped>
  2933. table{
  2934. border-width: 0px;
  2935. border-spacing: 0px;
  2936. }
  2937. td{
  2938. padding: 4px;
  2939. white-space: nowrap;
  2940. }
  2941. .no-border{
  2942. border: 0px;
  2943. }
  2944. .bg-yellow{
  2945. background-color: #FFFF00;
  2946. }
  2947. .bg-yellow-light{
  2948. background-color: #FCFEBA;
  2949. }
  2950. .bg-blue{
  2951. background-color: #00FFFF;
  2952. }
  2953. .bg-blue-light{
  2954. background-color: #CCFFFF;
  2955. }
  2956. .bg-blue-dark{
  2957. background-color: #00B0F0;
  2958. }
  2959. .bg-blue-green-neon{
  2960. background-color: #00FFCC;
  2961. }
  2962. .bg-green{
  2963. background-color: #92D050;
  2964. }
  2965. .bg-green-neon{
  2966. background-color: #00FF00;
  2967. }
  2968. .bg-green-blue-neon{
  2969. background-color: #00FF99;
  2970. }
  2971. .bg-orange{
  2972. background-color: #FFC000;
  2973. }
  2974. .bg-purple{
  2975. background-color: #CCC0DA;
  2976. }
  2977. .bg-purple-light{
  2978. background-color: #CCECFF;
  2979. }
  2980. .bg-grey-light{
  2981. background-color: #EBF1DE;
  2982. }
  2983. .ft-red{
  2984. color: red;
  2985. }
  2986. .ft-blue{
  2987. color: blue;
  2988. }
  2989. </style>