血透系统pad前端

AssessmentDialog.vue 23KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642
  1. <template>
  2. <div>
  3. <div v-if="isShowDialog" class="Dialog">
  4. <div class="DialogTit">
  5. <span class="iconfont" @click="close()">&#xe6e9;</span>
  6. <h1 class="name">透前评估</h1>
  7. <span @click="commitInfo" class="success">完成</span>
  8. </div>
  9. <div class="DialogContent" id="dialogTop">
  10. <div class="item">
  11. <h2 class="name">透前体重(kg)</h2>
  12. <div class="content">
  13. <input type="tel" @focus="inputFocus" v-model="formValue.weight_before"/>
  14. </div>
  15. </div>
  16. <div class="item">
  17. <h2 class="name">干体重(kg)</h2>
  18. <div class="content">
  19. <input type="tel" @focus="inputFocus" v-model="formValue.dry_weight"/>
  20. </div>
  21. </div>
  22. <div class="item">
  23. <h2 class="name">体温(℃)</h2>
  24. <div class="content">
  25. <input type="tel" @focus="inputFocus" v-model="formValue.temperature"/>
  26. </div>
  27. </div>
  28. <div class="item">
  29. <h2 class="name">出血</h2>
  30. <div class="content">
  31. <span class="text" style="width: 50px;"><div style="padding-top: 0.08rem; height: 0.8rem;"><van-switch v-model="hemorrhage_state" @change="hemorrhageStateChange" /></div></span>
  32. </div>
  33. </div>
  34. <div @click="showSubMenu('hemorrhage')" class="item" ref="hemorrhage" v-show="hemorrhage_state">
  35. <h2 class="name">—— 出血选项</h2>
  36. <div class="content">
  37. <span class="text" style="width: 50px">{{formValue.hemorrhage}}</span>
  38. <span class="iconfont">&#xe6f9;</span>
  39. </div>
  40. </div>
  41. <div class="item" v-show="hemorrhage_state">
  42. <h2 class="name">—— 其他出血情况</h2>
  43. <div class="content">
  44. <input @focus="inputFocus" v-model="formValue.hemorrhage_other"/>
  45. </div>
  46. </div>
  47. <div @click="showSubMenu('internal_fistula')" class="item" ref="internal_fistula">
  48. <h2 class="name">内瘘</h2>
  49. <div class="content">
  50. <span class="text" style="width: 100px">{{formValue.internal_fistula}}</span>
  51. <span class="iconfont">&#xe6f9;</span>
  52. </div>
  53. </div>
  54. <div @click="showSubMenu('internal_fistula_skin')" class="item" ref="internal_fistula_skin">
  55. <h2 class="name">内瘘皮肤情况</h2>
  56. <div class="content">
  57. <span class="text" style="width: 100px">{{formValue.internal_fistula_skin}}</span>
  58. <span class="iconfont">&#xe6f9;</span>
  59. </div>
  60. </div>
  61. <div @click="showSubMenu('catheter')" class="item" ref="catheter">
  62. <h2 class="name">导管</h2>
  63. <div class="content">
  64. <span class="text" >{{formValue.catheter}}</span>
  65. <span class="iconfont">&#xe6f9;</span>
  66. </div>
  67. </div>
  68. <div @click="showSubMenu('catheter_bend')" class="item" ref="catheter_bend">
  69. <h2 class="name">导管打折</h2>
  70. <div class="content">
  71. <span class="text" >{{GetCatheterBendById(formValue.catheter_bend)}}</span>
  72. <span class="iconfont">&#xe6f9;</span>
  73. </div>
  74. </div>
  75. <div class="line"></div>
  76. <div class="item">
  77. <h2 class="name">收缩压(mmHg)</h2>
  78. <div class="content">
  79. <input type="tel" @focus="inputFocus" v-model="formValue.systolic_blood_pressure"/>
  80. </div>
  81. </div>
  82. <div class="item">
  83. <h2 class="name">舒张压(mmHg)</h2>
  84. <div class="content">
  85. <input type="tel" @focus="inputFocus" v-model="formValue.diastolic_blood_pressure"/>
  86. </div>
  87. </div>
  88. <div class="item">
  89. <h2 class="name">脉率(次/分)</h2>
  90. <div class="content">
  91. <input type="tel" @focus="inputFocus" v-model="formValue.pulse_frequency"/>
  92. </div>
  93. </div>
  94. <div @click="showSubMenu('blood_access_part')" class="item" ref="blood_access_part">
  95. <h2 class="name" >血管通路部位</h2>
  96. <div class="content">
  97. <span class="text">{{QueryPartById(formValue.blood_access_part_id)}}</span>
  98. <span class="iconfont">&#xe6f9;</span>
  99. </div>
  100. </div>
  101. <div @click="showSubMenu('blood_access_opera')" class="item" ref="blood_access_opera">
  102. <h2 class="name">血管通路操作</h2>
  103. <div class="content">
  104. <span class="text">{{QueryOperaById(formValue.blood_access_part_opera_id)}}</span>
  105. <span class="iconfont">&#xe6f9;</span>
  106. </div>
  107. </div>
  108. <div class="line"></div>
  109. <div @click="showSubMenu('complication')" class="item" ref="complication">
  110. <h2 class="name">并发症</h2>
  111. <div class="content">
  112. <span class="text" style="width: 50px">{{formValue.complication}}</span>
  113. <span class="iconfont">&#xe6f9;</span>
  114. </div>
  115. </div>
  116. <div @click="showSubMenu('last_post_dialysis')" class="item" ref="last_post_dialysis">
  117. <h2 class="name">前次透析后</h2>
  118. <div class="content">
  119. <span class="text" style="width: 100px">{{formValue.last_post_dialysis}}</span>
  120. <span class="iconfont">&#xe6f9;</span>
  121. </div>
  122. </div>
  123. <div @click="showSubMenu('dialysis_interphase')" class="item" ref="dialysis_interphase">
  124. <h2 class="name">透析期间</h2>
  125. <div class="content">
  126. <span class="text" style="width: 100px">{{formValue.dialysis_interphase}}</span>
  127. <span class="iconfont">&#xe6f9;</span>
  128. </div>
  129. </div>
  130. <div @click="showSubMenu('symptom_before_dialysis')" class="item" ref="symptom_before_dialysis">
  131. <h2 class="name">透析前症状</h2>
  132. <div class="content">
  133. <span class="text" style="width: 100px">{{formValue.symptom_before_dialysis}}</span>
  134. <span class="iconfont">&#xe6f9;</span>
  135. </div>
  136. </div>
  137. <div class="line"></div>
  138. <div>
  139. <div class="item">
  140. <h2 class="name">备注</h2>
  141. <div class="content">
  142. <span class="text"></span>
  143. </div>
  144. </div>
  145. <textarea class="textarea" placeholder="请输入内容" @focus="lastInputFocus" @blur="lastInputBlur" v-model="formValue.remark"></textarea>
  146. </div>
  147. </div>
  148. </div>
  149. <!--<two-menu title="二级菜单" v-show="true" ></two-menu>-->
  150. <check-box-sub-menu :visibility="visibility" v-on:menu-cancle="menuCancle" v-on:menu-comfirm="menuComfirm"
  151. :propsForm="propForm"></check-box-sub-menu>
  152. </div>
  153. </template>
  154. <script>
  155. // import TwoMenu from "./TwoMenu";
  156. import CheckBoxSubMenu from "./subMenu/checkBoxSubMenu";
  157. import {EditAssessmentBeforeDislysis} from '@/api/patient';
  158. import { Toast } from 'vant';
  159. import {getDataConfig} from '@/utils/data';
  160. export default {
  161. name: "PrescriptionDialog",
  162. props: {
  163. patient_prop: {
  164. type: Object,
  165. },
  166. predialysis: {
  167. type: Object,
  168. },
  169. last_predialysis: {
  170. type: Object,
  171. },
  172. },
  173. data() {
  174. return {
  175. isShowDialog: true,
  176. //sub menu prop
  177. visibility: false,
  178. propForm: {
  179. title: '',
  180. list: [],
  181. optionList: [],
  182. isMultiple: 2,
  183. result: [], //选中的值
  184. type: 1, //用来区分不同子菜单,方便对返回值进行赋值
  185. selectId: 0,
  186. },
  187. hemorrhage_state: false,
  188. formValue: {
  189. weight_before: '',
  190. dry_weight: '',
  191. temperature: '',
  192. systolic_blood_pressure: '',
  193. diastolic_blood_pressure: '',
  194. symptom_before_dialysis:'',
  195. pulse_frequency: '',
  196. last_post_dialysis:'',
  197. dialysis_interphase:'',
  198. catheter: '',
  199. catheter_bend: 2,
  200. complication: '',
  201. remark: '',
  202. blood_access_part_id: '',
  203. blood_access_part_opera_id: '',
  204. internal_fistula: '',
  205. internal_fistula_skin: "",
  206. is_hemorrhage: 1,
  207. hemorrhage: "",
  208. hemorrhage_other: "",
  209. },
  210. record_date:''
  211. };
  212. },
  213. methods: {
  214. hemorrhageStateChange: function(is_select) {
  215. this.formValue.is_hemorrhage = is_select == true ? 1 : 2
  216. },
  217. inputFocus: function(event) {
  218. var input = event.target
  219. setTimeout(function () {
  220. input.scrollIntoView()
  221. }, 0);
  222. if (input.setSelectionRange) {
  223. setTimeout(function () {
  224. input.setSelectionRange(0, input.value.length);
  225. }, 0);
  226. } else if (input.createTextRange) {
  227. var rng = input.createTextRange();
  228. rng.move('character', input.value.length);
  229. rng.select();
  230. }
  231. },
  232. lastInputFocus: function(event) {
  233. var input = event.target
  234. setTimeout(function () {
  235. input.style.marginBottom = "2rem"
  236. input.parentNode.scrollIntoView()
  237. }, 0);
  238. },
  239. lastInputBlur: function(event) {
  240. var input = event.target
  241. setTimeout(function () {
  242. input.style.marginBottom = ""
  243. }, 0);
  244. },
  245. showSubMenu: function (val) {
  246. switch (val) {
  247. case 'last_post_dialysis':
  248. this.propForm.result = []
  249. this.propForm.type = 1
  250. this.isShowDialog = false
  251. this.propForm.title = '前次透析后'
  252. this.visibility = true
  253. this.propForm.list = getDataConfig('hemodialysis','last_dialysis_after')
  254. this.propForm.optionList = []
  255. this.propForm.isMultiple = 2
  256. if (this.formValue.last_post_dialysis != undefined || this.formValue.last_post_dialysis != null) {
  257. if (this.formValue.last_post_dialysis.length > 0) {
  258. this.propForm.result = this.formValue.last_post_dialysis.split(",")
  259. } else {
  260. this.propForm.result = []
  261. }
  262. } else {
  263. this.propForm.result = []
  264. }
  265. this.propForm.click_ref = "last_post_dialysis"
  266. break
  267. case 'dialysis_interphase':
  268. this.propForm.result = []
  269. this.propForm.type = 2
  270. this.isShowDialog = false
  271. this.propForm.title = '透析期间'
  272. this.visibility = true
  273. this.propForm.list = getDataConfig('hemodialysis','dialysis_duration')
  274. this.propForm.optionList = []
  275. this.propForm.isMultiple = 2
  276. if (this.formValue.dialysis_interphase != undefined || this.formValue.dialysis_interphase != null) {
  277. if (this.formValue.dialysis_interphase.length > 0) {
  278. this.propForm.result = this.formValue.dialysis_interphase.split(",")
  279. } else {
  280. this.propForm.result = []
  281. }
  282. } else {
  283. this.propForm.result = []
  284. }
  285. this.propForm.click_ref = "dialysis_interphase"
  286. break
  287. case 'symptom_before_dialysis':
  288. this.propForm.result = []
  289. this.propForm.type = 3
  290. this.isShowDialog = false
  291. this.propForm.title = '透析前症状'
  292. this.visibility = true
  293. this.propForm.list = getDataConfig('hemodialysis','dialysis_before')
  294. this.propForm.optionList = []
  295. this.propForm.isMultiple = 2
  296. if (this.formValue.symptom_before_dialysis != undefined || this.formValue.symptom_before_dialysis != null) {
  297. if (this.formValue.symptom_before_dialysis.length > 0) {
  298. this.propForm.result = this.formValue.symptom_before_dialysis.split(",")
  299. } else {
  300. this.propForm.result = []
  301. }
  302. } else {
  303. this.propForm.result = []
  304. }
  305. this.propForm.click_ref = "symptom_before_dialysis"
  306. break
  307. case 'catheter':
  308. this.propForm.result = []
  309. this.propForm.type = 4
  310. this.isShowDialog = false
  311. this.propForm.title = '导管'
  312. this.visibility = true
  313. this.propForm.list = getDataConfig('hemodialysis','catheter')
  314. this.propForm.optionList = []
  315. this.propForm.isMultiple = 2
  316. if (this.formValue.catheter != undefined || this.formValue.catheter != null) {
  317. if (this.formValue.catheter.length > 0) {
  318. this.propForm.result = this.formValue.catheter.split(",")
  319. } else {
  320. this.propForm.result = []
  321. }
  322. } else {
  323. this.propForm.result = []
  324. }
  325. this.propForm.click_ref = "catheter"
  326. break
  327. case 'complication':
  328. this.propForm.result = []
  329. this.propForm.type = 5
  330. this.isShowDialog = false
  331. this.propForm.title = '并发症'
  332. this.visibility = true
  333. this.propForm.list = getDataConfig('hemodialysis','complication')
  334. this.propForm.optionList = []
  335. this.propForm.isMultiple = 2
  336. // this.propForm.result = this.formValue.complication.split(",")
  337. if (this.formValue.complication != undefined || this.formValue.complication != null) {
  338. if (this.formValue.complication.length > 0) {
  339. this.propForm.result = this.formValue.complication.split(",")
  340. } else {
  341. this.propForm.result = []
  342. }
  343. } else {
  344. this.propForm.result = []
  345. }
  346. this.propForm.click_ref = "complication"
  347. break
  348. case 'blood_access_part':
  349. this.propForm.type = 6
  350. this.isShowDialog = false
  351. this.propForm.title = '血管通路部位'
  352. this.visibility = true
  353. this.propForm.list = []
  354. this.propForm.optionList = getDataConfig('hemodialysis','vascular_access')
  355. this.propForm.isMultiple = 1
  356. this.propForm.selectId = this.formValue.blood_access_part_id
  357. this.propForm.click_ref = "blood_access_part"
  358. break
  359. case 'blood_access_opera':
  360. this.propForm.type = 7
  361. this.isShowDialog = false
  362. this.propForm.title = '血管通路操作'
  363. this.visibility = true
  364. this.propForm.list = []
  365. this.propForm.optionList = getDataConfig('hemodialysis','vascular_access_desc')
  366. this.propForm.isMultiple = 1
  367. this.propForm.selectId = this.formValue.blood_access_part_opera_id
  368. this.propForm.click_ref = "blood_access_opera"
  369. break
  370. case 'internal_fistula':
  371. this.propForm.result = []
  372. this.propForm.type = 8
  373. this.isShowDialog = false
  374. this.propForm.title = '内萎'
  375. this.visibility = true
  376. this.propForm.list = getDataConfig('hemodialysis','internal_fistula')
  377. this.propForm.optionList = []
  378. this.propForm.isMultiple = 2
  379. // this.propForm.result = this.formValue.internal_fistula.split(",")
  380. if (this.formValue.internal_fistula != undefined || this.formValue.internal_fistula != null) {
  381. if (this.formValue.internal_fistula.length > 0) {
  382. this.propForm.result = this.formValue.internal_fistula.split(",")
  383. } else {
  384. this.propForm.result = []
  385. }
  386. } else {
  387. this.propForm.result = []
  388. }
  389. this.propForm.click_ref = "internal_fistula"
  390. break
  391. case "hemorrhage":
  392. this.propForm.result = []
  393. this.propForm.type = 9
  394. this.isShowDialog = false
  395. this.propForm.title = '出血'
  396. this.visibility = true
  397. this.propForm.list = getDataConfig('hemodialysis','hemorrhage')
  398. this.propForm.optionList = []
  399. this.propForm.isMultiple = 2
  400. // this.propForm.result = typeof(this.formValue.hemorrhage) == "string"? this.formValue.hemorrhage.split(","):[]
  401. if (this.formValue.hemorrhage != undefined || this.formValue.hemorrhage != null) {
  402. if (this.formValue.hemorrhage.length > 0) {
  403. this.propForm.result = this.formValue.hemorrhage.split(",")
  404. } else {
  405. this.propForm.result = []
  406. }
  407. } else {
  408. this.propForm.result = []
  409. }
  410. this.propForm.click_ref = "hemorrhage"
  411. break
  412. case "internal_fistula_skin":
  413. this.propForm.result = []
  414. this.propForm.type = 10
  415. this.isShowDialog = false
  416. this.propForm.title = '内瘘皮肤情况'
  417. this.visibility = true
  418. this.propForm.list = this.$store.getters.internal_fistula_skin
  419. this.propForm.optionList = []
  420. this.propForm.isMultiple = 2
  421. // this.propForm.result = this.formValue.hemorrhage.split(",")
  422. if (this.formValue.internal_fistula_skin != undefined || this.formValue.internal_fistula_skin != null) {
  423. if (this.formValue.internal_fistula_skin.length > 0) {
  424. this.propForm.result = this.formValue.internal_fistula_skin.split(",")
  425. } else {
  426. this.propForm.result = []
  427. }
  428. } else {
  429. this.propForm.result = []
  430. }
  431. this.propForm.click_ref = "internal_fistula_skin"
  432. break
  433. case 'catheter_bend':
  434. this.propForm.type = 11
  435. this.isShowDialog = false
  436. this.propForm.title = '导管打折'
  437. this.visibility = true
  438. this.propForm.list = []
  439. this.propForm.optionList = this.$store.getters.catheter_bend
  440. this.propForm.isMultiple = 1
  441. this.propForm.selectId = this.formValue.catheter_bend
  442. this.propForm.click_ref = "catheter_bend"
  443. break
  444. }
  445. }, menuCancle: function () {
  446. this.visibility = false
  447. this.isShowDialog = true
  448. this.$nextTick( () => {
  449. if (this.$refs[this.propForm.click_ref] != undefined && this.$refs[this.propForm.click_ref] != null) {
  450. this.$refs[this.propForm.click_ref].scrollIntoView()
  451. }
  452. })
  453. }, menuComfirm: function (val) {
  454. this.visibility = false
  455. this.isShowDialog = true
  456. this.$nextTick( () => {
  457. if (this.$refs[this.propForm.click_ref] != undefined && this.$refs[this.propForm.click_ref] != null) {
  458. this.$refs[this.propForm.click_ref].scrollIntoView()
  459. }
  460. })
  461. switch (val.type) {
  462. case 1:
  463. this.formValue.last_post_dialysis = val.result.join(',')
  464. break
  465. case 2:
  466. this.formValue.dialysis_interphase = val.result.join(',')
  467. break
  468. case 3:
  469. this.formValue.symptom_before_dialysis = val.result.join(',')
  470. break
  471. case 4:
  472. this.formValue.catheter = val.result.join(',')
  473. break
  474. case 5:
  475. this.formValue.complication = val.result.join(',')
  476. break
  477. case 6:
  478. this.formValue.blood_access_part_id = val.selectId
  479. break
  480. case 7:
  481. this.formValue.blood_access_part_opera_id = val.selectId
  482. break
  483. case 8:
  484. this.formValue.internal_fistula = val.result.join(',')
  485. break
  486. case 9:
  487. this.formValue.hemorrhage = val.result.join(',')
  488. break
  489. case 10:
  490. this.formValue.internal_fistula_skin = val.result.join(",")
  491. break
  492. case 11:
  493. this.formValue.catheter_bend = val.selectId
  494. break
  495. }
  496. }, QueryPartById: function (val) {
  497. let vascular_access_part_name = ''
  498. let vascular_access = getDataConfig('hemodialysis','vascular_access')
  499. for (let i = 0; i < vascular_access.length; i++) {
  500. if (vascular_access[i].id == val) {
  501. vascular_access_part_name = vascular_access[i].name
  502. }
  503. }
  504. return vascular_access_part_name
  505. }, QueryOperaById: function (val) {
  506. let vascular_access_desc_name = ''
  507. let vascular_access_desc = getDataConfig('hemodialysis','vascular_access_desc')
  508. for (let i = 0; i < vascular_access_desc.length; i++) {
  509. if (vascular_access_desc[i].id == val) {
  510. vascular_access_desc_name = vascular_access_desc[i].name
  511. }
  512. }
  513. return vascular_access_desc_name
  514. },
  515. GetCatheterBendById: function (val) {
  516. let name = "";
  517. let options = this.$store.getters.catheter_bend;
  518. for (let index = 0; index < options.length; index++) {
  519. const option = options[index];
  520. if (option.id == val) {
  521. name = option.name
  522. break
  523. }
  524. }
  525. return name
  526. },
  527. commitInfo:function () {
  528. Toast.loading({forbidClick: true, duration: 0})
  529. EditAssessmentBeforeDislysis(this.$route.query.patient_id, this.record_date, this.formValue).then(response=>{
  530. if (response.data.state == 0) {
  531. Toast(response.data.msg);
  532. return false;
  533. } else {
  534. Toast("提交完成");
  535. this.$emit('evaluation', response.data.data.evaluation);
  536. }
  537. });
  538. },
  539. close: function() {
  540. this.$emit("close")
  541. }, open:function(){
  542. this.isShowDialog = true;
  543. this.visibility = false;
  544. var dialogTop = document.querySelector('#dialogTop');
  545. if (dialogTop != null) {
  546. this.$nextTick(() => {
  547. dialogTop.scrollTop = 0;
  548. });
  549. }
  550. }
  551. }, components: {
  552. CheckBoxSubMenu,
  553. }, created(){
  554. var date = this.$route.query && this.$route.query.date;
  555. date *= 1000;
  556. var newDate = new Date(date);
  557. var y = newDate.getFullYear();
  558. var m = newDate.getMonth() + 1;
  559. var d = newDate.getDate();
  560. if (isNaN(y) || isNaN(m) || isNaN(d)) {
  561. newDate = new Date();
  562. y = newDate.getFullYear();
  563. m = newDate.getMonth() + 1;
  564. d = newDate.getDate();
  565. }
  566. this.record_date = y + "-" + (m < 10 ? "0" + m : m) + "-" + (d < 10 ? "0" + d : d);
  567. // console.log(this.predialysis)
  568. this.formValue = this.predialysis
  569. if (this.predialysis.id == undefined && this.last_predialysis.id != undefined) {
  570. this.$set(this.formValue, "dry_weight", this.last_predialysis["dry_weight"])
  571. this.$set(this.formValue, "internal_fistula", this.last_predialysis["internal_fistula"])
  572. this.$set(this.formValue, "internal_fistula_skin", this.last_predialysis["internal_fistula_skin"])
  573. this.$set(this.formValue, "blood_access_part_id", this.last_predialysis["blood_access_part_id"])
  574. this.$set(this.formValue, "blood_access_part_opera_id", this.last_predialysis["blood_access_part_opera_id"])
  575. }
  576. this.hemorrhage_state = this.formValue.is_hemorrhage == 1
  577. }
  578. };
  579. </script>
  580. <style style="stylesheet/scss" lang="scss" scoped>
  581. .textarea {
  582. width: 100%;
  583. height: 2.4rem;
  584. line-height: 0.6rem;
  585. color: $pgh-color;
  586. font-size: 0.28rem;
  587. padding-left: 0.36rem;
  588. border: none;
  589. border-bottom: 1px #e5e5e5 solid;
  590. }
  591. </style>