gasreport.vue 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232
  1. <template>
  2. <view class="gas-report" name="gasreport">
  3. <u-navbar title="瓦斯上报" :safeAreaInsetTop="true" leftIcon=""> </u-navbar>
  4. <view class="gas-content">
  5. <!-- 瓦斯上报列表 -->
  6. <view v-if="!isShowAdd && !isShowEdit">
  7. <view class="top-gas-list">
  8. <view class="search-box" @click="getChangeTimeTb">
  9. <text class="dialog-label">填报时间:</text>
  10. <u--input v-model="tbTime" placeholder="请选择填报时间" inputAlign="center"
  11. suffixIcon="arrow-right"></u--input>
  12. <u-datetime-picker :show="showCalendarTb" v-model="timeRan" mode="date" closeOnClickOverlay
  13. @confirm="confirmTb" @cancel="showCalendarTb = false" @change="changeTb"
  14. @close="showCalendarTb = false"></u-datetime-picker>
  15. </view>
  16. <u-button type="primary" size="small" style="margin: 2px 0px;" @click="getAdd">新增</u-button>
  17. </view>
  18. <view class="bot-gas-list">
  19. <view class="top-title">
  20. <view style="font-weight: bold;">瓦斯填报列表</view>
  21. </view>
  22. <view class="top-content" v-for="(item, index) in gasList" :key="index">
  23. <view class="content-title-gas">
  24. <text>
  25. {{ item.strInstallPos || '--' }}
  26. </text>
  27. <u-icon class="icon-gas-edit" name="edit-pen-fill" color="#0eb4fc" size="16"
  28. @click="getEdit(item)"></u-icon>
  29. <u-icon class="icon-gas-del" name="trash" color="#0eb4fc" size="16"
  30. @click="getDel(item)"></u-icon>
  31. </view>
  32. <view class="content-item-box">
  33. <view class="content-item">
  34. <view class="item-l">
  35. <view class="item-value">{{ item.timeEarly1 || '--' }}</view>
  36. <view class="item-label">早班测量时间一</view>
  37. </view>
  38. <view class="item-c"></view>
  39. <view class="item-r">
  40. <view class="item-value">{{ item.timeEarly2 || '--' }}</view>
  41. <view class="item-label">早班测量时间二</view>
  42. </view>
  43. </view>
  44. <view class="content-item">
  45. <view class="item-l">
  46. <view class="item-value">{{ item.timeNoon1 || '--' }}</view>
  47. <view class="item-label">午班测量时间一</view>
  48. </view>
  49. <view class="item-c"></view>
  50. <view class="item-r">
  51. <view class="item-value">{{ item.timeNoon2 || '--' }}</view>
  52. <view class="item-label">午班测量时间二</view>
  53. </view>
  54. </view>
  55. <view class="content-item">
  56. <view class="item-l">
  57. <view class="item-value">{{ item.timeNight1 || '--' }}</view>
  58. <view class="item-label">晚班测量时间一</view>
  59. </view>
  60. <view class="item-c"></view>
  61. <view class="item-r">
  62. <view class="item-value">{{ item.timeNight2 || '--' }}</view>
  63. <view class="item-label">晚班测量时间二</view>
  64. </view>
  65. </view>
  66. </view>
  67. </view>
  68. </view>
  69. </view>
  70. <!-- 新增弹窗 -->
  71. <view v-if="isShowAdd">
  72. <view class="top-dialog-area">
  73. <view class="dialog-item">
  74. <text class="dialog-label">班次:</text>
  75. <uni-data-select placeholder="请选择班次" align="center" :clear="true" v-model="formState.bc"
  76. :localdata="rangeBc" @change="changeBc"></uni-data-select>
  77. </view>
  78. <view class="dialog-item">
  79. <text class="dialog-label">煤层工作面:</text>
  80. <uni-data-select placeholder="请选择煤层工作面" align="center" :clear="true" v-model="formState.mcgzm"
  81. :localdata="rangeMcgzm" @change="changeMc"></uni-data-select>
  82. </view>
  83. <view class="dialog-item">
  84. <text class="dialog-label">检测地点:</text>
  85. <uni-data-select placeholder="请选择检测地点" align="center" :clear="true" v-model="formState.jcdd"
  86. :localdata="rangeJcdd" @change="changeJc"></uni-data-select>
  87. </view>
  88. <view class="dialog-item">
  89. <text class="dialog-label">检测次数:</text>
  90. <uni-data-select placeholder="请选择检测次数" align="center" :clear="true" v-model="formState.count"
  91. :localdata="rangeCount" @change="changeCount"></uni-data-select>
  92. </view>
  93. <view class="dialog-item" @click="getChangeTime">
  94. <text class="dialog-label">检测时间:</text>
  95. <u--input v-model="formState.time" placeholder="请选择检测时间" inputAlign="center"
  96. suffixIcon="arrow-right"></u--input>
  97. <u-datetime-picker :show="showCalendar" v-model="timeRan" mode="datetime" closeOnClickOverlay
  98. @confirm="showCalendar = false" @cancel="showCalendar = false" @change="change"
  99. @close="showCalendar = false"></u-datetime-picker>
  100. </view>
  101. <view class="dialog-item">
  102. <text class="dialog-label">填报日期:</text>
  103. <u--input inputAlign="center" v-model="formState.tbrq" placeholder="请选择填报日期"></u--input>
  104. </view>
  105. <view class="dialog-item">
  106. <text class="dialog-label">瓦斯检查工:</text>
  107. <u--input inputAlign="center" disabled v-model="formState.jcy" placeholder="请输入"></u--input>
  108. </view>
  109. </view>
  110. <view>
  111. <view class="center-dialog-area">
  112. <div class="dialog-title">气体监测数据</div>
  113. <view class="dialog-item">
  114. <text class="dialog-label">CH₄:</text>
  115. <u--input inputAlign="center" v-model="formState.ch4" placeholder="请输入"></u--input>
  116. </view>
  117. <view class="dialog-item">
  118. <text class="dialog-label">CO₂:</text>
  119. <u--input inputAlign="center" v-model="formState.co2"
  120. :placeholder="isRule ? '请输入' : '请输入偶数'" type="number" @blur="getBlurCO2"
  121. :placeholderStyle="isRule ? 'color:#c0c4cc' : 'color:#ff0000'"></u--input>
  122. </view>
  123. <view class="dialog-item">
  124. <text class="dialog-label">CO:</text>
  125. <u--input inputAlign="center" v-model="formState.co"
  126. :placeholder="isRule14 ? '请输入' : '最大可输入值为24'"
  127. :placeholderStyle="isRule14 ? 'color:#c0c4cc' : 'color:#ff0000'" type="number"
  128. @blur="getBlurCO"></u--input>
  129. </view>
  130. <view class="dialog-item">
  131. <text class="dialog-label">O₂:</text>
  132. <u--input inputAlign="center" v-model="formState.o2" placeholder="请输入"></u--input>
  133. </view>
  134. <view class="dialog-item">
  135. <text class="dialog-label">温度:</text>
  136. <u--input inputAlign="center" v-model="formState.temp" placeholder="请输入"></u--input>
  137. </view>
  138. </view>
  139. <view class="bottom-dialog-area">
  140. <div class="dialog-title">三对照数据</div>
  141. <view class="dialog-item">
  142. <text class="dialog-label">甲烷传感器:</text>
  143. <u--input inputAlign="center" v-model="formState.jw" placeholder="请输入"></u--input>
  144. </view>
  145. <view class="dialog-item">
  146. <text class="dialog-label">光瓦测量数据:</text>
  147. <u--input inputAlign="center" v-model="formState.gw"
  148. :placeholder="isRule1 ? '请输入' : '请输入偶数'" type="number" @blur="getBlur"
  149. :placeholderStyle="isRule1 ? 'color:#c0c4cc' : 'color:#ff0000'"></u--input>
  150. </view>
  151. <view class="dialog-item">
  152. <text class="dialog-label">便携仪测量数据:</text>
  153. <u--input inputAlign="center" v-model="formState.bxy" placeholder="请输入"></u--input>
  154. </view>
  155. </view>
  156. </view>
  157. <view class="dialog-btn">
  158. <u-button type="success" size="small" @click="getConfirm">保存</u-button>
  159. <u-button type="primary" size="small" @click="getCancel">取消</u-button>
  160. </view>
  161. </view>
  162. <!-- 编辑弹窗 -->
  163. <view v-if="isShowEdit">
  164. <view>
  165. <view class="center-dialog-area">
  166. <div class="dialog-title">早班第一次检测数据</div>
  167. <view class="dialog-item" @click="getChangeZb1">
  168. <text class="dialog-label">检测时间:</text>
  169. <u--input v-model="formStateEdit.timeEarly1" placeholder="请选择检测时间" inputAlign="center"
  170. suffixIcon="arrow-right"></u--input>
  171. <u-datetime-picker :show="showZb1" v-model="timeRan" mode="datetime" closeOnClickOverlay
  172. @confirm="showZb1 = false" @cancel="showZb1 = false" @change="changeZb1"
  173. @close="showZb1 = false"></u-datetime-picker>
  174. </view>
  175. <view class="dialog-item">
  176. <text class="dialog-label">瓦斯检查工:</text>
  177. <u--input inputAlign="center" disabled v-model="formStateEdit.checkPersonEarly"
  178. placeholder="请输入"></u--input>
  179. </view>
  180. <view class="dialog-item">
  181. <text class="dialog-label">CH₄:</text>
  182. <u--input inputAlign="center" v-model="formStateEdit.ch4Early1"
  183. placeholder="请输入"></u--input>
  184. </view>
  185. <view class="dialog-item">
  186. <text class="dialog-label">CO₂:</text>
  187. <u--input inputAlign="center" v-model="formStateEdit.co2Early1"
  188. :placeholder="isRule ? '请输入' : '请输入偶数'" type="number" @blur="getBlurFCo2"
  189. :placeholderStyle="isRule2 ? 'color:#c0c4cc' : 'color:#ff0000'"></u--input>
  190. </view>
  191. <view class="dialog-item">
  192. <text class="dialog-label">CO:</text>
  193. <u--input inputAlign="center" v-model="formStateEdit.coEarly1"
  194. :placeholder="isRule15 ? '请输入' : '最大可输入值为24'"
  195. :placeholderStyle="isRule15 ? 'color:#c0c4cc' : 'color:#ff0000'" type="number"
  196. @blur="getBlurCO1"></u--input>
  197. </view>
  198. <view class="dialog-item">
  199. <text class="dialog-label">O₂:</text>
  200. <u--input inputAlign="center" v-model="formStateEdit.o2Early1" placeholder="请输入"></u--input>
  201. </view>
  202. <view class="dialog-item">
  203. <text class="dialog-label">温度:</text>
  204. <u--input inputAlign="center" v-model="formStateEdit.tEarly1" placeholder="请输入"></u--input>
  205. </view>
  206. <view class="dialog-item">
  207. <text class="dialog-label">甲烷传感器:</text>
  208. <u--input inputAlign="center" v-model="formStateEdit.jwSdzEarly1"
  209. placeholder="请输入"></u--input>
  210. </view>
  211. <view class="dialog-item">
  212. <text class="dialog-label">光瓦测量数据:</text>
  213. <u--input inputAlign="center" v-model="formStateEdit.gwSdzEarly1"
  214. :placeholder="isRule ? '请输入' : '请输入偶数'" type="number" @blur="getBlurF"
  215. :placeholderStyle="isRule3 ? 'color:#c0c4cc' : 'color:#ff0000'"></u--input>
  216. </view>
  217. <view class="dialog-item">
  218. <text class="dialog-label">便携仪测量数据:</text>
  219. <u--input inputAlign="center" v-model="formStateEdit.bxySdzEarly1"
  220. placeholder="请输入"></u--input>
  221. </view>
  222. </view>
  223. <view class="center-dialog-area">
  224. <div class="dialog-title">早班第二次检测数据</div>
  225. <view class="dialog-item" @click="getChangeZb2">
  226. <text class="dialog-label">检测时间:</text>
  227. <u--input v-model="formStateEdit.timeEarly2" placeholder="请选择检测时间" inputAlign="center"
  228. suffixIcon="arrow-right"></u--input>
  229. <u-datetime-picker :show="showZb2" v-model="timeRan" mode="datetime" closeOnClickOverlay
  230. @confirm="showZb2 = false" @cancel="showZb2 = false" @change="changeZb2"
  231. @close="showZb2 = false"></u-datetime-picker>
  232. </view>
  233. <view class="dialog-item">
  234. <text class="dialog-label">瓦斯检查工:</text>
  235. <u--input inputAlign="center" disabled v-model="formStateEdit.checkPersonEarly"
  236. placeholder="请输入"></u--input>
  237. </view>
  238. <view class="dialog-item">
  239. <text class="dialog-label">CH₄:</text>
  240. <u--input inputAlign="center" v-model="formStateEdit.ch4Early2"
  241. placeholder="请输入"></u--input>
  242. </view>
  243. <view class="dialog-item">
  244. <text class="dialog-label">CO₂:</text>
  245. <u--input inputAlign="center" v-model="formStateEdit.co2Early2"
  246. :placeholder="isRule ? '请输入' : '请输入偶数'" type="number" @blur="getBlurSCo2"
  247. :placeholderStyle="isRule4 ? 'color:#c0c4cc' : 'color:#ff0000'"></u--input>
  248. </view>
  249. <view class="dialog-item">
  250. <text class="dialog-label">CO:</text>
  251. <u--input inputAlign="center" v-model="formStateEdit.coEarly2"
  252. :placeholder="isRule16 ? '请输入' : '最大可输入值为24'"
  253. :placeholderStyle="isRule16 ? 'color:#c0c4cc' : 'color:#ff0000'" type="number"
  254. @blur="getBlurC2"></u--input>
  255. </view>
  256. <view class="dialog-item">
  257. <text class="dialog-label">O₂:</text>
  258. <u--input inputAlign="center" v-model="formStateEdit.o2Early2" placeholder="请输入"></u--input>
  259. </view>
  260. <view class="dialog-item">
  261. <text class="dialog-label">温度:</text>
  262. <u--input inputAlign="center" v-model="formStateEdit.tEarly2" placeholder="请输入"></u--input>
  263. </view>
  264. <view class="dialog-item">
  265. <text class="dialog-label">甲烷传感器:</text>
  266. <u--input inputAlign="center" v-model="formStateEdit.jwSdzEarly2"
  267. placeholder="请输入"></u--input>
  268. </view>
  269. <view class="dialog-item">
  270. <text class="dialog-label">光瓦测量数据:</text>
  271. <u--input inputAlign="center" v-model="formStateEdit.gwSdzEarly2"
  272. :placeholder="isRule ? '请输入' : '请输入偶数'" type="number" @blur="getBlurS"
  273. :placeholderStyle="isRule5 ? 'color:#c0c4cc' : 'color:#ff0000'"></u--input>
  274. </view>
  275. <view class="dialog-item">
  276. <text class="dialog-label">便携仪测量数据:</text>
  277. <u--input inputAlign="center" v-model="formStateEdit.bxySdzEarly2"
  278. placeholder="请输入"></u--input>
  279. </view>
  280. </view>
  281. <view class="center-dialog-area">
  282. <div class="dialog-title">午班第一次检测数据</div>
  283. <view class="dialog-item" @click="getChangeWb1">
  284. <text class="dialog-label">检测时间:</text>
  285. <u--input v-model="formStateEdit.timeNoon1" placeholder="请选择检测时间" inputAlign="center"
  286. suffixIcon="arrow-right"></u--input>
  287. <u-datetime-picker :show="showWb1" v-model="timeRan" mode="datetime" closeOnClickOverlay
  288. @confirm="showWb1 = false" @cancel="showWb1 = false" @change="changeWb1"
  289. @close="showWb1 = false"></u-datetime-picker>
  290. </view>
  291. <view class="dialog-item">
  292. <text class="dialog-label">瓦斯检查工:</text>
  293. <u--input inputAlign="center" disabled v-model="formStateEdit.checkPersonNoon"
  294. placeholder="请输入"></u--input>
  295. </view>
  296. <view class="dialog-item">
  297. <text class="dialog-label">CH₄:</text>
  298. <u--input inputAlign="center" v-model="formStateEdit.ch4Noon1" placeholder="请输入"></u--input>
  299. </view>
  300. <view class="dialog-item">
  301. <text class="dialog-label">CO₂:</text>
  302. <u--input inputAlign="center" v-model="formStateEdit.co2Noon1"
  303. :placeholder="isRule ? '请输入' : '请输入偶数'" type="number" @blur="getBlurF1"
  304. :placeholderStyle="isRule6 ? 'color:#c0c4cc' : 'color:#ff0000'"></u--input>
  305. </view>
  306. <view class="dialog-item">
  307. <text class="dialog-label">CO:</text>
  308. <u--input inputAlign="center" v-model="formStateEdit.coNoon1"
  309. :placeholder="isRule17 ? '请输入' : '最大可输入值为24'"
  310. :placeholderStyle="isRule17 ? 'color:#c0c4cc' : 'color:#ff0000'" type="number"
  311. @blur="getBlurCO3"></u--input>
  312. </view>
  313. <view class="dialog-item">
  314. <text class="dialog-label">O₂:</text>
  315. <u--input inputAlign="center" v-model="formStateEdit.o2Noon1" placeholder="请输入"></u--input>
  316. </view>
  317. <view class="dialog-item">
  318. <text class="dialog-label">温度:</text>
  319. <u--input inputAlign="center" v-model="formStateEdit.tNoon1" placeholder="请输入"></u--input>
  320. </view>
  321. <view class="dialog-item">
  322. <text class="dialog-label">甲烷传感器:</text>
  323. <u--input inputAlign="center" v-model="formStateEdit.jwSdzNoon1"
  324. placeholder="请输入"></u--input>
  325. </view>
  326. <view class="dialog-item">
  327. <text class="dialog-label">光瓦测量数据:</text>
  328. <u--input inputAlign="center" v-model="formStateEdit.gwSdzNoon1"
  329. :placeholder="isRule ? '请输入' : '请输入偶数'" type="number" @blur="getBlurG1"
  330. :placeholderStyle="isRule7 ? 'color:#c0c4cc' : 'color:#ff0000'"></u--input>
  331. </view>
  332. <view class="dialog-item">
  333. <text class="dialog-label">便携仪测量数据:</text>
  334. <u--input inputAlign="center" v-model="formStateEdit.bxySdzNoon1"
  335. placeholder="请输入"></u--input>
  336. </view>
  337. </view>
  338. <view class="center-dialog-area">
  339. <div class="dialog-title">午班第二次检测数据</div>
  340. <view class="dialog-item" @click="getChangeWb2">
  341. <text class="dialog-label">检测时间:</text>
  342. <u--input v-model="formStateEdit.timeNoon2" placeholder="请选择检测时间" inputAlign="center"
  343. suffixIcon="arrow-right"></u--input>
  344. <u-datetime-picker :show="showWb2" v-model="timeRan" mode="datetime" closeOnClickOverlay
  345. @confirm="showWb2 = false" @cancel="showWb2 = false" @change="changeWb2"
  346. @close="showWb2 = false"></u-datetime-picker>
  347. </view>
  348. <view class="dialog-item">
  349. <text class="dialog-label">瓦斯检查工:</text>
  350. <u--input inputAlign="center" disabled v-model="formStateEdit.checkPersonNoon"
  351. placeholder="请输入"></u--input>
  352. </view>
  353. <view class="dialog-item">
  354. <text class="dialog-label">CH₄:</text>
  355. <u--input inputAlign="center" v-model="formStateEdit.ch4Noon2" placeholder="请输入"></u--input>
  356. </view>
  357. <view class="dialog-item">
  358. <text class="dialog-label">CO₂:</text>
  359. <u--input inputAlign="center" v-model="formStateEdit.co2Noon2"
  360. :placeholder="isRule ? '请输入' : '请输入偶数'" type="number" @blur="getBlurF2"
  361. :placeholderStyle="isRule8 ? 'color:#c0c4cc' : 'color:#ff0000'"></u--input>
  362. </view>
  363. <view class="dialog-item">
  364. <text class="dialog-label">CO:</text>
  365. <u--input inputAlign="center" v-model="formStateEdit.coNoon2"
  366. :placeholder="isRule18 ? '请输入' : '最大可输入值为24'"
  367. :placeholderStyle="isRule18 ? 'color:#c0c4cc' : 'color:#ff0000'" type="number"
  368. @blur="getBlurCO4"></u--input>
  369. </view>
  370. <view class="dialog-item">
  371. <text class="dialog-label">O₂:</text>
  372. <u--input inputAlign="center" v-model="formStateEdit.o2Noon2" placeholder="请输入"></u--input>
  373. </view>
  374. <view class="dialog-item">
  375. <text class="dialog-label">温度:</text>
  376. <u--input inputAlign="center" v-model="formStateEdit.tNoon2" placeholder="请输入"></u--input>
  377. </view>
  378. <view class="dialog-item">
  379. <text class="dialog-label">甲烷传感器:</text>
  380. <u--input inputAlign="center" v-model="formStateEdit.jwSdzNoon2"
  381. placeholder="请输入"></u--input>
  382. </view>
  383. <view class="dialog-item">
  384. <text class="dialog-label">光瓦测量数据:</text>
  385. <u--input inputAlign="center" v-model="formStateEdit.gwSdzNoon2"
  386. :placeholder="isRule ? '请输入' : '请输入偶数'" type="number" @blur="getBlurG2"
  387. :placeholderStyle="isRule9 ? 'color:#c0c4cc' : 'color:#ff0000'"></u--input>
  388. </view>
  389. <view class="dialog-item">
  390. <text class="dialog-label">便携仪测量数据:</text>
  391. <u--input inputAlign="center" v-model="formStateEdit.bxySdzNoon2"
  392. placeholder="请输入"></u--input>
  393. </view>
  394. </view>
  395. <view class="center-dialog-area">
  396. <div class="dialog-title">晚班第一次检测数据</div>
  397. <view class="dialog-item" @click="getChangeNb1">
  398. <text class="dialog-label">检测时间:</text>
  399. <u--input v-model="formStateEdit.timeNight1" placeholder="请选择检测时间" inputAlign="center"
  400. suffixIcon="arrow-right"></u--input>
  401. <u-datetime-picker :show="showNb1" v-model="timeRan" mode="datetime" closeOnClickOverlay
  402. @confirm="showNb1 = false" @cancel="showNb1 = false" @change="changeNb1"
  403. @close="showNb1 = false"></u-datetime-picker>
  404. </view>
  405. <view class="dialog-item">
  406. <text class="dialog-label">瓦斯检查工:</text>
  407. <u--input inputAlign="center" disabled v-model="formStateEdit.checkPersonNight"
  408. placeholder="请输入"></u--input>
  409. </view>
  410. <view class="dialog-item">
  411. <text class="dialog-label">CH₄:</text>
  412. <u--input inputAlign="center" v-model="formStateEdit.ch4Night1"
  413. placeholder="请输入"></u--input>
  414. </view>
  415. <view class="dialog-item">
  416. <text class="dialog-label">CO₂:</text>
  417. <u--input inputAlign="center" v-model="formStateEdit.co2Night1"
  418. :placeholder="isRule ? '请输入' : '请输入偶数'" type="number" @blur="getBlurN1"
  419. :placeholderStyle="isRule10 ? 'color:#c0c4cc' : 'color:#ff0000'"></u--input>
  420. </view>
  421. <view class="dialog-item">
  422. <text class="dialog-label">CO:</text>
  423. <u--input inputAlign="center" v-model="formStateEdit.coNight1"
  424. :placeholder="isRule19 ? '请输入' : '最大可输入值为24'"
  425. :placeholderStyle="isRule19 ? 'color:#c0c4cc' : 'color:#ff0000'" type="number"
  426. @blur="getBlurCO5"></u--input>
  427. </view>
  428. <view class="dialog-item">
  429. <text class="dialog-label">O₂:</text>
  430. <u--input inputAlign="center" v-model="formStateEdit.o2Night1" placeholder="请输入"></u--input>
  431. </view>
  432. <view class="dialog-item">
  433. <text class="dialog-label">温度:</text>
  434. <u--input inputAlign="center" v-model="formStateEdit.tNight1" placeholder="请输入"></u--input>
  435. </view>
  436. <view class="dialog-item">
  437. <text class="dialog-label">甲烷传感器:</text>
  438. <u--input inputAlign="center" v-model="formStateEdit.jwSdzNight1"
  439. placeholder="请输入"></u--input>
  440. </view>
  441. <view class="dialog-item">
  442. <text class="dialog-label">光瓦测量数据:</text>
  443. <u--input inputAlign="center" v-model="formStateEdit.gwSdzNight1"
  444. :placeholder="isRule ? '请输入' : '请输入偶数'" type="number" @blur="getBlurNG1"
  445. :placeholderStyle="isRule11 ? 'color:#c0c4cc' : 'color:#ff0000'"></u--input>
  446. </view>
  447. <view class="dialog-item">
  448. <text class="dialog-label">便携仪测量数据:</text>
  449. <u--input inputAlign="center" v-model="formStateEdit.bxySdzNight1"
  450. placeholder="请输入"></u--input>
  451. </view>
  452. </view>
  453. <view class="center-dialog-area">
  454. <div class="dialog-title">晚班第二次检测数据</div>
  455. <view class="dialog-item" @click="getChangeNb2">
  456. <text class="dialog-label">检测时间:</text>
  457. <u--input v-model="formStateEdit.timeNight2" placeholder="请选择检测时间" inputAlign="center"
  458. suffixIcon="arrow-right"></u--input>
  459. <u-datetime-picker :show="showNb2" v-model="timeRan" mode="datetime" closeOnClickOverlay
  460. @confirm="showNb2 = false" @cancel="showNb2 = false" @change="changeNb2"
  461. @close="showNb2 = false"></u-datetime-picker>
  462. </view>
  463. <view class="dialog-item">
  464. <text class="dialog-label">瓦斯检查工:</text>
  465. <u--input inputAlign="center" disabled v-model="formStateEdit.checkPersonNight"
  466. placeholder="请输入"></u--input>
  467. </view>
  468. <view class="dialog-item">
  469. <text class="dialog-label">CH₄:</text>
  470. <u--input inputAlign="center" v-model="formStateEdit.ch4Night2"
  471. placeholder="请输入"></u--input>
  472. </view>
  473. <view class="dialog-item">
  474. <text class="dialog-label">CO₂:</text>
  475. <u--input inputAlign="center" v-model="formStateEdit.co2Night2"
  476. :placeholder="isRule ? '请输入' : '请输入偶数'" type="number" @blur="getBlurN2"
  477. :placeholderStyle="isRule12 ? 'color:#c0c4cc' : 'color:#ff0000'"></u--input>
  478. </view>
  479. <view class="dialog-item">
  480. <text class="dialog-label">CO:</text>
  481. <u--input inputAlign="center" v-model="formStateEdit.coNight2"
  482. :placeholder="isRule20 ? '请输入' : '最大可输入值为24'"
  483. :placeholderStyle="isRule20 ? 'color:#c0c4cc' : 'color:#ff0000'" type="number"
  484. @blur="getBlurCO6"></u--input>
  485. </view>
  486. <view class="dialog-item">
  487. <text class="dialog-label">O₂:</text>
  488. <u--input inputAlign="center" v-model="formStateEdit.o2Night2" placeholder="请输入"></u--input>
  489. </view>
  490. <view class="dialog-item">
  491. <text class="dialog-label">温度:</text>
  492. <u--input inputAlign="center" v-model="formStateEdit.tNight2" placeholder="请输入"></u--input>
  493. </view>
  494. <view class="dialog-item">
  495. <text class="dialog-label">甲烷传感器:</text>
  496. <u--input inputAlign="center" v-model="formStateEdit.jwSdzNight2"
  497. placeholder="请输入"></u--input>
  498. </view>
  499. <view class="dialog-item">
  500. <text class="dialog-label">光瓦测量数据:</text>
  501. <u--input inputAlign="center" v-model="formStateEdit.gwSdzNight2"
  502. :placeholder="isRule ? '请输入' : '请输入偶数'" type="number" @blur="getBlurNG2"
  503. :placeholderStyle="isRule13 ? 'color:#c0c4cc' : 'color:#ff0000'"></u--input>
  504. </view>
  505. <view class="dialog-item">
  506. <text class="dialog-label">便携仪测量数据:</text>
  507. <u--input inputAlign="center" v-model="formStateEdit.bxySdzNight2"
  508. placeholder="请输入"></u--input>
  509. </view>
  510. </view>
  511. </view>
  512. <view class="dialog-btn">
  513. <u-button type="success" size="small" @click="getConfirmEdit">保存</u-button>
  514. <u-button type="primary" size="small" @click="getCancelEdit">取消</u-button>
  515. </view>
  516. </view>
  517. </view>
  518. </view>
  519. </template>
  520. <script>
  521. import api from "@/api/api";
  522. import moment from 'moment'
  523. import { mapGetters } from "vuex";
  524. export default {
  525. name: 'gasreport',
  526. props: {},
  527. watch: {},
  528. data() {
  529. return {
  530. rangeBc: [
  531. { value: '夜班', text: "夜班" },
  532. { value: '早班', text: "早班" },
  533. { value: '中班', text: "中班" },
  534. ],
  535. rangeMcgzm: [],
  536. rangeJcdd: [],
  537. rangeCount: [
  538. { value: '第一次', text: '第一次' },
  539. { value: '第二次', text: '第二次' },
  540. ],
  541. isRule: true,
  542. isRule1: true,
  543. isRule2: true,
  544. isRule3: true,
  545. isRule4: true,
  546. isRule5: true,
  547. isRule6: true,
  548. isRule7: true,
  549. isRule8: true,
  550. isRule9: true,
  551. isRule10: true,
  552. isRule11: true,
  553. isRule12: true,
  554. isRule13: true,
  555. isRule14: true,
  556. isRule15: true,
  557. isRule16: true,
  558. isRule17: true,
  559. isRule18: true,
  560. isRule19: true,
  561. isRule20: true,
  562. //新增参数信息
  563. isShowAdd: false,//是否显示新增弹窗
  564. isShowEdit: false,//是否显示编辑弹窗
  565. showZb1: false,
  566. showZb2: false,
  567. showWb1: false,
  568. showWb2: false,
  569. showNb1: false,
  570. showNb2: false,
  571. dialogAction: [],//下拉选项列表
  572. showCalendar: false,//控制日期选型下拉开启
  573. showCalendar1: false,
  574. timeRan: Number(new Date()),
  575. gasList: [],//瓦斯填报列表数据
  576. tbTime: null,//查询条件-填报时间
  577. showCalendarTb: false,//控制填报时间组件弹出
  578. saveShow: '',
  579. saveShowList: {},
  580. formState: {
  581. id: '',
  582. bc: '',
  583. count: '',
  584. jcdd: '',
  585. jcy: '',
  586. time: moment(new Date()).format('YYYY-MM-DD HH:mm:ss'),
  587. ch4: '',
  588. co2: '',
  589. co: '',
  590. o2: '',
  591. jw: '',
  592. gw: '',
  593. bxy: '',
  594. tbrq: moment(new Date()).format('YYYY-MM-DD'),
  595. temp: '',
  596. mcgzm: '',
  597. },
  598. formStateEdit: {
  599. id: '',
  600. bxySdzEarly1: '',
  601. ch4Early1: '',
  602. checkPersonEarly: '',
  603. co2Early1: '',
  604. coEarly1: '',
  605. gwSdzEarly1: '',
  606. jwSdzEarly1: '',
  607. o2Early1: '',
  608. timeEarly1: '',
  609. tEarly1: '',
  610. bxySdzEarly2: '',
  611. ch4Early2: '',
  612. co2Early2: '',
  613. coEarly2: '',
  614. gwSdzEarly2: '',
  615. jwSdzEarly2: '',
  616. o2Early2: '',
  617. timeEarly2: '',
  618. tEarly2: '',
  619. bxySdzNoon1: '',
  620. ch4Noon1: '',
  621. checkPersonNoon: '',
  622. co2Noon1: '',
  623. coNoon1: '',
  624. gwSdzNoon1: '',
  625. jwSdzNoon1: '',
  626. o2Noon1: '',
  627. timeNoon1: '',
  628. tNoon1: '',
  629. bxySdzNoon2: '',
  630. ch4Noon2: '',
  631. co2Noon2: '',
  632. coNoon2: '',
  633. gwSdzNoon2: '',
  634. jwSdzNoon2: '',
  635. o2Noon2: '',
  636. timeNoon2: '',
  637. tNoon2: '',
  638. bxySdzNight1: '',
  639. ch4Night1: '',
  640. checkPersonNight: '',
  641. co2Night1: '',
  642. coNight1: '',
  643. gwSdzNight1: '',
  644. jwSdzNight1: '',
  645. o2Night1: '',
  646. timeNight1: '',
  647. tNight1: '',
  648. bxySdzNight2: '',
  649. ch4Night2: '',
  650. co2Night2: '',
  651. coNight2: '',
  652. gwSdzNight2: '',
  653. jwSdzNight2: '',
  654. o2Night2: '',
  655. timeNight2: '',
  656. tNight2: '',
  657. }
  658. };
  659. },
  660. computed: {
  661. username: function () {
  662. return uni.getStorageSync('login_user_info')['realname']
  663. }
  664. },
  665. mounted() {
  666. console.log(uni.getStorageSync('login_user_info'), 'ceshi00-----------')
  667. this.getGasList()
  668. this.getMcList()
  669. },
  670. methods: {
  671. //获取安装位置下拉选项
  672. getSelectList() {
  673. let param = this.rangeMcgzm.filter(v => this.formState.mcgzm == v.value)[0].value
  674. new Promise((resolve, reject) => {
  675. api
  676. .getSelect({ coalseam: param, devicekind: 'gasDayReport' })
  677. .then((response) => {
  678. if (response.data.code == 200) {
  679. let data = response.data.result
  680. this.rangeJcdd = data.map(v => {
  681. return {
  682. text: v.strinstallpos,
  683. value: v.strinstallpos
  684. }
  685. })
  686. } else {
  687. reject(response);
  688. }
  689. })
  690. .catch((error) => {
  691. console.log("catch===>response", response);
  692. reject(error);
  693. });
  694. });
  695. },
  696. //班次下拉选项切换
  697. changeBc(e) {
  698. console.log(e, '班次----------')
  699. this.formState.bc = e
  700. },
  701. //监测次数选项切换
  702. changeCount(e) {
  703. this.formState.count = e
  704. },
  705. //检测地点拉选项切换
  706. changeJc(e) {
  707. this.formState.jcdd = e
  708. },
  709. //工作面煤层选项切换
  710. changeMc(e) {
  711. this.formState.mcgzm = e
  712. this.getSelectList()
  713. },
  714. //点击弹出日期下拉选项
  715. getChangeTime() {
  716. this.showCalendar = true
  717. },
  718. getChangeTime1() {
  719. this.showCalendar1 = true
  720. },
  721. getChangeTimeTb() {
  722. this.showCalendarTb = true
  723. },
  724. confirmTb() {
  725. this.showCalendarTb = false
  726. this.getGasList()
  727. },
  728. //早班第一次编辑选项切换
  729. getChangeZb1() {
  730. this.showZb1 = true
  731. },
  732. //早班第二次编辑选项切换
  733. getChangeZb2() {
  734. this.showZb2 = true
  735. },
  736. //午班第一次编辑选项切换
  737. getChangeWb1() {
  738. this.showWb1 = true
  739. },
  740. //午班第二次编辑选项切换
  741. getChangeWb2() {
  742. this.showWb2 = true
  743. },
  744. //晚班第一次编辑选项切换
  745. getChangeNb1() {
  746. this.showNb1 = true
  747. },
  748. //晚班第二次编辑选型切换
  749. getChangeNb2() {
  750. this.showNb2 = true
  751. },
  752. //新增光瓦失去焦点时参数校验
  753. getBlur(val) {
  754. console.log(val.slice(-1), '----0000')
  755. if (val.slice(-1) === '0' || val.slice(-1) === '2' || val.slice(-1) === '4' || val.slice(-1) === '6' || val.slice(-1) === '8') {
  756. this.formState.gw = val
  757. this.isRule1 = true
  758. } else {
  759. this.formState.gw = ''
  760. this.isRule1 = false
  761. }
  762. },
  763. //新增CO2失去焦点时参数校验
  764. getBlurCO2(val) {
  765. if (val.slice(-1) == '0' || val.slice(-1) == '2' || val.slice(-1) == '4' || val.slice(-1) == '6' || val.slice(-1) == '8') {
  766. this.formState.co2 = val
  767. this.isRule = true
  768. } else {
  769. this.formState.co2 = ''
  770. this.isRule = false
  771. }
  772. },
  773. //编辑第一次CO2失去焦点时参数校验
  774. getBlurFCo2(val) {
  775. if (val.slice(-1) == '0' || val.slice(-1) == '2' || val.slice(-1) == '4' || val.slice(-1) == '6' || val.slice(-1) == '8') {
  776. this.formStateEdit.co2Early1 = val
  777. this.isRule2 = true
  778. } else {
  779. this.formStateEdit.co2Early1 = ''
  780. this.isRule2 = false
  781. }
  782. },
  783. //编辑第一次光瓦失去焦点时参数校验
  784. getBlurF(val) {
  785. if (val.slice(-1) == '0' || val.slice(-1) == '2' || val.slice(-1) == '4' || val.slice(-1) == '6' || val.slice(-1) == '8') {
  786. this.formStateEdit.gwSdzEarly1 = val
  787. this.isRule3 = true
  788. } else {
  789. this.formStateEdit.gwSdzEarly1 = ''
  790. this.isRule3 = false
  791. }
  792. },
  793. //编辑第二次CO2失去焦点时参数校验
  794. getBlurSCo2(val) {
  795. if (val.slice(-1) == '0' || val.slice(-1) == '2' || val.slice(-1) == '4' || val.slice(-1) == '6' || val.slice(-1) == '8') {
  796. this.formStateEdit.co2Early2 = val
  797. this.isRule4 = true
  798. } else {
  799. this.formStateEdit.co2Early2 = ''
  800. this.isRule4 = false
  801. }
  802. },
  803. //编辑第二次光瓦失去焦点时参数校验
  804. getBlurS(val) {
  805. if (val.slice(-1) == '0' || val.slice(-1) == '2' || val.slice(-1) == '4' || val.slice(-1) == '6' || val.slice(-1) == '8') {
  806. this.formStateEdit.gwSdzEarly2 = val
  807. this.isRule5 = true
  808. } else {
  809. this.formStateEdit.gwSdzEarly2 = ''
  810. this.isRule5 = false
  811. }
  812. },
  813. getBlurF1(val) {
  814. if (val.slice(-1) == '0' || val.slice(-1) == '2' || val.slice(-1) == '4' || val.slice(-1) == '6' || val.slice(-1) == '8') {
  815. this.formStateEdit.co2Noon1 = val
  816. this.isRule6 = true
  817. } else {
  818. this.formStateEdit.co2Noon1 = ''
  819. this.isRule6 = false
  820. }
  821. },
  822. getBlurG1(val) {
  823. if (val.slice(-1) == '0' || val.slice(-1) == '2' || val.slice(-1) == '4' || val.slice(-1) == '6' || val.slice(-1) == '8') {
  824. this.formStateEdit.gwSdzNoon1 = val
  825. this.isRule7 = true
  826. } else {
  827. this.formStateEdit.gwSdzNoon1 = ''
  828. this.isRule7 = false
  829. }
  830. },
  831. getBlurF2(val) {
  832. if (val.slice(-1) == '0' || val.slice(-1) == '2' || val.slice(-1) == '4' || val.slice(-1) == '6' || val.slice(-1) == '8') {
  833. this.formStateEdit.co2Noon2 = val
  834. this.isRule8 = true
  835. } else {
  836. this.formStateEdit.co2Noon2 = ''
  837. this.isRule8 = false
  838. }
  839. },
  840. getBlurG2(val) {
  841. if (val.slice(-1) == '0' || val.slice(-1) == '2' || val.slice(-1) == '4' || val.slice(-1) == '6' || val.slice(-1) == '8') {
  842. this.formStateEdit.gwSdzNoon2 = val
  843. this.isRule9 = true
  844. } else {
  845. this.formStateEdit.gwSdzNoon2 = ''
  846. this.isRule9 = false
  847. }
  848. },
  849. getBlurN1(val) {
  850. if (val.slice(-1) == '0' || val.slice(-1) == '2' || val.slice(-1) == '4' || val.slice(-1) == '6' || val.slice(-1) == '8') {
  851. this.formStateEdit.co2Night1 = val
  852. this.isRule10 = true
  853. } else {
  854. this.formStateEdit.co2Night1 = ''
  855. this.isRule10 = false
  856. }
  857. },
  858. getBlurNG1(val) {
  859. if (val.slice(-1) == '0' || val.slice(-1) == '2' || val.slice(-1) == '4' || val.slice(-1) == '6' || val.slice(-1) == '8') {
  860. this.formStateEdit.gwSdzNoon2 = val
  861. this.isRule11 = true
  862. } else {
  863. this.formStateEdit.gwSdzNoon2 = ''
  864. this.isRule11 = false
  865. }
  866. },
  867. getBlurN2(val) {
  868. if (val.slice(-1) == '0' || val.slice(-1) == '2' || val.slice(-1) == '4' || val.slice(-1) == '6' || val.slice(-1) == '8') {
  869. this.formStateEdit.co2Night2 = val
  870. this.isRule12 = true
  871. } else {
  872. this.formStateEdit.co2Night2 = ''
  873. this.isRule12 = false
  874. }
  875. },
  876. getBlurNG2(val) {
  877. if (val.slice(-1) == '0' || val.slice(-1) == '2' || val.slice(-1) == '4' || val.slice(-1) == '6' || val.slice(-1) == '8') {
  878. this.formStateEdit.gwSdzNight2 = val
  879. this.isRule13 = true
  880. } else {
  881. this.formStateEdit.gwSdzNight2 = ''
  882. this.isRule13 = false
  883. }
  884. },
  885. getBlurCO(val) {
  886. if (parseFloat(val) <= 24) {
  887. this.formState.co = val
  888. this.isRule14 = true
  889. } else {
  890. this.formState.co = ''
  891. this.isRule14 = false
  892. }
  893. },
  894. getBlurCO1(val) {
  895. if (parseFloat(val) <= 24) {
  896. this.formStateEdit.coEarly1 = val
  897. this.isRule15 = true
  898. } else {
  899. this.formStateEdit.coEarly1 = ''
  900. this.isRule15 = false
  901. }
  902. },
  903. getBlurC2(val) {
  904. if (parseFloat(val) <= 24) {
  905. this.formStateEdit.coEarly2 = val
  906. this.isRule16 = true
  907. } else {
  908. this.formStateEdit.coEarly2 = ''
  909. this.isRule16 = false
  910. }
  911. },
  912. getBlurCO3(val) {
  913. if (parseFloat(val) <= 24) {
  914. this.formStateEdit.coNoon1 = val
  915. this.isRule17 = true
  916. } else {
  917. this.formStateEdit.coNoon1 = ''
  918. this.isRule17 = false
  919. }
  920. },
  921. getBlurCO4(val) {
  922. if (parseFloat(val) <= 24) {
  923. this.formStateEdit.coNoon2 = val
  924. this.isRule18 = true
  925. } else {
  926. this.formStateEdit.coNoon2 = ''
  927. this.isRule18 = false
  928. }
  929. },
  930. getBlurCO5(val) {
  931. if (parseFloat(val) <= 24) {
  932. this.formStateEdit.coNight1 = val
  933. this.isRule19 = true
  934. } else {
  935. this.formStateEdit.coNight1 = ''
  936. this.isRule19 = false
  937. }
  938. },
  939. getBlurCO6(val) {
  940. if (parseFloat(val) <= 24) {
  941. this.formStateEdit.coNight2 = val
  942. this.isRule20 = true
  943. } else {
  944. this.formStateEdit.coNight2 = ''
  945. this.isRule20 = false
  946. }
  947. },
  948. //检测时间下拉选项切换
  949. change(e) {
  950. let that = this
  951. that.formState.jcy = that.username
  952. that.formState.time = moment(e.value).format('YYYY-MM-DD HH:mm:ss')
  953. that.formState.tbrq = moment(e.value).format('YYYY-MM-DD')
  954. let params = {}
  955. if (that.formState.bc == '早班' && that.formState.count == '第一次') {
  956. params = {
  957. timeEarly1: that.formState.time,
  958. reportTime: that.formState.tbrq
  959. }
  960. } else if (that.formState.bc == '早班' && that.formState.count == '第二次') {
  961. params = {
  962. timeEarly2: that.formState.time,
  963. reportTime: that.formState.tbrq
  964. }
  965. } else if (that.formState.bc == '中班' && that.formState.count == '第一次') {
  966. params = {
  967. timeNoon1: that.formState.time,
  968. reportTime: that.formState.tbrq
  969. }
  970. } else if (that.formState.bc == '中班' && that.formState.count == '第二次') {
  971. params = {
  972. timeNoon2: that.formState.time,
  973. reportTime: that.formState.tbrq
  974. }
  975. } else if (that.formState.bc == '夜班' && that.formState.count == '第一次') {
  976. params = {
  977. timeNight1: that.formState.time,
  978. reportTime: that.formState.tbrq
  979. }
  980. } else if (that.formState.bc == '夜班' && that.formState.count == '第二次') {
  981. params = {
  982. timeNight2: that.formState.time,
  983. reportTime: that.formState.tbrq
  984. }
  985. } else {
  986. that.formState.bc = '早班'
  987. that.formState.count = '第一次'
  988. params = {
  989. timeEarly1: that.formState.time,
  990. reportTime: that.formState.tbrq
  991. }
  992. }
  993. new Promise((resolve, reject) => {
  994. api
  995. .getGas(params)
  996. .then((response) => {
  997. if (response.data.code == 200) {
  998. let data = response.data.result.records
  999. if (data.length != 0) {
  1000. that.saveShow = 'edit'
  1001. that.saveShowList = data[0]
  1002. that.formState = {
  1003. id: data.id,
  1004. bc: that.formState.bc,
  1005. count: that.formState.count,
  1006. jcdd: data.strInstallPos,
  1007. jcy: that.formState.jcy,
  1008. // jcy: that.formState.bc == '早班' ? data.checkPersonEarly : that.formState.bc == '中班' ? data.checkPersonNoon : data.checkPersonNight,
  1009. time: that.formState.time,
  1010. tbrq: that.formState.tbrq,
  1011. temp: that.formState.bc == '早班' && that.formState.count == '第一次' ? data.tEarly1 : that.formState.bc == '早班' && that.formState.count == '第二次' ? data.tEarly2 : that.formState.bc == '中班' && that.formState.count == '第一次' ? data.tNoon1 : that.formState.bc == '中班' && that.formState.count == '第二次' ? data.tNoon2 : that.formState.bc == '夜班' && that.formState.count == '第一次' ? data.tNight1 : that.formState.bc == '夜班' && that.formState.count == '第二次' ? data.tNight2 : '',
  1012. ch4: that.formState.bc == '早班' && that.formState.count == '第一次' ? data.ch4Early1 : that.formState.bc == '早班' && that.formState.count == '第二次' ? data.ch4Early2 : that.formState.bc == '中班' && that.formState.count == '第一次' ? data.ch4Noon1 : that.formState.bc == '中班' && that.formState.count == '第二次' ? data.ch4Noon2 : that.formState.bc == '夜班' && that.formState.count == '第一次' ? data.ch4Night1 : that.formState.bc == '夜班' && that.formState.count == '第二次' ? data.ch4Night2 : '',
  1013. co2: that.formState.bc == '早班' && that.formState.count == '第一次' ? data.co2Early1 : that.formState.bc == '早班' && that.formState.count == '第二次' ? data.co2Early2 : that.formState.bc == '中班' && that.formState.count == '第一次' ? data.co2Noon1 : that.formState.bc == '中班' && that.formState.count == '第二次' ? data.co2Noon2 : that.formState.bc == '夜班' && that.formState.count == '第一次' ? data.co2Night1 : that.formState.bc == '夜班' && that.formState.count == '第二次' ? data.co2Night2 : '',
  1014. co: that.formState.bc == '早班' && that.formState.count == '第一次' ? data.coEarly1 : that.formState.bc == '早班' && that.formState.count == '第二次' ? data.coEarly2 : that.formState.bc == '中班' && that.formState.count == '第一次' ? data.coNoon1 : that.formState.bc == '中班' && that.formState.count == '第二次' ? data.coNoon2 : that.formState.bc == '夜班' && that.formState.count == '第一次' ? data.coNight1 : that.formState.bc == '夜班' && that.formState.count == '第二次' ? data.coNight2 : '',
  1015. o2: that.formState.bc == '早班' && that.formState.count == '第一次' ? data.o2Early1 : that.formState.bc == '早班' && that.formState.count == '第二次' ? data.o2Early2 : that.formState.bc == '中班' && that.formState.count == '第一次' ? data.o2Noon1 : that.formState.bc == '中班' && that.formState.count == '第二次' ? data.o2Noon2 : that.formState.bc == '夜班' && that.formState.count == '第一次' ? data.o2Night1 : that.formState.bc == '夜班' && that.formState.count == '第二次' ? data.o2Night2 : '',
  1016. jw: that.formState.bc == '早班' && that.formState.count == '第一次' ? data.jwSdzEarly1 : that.formState.bc == '早班' && that.formState.count == '第二次' ? data.jwSdzEarly2 : that.formState.bc == '中班' && that.formState.count == '第一次' ? data.jwSdzNoon1 : that.formState.bc == '中班' && that.formState.count == '第二次' ? data.jwSdzNoon2 : that.formState.bc == '夜班' && that.formState.count == '第一次' ? data.jwSdzNight1 : that.formState.bc == '夜班' && that.formState.count == '第二次' ? data.jwSdzNight2 : '',
  1017. gw: that.formState.bc == '早班' && that.formState.count == '第一次' ? data.gwSdzEarly1 : that.formState.bc == '早班' && that.formState.count == '第二次' ? data.gwSdzEarly2 : that.formState.bc == '中班' && that.formState.count == '第一次' ? data.gwSdzNoon1 : that.formState.bc == '中班' && that.formState.count == '第二次' ? data.gwSdzNoon2 : that.formState.bc == '夜班' && that.formState.count == '第一次' ? data.gwSdzNight1 : that.formState.bc == '夜班' && that.formState.count == '第二次' ? data.gwSdzNight2 : '',
  1018. bxy: that.formState.bc == '早班' && that.formState.count == '第一次' ? data.bxySdzEarly1 : that.formState.bc == '早班' && that.formState.count == '第二次' ? data.bxySdzEarly2 : that.formState.bc == '中班' && that.formState.count == '第一次' ? data.bxySdzNoon1 : that.formState.bc == '中班' && that.formState.count == '第二次' ? data.bxySdzNoon2 : that.formState.bc == '夜班' && that.formState.count == '第一次' ? data.bxySdzNight1 : that.formState.bc == '夜班' && that.formState.count == '第二次' ? data.bxySdzNight2 : '',
  1019. }
  1020. } else {
  1021. that.formState = {
  1022. id: '',
  1023. bc: that.formState.bc,
  1024. count: that.formState.count,
  1025. jcdd: '',
  1026. jcy: that.formState.jcy,
  1027. time: that.formState.time,
  1028. tbrq: that.formState.tbrq,
  1029. ch4: '',
  1030. co2: '',
  1031. co: '',
  1032. o2: '',
  1033. jw: '',
  1034. gw: '',
  1035. bxy: '',
  1036. temp: '',
  1037. }
  1038. that.saveShow = 'add'
  1039. }
  1040. } else {
  1041. reject(response);
  1042. }
  1043. })
  1044. .catch((error) => {
  1045. console.log("catch===>response", response);
  1046. reject(error);
  1047. });
  1048. });
  1049. },
  1050. //早班第一次编辑选项切换
  1051. changeZb1(e) {
  1052. this.formStateEdit.timeEarly1 = moment(e.value).format('YYYY-MM-DD HH:mm:ss')
  1053. },
  1054. //早班第二次编辑选项切换
  1055. changeZb2(e) {
  1056. this.formStateEdit.timeEarly2 = moment(e.value).format('YYYY-MM-DD HH:mm:ss')
  1057. },
  1058. //午班第一次编辑选项切换
  1059. changeWb1(e) {
  1060. this.formStateEdit.timeNoon1 = moment(e.value).format('YYYY-MM-DD HH:mm:ss')
  1061. },
  1062. //午班第二次编辑选项切换
  1063. changeWb2(e) {
  1064. this.formStateEdit.timeNoon2 = moment(e.value).format('YYYY-MM-DD HH:mm:ss')
  1065. },
  1066. //晚班第一次编辑选项切换
  1067. changeNb1(e) {
  1068. this.formStateEdit.timeNight1 = moment(e.value).format('YYYY-MM-DD HH:mm:ss')
  1069. },
  1070. //晚班第二次编辑选项切换
  1071. changeNb2(e) {
  1072. this.formStateEdit.timeNight2 = moment(e.value).format('YYYY-MM-DD HH:mm:ss')
  1073. },
  1074. change1(e) {
  1075. this.formState.time0 = moment(e.value).format('YYYY-MM-DD HH:mm:ss')
  1076. },
  1077. changeTb(e) {
  1078. this.tbTime = moment(e.value).format('YYYY-MM-DD')
  1079. },
  1080. //瓦斯新增
  1081. getAdd() {
  1082. let that = this
  1083. that.isShowAdd = true
  1084. that.formState.jcy = this.username
  1085. let params = {}
  1086. if (that.formState.bc == '早班' && that.formState.count == '第一次') {
  1087. params = {
  1088. timeEarly1: that.formState.time,
  1089. reportTime: that.formState.tbrq
  1090. }
  1091. } else if (that.formState.bc == '早班' && that.formState.count == '第二次') {
  1092. params = {
  1093. timeEarly2: that.formState.time,
  1094. reportTime: that.formState.tbrq
  1095. }
  1096. } else if (that.formState.bc == '中班' && that.formState.count == '第一次') {
  1097. params = {
  1098. timeNoon1: that.formState.time,
  1099. reportTime: that.formState.tbrq
  1100. }
  1101. } else if (that.formState.bc == '中班' && that.formState.count == '第二次') {
  1102. params = {
  1103. timeNoon2: that.formState.time,
  1104. reportTime: that.formState.tbrq
  1105. }
  1106. } else if (that.formState.bc == '夜班' && that.formState.count == '第一次') {
  1107. params = {
  1108. timeNight1: that.formState.time,
  1109. reportTime: that.formState.tbrq
  1110. }
  1111. } else if (that.formState.bc == '夜班' && that.formState.count == '第二次') {
  1112. params = {
  1113. timeNight2: that.formState.time,
  1114. reportTime: that.formState.tbrq
  1115. }
  1116. } else {
  1117. that.formState.bc = '早班'
  1118. that.formState.count = '第一次'
  1119. params = {
  1120. timeEarly1: that.formState.time,
  1121. reportTime: that.formState.tbrq
  1122. }
  1123. }
  1124. new Promise((resolve, reject) => {
  1125. api
  1126. .getGas(params)
  1127. .then((response) => {
  1128. if (response.data.code == 200) {
  1129. let data = response.data.result.records
  1130. if (data.length != 0) {
  1131. that.saveShow = 'edit'
  1132. that.saveShowList = data[0]
  1133. that.formState = {
  1134. id: data.id,
  1135. bc: that.formState.bc,
  1136. count: that.formState.count,
  1137. jcdd: data.strInstallPos,
  1138. jcy: that.formState.jcy,
  1139. // jcy: that.formState.bc == '早班' ? data.checkPersonEarly : that.formState.bc == '中班' ? data.checkPersonNoon : data.checkPersonNight,
  1140. time: that.formState.time,
  1141. tbrq: that.formState.tbrq,
  1142. temp: that.formState.bc == '早班' && that.formState.count == '第一次' ? data.tEarly1 : that.formState.bc == '早班' && that.formState.count == '第二次' ? data.tEarly2 : that.formState.bc == '中班' && that.formState.count == '第一次' ? data.tNoon1 : that.formState.bc == '中班' && that.formState.count == '第二次' ? data.tNoon2 : that.formState.bc == '夜班' && that.formState.count == '第一次' ? data.tNight1 : that.formState.bc == '夜班' && that.formState.count == '第二次' ? data.tNight2 : '',
  1143. ch4: that.formState.bc == '早班' && that.formState.count == '第一次' ? data.ch4Early1 : that.formState.bc == '早班' && that.formState.count == '第二次' ? data.ch4Early2 : that.formState.bc == '中班' && that.formState.count == '第一次' ? data.ch4Noon1 : that.formState.bc == '中班' && that.formState.count == '第二次' ? data.ch4Noon2 : that.formState.bc == '夜班' && that.formState.count == '第一次' ? data.ch4Night1 : that.formState.bc == '夜班' && that.formState.count == '第二次' ? data.ch4Night2 : '',
  1144. co2: that.formState.bc == '早班' && that.formState.count == '第一次' ? data.co2Early1 : that.formState.bc == '早班' && that.formState.count == '第二次' ? data.co2Early2 : that.formState.bc == '中班' && that.formState.count == '第一次' ? data.co2Noon1 : that.formState.bc == '中班' && that.formState.count == '第二次' ? data.co2Noon2 : that.formState.bc == '夜班' && that.formState.count == '第一次' ? data.co2Night1 : that.formState.bc == '夜班' && that.formState.count == '第二次' ? data.co2Night2 : '',
  1145. co: that.formState.bc == '早班' && that.formState.count == '第一次' ? data.coEarly1 : that.formState.bc == '早班' && that.formState.count == '第二次' ? data.coEarly2 : that.formState.bc == '中班' && that.formState.count == '第一次' ? data.coNoon1 : that.formState.bc == '中班' && that.formState.count == '第二次' ? data.coNoon2 : that.formState.bc == '夜班' && that.formState.count == '第一次' ? data.coNight1 : that.formState.bc == '夜班' && that.formState.count == '第二次' ? data.coNight2 : '',
  1146. o2: that.formState.bc == '早班' && that.formState.count == '第一次' ? data.o2Early1 : that.formState.bc == '早班' && that.formState.count == '第二次' ? data.o2Early2 : that.formState.bc == '中班' && that.formState.count == '第一次' ? data.o2Noon1 : that.formState.bc == '中班' && that.formState.count == '第二次' ? data.o2Noon2 : that.formState.bc == '夜班' && that.formState.count == '第一次' ? data.o2Night1 : that.formState.bc == '夜班' && that.formState.count == '第二次' ? data.o2Night2 : '',
  1147. jw: that.formState.bc == '早班' && that.formState.count == '第一次' ? data.jwSdzEarly1 : that.formState.bc == '早班' && that.formState.count == '第二次' ? data.jwSdzEarly2 : that.formState.bc == '中班' && that.formState.count == '第一次' ? data.jwSdzNoon1 : that.formState.bc == '中班' && that.formState.count == '第二次' ? data.jwSdzNoon2 : that.formState.bc == '夜班' && that.formState.count == '第一次' ? data.jwSdzNight1 : that.formState.bc == '夜班' && that.formState.count == '第二次' ? data.jwSdzNight2 : '',
  1148. gw: that.formState.bc == '早班' && that.formState.count == '第一次' ? data.gwSdzEarly1 : that.formState.bc == '早班' && that.formState.count == '第二次' ? data.gwSdzEarly2 : that.formState.bc == '中班' && that.formState.count == '第一次' ? data.gwSdzNoon1 : that.formState.bc == '中班' && that.formState.count == '第二次' ? data.gwSdzNoon2 : that.formState.bc == '夜班' && that.formState.count == '第一次' ? data.gwSdzNight1 : that.formState.bc == '夜班' && that.formState.count == '第二次' ? data.gwSdzNight2 : '',
  1149. bxy: that.formState.bc == '早班' && that.formState.count == '第一次' ? data.bxySdzEarly1 : that.formState.bc == '早班' && that.formState.count == '第二次' ? data.bxySdzEarly2 : that.formState.bc == '中班' && that.formState.count == '第一次' ? data.bxySdzNoon1 : that.formState.bc == '中班' && that.formState.count == '第二次' ? data.bxySdzNoon2 : that.formState.bc == '夜班' && that.formState.count == '第一次' ? data.bxySdzNight1 : that.formState.bc == '夜班' && that.formState.count == '第二次' ? data.bxySdzNight2 : '',
  1150. }
  1151. // that.getEditSave()
  1152. } else {
  1153. that.formState = {
  1154. id: '',
  1155. bc: that.formState.bc,
  1156. count: that.formState.count,
  1157. jcdd: '',
  1158. jcy: that.formState.jcy,
  1159. time: that.formState.time,
  1160. tbrq: that.formState.tbrq,
  1161. ch4: '',
  1162. co2: '',
  1163. co: '',
  1164. o2: '',
  1165. jw: '',
  1166. gw: '',
  1167. bxy: '',
  1168. temp: '',
  1169. }
  1170. // that.getAddSave()
  1171. that.saveShow = 'add'
  1172. }
  1173. } else {
  1174. reject(response);
  1175. }
  1176. })
  1177. .catch((error) => {
  1178. console.log("catch===>response", response);
  1179. reject(error);
  1180. });
  1181. });
  1182. },
  1183. getAddSave() {
  1184. let that = this
  1185. that.formState.jcy = that.username
  1186. let param = {}
  1187. if (that.formState.bc == '早班' && that.formState.count == '第一次') {
  1188. param = {
  1189. id: that.formState.id,
  1190. bxySdzEarly1: that.formState.bxy,
  1191. ch4Early1: that.formState.ch4,
  1192. checkPersonEarly: that.formState.jcy,
  1193. co2Early1: that.formState.co2,
  1194. coEarly1: that.formState.co,
  1195. gwSdzEarly1: that.formState.gw,
  1196. jwSdzEarly1: that.formState.jw,
  1197. o2Early1: that.formState.o2,
  1198. strInstallPos: that.formState.jcdd,
  1199. timeEarly1: that.formState.time,
  1200. reportTime: that.formState.tbrq,
  1201. tEarly1: that.formState.temp
  1202. }
  1203. } else if (that.formState.bc == '早班' && that.formState.count == '第二次') {
  1204. param = {
  1205. id: that.formState.id,
  1206. bxySdzEarly2: that.formState.bxy,
  1207. ch4Early2: that.formState.ch4,
  1208. checkPersonEarly: that.formState.jcy,
  1209. co2Early2: that.formState.co2,
  1210. coEarly2: that.formState.co,
  1211. gwSdzEarly2: that.formState.gw,
  1212. jwSdzEarly2: that.formState.jw,
  1213. o2Early2: that.formState.o2,
  1214. strInstallPos: that.formState.jcdd,
  1215. timeEarly2: that.formState.time,
  1216. reportTime: that.formState.tbrq,
  1217. tEarly2: that.formState.temp
  1218. }
  1219. } else if (that.formState.bc == '中班' && that.formState.count == '第一次') {
  1220. param = {
  1221. id: that.formState.id,
  1222. bxySdzNoon1: that.formState.bxy,
  1223. ch4Noon1: that.formState.ch4,
  1224. checkPersonNoon: that.formState.jcy,
  1225. co2Noon1: that.formState.co2,
  1226. coNoon1: that.formState.co,
  1227. gwSdzNoon1: that.formState.gw,
  1228. jwSdzNoon1: that.formState.jw,
  1229. o2Noon1: that.formState.o2,
  1230. strInstallPos: that.formState.jcdd,
  1231. timeNoon1: that.formState.time,
  1232. reportTime: that.formState.tbrq,
  1233. tNoon1: that.formState.temp
  1234. }
  1235. } else if (that.formState.bc == '中班' && that.formState.count == '第二次') {
  1236. param = {
  1237. id: that.formState.id,
  1238. bxySdzNoon2: that.formState.bxy,
  1239. ch4Noon2: that.formState.ch4,
  1240. checkPersonNoon: that.formState.jcy,
  1241. co2Noon2: that.formState.co2,
  1242. coNoon2: that.formState.co,
  1243. gwSdzNoon2: that.formState.gw,
  1244. jwSdzNoon2: that.formState.jw,
  1245. o2Noon2: that.formState.o2,
  1246. strInstallPos: that.formState.jcdd,
  1247. timeNoon2: that.formState.time,
  1248. reportTime: that.formState.tbrq,
  1249. tNoon2: that.formState.temp
  1250. }
  1251. } else if (that.formState.bc == '夜班' && that.formState.count == '第一次') {
  1252. param = {
  1253. id: that.formState.id,
  1254. bxySdzNight1: that.formState.bxy,
  1255. ch4Night1: that.formState.ch4,
  1256. checkPersonNight: that.formState.jcy,
  1257. co2Night1: that.formState.co2,
  1258. coNight1: that.formState.co,
  1259. gwSdzNight1: that.formState.gw,
  1260. jwSdzNight1: that.formState.jw,
  1261. o2Night1: that.formState.o2,
  1262. strInstallPos: that.formState.jcdd,
  1263. timeNight1: that.formState.time,
  1264. reportTime: that.formState.tbrq,
  1265. tNight1: that.formState.temp
  1266. }
  1267. } else if (that.formState.bc == '夜班' && that.formState.count == '第二次') {
  1268. param = {
  1269. id: that.formState.id,
  1270. bxySdzNight2: that.formState.bxy,
  1271. ch4Night2: that.formState.ch4,
  1272. checkPersonNoon: that.formState.jcy,
  1273. co2Night2: that.formState.co2,
  1274. coNight2: that.formState.co,
  1275. gwSdzNight2: that.formState.gw,
  1276. jwSdzNight2: that.formState.jw,
  1277. o2Night2: that.formState.o2,
  1278. strInstallPos: that.formState.jcdd,
  1279. timeNight2: that.formState.time,
  1280. reportTime: that.formState.tbrq,
  1281. tNight2: that.formState.temp
  1282. }
  1283. }
  1284. new Promise((resolve, reject) => {
  1285. api
  1286. .getAdd({ ...param })
  1287. .then((response) => {
  1288. if (response.data.code == 200) {
  1289. this.getGasList()
  1290. this.isShowAdd = false
  1291. this.clearData()
  1292. } else {
  1293. reject(response);
  1294. }
  1295. })
  1296. .catch((error) => {
  1297. console.log("catch===>response", response);
  1298. reject(error);
  1299. });
  1300. });
  1301. },
  1302. getEditSave() {
  1303. let that = this
  1304. that.formState.jcy = that.username
  1305. let param = {}
  1306. if (that.formState.bc == '早班' && that.formState.count == '第一次') {
  1307. param = {
  1308. id: that.formState.id,
  1309. bxySdzEarly1: that.formState.bxy,
  1310. ch4Early1: that.formState.ch4,
  1311. checkPersonEarly: that.formState.jcy,
  1312. co2Early1: that.formState.co2,
  1313. coEarly1: that.formState.co,
  1314. gwSdzEarly1: that.formState.gw,
  1315. jwSdzEarly1: that.formState.jw,
  1316. o2Early1: that.formState.o2,
  1317. strInstallPos: that.formState.jcdd,
  1318. timeEarly1: that.formState.time,
  1319. tEarly1: that.formState.temp,
  1320. bxySdzEarly2: that.saveShowList.bxySdzEarly2,
  1321. ch4Early2: that.saveShowList.ch4Early2,
  1322. co2Early2: that.saveShowList.co2Early2,
  1323. coEarly2: that.saveShowList.coEarly2,
  1324. gwSdzEarly2: that.saveShowList.gwSdzEarly2,
  1325. jwSdzEarly2: that.saveShowList.jwSdzEarly2,
  1326. o2Early2: that.saveShowList.o2Early2,
  1327. timeEarly2: that.saveShowList.timeEarly2,
  1328. tEarly2: that.saveShowList.tEarly2,
  1329. bxySdzNoon1: that.saveShowList.bxySdzNoon1,
  1330. ch4Noon1: that.saveShowList.ch4Noon1,
  1331. checkPersonNoon: that.formState.jcy,
  1332. co2Noon1: that.saveShowList.co2Noon1,
  1333. coNoon1: that.saveShowList.coNoon1,
  1334. gwSdzNoon1: that.saveShowList.gwSdzNoon1,
  1335. jwSdzNoon1: that.saveShowList.jwSdzNoon1,
  1336. o2Noon1: that.saveShowList.o2Noon1,
  1337. strInstallPos: that.saveShowList.strInstallPos,
  1338. timeNoon1: that.saveShowList.timeNoon1,
  1339. tNoon1: that.saveShowList.tNoon1,
  1340. bxySdzNoon2: that.saveShowList.bxySdzNoon2,
  1341. ch4Noon2: that.saveShowList.ch4Noon2,
  1342. co2Noon2: that.saveShowList.co2Noon2,
  1343. coNoon2: that.saveShowList.coNoon2,
  1344. gwSdzNoon2: that.saveShowList.gwSdzNoon2,
  1345. jwSdzNoon2: that.saveShowList.jwSdzNoon2,
  1346. o2Noon2: that.saveShowList.o2Noon2,
  1347. timeNoon2: that.saveShowList.timeNoon2,
  1348. tNoon2: that.saveShowList.tNoon2,
  1349. bxySdzNight1: that.saveShowList.bxySdzNight1,
  1350. ch4Night1: that.saveShowList.ch4Night1,
  1351. checkPersonNight: that.formState.jcy,
  1352. co2Night1: that.saveShowList.co2Night1,
  1353. coNight1: that.saveShowList.coNight1,
  1354. gwSdzNight1: that.saveShowList.gwSdzNight1,
  1355. jwSdzNight1: that.saveShowList.jwSdzNight1,
  1356. o2Night1: that.saveShowList.o2Night1,
  1357. strInstallPos: that.saveShowList.strInstallPos,
  1358. timeNight1: that.saveShowList.timeNight1,
  1359. tNight1: that.saveShowList.tNight1,
  1360. bxySdzNight2: that.saveShowList.bxySdzNight2,
  1361. ch4Night2: that.saveShowList.ch4Night2,
  1362. co2Night2: that.saveShowList.co2Night2,
  1363. coNight2: that.saveShowList.coNight2,
  1364. gwSdzNight2: that.saveShowList.gwSdzNight2,
  1365. jwSdzNight2: that.saveShowList.jwSdzNight2,
  1366. o2Night2: that.saveShowList.o2Night2,
  1367. timeNight2: that.saveShowList.timeNight2,
  1368. tNight2: that.saveShowList.tNight2,
  1369. }
  1370. } else if (that.formState.bc == '早班' && that.formState.count == '第二次') {
  1371. param = {
  1372. id: that.formState.id,
  1373. bxySdzEarly1: that.saveShowList.bxySdzEarly1,
  1374. ch4Early1: that.saveShowList.ch4Early1,
  1375. co2Early1: that.saveShowList.co2Early1,
  1376. coEarly1: that.saveShowList.coEarly1,
  1377. gwSdzEarly1: that.saveShowList.gwSdzEarly1,
  1378. jwSdzEarly1: that.saveShowList.jwSdzEarly1,
  1379. o2Early1: that.saveShowList.o2Early1,
  1380. timeEarly1: that.saveShowList.timeEarly1,
  1381. tEarly1: that.saveShowList.tEarly1,
  1382. bxySdzEarly2: that.formState.bxy,
  1383. ch4Early2: that.formState.ch4,
  1384. checkPersonEarly: that.formState.jcy,
  1385. co2Early2: that.formState.co2,
  1386. coEarly2: that.formState.co,
  1387. gwSdzEarly2: that.formState.gw,
  1388. jwSdzEarly2: that.formState.jw,
  1389. o2Early2: that.formState.o2,
  1390. strInstallPos: that.formState.jcdd,
  1391. timeEarly2: that.formState.time,
  1392. tEarly2: that.formState.temp,
  1393. bxySdzNoon1: that.saveShowList.bxySdzNoon1,
  1394. ch4Noon1: that.saveShowList.ch4Noon1,
  1395. checkPersonNoon: that.formState.jcy,
  1396. co2Noon1: that.saveShowList.co2Noon1,
  1397. coNoon1: that.saveShowList.coNoon1,
  1398. gwSdzNoon1: that.saveShowList.gwSdzNoon1,
  1399. jwSdzNoon1: that.saveShowList.jwSdzNoon1,
  1400. o2Noon1: that.saveShowList.o2Noon1,
  1401. strInstallPos: that.saveShowList.strInstallPos,
  1402. timeNoon1: that.saveShowList.timeNoon1,
  1403. tNoon1: that.saveShowList.tNoon1,
  1404. bxySdzNoon2: that.saveShowList.bxySdzNoon2,
  1405. ch4Noon2: that.saveShowList.ch4Noon2,
  1406. co2Noon2: that.saveShowList.co2Noon2,
  1407. coNoon2: that.saveShowList.coNoon2,
  1408. gwSdzNoon2: that.saveShowList.gwSdzNoon2,
  1409. jwSdzNoon2: that.saveShowList.jwSdzNoon2,
  1410. o2Noon2: that.saveShowList.o2Noon2,
  1411. timeNoon2: that.saveShowList.timeNoon2,
  1412. tNoon2: that.saveShowList.tNoon2,
  1413. bxySdzNight1: that.saveShowList.bxySdzNight1,
  1414. ch4Night1: that.saveShowList.ch4Night1,
  1415. checkPersonNight: that.formState.jcy,
  1416. co2Night1: that.saveShowList.co2Night1,
  1417. coNight1: that.saveShowList.coNight1,
  1418. gwSdzNight1: that.saveShowList.gwSdzNight1,
  1419. jwSdzNight1: that.saveShowList.jwSdzNight1,
  1420. o2Night1: that.saveShowList.o2Night1,
  1421. strInstallPos: that.saveShowList.strInstallPos,
  1422. timeNight1: that.saveShowList.timeNight1,
  1423. tNight1: that.saveShowList.tNight1,
  1424. bxySdzNight2: that.saveShowList.bxySdzNight2,
  1425. ch4Night2: that.saveShowList.ch4Night2,
  1426. co2Night2: that.saveShowList.co2Night2,
  1427. coNight2: that.saveShowList.coNight2,
  1428. gwSdzNight2: that.saveShowList.gwSdzNight2,
  1429. jwSdzNight2: that.saveShowList.jwSdzNight2,
  1430. o2Night2: that.saveShowList.o2Night2,
  1431. timeNight2: that.saveShowList.timeNight2,
  1432. tNight2: that.saveShowList.tNight2,
  1433. }
  1434. } else if (that.formState.bc == '中班' && that.formState.count == '第一次') {
  1435. param = {
  1436. id: that.formState.id,
  1437. bxySdzEarly1: that.saveShowList.bxySdzEarly1,
  1438. ch4Early1: that.saveShowList.ch4Early1,
  1439. co2Early1: that.saveShowList.co2Early1,
  1440. coEarly1: that.saveShowList.coEarly1,
  1441. gwSdzEarly1: that.saveShowList.gwSdzEarly1,
  1442. jwSdzEarly1: that.saveShowList.jwSdzEarly1,
  1443. o2Early1: that.saveShowList.o2Early1,
  1444. timeEarly1: that.saveShowList.timeEarly1,
  1445. checkPersonEarly: that.formState.jcy,
  1446. strInstallPos: that.saveShowList.strInstallPos,
  1447. tEarly1: that.saveShowList.tEarly1,
  1448. bxySdzEarly2: that.saveShowList.bxySdzEarly2,
  1449. ch4Early2: that.saveShowList.ch4Early2,
  1450. co2Early2: that.saveShowList.co2Early2,
  1451. coEarly2: that.saveShowList.coEarly2,
  1452. gwSdzEarly2: that.saveShowList.gwSdzEarly2,
  1453. jwSdzEarly2: that.saveShowList.jwSdzEarly2,
  1454. o2Early2: that.saveShowList.o2Early2,
  1455. timeEarly2: that.saveShowList.timeEarly2,
  1456. tEarly2: that.saveShowList.tEarly2,
  1457. bxySdzNoon1: that.formState.bxy,
  1458. ch4Noon1: that.formState.ch4,
  1459. checkPersonNoon: that.formState.jcy,
  1460. co2Noon1: that.formState.co2,
  1461. coNoon1: that.formState.co,
  1462. gwSdzNoon1: that.formState.gw,
  1463. jwSdzNoon1: that.formState.jw,
  1464. o2Noon1: that.formState.o2,
  1465. strInstallPos: that.formState.jcdd,
  1466. timeNoon1: that.formState.time,
  1467. tNoon1: that.formState.temp,
  1468. bxySdzNoon2: that.saveShowList.bxySdzNoon2,
  1469. ch4Noon2: that.saveShowList.ch4Noon2,
  1470. co2Noon2: that.saveShowList.co2Noon2,
  1471. coNoon2: that.saveShowList.coNoon2,
  1472. gwSdzNoon2: that.saveShowList.gwSdzNoon2,
  1473. jwSdzNoon2: that.saveShowList.jwSdzNoon2,
  1474. o2Noon2: that.saveShowList.o2Noon2,
  1475. timeNoon2: that.saveShowList.timeNoon2,
  1476. tNoon2: that.saveShowList.tNoon2,
  1477. bxySdzNight1: that.saveShowList.bxySdzNight1,
  1478. ch4Night1: that.saveShowList.ch4Night1,
  1479. checkPersonNight: that.formState.jcy,
  1480. co2Night1: that.saveShowList.co2Night1,
  1481. coNight1: that.saveShowList.coNight1,
  1482. gwSdzNight1: that.saveShowList.gwSdzNight1,
  1483. jwSdzNight1: that.saveShowList.jwSdzNight1,
  1484. o2Night1: that.saveShowList.o2Night1,
  1485. strInstallPos: that.saveShowList.strInstallPos,
  1486. timeNight1: that.saveShowList.timeNight1,
  1487. tNight1: that.saveShowList.tNight1,
  1488. bxySdzNight2: that.saveShowList.bxySdzNight2,
  1489. ch4Night2: that.saveShowList.ch4Night2,
  1490. co2Night2: that.saveShowList.co2Night2,
  1491. coNight2: that.saveShowList.coNight2,
  1492. gwSdzNight2: that.saveShowList.gwSdzNight2,
  1493. jwSdzNight2: that.saveShowList.jwSdzNight2,
  1494. o2Night2: that.saveShowList.o2Night2,
  1495. timeNight2: that.saveShowList.timeNight2,
  1496. tNight2: that.saveShowList.tNight2,
  1497. }
  1498. } else if (that.formState.bc == '中班' && that.formState.count == '第二次') {
  1499. param = {
  1500. id: that.formState.id,
  1501. bxySdzEarly1: that.saveShowList.bxySdzEarly1,
  1502. ch4Early1: that.saveShowList.ch4Early1,
  1503. co2Early1: that.saveShowList.co2Early1,
  1504. coEarly1: that.saveShowList.coEarly1,
  1505. gwSdzEarly1: that.saveShowList.gwSdzEarly1,
  1506. jwSdzEarly1: that.saveShowList.jwSdzEarly1,
  1507. o2Early1: that.saveShowList.o2Early1,
  1508. timeEarly1: that.saveShowList.timeEarly1,
  1509. checkPersonEarly: that.formState.jcy,
  1510. strInstallPos: that.saveShowList.strInstallPos,
  1511. tEarly1: that.saveShowList.tEarly1,
  1512. bxySdzEarly2: that.saveShowList.bxySdzEarly2,
  1513. ch4Early2: that.saveShowList.ch4Early2,
  1514. co2Early2: that.saveShowList.co2Early2,
  1515. coEarly2: that.saveShowList.coEarly2,
  1516. gwSdzEarly2: that.saveShowList.gwSdzEarly2,
  1517. jwSdzEarly2: that.saveShowList.jwSdzEarly2,
  1518. o2Early2: that.saveShowList.o2Early2,
  1519. timeEarly2: that.saveShowList.timeEarly2,
  1520. tEarly2: that.saveShowList.tEarly2,
  1521. bxySdzNoon1: that.saveShowList.bxySdzNoon1,
  1522. ch4Noon1: that.saveShowList.ch4Noon1,
  1523. co2Noon1: that.saveShowList.co2Noon1,
  1524. coNoon1: that.saveShowList.coNoon1,
  1525. gwSdzNoon1: that.saveShowList.gwSdzNoon1,
  1526. jwSdzNoon1: that.saveShowList.jwSdzNoon1,
  1527. o2Noon1: that.saveShowList.o2Noon1,
  1528. timeNoon1: that.saveShowList.timeNoon1,
  1529. tNoon1: that.saveShowList.tNoon1,
  1530. bxySdzNoon2: that.formState.bxy,
  1531. ch4Noon2: that.formState.ch4,
  1532. checkPersonNoon: that.formState.jcy,
  1533. co2Noon2: that.formState.co2,
  1534. coNoon2: that.formState.co,
  1535. gwSdzNoon2: that.formState.gw,
  1536. jwSdzNoon2: that.formState.jw,
  1537. o2Noon2: that.formState.o2,
  1538. strInstallPos: that.formState.jcdd,
  1539. timeNoon2: that.formState.time,
  1540. tNoon2: that.formState.temp,
  1541. bxySdzNight1: that.saveShowList.bxySdzNight1,
  1542. ch4Night1: that.saveShowList.ch4Night1,
  1543. checkPersonNight: that.formState.jcy,
  1544. co2Night1: that.saveShowList.co2Night1,
  1545. coNight1: that.saveShowList.coNight1,
  1546. gwSdzNight1: that.saveShowList.gwSdzNight1,
  1547. jwSdzNight1: that.saveShowList.jwSdzNight1,
  1548. o2Night1: that.saveShowList.o2Night1,
  1549. strInstallPos: that.saveShowList.strInstallPos,
  1550. timeNight1: that.saveShowList.timeNight1,
  1551. tNight1: that.saveShowList.tNight1,
  1552. bxySdzNight2: that.saveShowList.bxySdzNight2,
  1553. ch4Night2: that.saveShowList.ch4Night2,
  1554. co2Night2: that.saveShowList.co2Night2,
  1555. coNight2: that.saveShowList.coNight2,
  1556. gwSdzNight2: that.saveShowList.gwSdzNight2,
  1557. jwSdzNight2: that.saveShowList.jwSdzNight2,
  1558. o2Night2: that.saveShowList.o2Night2,
  1559. timeNight2: that.saveShowList.timeNight2,
  1560. tNight2: that.saveShowList.tNight2,
  1561. }
  1562. } else if (that.formState.bc == '夜班' && that.formState.count == '第一次') {
  1563. param = {
  1564. id: that.formState.id,
  1565. bxySdzEarly1: that.saveShowList.bxySdzEarly1,
  1566. ch4Early1: that.saveShowList.ch4Early1,
  1567. co2Early1: that.saveShowList.co2Early1,
  1568. coEarly1: that.saveShowList.coEarly1,
  1569. gwSdzEarly1: that.saveShowList.gwSdzEarly1,
  1570. jwSdzEarly1: that.saveShowList.jwSdzEarly1,
  1571. o2Early1: that.saveShowList.o2Early1,
  1572. timeEarly1: that.saveShowList.timeEarly1,
  1573. checkPersonEarly: that.formState.jcy,
  1574. strInstallPos: that.saveShowList.strInstallPos,
  1575. tEarly1: that.saveShowList.tEarly1,
  1576. bxySdzEarly2: that.saveShowList.bxySdzEarly2,
  1577. ch4Early2: that.saveShowList.ch4Early2,
  1578. co2Early2: that.saveShowList.co2Early2,
  1579. coEarly2: that.saveShowList.coEarly2,
  1580. gwSdzEarly2: that.saveShowList.gwSdzEarly2,
  1581. jwSdzEarly2: that.saveShowList.jwSdzEarly2,
  1582. o2Early2: that.saveShowList.o2Early2,
  1583. timeEarly2: that.saveShowList.timeEarly2,
  1584. tEarly2: that.saveShowList.tEarly2,
  1585. bxySdzNoon1: that.saveShowList.bxySdzNoon1,
  1586. ch4Noon1: that.saveShowList.ch4Noon1,
  1587. co2Noon1: that.saveShowList.co2Noon1,
  1588. coNoon1: that.saveShowList.coNoon1,
  1589. gwSdzNoon1: that.saveShowList.gwSdzNoon1,
  1590. jwSdzNoon1: that.saveShowList.jwSdzNoon1,
  1591. o2Noon1: that.saveShowList.o2Noon1,
  1592. timeNoon1: that.saveShowList.timeNoon1,
  1593. tNoon1: that.saveShowList.tNoon1,
  1594. bxySdzNoon2: that.saveShowList.bxySdzNoon2,
  1595. ch4Noon2: that.saveShowList.ch4Noon2,
  1596. checkPersonNoon: that.formState.jcy,
  1597. co2Noon2: that.saveShowList.co2Noon2,
  1598. coNoon2: that.saveShowList.coNoon2,
  1599. gwSdzNoon2: that.saveShowList.gwSdzNoon2,
  1600. jwSdzNoon2: that.saveShowList.jwSdzNoon2,
  1601. o2Noon2: that.saveShowList.o2Noon2,
  1602. strInstallPos: that.saveShowList.strInstallPos,
  1603. timeNoon2: that.saveShowList.timeNoon2,
  1604. tNoon2: that.saveShowList.tNoon2,
  1605. bxySdzNight1: that.formState.bxy,
  1606. ch4Night1: that.formState.ch4,
  1607. checkPersonNight: that.formState.jcy,
  1608. co2Night1: that.formState.co2,
  1609. coNight1: that.formState.co,
  1610. gwSdzNight1: that.formState.gw,
  1611. jwSdzNight1: that.formState.jw,
  1612. o2Night1: that.formState.o2,
  1613. strInstallPos: that.formState.jcdd,
  1614. timeNight1: that.formState.time,
  1615. tNight1: that.formState.temp,
  1616. bxySdzNight2: that.saveShowList.bxySdzNight2,
  1617. ch4Night2: that.saveShowList.ch4Night2,
  1618. co2Night2: that.saveShowList.co2Night2,
  1619. coNight2: that.saveShowList.coNight2,
  1620. gwSdzNight2: that.saveShowList.gwSdzNight2,
  1621. jwSdzNight2: that.saveShowList.jwSdzNight2,
  1622. o2Night2: that.saveShowList.o2Night2,
  1623. timeNight2: that.saveShowList.timeNight2,
  1624. tNight2: that.saveShowList.tNight2,
  1625. }
  1626. } else if (that.formState.bc == '夜班' && that.formState.count == '第二次') {
  1627. param = {
  1628. id: that.formState.id,
  1629. bxySdzEarly1: that.saveShowList.bxySdzEarly1,
  1630. ch4Early1: that.saveShowList.ch4Early1,
  1631. co2Early1: that.saveShowList.co2Early1,
  1632. coEarly1: that.saveShowList.coEarly1,
  1633. gwSdzEarly1: that.saveShowList.gwSdzEarly1,
  1634. jwSdzEarly1: that.saveShowList.jwSdzEarly1,
  1635. o2Early1: that.saveShowList.o2Early1,
  1636. timeEarly1: that.saveShowList.timeEarly1,
  1637. checkPersonEarly: that.formState.jcy,
  1638. strInstallPos: that.saveShowList.strInstallPos,
  1639. tEarly1: that.saveShowList.tEarly1,
  1640. bxySdzEarly2: that.saveShowList.bxySdzEarly2,
  1641. ch4Early2: that.saveShowList.ch4Early2,
  1642. co2Early2: that.saveShowList.co2Early2,
  1643. coEarly2: that.saveShowList.coEarly2,
  1644. gwSdzEarly2: that.saveShowList.gwSdzEarly2,
  1645. jwSdzEarly2: that.saveShowList.jwSdzEarly2,
  1646. o2Early2: that.saveShowList.o2Early2,
  1647. timeEarly2: that.saveShowList.timeEarly2,
  1648. tEarly2: that.saveShowList.tEarly2,
  1649. bxySdzNoon1: that.saveShowList.bxySdzNoon1,
  1650. ch4Noon1: that.saveShowList.ch4Noon1,
  1651. co2Noon1: that.saveShowList.co2Noon1,
  1652. coNoon1: that.saveShowList.coNoon1,
  1653. gwSdzNoon1: that.saveShowList.gwSdzNoon1,
  1654. jwSdzNoon1: that.saveShowList.jwSdzNoon1,
  1655. o2Noon1: that.saveShowList.o2Noon1,
  1656. timeNoon1: that.saveShowList.timeNoon1,
  1657. tNoon1: that.saveShowList.tNoon1,
  1658. bxySdzNoon2: that.saveShowList.bxySdzNoon2,
  1659. ch4Noon2: that.saveShowList.ch4Noon2,
  1660. checkPersonNoon: that.formState.jcy,
  1661. co2Noon2: that.saveShowList.co2Noon2,
  1662. coNoon2: that.saveShowList.coNoon2,
  1663. gwSdzNoon2: that.saveShowList.gwSdzNoon2,
  1664. jwSdzNoon2: that.saveShowList.jwSdzNoon2,
  1665. o2Noon2: that.saveShowList.o2Noon2,
  1666. strInstallPos: that.saveShowList.strInstallPos,
  1667. timeNoon2: that.saveShowList.timeNoon2,
  1668. tNoon2: that.saveShowList.tNoon2,
  1669. bxySdzNight1: that.saveShowList.bxySdzNight1,
  1670. ch4Night1: that.saveShowList.ch4Night1,
  1671. co2Night1: that.saveShowList.co2Night1,
  1672. coNight1: that.saveShowList.coNight1,
  1673. gwSdzNight1: that.saveShowList.gwSdzNight1,
  1674. jwSdzNight1: that.saveShowList.jwSdzNight1,
  1675. o2Night1: that.saveShowList.o2Night1,
  1676. timeNight1: that.saveShowList.timeNight1,
  1677. tNight1: that.saveShowList.tNight1,
  1678. bxySdzNight2: that.formState.bxy,
  1679. ch4Night2: that.formState.ch4,
  1680. checkPersonNight: that.formState.jcy,
  1681. co2Night2: that.formState.co2,
  1682. coNight2: that.formState.co,
  1683. gwSdzNight2: that.formState.gw,
  1684. jwSdzNight2: that.formState.jw,
  1685. o2Night2: that.formState.o2,
  1686. strInstallPos: that.formState.jcdd,
  1687. timeNight2: that.formState.time,
  1688. tNight2: that.formState.temp,
  1689. }
  1690. }
  1691. new Promise((resolve, reject) => {
  1692. api
  1693. .getEdit({ ...param })
  1694. .then((response) => {
  1695. if (response.data.code == 200) {
  1696. this.getGasList()
  1697. this.isShowAdd = false
  1698. this.clearData()
  1699. } else {
  1700. reject(response);
  1701. }
  1702. })
  1703. .catch((error) => {
  1704. console.log("catch===>response", response);
  1705. reject(error);
  1706. });
  1707. });
  1708. },
  1709. //新增保存
  1710. getConfirm() {
  1711. let that = this
  1712. if (that.saveShow = 'add') {
  1713. that.getAddSave()
  1714. } else {
  1715. that.getEditSave()
  1716. }
  1717. },
  1718. //编辑保存
  1719. getConfirmEdit() {
  1720. new Promise((resolve, reject) => {
  1721. api
  1722. .getEdit({ ...this.formStateEdit })
  1723. .then((response) => {
  1724. if (response.data.code == 200) {
  1725. this.getGasList()
  1726. this.isShowEdit = false
  1727. this.clearEdit()
  1728. } else {
  1729. reject(response);
  1730. }
  1731. })
  1732. .catch((error) => {
  1733. console.log("catch===>response", response);
  1734. reject(error);
  1735. });
  1736. });
  1737. },
  1738. clearData() {
  1739. this.formState = {
  1740. id: '',
  1741. bc: '',
  1742. count: '',
  1743. jcdd: '',
  1744. jcy: this.username,
  1745. time: '',
  1746. ch4: '',
  1747. co2: '',
  1748. co: '',
  1749. o2: '',
  1750. jw: '',
  1751. gw: '',
  1752. bxy: '',
  1753. tbrq: '',
  1754. temp: '',
  1755. }
  1756. this.isRule = true
  1757. this.isRule1 = true
  1758. this.isRule2 = true
  1759. this.isRule3 = true
  1760. this.isRule4 = true
  1761. this.isRule5 = true
  1762. this.isRule6 = true
  1763. this.isRule7 = true
  1764. this.isRule8 = true
  1765. this.isRule9 = true
  1766. this.isRule10 = true
  1767. this.isRule11 = true
  1768. this.isRule12 = true
  1769. this.isRule13 = true
  1770. this.isRule14 = true
  1771. this.isRule15 = true
  1772. this.isRule16 = true
  1773. this.isRule17 = true
  1774. this.isRule18 = true
  1775. this.isRule19 = true
  1776. this.isRule20 = true
  1777. },
  1778. clearEdit() {
  1779. this.isRule = true
  1780. this.isRule1 = true
  1781. this.isRule2 = true
  1782. this.isRule3 = true
  1783. this.isRule4 = true
  1784. this.isRule5 = true
  1785. this.isRule6 = true
  1786. this.isRule7 = true
  1787. this.isRule8 = true
  1788. this.isRule9 = true
  1789. this.isRule10 = true
  1790. this.isRule11 = true
  1791. this.isRule12 = true
  1792. this.isRule13 = true
  1793. this.isRule14 = true
  1794. this.isRule15 = true
  1795. this.isRule16 = true
  1796. this.isRule17 = true
  1797. this.isRule18 = true
  1798. this.isRule19 = true
  1799. this.isRule20 = true
  1800. },
  1801. //新增取消
  1802. getCancel() {
  1803. this.isShowAdd = false
  1804. this.clearData()
  1805. },
  1806. //编辑取消
  1807. getCancelEdit() {
  1808. this.isShowEdit = false
  1809. this.clearEdit()
  1810. },
  1811. //瓦斯编辑
  1812. getEdit(item) {
  1813. console.log(item, '4333=====')
  1814. this.isShowEdit = true
  1815. this.formState.jcy = this.username
  1816. // this.formStateEdit = { ...item }
  1817. this.formStateEdit = {
  1818. id: item.id || '',
  1819. bxySdzEarly1: item.bxySdzEarly1 || '',
  1820. ch4Early1: item.ch4Early1 || '',
  1821. checkPersonEarly: this.formState.jcy,
  1822. co2Early1: item.co2Early1 || '',
  1823. coEarly1: item.coEarly1 || '',
  1824. gwSdzEarly1: item.gwSdzEarly1 || '',
  1825. jwSdzEarly1: item.jwSdzEarly1 || '',
  1826. o2Early1: item.o2Early1 || '',
  1827. timeEarly1: item.timeEarly1 || '',
  1828. tEarly1: item.tEarly1 || '',
  1829. bxySdzEarly2: item.bxySdzEarly2 || '',
  1830. ch4Early2: item.ch4Early2 || '',
  1831. co2Early2: item.co2Early2 || '',
  1832. coEarly2: item.coEarly2 || '',
  1833. gwSdzEarly2: item.gwSdzEarly2 || '',
  1834. jwSdzEarly2: item.jwSdzEarly2 || '',
  1835. o2Early2: item.o2Early2 || '',
  1836. timeEarly2: item.timeEarly2 || '',
  1837. tEarly2: item.tEarly2 || '',
  1838. bxySdzNoon1: item.bxySdzNoon1 || '',
  1839. ch4Noon1: item.ch4Noon1 || '',
  1840. checkPersonNoon: this.formState.jcy,
  1841. co2Noon1: item.co2Noon1 || '',
  1842. coNoon1: item.coNoon1 || '',
  1843. gwSdzNoon1: item.gwSdzNoon1 || '',
  1844. jwSdzNoon1: item.jwSdzNoon1 || '',
  1845. o2Noon1: item.o2Noon1 || '',
  1846. timeNoon1: item.timeNoon1 || '',
  1847. tNoon1: item.tNoon1 || '',
  1848. bxySdzNoon2: item.bxySdzNoon2 || '',
  1849. ch4Noon2: item.ch4Noon2 || '',
  1850. co2Noon2: item.co2Noon2 || '',
  1851. coNoon2: item.coNoon2 || '',
  1852. gwSdzNoon2: item.gwSdzNoon2 || '',
  1853. jwSdzNoon2: item.jwSdzNoon2 || '',
  1854. o2Noon2: item.o2Noon2 || '',
  1855. timeNoon2: item.timeNoon2 || '',
  1856. tNoon2: item.tNoon2 || '',
  1857. bxySdzNight1: item.bxySdzNight1 || '',
  1858. ch4Night1: item.ch4Night1 || '',
  1859. checkPersonNight: this.formState.jcy,
  1860. co2Night1: item.co2Night1 || '',
  1861. coNight1: item.coNight1 || '',
  1862. gwSdzNight1: item.gwSdzNight1 || '',
  1863. jwSdzNight1: item.jwSdzNight1 || '',
  1864. o2Night1: item.o2Night1 || '',
  1865. timeNight1: item.timeNight1 || '',
  1866. tNight1: item.tNight1 || '',
  1867. bxySdzNight2: item.bxySdzNight2 || '',
  1868. ch4Night2: item.ch4Night2 || '',
  1869. co2Night2: item.co2Night2 || '',
  1870. coNight2: item.coNight2 || '',
  1871. gwSdzNight2: item.gwSdzNight2 || '',
  1872. jwSdzNight2: item.jwSdzNight2 || '',
  1873. o2Night2: item.o2Night2 || '',
  1874. timeNight2: item.timeNight2 || '',
  1875. tNight2: item.tNight2 || '',
  1876. }
  1877. },
  1878. //瓦斯删除
  1879. getDel(item) {
  1880. new Promise((resolve, reject) => {
  1881. api
  1882. .delGas({ id: item.id })
  1883. .then((response) => {
  1884. if (response.data.code == 200) {
  1885. this.getGasList()
  1886. } else {
  1887. reject(response);
  1888. }
  1889. })
  1890. .catch((error) => {
  1891. console.log("catch===>response", response);
  1892. reject(error);
  1893. });
  1894. });
  1895. },
  1896. //获取瓦斯上报列表数据
  1897. getGasList() {
  1898. new Promise((resolve, reject) => {
  1899. api
  1900. .getGas({ reportTime: this.tbTime })
  1901. .then((response) => {
  1902. if (response.data.code == 200) {
  1903. let data = response.data.result.records
  1904. this.gasList = data
  1905. } else {
  1906. reject(response);
  1907. }
  1908. })
  1909. .catch((error) => {
  1910. console.log("catch===>response", response);
  1911. reject(error);
  1912. });
  1913. });
  1914. },
  1915. //获取煤层工作面列表数据
  1916. getMcList() {
  1917. new Promise((resolve, reject) => {
  1918. api
  1919. .getDictItems({ dictCode: 'coalseam' })
  1920. .then((response) => {
  1921. console.log(response, 'response--------')
  1922. let data = response.data
  1923. this.rangeMcgzm = data.map(el => {
  1924. return {
  1925. text: el.label,
  1926. value: el.value,
  1927. }
  1928. })
  1929. })
  1930. .catch((error) => {
  1931. console.log("catch===>response", response);
  1932. reject(error);
  1933. });
  1934. });
  1935. }
  1936. },
  1937. };
  1938. </script>
  1939. <style lang="scss" scoped>
  1940. .gas-report {
  1941. position: relative;
  1942. box-sizing: border-box;
  1943. .gas-content {
  1944. height: 708px;
  1945. margin-top: 85px;
  1946. box-sizing: border-box;
  1947. overflow-y: auto;
  1948. .top-title {
  1949. height: 28px;
  1950. margin-bottom: 5px;
  1951. display: flex;
  1952. justify-content: space-between;
  1953. align-items: center;
  1954. }
  1955. .top-content {
  1956. .content-title {
  1957. height: 26px;
  1958. line-height: 26px;
  1959. padding: 0px 20px;
  1960. font-size: 12px;
  1961. background: url('/static/warndata/title.png') no-repeat;
  1962. background-size: 100% 100%;
  1963. }
  1964. .content-item-box {
  1965. padding: 10px 0px;
  1966. .content-item {
  1967. height: 50px;
  1968. display: flex;
  1969. justify-content: space-between;
  1970. align-items: center;
  1971. background: linear-gradient(to right, rgba(55, 135, 254, 0.08), rgba(4, 184, 255, 0.08), rgba(60, 161, 237, 0.08));
  1972. border-radius: 10px;
  1973. margin-bottom: 5px;
  1974. .item-l {
  1975. width: calc(50% - 2px);
  1976. height: 100%;
  1977. display: flex;
  1978. flex-direction: column;
  1979. justify-content: center;
  1980. align-items: center;
  1981. }
  1982. .item-c {
  1983. width: 4px;
  1984. height: 70%;
  1985. border-left: 2px solid;
  1986. border-image: linear-gradient(to bottom, transparent, rgba(140, 203, 254, 1), transparent) 1 1 1;
  1987. }
  1988. .item-r {
  1989. width: calc(50% - 2px);
  1990. height: 100%;
  1991. display: flex;
  1992. flex-direction: column;
  1993. justify-content: center;
  1994. align-items: center;
  1995. }
  1996. }
  1997. }
  1998. }
  1999. .item-value {
  2000. height: 20px;
  2001. line-height: 20px;
  2002. color: #0eb4fc;
  2003. font-weight: bold;
  2004. }
  2005. .item-label {
  2006. font-size: 12px;
  2007. }
  2008. .top-dialog-area,
  2009. .center-dialog-area,
  2010. .bottom-dialog-area {
  2011. width: 100%;
  2012. padding: 10px;
  2013. box-sizing: border-box;
  2014. background-color: #FFF;
  2015. margin-bottom: 2px;
  2016. }
  2017. .top-gas-list {
  2018. display: flex;
  2019. flex-direction: column;
  2020. align-items: center;
  2021. width: 100%;
  2022. padding: 10px 20px;
  2023. box-sizing: border-box;
  2024. background-color: #FFF;
  2025. margin-bottom: 2px;
  2026. }
  2027. .bot-gas-list {
  2028. width: 100%;
  2029. height: calc(100% - 94px);
  2030. padding: 10px;
  2031. box-sizing: border-box;
  2032. background-color: #FFF;
  2033. margin-bottom: 2px;
  2034. overflow-y: auto;
  2035. }
  2036. .dialog-btn {
  2037. display: flex;
  2038. width: 100%;
  2039. padding: 8px 10px;
  2040. box-sizing: border-box;
  2041. background-color: #FFF;
  2042. // margin-bottom: 2px;
  2043. .u-button {
  2044. margin: 0px 10px;
  2045. }
  2046. }
  2047. .dialog-title {
  2048. height: 26px;
  2049. line-height: 26px;
  2050. padding: 0px 20px;
  2051. margin-bottom: 10px;
  2052. font-size: 12px;
  2053. background: url('/static/warndata/title.png') no-repeat;
  2054. background-size: 100% 100%;
  2055. }
  2056. .dialog-item {
  2057. display: flex;
  2058. align-items: center;
  2059. justify-content: center;
  2060. margin-bottom: 10px;
  2061. .dialog-label {
  2062. width: 120px;
  2063. text-align: right;
  2064. }
  2065. }
  2066. .search-box {
  2067. display: flex;
  2068. align-items: center;
  2069. justify-content: center;
  2070. margin-bottom: 10px;
  2071. .dialog-label {
  2072. width: 80px;
  2073. text-align: right;
  2074. }
  2075. }
  2076. .content-title-gas {
  2077. position: relative;
  2078. height: 26px;
  2079. line-height: 26px;
  2080. padding-left: 20px;
  2081. font-size: 12px;
  2082. background: url('/static/warndata/title.png') no-repeat;
  2083. background-size: 100% 100%;
  2084. }
  2085. .icon-gas-edit {
  2086. position: absolute;
  2087. right: 35px;
  2088. top: 0;
  2089. cursor: pointer;
  2090. }
  2091. .icon-gas-del {
  2092. position: absolute;
  2093. right: 10px;
  2094. top: 0;
  2095. cursor: pointer;
  2096. }
  2097. }
  2098. }
  2099. ::v-deep .u-input {
  2100. padding: 2px 6px !important;
  2101. }
  2102. ::v-deep .u-popup {
  2103. flex: 0;
  2104. }
  2105. ::v-deep .uni-select {
  2106. height: 30px;
  2107. border: 1px solid #dadbde;
  2108. }
  2109. ::v-deep .uni-select__input-box {
  2110. height: 30px;
  2111. }
  2112. ::v-deep .uni-select__input-placeholder {
  2113. font-size: 14px;
  2114. text-align: center;
  2115. color: rgb(192, 196, 204);
  2116. }
  2117. </style>