Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

doubleCheckDialog.vue 44KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171
  1. <template>
  2. <el-dialog title="双人核对"
  3. :visible.sync="isVisibility"
  4. :modal-append-to-body="false"
  5. width="854px"
  6. >
  7. <el-form :inline="true" class="demo-form-inline newInline" :model="doubleReview" label-width="105px">
  8. <el-form-item label="透析物品核查 : ">
  9. <el-radio v-model="doubleReview.dialysis_item_check" label="1" @change="changeRadio">正确</el-radio>
  10. <!-- <el-radio v-model="doubleReview.dialysis_item_check" label="2">错误</el-radio> -->
  11. </el-form-item>
  12. <el-form-item class="newItem" label="差错描述 : " label-width="90px">
  13. <el-input v-model="doubleReview.dialysis_item_desc"></el-input>
  14. </el-form-item>
  15. </el-form>
  16. <el-form :inline="true" class="demo-form-inline newCheckBox" :model="doubleReview" label-width="110px">
  17. <el-checkbox-group v-model="checkList" @change="changeBox">
  18. <el-checkbox :label="diazes"></el-checkbox>
  19. <el-checkbox :label="puncture_needle"></el-checkbox>
  20. <el-checkbox :label="dialysate_formulation"></el-checkbox>
  21. <el-checkbox :label="kalium"></el-checkbox>
  22. <el-checkbox :label="calcium"></el-checkbox>
  23. </el-checkbox-group>
  24. </el-form>
  25. <el-form :inline="true" class="demo-form-inline newInline" :model="doubleReview" label-width="105px">
  26. <el-form-item label="透析参数核查 : ">
  27. <el-radio v-model="doubleReview.dialysis_parameter_check" label="1" @change="changeRadioTwo">正确</el-radio>
  28. <!-- <el-radio v-model="doubleReview.dialysis_parameter_check" label="2">错误</el-radio> -->
  29. </el-form-item>
  30. <el-form-item class="newItem" label="差错描述 : " label-width="90px">
  31. <el-input v-model="doubleReview.dialysis_parameter_desc"></el-input>
  32. </el-form-item>
  33. </el-form>
  34. <el-form class="newCheckBox">
  35. <el-checkbox-group v-model="checkListOne" @change="changeBoxOne" >
  36. <el-checkbox :label="dialys_mode"></el-checkbox>
  37. <el-checkbox :label="long_time"></el-checkbox>
  38. <el-checkbox :label="target_ultrafiltration"></el-checkbox>
  39. <el-checkbox :label="anticoagulant" ></el-checkbox>
  40. <el-checkbox :label="anticoagulant_shouji"></el-checkbox>
  41. <el-checkbox :label="anticoagulant_weichi"></el-checkbox>
  42. <el-checkbox :label="anticoagulant_zongliang"></el-checkbox>
  43. <el-checkbox :label="displace_liqui_part"></el-checkbox>
  44. <el-checkbox :label="replacement_total"></el-checkbox>
  45. <el-checkbox :label="blood_flow_volume"></el-checkbox>
  46. <el-checkbox :label="dialysate_flow"></el-checkbox>
  47. </el-checkbox-group>
  48. </el-form>
  49. <el-form :inline="true" class="demo-form-inline newInline" :model="doubleReview" label-width="105px">
  50. <el-form-item label="血管通路核查 : ">
  51. <el-radio v-model="doubleReview.vascular_access_verification" label="1" @change="changeRadioThree">正确</el-radio>
  52. <!-- <el-radio v-model="doubleReview.vascular_access_verification" label="2">错误</el-radio> -->
  53. </el-form-item>
  54. <el-form-item class="newItem" label="差错描述 : " label-width="90px">
  55. <el-input v-model="doubleReview.vascular_access_desc"></el-input>
  56. </el-form-item>
  57. </el-form>
  58. <el-form class="newCheckBox">
  59. <el-checkbox-group v-model="checkListTwo" @change="changeBoxTwo">
  60. <el-checkbox :label="blood_access_part_opera_id">
  61. </el-checkbox>
  62. <el-checkbox label="动静脉接错"></el-checkbox>
  63. <el-checkbox label="渗血"></el-checkbox>
  64. <el-checkbox label="压迫" ></el-checkbox>
  65. <el-checkbox label="折叠"></el-checkbox>
  66. <el-checkbox label="滑脱"></el-checkbox>
  67. </el-checkbox-group>
  68. </el-form>
  69. <el-form :inline="true" class="demo-form-inline newInline" :model="doubleReview" label-width="105px">
  70. <el-form-item label="管道连接核查 : ">
  71. <el-radio v-model="doubleReview.pipeline_connection_check" label="1" @change="changeRadioFour">正确</el-radio>
  72. <!-- <el-radio v-model="doubleReview.pipeline_connection_check" label="2">错误</el-radio> -->
  73. </el-form-item>
  74. <el-form-item class="newItem" label="差错描述 : " label-width="90px">
  75. <el-input v-model="doubleReview.pipeline_connection_desc"></el-input>
  76. </el-form-item>
  77. </el-form>
  78. <el-form class="newCheckBox">
  79. <el-checkbox-group v-model="checkListThree" @change="changeBoxThree">
  80. <el-checkbox label="泵前补液测管未夹"></el-checkbox>
  81. <el-checkbox label="肝素管夹未开启"></el-checkbox>
  82. <el-checkbox label="透析器连接错误"></el-checkbox>
  83. <el-checkbox label="动静脉壶页面不标准" ></el-checkbox>
  84. <el-checkbox label="静脉管路未卡入保护夹"></el-checkbox>
  85. <el-checkbox label="压力传感器夹未打开"></el-checkbox>
  86. <el-checkbox label="接口连接松动"></el-checkbox>
  87. <el-checkbox label="管路打折"></el-checkbox>
  88. </el-checkbox-group>
  89. </el-form>
  90. <el-form :inline="true" class="demo-form-inline" :model="doubleReview" label-width="120px">
  91. <el-form-item label="第一核对时间:">
  92. <el-time-picker
  93. v-model="first_check_time"
  94. format='HH:mm'
  95. value-format="HH:mm"
  96. placeholder="请输入核对时间">
  97. </el-time-picker>
  98. </el-form-item>
  99. <el-form-item label="第一核对人员">
  100. <el-select v-model="doubleReview.creater" placeholder="请选择核对人">
  101. <el-option v-for="(admin, index) in admin_users" :key="index" :value="admin.id"
  102. :label="admin.name"></el-option>
  103. </el-select>
  104. </el-form-item>
  105. <el-form-item label="第二核对时间:">
  106. <el-time-picker
  107. v-model="check_time"
  108. format='HH:mm'
  109. value-format="HH:mm"
  110. placeholder="请输入核对时间">
  111. </el-time-picker>
  112. </el-form-item>
  113. <el-form-item label="第二核对人员">
  114. <el-select v-model="doubleReview.modifier" placeholder="请选择核对人">
  115. <el-option v-for="(admin, index) in admin_users" :key="index" :value="admin.id"
  116. :label="admin.name"></el-option>
  117. </el-select>
  118. </el-form-item>
  119. </el-form>
  120. <el-form :inline="true" class="demo-form-inline" :model="doubleReview" label-width="110px">
  121. <p style="margin-left: 13px;margin-top: 10px" v-if="doubleReview.creater != 0">{{getFirstCheckDesc()}}</p>
  122. <p style="margin-left: 13px;margin-top: 10px" v-if="doubleReview.modifier != 0">{{getScondCheckDesc()}}</p>
  123. </el-form>
  124. <div slot="footer" class="dialog-footer">
  125. <el-button @click="handleCancle">取 消</el-button>
  126. <el-button type="primary" @click="handleComfirm">保 存</el-button>
  127. </div>
  128. </el-dialog>
  129. </template>
  130. <script>
  131. import { postDoubleCheck } from '@/api/dialysis'
  132. import { uParseTime } from '@/utils/tools'
  133. import { parseTime } from '@/utils'
  134. import { getDataConfig } from '@/utils/data'
  135. export default {
  136. name: 'doubleCheckDialog',
  137. data() {
  138. return {
  139. isVisibility: false,
  140. time: '',
  141. isClose: false,
  142. check_time: 0,
  143. first_check_time: 0,
  144. doubleReview: {
  145. dialysis_item_check: '1',
  146. dialysis_parameter_check: '1',
  147. vascular_access_verification: '1',
  148. pipeline_connection_check: '1',
  149. dialysis_item_desc: '',
  150. dialysis_parameter_desc: '',
  151. vascular_access_desc: '',
  152. pipeline_connection_desc: '',
  153. collator: '',
  154. creater: this.$store.getters.xt_user.user.id,
  155. modifier: '',
  156. created_time: 0,
  157. updated_time: 0,
  158. check_time: 0,
  159. first_check_time: 0
  160. },
  161. dialysate_formulation_options:[],
  162. record_date: '',
  163. checkList: [],
  164. checkListOne:[],
  165. checkListTwo:[],
  166. checkListThree:[],
  167. diazes:"透析器/灌流器:",
  168. puncture_needle:"穿刺针:",
  169. dialysate_formulation:"透析液配方:",
  170. kalium:"钾:",
  171. calcium:"钙:",
  172. dialys_mode:"透析模式:",
  173. long_time:"透析时长:",
  174. target_ultrafiltration:"目标超滤量:",
  175. anticoagulant:"抗凝剂:",
  176. anticoagulant_shouji:"首剂:",
  177. anticoagulant_weichi:"维持:",
  178. anticoagulant_zongliang:"总量:",
  179. displace_liqui_part:"置换液:",
  180. replacement_total:"置换总量:",
  181. blood_flow_volume:"处方血流量:",
  182. dialysate_flow:"透析液流量:",
  183. blood_access_part_opera_id:"通路类型:"
  184. }
  185. }, methods: {
  186. show() {
  187. this.isVisibility = true
  188. if (this.double_check.id > 0) {
  189. this.first_check_time = uParseTime(
  190. this.double_check.first_check_time,
  191. '{y}-{m}-{d} {h}:{i}'
  192. ).split(' ')[1]
  193. if(this.$store.getters.xt_user.user.id == this.double_check.creater || this.double_check.modifier > 0){
  194. if(this.double_check.modifier > 0){
  195. this.check_time = uParseTime(
  196. this.doubleReview.check_time,
  197. '{y}-{m}-{d} {h}:{i}'
  198. ).split(' ')[1]
  199. console.log('真性感')
  200. }
  201. }else if(this.$store.getters.xt_user.user.id != this.double_check.creater && this.double_check.modifier == 0){
  202. this.check_time = uParseTime(
  203. new Date(),
  204. '{y}-{m}-{d} {h}:{i}'
  205. ).split(' ')[1]
  206. this.doubleReview.modifier = this.$store.getters.xt_user.user.id
  207. }
  208. if(this.doubleReview.modifier == 0){
  209. this.doubleReview.modifier = ""
  210. }
  211. console.log( this.first_check_time )
  212. console.log( this.check_time )
  213. } else {
  214. var nowDate = new Date()
  215. var nowHours = nowDate.getHours()
  216. var nowMinutes = nowDate.getMinutes()
  217. if(this.$store.getters.xt_user.user.id != this.double_check.creater && this.double_check.modifier == 0){
  218. this.check_time = (nowHours < 10 ? '0' + nowHours : nowHours) + ':' + (nowMinutes < 10 ? '0' + nowMinutes : nowMinutes)
  219. }
  220. this.first_check_time = (nowHours < 10 ? '0' + nowHours : nowHours) + ':' + (nowMinutes < 10 ? '0' + nowMinutes : nowMinutes)
  221. console.log( this.first_check_time )
  222. console.log( this.check_time )
  223. }
  224. },
  225. hide() {
  226. this.isVisibility = false
  227. },
  228. handleCancle: function() {
  229. this.isVisibility = false
  230. },
  231. handleComfirm: function() {
  232. if (this.patient.id <= 0) {
  233. this.$message.error('没有选择患者')
  234. return
  235. }
  236. var first_check_time = this.record_date + ' ' + this.first_check_time
  237. var check_time = this.record_date + ' ' + this.check_time
  238. var first_time = new Date(first_check_time).getTime()
  239. var second_time = new Date(check_time).getTime()
  240. if (first_time >= second_time) {
  241. this.$message.error('第一次核对时间不能大于或者等于第二次核对时间')
  242. return
  243. }
  244. if (this.doubleReview.creater == this.doubleReview.modifier) {
  245. this.$message.error('第一次核对人不能与第二次核对人相同')
  246. return
  247. }
  248. let ParamsQuery = this.doubleReview
  249. ParamsQuery['patient'] = this.patient.id
  250. ParamsQuery['record_date'] = this.record_date
  251. if(this.check_time){
  252. ParamsQuery['check_time'] = this.record_date + ' ' + this.check_time
  253. }
  254. // ParamsQuery['check_time'] = this.record_date + ' ' + this.check_time
  255. if(this.first_check_time){
  256. ParamsQuery['first_check_time'] = this.record_date + ' ' + this.first_check_time
  257. }
  258. ParamsQuery['creater'] = this.doubleReview.creater
  259. ParamsQuery['modifier'] = this.doubleReview.modifier
  260. postDoubleCheck(ParamsQuery).then(response => {
  261. if (response.data.state == 0) {
  262. this.$message.error(response.data.msg)
  263. return false
  264. } else {
  265. this.$notify({
  266. title: '成功',
  267. message: '提交成功',
  268. type: 'success',
  269. duration: 2000
  270. })
  271. this.doubleReview.creater = response.data.data.doubleCheck.creater
  272. this.doubleReview.check_time =
  273. response.data.data.doubleCheck.check_time
  274. this.doubleReview.first_check_time =
  275. response.data.data.doubleCheck.first_check_time
  276. this.doubleReview.modifier = response.data.data.doubleCheck.modifier
  277. this.first_check_time = uParseTime(
  278. this.doubleReview.first_check_time,
  279. '{y}-{m}-{d} {h}:{i}'
  280. ).split(' ')[1]
  281. // if(this.$store.getters.xt_user.user.id != this.double_check.creater && this.double_check.modifier == 0){
  282. // this.check_time = uParseTime(
  283. // this.doubleReview.check_time,
  284. // '{y}-{m}-{d} {h}:{i}'
  285. // ).split(' ')[1]
  286. // }
  287. let doublecheck_resp = response.data.data.doubleCheck
  288. var doubleCheck = this.double_check
  289. for (var index in doublecheck_resp) {
  290. // doubleCheck[index] = doublecheck_resp[index];
  291. this.$set(doubleCheck, index, doublecheck_resp[index])
  292. }
  293. this.hide()
  294. }
  295. })
  296. },
  297. getFirstCheckDesc: function () {
  298. if(this.double_check.creater > 0){
  299. if (
  300. this.doubleReview.first_check_time > 0 &&
  301. this.doubleReview.check_time > 0
  302. ) {
  303. if (this.doubleReview.first_check_time < this.doubleReview.check_time) {
  304. let time = uParseTime(
  305. this.doubleReview.first_check_time,
  306. "{y}-{m}-{d} {h}:{i}:{s}"
  307. );
  308. if (this.doubleReview.creater <= 0) {
  309. return "";
  310. }
  311. var desc = "";
  312. if (
  313. this.admin_users == null ||
  314. typeof this.admin_users.length == "undefined"
  315. ) {
  316. return "";
  317. }
  318. var leng = this.admin_users.length;
  319. if (leng == 0) {
  320. return "";
  321. }
  322. for (let index = 0; index < leng; index++) {
  323. if (this.admin_users[index].id == this.doubleReview.creater) {
  324. let name = this.admin_users[index].name;
  325. desc = "第一核对人员:" + name + " 第一核对时间:" + time;
  326. break;
  327. }
  328. }
  329. return desc;
  330. } else {
  331. let time = uParseTime(
  332. this.doubleReview.check_time,
  333. "{y}-{m}-{d} {h}:{i}:{s}"
  334. );
  335. if (this.doubleReview.modifier <= 0) {
  336. return "";
  337. }
  338. var desc = "";
  339. if (
  340. this.admin_users == null ||
  341. typeof this.admin_users.length == "undefined"
  342. ) {
  343. return "";
  344. }
  345. var leng = this.admin_users.length;
  346. if (leng == 0) {
  347. return "";
  348. }
  349. for (let index = 0; index < leng; index++) {
  350. if (this.admin_users[index].id == this.doubleReview.modifier) {
  351. let name = this.admin_users[index].name;
  352. desc = "第一核对人员:" + name + " 第一核对时间:" + time;
  353. break;
  354. }
  355. }
  356. return desc;
  357. }
  358. } else {
  359. let time = uParseTime(
  360. this.doubleReview.first_check_time,
  361. "{y}-{m}-{d} {h}:{i}:{s}"
  362. );
  363. if (this.doubleReview.creater <= 0) {
  364. return "";
  365. }
  366. var desc = "";
  367. if (
  368. this.admin_users == null ||
  369. typeof this.admin_users.length == "undefined"
  370. ) {
  371. return "";
  372. }
  373. var leng = this.admin_users.length;
  374. if (leng == 0) {
  375. return "";
  376. }
  377. for (let index = 0; index < leng; index++) {
  378. if (this.admin_users[index].id == this.doubleReview.creater) {
  379. let name = this.admin_users[index].name;
  380. desc = "第一核对人员:" + name + " 第一核对时间:" + time;
  381. break;
  382. }
  383. }
  384. return desc;
  385. }
  386. }
  387. },
  388. getScondCheckDesc: function () {
  389. if(this.double_check.modifier > 0){
  390. if (
  391. this.doubleReview.first_check_time > 0 &&
  392. this.doubleReview.check_time > 0
  393. ) {
  394. if (this.doubleReview.first_check_time < this.doubleReview.check_time) {
  395. let time = uParseTime(
  396. this.doubleReview.check_time,
  397. "{y}-{m}-{d} {h}:{i}:{s}"
  398. );
  399. if (this.doubleReview.modifier <= 0) {
  400. return "";
  401. }
  402. var desc = "";
  403. if (
  404. this.admin_users == null ||
  405. typeof this.admin_users.length == "undefined"
  406. ) {
  407. return desc;
  408. }
  409. var leng = this.admin_users.length;
  410. if (leng == 0) {
  411. return desc;
  412. }
  413. for (let index = 0; index < leng; index++) {
  414. if (this.admin_users[index].id == this.doubleReview.modifier ) {
  415. let name = this.admin_users[index].name;
  416. desc = "第二核对人员:" + name + " 第二核对时间:" + time;
  417. break;
  418. }
  419. }
  420. return desc;
  421. } else {
  422. let time = uParseTime(
  423. this.doubleReview.first_check_time,
  424. "{y}-{m}-{d} {h}:{i}:{s}"
  425. );
  426. if (this.doubleReview.creater <= 0) {
  427. return "";
  428. }
  429. var desc = "";
  430. if (
  431. this.admin_users == null ||
  432. typeof this.admin_users.length == "undefined"
  433. ) {
  434. return desc;
  435. }
  436. var leng = this.admin_users.length;
  437. if (leng == 0) {
  438. return desc;
  439. }
  440. for (let index = 0; index < leng; index++) {
  441. if (this.admin_users[index].id == this.doubleReview.creater) {
  442. let name = this.admin_users[index].name;
  443. desc = "第二核对人员:" + name + " 第二核对时间:" + time;
  444. break;
  445. }
  446. }
  447. return desc;
  448. }
  449. } else {
  450. let time = uParseTime(
  451. this.doubleReview.check_time,
  452. "{y}-{m}-{d} {h}:{i}:{s}"
  453. );
  454. if (this.doubleReview.modifier <= 0) {
  455. return "";
  456. }
  457. var desc = "";
  458. if (
  459. this.admin_users == null ||
  460. typeof this.admin_users.length == "undefined"
  461. ) {
  462. return desc;
  463. }
  464. var leng = this.admin_users.length;
  465. if (leng == 0) {
  466. return desc;
  467. }
  468. for (let index = 0; index < leng; index++) {
  469. if (this.admin_users[index].id == this.doubleReview.modifier) {
  470. let name = this.admin_users[index].name;
  471. desc = "第二核对人员:" + name + " 第二核对时间:" + time;
  472. break;
  473. }
  474. }
  475. return desc;
  476. }
  477. }
  478. },
  479. changeBox(val){
  480. var arr = []
  481. var str = val.join(';')
  482. console.log("strw222222222",str)
  483. if(str.indexOf('透析器/灌流器')!=-1 && this.prescription!=null){
  484. arr.push("透析器/灌流器:"+(this.prescription.dialyzer_perfusion_apparatus?this.prescription.dialyzer_perfusion_apparatus:""))
  485. }
  486. if(str.indexOf('透析器/灌流器')!=-1 && this.prescription==null){
  487. arr.push("透析器/灌流器:")
  488. }
  489. if(str.indexOf('穿刺针')!=-1 && this.predialysis_evaluation.id!=0){
  490. arr.push("穿刺针:"+this.predialysis_evaluation.puncture_needle)
  491. }
  492. if(str.indexOf('穿刺针')!=-1 && this.predialysis_evaluation.id==0){
  493. arr.push("穿刺针:")
  494. }
  495. if(str.indexOf('透析液配方')!=-1 && this.prescription!=null){
  496. arr.push("透析液配方:"+this.GetDialysateFormulationById(this.prescription.dialysate_formulation))
  497. }
  498. if(str.indexOf('透析液配方')!=-1 && this.prescription==null){
  499. arr.push("透析液配方:")
  500. }
  501. if(str.indexOf('钾')!=-1 && this.prescription!=null ){
  502. arr.push("钾:"+(this.prescription.kalium?this.prescription.kalium:""))
  503. }
  504. if(str.indexOf('钾')!=-1 && this.prescription==null ){
  505. arr.push("钾:")
  506. }
  507. if(str.indexOf('钙')!=-1 && this.prescription!=null ){
  508. arr.push("钙:"+(this.prescription.calcium?this.prescription.calcium:""))
  509. }
  510. if(str.indexOf('钙')!=-1 && this.prescription==null ){
  511. arr.push("钙:")
  512. }
  513. console.log("arr",arr)
  514. this.doubleReview.dialysis_item_desc = arr.join(";")
  515. if(val.length > 0){
  516. this.doubleReview.dialysis_item_check = 2
  517. }else{
  518. this.doubleReview.dialysis_item_check = "1"
  519. }
  520. },
  521. changeBoxOne(val){
  522. var arr = []
  523. var str = val.join(';')
  524. console.log("strw222222222",str)
  525. if(str.indexOf('透析模式')!=-1 && this.prescription!=null){
  526. arr.push("透析模式:"+(this.getMode(this.prescription.mode_id)?this.getMode(this.prescription.mode_id):""))
  527. }
  528. if(str.indexOf('透析模式')!=-1 && this.prescription==null){
  529. arr.push("透析模式:")
  530. }
  531. if(str.indexOf('透析时长')!=-1 && this.prescription!=null){
  532. arr.push("透析时长:"+(this.prescription.dialysis_duration?this.prescription.dialysis_duration:""))
  533. }
  534. if(str.indexOf('透析时长')!=-1 && this.prescription==null){
  535. arr.push("透析时长:")
  536. }
  537. if(str.indexOf("目标超滤量")!=-1 && this.prescription!=null){
  538. arr.push("目标超滤量:"+(this.prescription.target_ultrafiltration?this.prescription.target_ultrafiltration:""))
  539. }
  540. if(str.indexOf("目标超滤量")!=-1 && this.prescription==null){
  541. arr.push("目标超滤量:")
  542. }
  543. if(str.indexOf("抗凝剂")!=-1 && this.prescription!=null){
  544. arr.push("抗凝剂:"+(this.prescription.anticoagulant?this.prescription.anticoagulant:""))
  545. }
  546. if(str.indexOf("抗凝剂")!=-1 && this.prescription==null){
  547. arr.push("抗凝剂:")
  548. }
  549. if(str.indexOf("首剂")!=-1 && this.prescription!=null){
  550. arr.push("首剂:"+(this.prescription.anticoagulant_shouji?this.prescription.anticoagulant_shouji:""))
  551. }
  552. if(str.indexOf("首剂")!=-1 && this.prescription==null){
  553. arr.push("首剂:")
  554. }
  555. if(str.indexOf("维持")!=-1 && this.prescription!=null){
  556. arr.push("维持:"+(this.prescription.anticoagulant_weichi?this.prescription.anticoagulant_weichi:""))
  557. }
  558. if(str.indexOf("维持")!=-1 && this.prescription==null){
  559. arr.push("维持:")
  560. }
  561. if(str.indexOf("总量")!=-1 && this.prescription!=null){
  562. arr.push("总量:"+(this.prescription.anticoagulant_zongliang?this.prescription.anticoagulant_zongliang:""))
  563. }
  564. if(str.indexOf("总量")!=-1 && this.prescription==null){
  565. arr.push("总量:")
  566. }
  567. if(str.indexOf("置换液")!=-1 && this.prescription!=null){
  568. arr.push("置换液:"+(this.prescription.displace_liqui_part?this.prescription.displace_liqui_part:""))
  569. }
  570. if(str.indexOf("置换液")!=-1 && this.prescription==null){
  571. arr.push("置换液:")
  572. }
  573. if(str.indexOf("置换总量")!=-1 && this.prescription!=null){
  574. arr.push("置换总量:"+(this.prescription.replacement_total?this.prescription.replacement_total:""))
  575. }
  576. if(str.indexOf("置换总量")!=-1 && this.prescription==null){
  577. arr.push("置换总量:")
  578. }
  579. if(str.indexOf("处方血流量")!=-1 && this.prescription!=null){
  580. arr.push("处方血流量:"+(this.prescription.blood_flow_volume?this.prescription.blood_flow_volume:""))
  581. }
  582. if(str.indexOf("处方血流量")!=-1 && this.prescription==null){
  583. arr.push("处方血流量:")
  584. }
  585. if(str.indexOf("透析液流量")!=-1 && this.prescription!=null){
  586. arr.push("透析液流量:"+(this.prescription.dialysate_flow?this.prescription.dialysate_flow:""))
  587. }
  588. if(str.indexOf("透析液流量")!=-1 && this.prescription==null){
  589. arr.push("透析液流量:")
  590. }
  591. console.log("arr",arr)
  592. this.doubleReview.dialysis_parameter_desc = arr.join(";")
  593. if(val.length>0){
  594. this.doubleReview.dialysis_parameter_check = 2
  595. }else{
  596. this.doubleReview.dialysis_parameter_check = "1"
  597. }
  598. },
  599. changeBoxTwo(val){
  600. var arr = []
  601. var str = val.join(';')
  602. console.log("strw222222222",str)
  603. if(str.indexOf('通路类型')!=-1 && this.predialysis_evaluation.id!=0){
  604. arr.push("通路类型:"+this.getBloodAccess(this.predialysis_evaluation.blood_access_part_opera_id))
  605. }
  606. if(str.indexOf('通路类型')!=-1 && this.predialysis_evaluation.id==0){
  607. arr.push("通路类型:")
  608. }
  609. if(str.indexOf('动静脉接错')!=-1){
  610. arr.push("动静脉接错:")
  611. }
  612. if(str.indexOf('渗血')!=-1){
  613. arr.push("渗血:")
  614. }
  615. if(str.indexOf('压迫')!=-1){
  616. arr.push("压迫:")
  617. }
  618. if(str.indexOf('折叠')!=-1){
  619. arr.push("折叠:")
  620. }
  621. if(str.indexOf('滑脱')!=-1){
  622. arr.push("滑脱:")
  623. }
  624. console.log("arr",arr)
  625. this.doubleReview.vascular_access_desc = arr.join(";")
  626. if(val.length>0){
  627. this.doubleReview.vascular_access_verification = 2
  628. }else{
  629. this.doubleReview.vascular_access_verification = "1"
  630. }
  631. },
  632. changeBoxThree(val){
  633. var arr = []
  634. var str = val.join(';')
  635. console.log("strw222222222",str)
  636. if(str.indexOf('泵前补液测管未夹')!=-1){
  637. arr.push("泵前补液测管未夹:")
  638. }
  639. if(str.indexOf('肝素管夹未开启')!=-1){
  640. arr.push("肝素管夹未开启:")
  641. }
  642. if(str.indexOf('透析器连接错误')!=-1){
  643. arr.push("透析器连接错误:")
  644. }
  645. if(str.indexOf('动静脉壶页面不标准')!=-1){
  646. arr.push("动静脉壶页面不标准:")
  647. }
  648. if(str.indexOf('静脉管路未卡入保护夹')!=-1){
  649. arr.push("静脉管路未卡入保护夹:")
  650. }
  651. if(str.indexOf("压力传感器夹未打开")!=-1){
  652. arr.push("压力传感器夹未打开")
  653. }
  654. if(str.indexOf('接口连接松动')!=-1){
  655. arr.push("接口连接松动")
  656. }
  657. if(str.indexOf("管路打折")!=-1){
  658. arr.push("管路打折")
  659. }
  660. this.doubleReview.pipeline_connection_desc = arr.join(";")
  661. if(val.length > 0){
  662. this.doubleReview.pipeline_connection_check = 2
  663. }else{
  664. this.doubleReview.pipeline_connection_check = "1"
  665. }
  666. },
  667. changeRadio(val){
  668. if(val == 1){
  669. this.doubleReview.dialysis_item_desc = ""
  670. this.checkList =[]
  671. }
  672. },
  673. changeRadioTwo(val){
  674. if(val == 1){
  675. this.doubleReview.dialysis_parameter_desc = ""
  676. this.checkListOne = []
  677. }
  678. },
  679. changeRadioThree(val){
  680. if(val == 1){
  681. this.doubleReview.vascular_access_desc = ""
  682. this.checkListTwo = []
  683. }
  684. },
  685. changeRadioFour(val){
  686. if(val == 1){
  687. this.doubleReview.pipeline_connection_desc = ""
  688. this.checkListThree = []
  689. }
  690. },
  691. GetDialysateFormulationById(val) {
  692. this.dialysate_formulation_options = getDataConfig('hemodialysis','dialysate_formulation')
  693. console.log("透析液配方",this.dialysate_formulation_options)
  694. let name = ''
  695. let dfl = this.dialysate_formulation_options.length
  696. for (let index = 0; index < dfl; index++) {
  697. if (this.dialysate_formulation_options[index].id == val) {
  698. name = this.dialysate_formulation_options[index].name
  699. break
  700. }
  701. }
  702. return name
  703. },
  704. getMode(id){
  705. var name = ""
  706. if(id == 1){
  707. name = "HD"
  708. }
  709. if(id == 2){
  710. name = "HDF"
  711. }
  712. if(id == 3){
  713. name = "HD+HP"
  714. }
  715. if(id == 4){
  716. name = "HP"
  717. }
  718. if(id == 5){
  719. name = "HF"
  720. }
  721. if(id == 6){
  722. name = "SCUF"
  723. }
  724. if(id == 7){
  725. name = "IUF"
  726. }
  727. if(id == 8){
  728. name = "HFHD"
  729. }
  730. if(id == 9){
  731. name = "HFHD+HP"
  732. }
  733. if(id == 10){
  734. name = "PHF"
  735. }
  736. if(id == 11){
  737. name = "HFR"
  738. }
  739. if(id == 12){
  740. name = "HDF+HP"
  741. }
  742. if(id == 13){
  743. name = "CRRT"
  744. }
  745. if(id == 14){
  746. name = "腹水回输"
  747. }
  748. if(id == 19){
  749. name = "IUF+HD"
  750. }
  751. if(id == 20){
  752. name = "UF"
  753. }
  754. return name
  755. },
  756. getAnticoagulant(id){
  757. var name = ""
  758. if(id == 1){
  759. name = "无肝素"
  760. }
  761. if(id == 2){
  762. name = "普通肝素"
  763. }
  764. if(id == 3){
  765. name = "低分子肝素"
  766. }
  767. if(id == 4){
  768. name = "阿加曲班"
  769. }
  770. if(id == 5){
  771. name = "枸橼酸钠"
  772. }
  773. if(id == 6){
  774. name ="低分子肝素钙"
  775. }
  776. if(id == 7){
  777. name = "低分子肝素钠"
  778. }
  779. return name
  780. },
  781. getBloodAccess(id){
  782. let vascular_access_desc = getDataConfig(
  783. 'hemodialysis',
  784. 'vascular_access_desc'
  785. )
  786. var name = ""
  787. for(let i=0;i<vascular_access_desc.length;i++){
  788. if(vascular_access_desc[i].id == id){
  789. name = vascular_access_desc[i].name
  790. }
  791. }
  792. return name
  793. }
  794. },
  795. props: {
  796. admin_users: { //系统用户列表
  797. type: Array,
  798. default: () => {
  799. return []
  800. }
  801. },
  802. double_check: { // 双人核对
  803. type: Object,
  804. default: () => {
  805. return { id: 0 }
  806. }
  807. },
  808. patient: { // 患者信息
  809. type: Object,
  810. default: () => {
  811. return { id: 0 }
  812. }
  813. },
  814. predialysis_evaluation: { // 透前评估
  815. type: Object,
  816. default: () => {
  817. return { id: 0 }
  818. }
  819. },
  820. prescription: {
  821. // 透析处方
  822. type: Object,
  823. default: () => {
  824. return { id: 0 }
  825. }
  826. },
  827. },
  828. watch: {
  829. isVisibility(val) {
  830. if(this.prescription!=null && this.prescription.id!=0){
  831. this.diazes = this.diazes + this.prescription.dialyzer_perfusion_apparatus
  832. this.prescription.dialyzer_perfusion_apparatus = ""
  833. this.dialysate_formulation = this.dialysate_formulation + this.GetDialysateFormulationById(this.prescription.dialysate_formulation)
  834. // this.prescription.dialysate_formulation = ""
  835. this.kalium = this.kalium + (this.prescription.kalium?this.prescription.kalium:"")
  836. this.prescription.kalium = ""
  837. this.calcium = this.calcium + (this.prescription.calcium?this.prescription.calcium:"")
  838. this.prescription.calcium = ""
  839. this.dialys_mode = this.dialys_mode + this.getMode(this.prescription.mode_id)
  840. this.prescription.mode_id= ""
  841. this.long_time = this.long_time + (this.prescription.dialysis_duration?this.prescription.dialysis_duration:"")
  842. this.prescription.dialysis_duration=""
  843. this.target_ultrafiltration = this.target_ultrafiltration + (this.prescription.target_ultrafiltration?this.prescription.target_ultrafiltration:"")
  844. this.prescription.target_ultrafiltration = ""
  845. this.anticoagulant = this.anticoagulant + this.getAnticoagulant(this.prescription.anticoagulant)
  846. this.prescription.anticoagulant=""
  847. this.anticoagulant_shouji = this.anticoagulant_shouji + (this.prescription.anticoagulant_shouji?this.prescription.anticoagulant_shouji:"")
  848. this.prescription.anticoagulant_shouji = ""
  849. this.anticoagulant_weichi = this.anticoagulant_weichi + (this.prescription.anticoagulant_weichi?this.prescription.anticoagulant_weichi:"")
  850. this.prescription.anticoagulant_weichi=""
  851. this.anticoagulant_zongliang = this.anticoagulant_zongliang+(this.prescription.anticoagulant_zongliang?this.prescription.anticoagulant_zongliang:"")
  852. this.prescription.anticoagulant_zongliang = ""
  853. this.displace_liqui_part = this.displace_liqui_part + (this.prescription.displace_liqui_part?this.prescription.displace_liqui_part:"")
  854. this.prescription.displace_liqui_part
  855. this.replacement_total = this.replacement_total + (this.prescription.replacement_total?this.prescription.replacement_total:"")
  856. this.prescription.replacement_total= ""
  857. this.dialysate_flow = this.dialysate_flow + (this.prescription.dialysate_flow?this.prescription.dialysate_flow:"")
  858. this.prescription.dialysate_flow= ""
  859. }
  860. if(this.predialysis_evaluation!=null && this.predialysis_evaluation.id!=0){
  861. this.puncture_needle = this.puncture_needle + this.predialysis_evaluation.puncture_needle
  862. this.blood_access_part_opera_id = this.blood_access_part_opera_id + this.getBloodAccess(this.predialysis_evaluation.blood_access_part_opera_id)
  863. }
  864. if(this.double_check !=null && this.double_check.id!=0){
  865. console.log("双人核对",this.double_check)
  866. if(this.double_check.dialysis_item_desc.indexOf("透析器/灌流器")!=-1){
  867. this.checkList.push("透析器/灌流器:"+this.prescription.dialyzer_perfusion_apparatus)
  868. console.log("222222",this.checkList)
  869. }
  870. if(this.double_check.dialysis_item_desc.indexOf("穿刺针")!=-1){
  871. this.checkList.push("穿刺针:"+(this.predialysis_evaluation.puncture_needle?this.predialysis_evaluation.puncture_needle:""))
  872. }
  873. if(this.double_check.dialysis_item_desc.indexOf("透析液配方:")!=-1){
  874. this.checkList.push("透析液配方:"+this.GetDialysateFormulationById(this.prescription.dialysate_formulation))
  875. }
  876. if(this.double_check.dialysis_item_desc.indexOf("钾:")!=-1){
  877. this.checkList.push("钾:"+(this.prescription.kalium?this.prescription.kalium:""))
  878. }
  879. if(this.double_check.dialysis_item_desc.indexOf("钙:")!=-1){
  880. this.checkList.push("钙:"+(this.prescription.calcium?this.prescription.calcium:""))
  881. }
  882. if(this.double_check.dialysis_parameter_desc.indexOf("透析模式:")!=-1){
  883. this.checkListOne.push("透析模式:"+this.getMode(this.prescription.mode_id))
  884. }
  885. if(this.double_check.dialysis_parameter_desc.indexOf("透析时长")!=-1){
  886. this.checkListOne.push("透析时长:"+(this.prescription.dialysis_duration?this.prescription.dialysate_formulation:""))
  887. }
  888. if(this.double_check.dialysis_parameter_desc.indexOf("目标超滤量")!=-1){
  889. this.checkListOne.push("目标超滤量:"+(this.prescription.target_ultrafiltration?this.prescription.target_ultrafiltration:""))
  890. }
  891. if(this.double_check.dialysis_parameter_desc.indexOf("抗凝剂")!=-1){
  892. this.checkListOne.push("抗凝剂:"+this.getAnticoagulant(this.prescription.anticoagulant))
  893. }
  894. if(this.double_check.dialysis_parameter_desc.indexOf("首剂")!=-1){
  895. this.checkListOne.push("首剂:"+(this.prescription.anticoagulant_shouji?this.prescription.anticoagulant_shouji:""))
  896. }
  897. if(this.double_check.dialysis_parameter_desc.indexOf("维持")!=-1){
  898. this.checkListOne.push("维持:"+(this.prescription.anticoagulant_weichi?this.prescription.anticoagulant_weichi:""))
  899. }
  900. if(this.double_check.dialysis_parameter_desc.indexOf("总量")!=-1){
  901. this.checkListOne.push("总量:"+(this.prescription.anticoagulant_zongliang?this.prescription.anticoagulant_zongliang:""))
  902. }
  903. if(this.double_check.dialysis_parameter_desc.indexOf("置换液")!=-1){
  904. this.checkListOne.push("置换液:"+(this.prescription.displace_liqui_part?this.prescription.displace_liqui_part:""))
  905. }
  906. if(this.double_check.dialysis_parameter_desc.indexOf("置换总量")!=-1){
  907. this.checkListOne.push("置换总量:"+(this.prescription.replacement_total?this.prescription.replacement_total:""))
  908. }
  909. if(this.double_check.dialysis_parameter_desc.indexOf("处方血流量")!=-1){
  910. this.checkListOne.push("处方血流量:"+(this.prescription.blood_flow_volume?this.prescription.blood_flow_volume:""))
  911. }
  912. if(this.double_check.dialysis_parameter_desc.indexOf("透析液流量")!=-1){
  913. this.checkListOne.push("透析液流量:"+(this.prescription.dialysate_flow?this.prescription.dialysate_flow:""))
  914. }
  915. if(this.double_check.vascular_access_desc.indexOf("通路类型")!=-1){
  916. this.checkListTwo.push("通路类型:"+this.getBloodAccess(this.predialysis_evaluation.blood_access_part_opera_id))
  917. }
  918. if(this.double_check.vascular_access_desc.indexOf("动静脉接错")!=-1){
  919. this.checkListTwo.push("动静脉接错")
  920. }
  921. if(this.double_check.vascular_access_desc.indexOf("渗血")!=-1){
  922. this.checkListTwo.push("渗血")
  923. }
  924. if(this.double_check.vascular_access_desc.indexOf("压迫")!=-1){
  925. this.checkListTwo.push("压迫")
  926. }
  927. if(this.double_check.vascular_access_desc.indexOf("折叠")!=-1){
  928. this.checkListTwo.push("折叠")
  929. }
  930. if(this.double_check.vascular_access_desc.indexOf("滑脱")!=-1){
  931. this.checkListTwo.push("滑脱")
  932. }
  933. if(this.double_check.pipeline_connection_desc.indexOf("泵前补液测管未夹")!=-1){
  934. this.checkListThree.push("泵前补液测管未夹")
  935. }
  936. if(this.double_check.pipeline_connection_desc.indexOf("肝素管夹未开启")!=-1){
  937. this.checkListThree.push("肝素管夹未开启")
  938. }
  939. if(this.double_check.pipeline_connection_desc.indexOf("透析器连接错误")!=-1){
  940. this.checkListThree.push("透析器连接错误")
  941. }
  942. if(this.double_check.pipeline_connection_desc.indexOf("动静脉壶页面不标准")!=-1){
  943. this.checkListThree.push("动静脉壶页面不标准")
  944. }
  945. if(this.double_check.pipeline_connection_desc.indexOf("静脉管路未卡入保护夹")!=-1){
  946. this.checkListThree.push("静脉管路未卡入保护夹")
  947. }
  948. if(this.double_check.pipeline_connection_desc.indexOf("压力传感器夹未打开")!=-1){
  949. this.checkListThree.push("压力传感器夹未打开")
  950. }
  951. if(this.double_check.pipeline_connection_desc.indexOf("接口连接松动")!=-1){
  952. this.checkListThree.push("接口连接松动")
  953. }
  954. if(this.double_check.pipeline_connection_desc.indexOf("管路打折")!=-1){
  955. this.checkListThree.push("管路打折")
  956. }
  957. console.log("hhh",this.checkListOne)
  958. }
  959. },
  960. 'double_check.id': function() {
  961. if (this.double_check.id > 0) {
  962. for (var index in this.doubleReview) {
  963. this.doubleReview[index] = this.double_check[index] + ''
  964. }
  965. this.doubleReview.created_time = this.double_check['created_time']
  966. this.doubleReview.creater = this.double_check['creater']
  967. this.doubleReview.updated_time = this.double_check['updated_time']
  968. this.doubleReview.modifier = this.double_check['modifier']
  969. this.doubleReview.dialysis_item_desc = this.double_check['dialysis_item_desc']
  970. this.doubleReview.dialysis_parameter_desc = this.double_check['dialysis_parameter_desc']
  971. this.doubleReview.vascular_access_desc = this.double_check['vascular_access_desc']
  972. this.doubleReview.pipeline_connection_desc = this.double_check['pipeline_connection_desc']
  973. this.doubleReview.created_time = this.double_check['created_time']
  974. this.doubleReview.creater = this.double_check['creater']
  975. this.doubleReview.updated_time = this.double_check['updated_time']
  976. this.doubleReview.modifier = this.double_check['modifier']
  977. this.doubleReview.check_time = this.double_check['check_time']
  978. this.doubleReview.first_check_time = this.double_check['first_check_time']
  979. this.first_check_time = uParseTime(
  980. this.doubleReview.first_check_time,
  981. '{y}-{m}-{d} {h}:{i}'
  982. ).split(' ')[1]
  983. if(this.$store.getters.xt_user.user.id == this.double_check.creater || this.double_check.modifier > 0){
  984. this.check_time = uParseTime(
  985. this.doubleReview.check_time,
  986. '{y}-{m}-{d} {h}:{i}'
  987. ).split(' ')[1]
  988. }else if(this.$store.getters.xt_user.user.id != this.double_check.creater && this.double_check.modifier == 0){
  989. this.check_time = uParseTime(
  990. new Date(),
  991. '{y}-{m}-{d} {h}:{i}'
  992. ).split(' ')[1]
  993. this.doubleReview.modifier = this.$store.getters.xt_user.user.id
  994. }
  995. } else {
  996. this.dialysis_item_check = '1'
  997. this.dialysis_parameter_check = '1'
  998. this.vascular_access_verification = '1'
  999. this.pipeline_connection_check = '1'
  1000. this.doubleReview.dialysis_item_desc = ''
  1001. this.doubleReview.dialysis_parameter_desc = ''
  1002. this.doubleReview.vascular_access_desc = ''
  1003. this.doubleReview.pipeline_connection_desc = ''
  1004. var nowDate = new Date()
  1005. var nowYear = nowDate.getFullYear()
  1006. var nowMonth = nowDate.getMonth() + 1
  1007. var nowDay = nowDate.getDate()
  1008. var nowHours = nowDate.getHours()
  1009. var nowMinutes = nowDate.getMinutes()
  1010. if(this.$store.getters.xt_user.user.id != this.double_check.creater && this.double_check.modifier == 0){
  1011. this.check_time = (nowHours < 10 ? '0' + nowHours : nowHours) + ':' + (nowMinutes < 10 ? '0' + nowMinutes : nowMinutes)
  1012. }
  1013. this.first_check_time = (nowHours < 10 ? '0' + nowHours : nowHours) + ':' + (nowMinutes < 10 ? '0' + nowMinutes : nowMinutes)
  1014. }
  1015. }
  1016. },
  1017. created() {
  1018. var date = this.$route.query && this.$route.query.date
  1019. this.record_date = uParseTime(date, '{y}-{m}-{d}')
  1020. var nowDate = new Date()
  1021. var nowYear = nowDate.getFullYear()
  1022. var nowMonth = nowDate.getMonth() + 1
  1023. var nowDay = nowDate.getDate()
  1024. var nowHours = nowDate.getHours()
  1025. var nowMinutes = nowDate.getMinutes()
  1026. if(this.$store.getters.xt_user.user.id != this.double_check.creater && this.double_check.modifier == 0){
  1027. this.check_time = (nowHours < 10 ? '0' + nowHours : nowHours) + ':' + (nowMinutes < 10 ? '0' + nowMinutes : nowMinutes)
  1028. }
  1029. this.first_check_time = (nowHours < 10 ? '0' + nowHours : nowHours) + ':' + (nowMinutes < 10 ? '0' + nowMinutes : nowMinutes)
  1030. }
  1031. }
  1032. </script>
  1033. <style lang="scss">
  1034. .newInline{
  1035. display: flex;
  1036. }
  1037. .newItem{
  1038. flex: 1;
  1039. display: flex !important;
  1040. .el-form-item__content{
  1041. width: 100%;
  1042. }
  1043. }
  1044. .newCheckBox{
  1045. margin-bottom: 10px;
  1046. .el-checkbox{
  1047. margin-bottom: 10px;
  1048. }
  1049. }
  1050. </style>