gasImgIdentify.vue 116 KB

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