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

daoguan_history.vue 24KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638
  1. <!-- 导管脱落 -->
  2. <template>
  3. <div class="patient-container">
  4. <div class="patient-app-containers advice-container app-container">
  5. <div style="display: flex;margin-bottom: 20px;">
  6. <div style="width: 50%;">
  7. <el-button type="text" icon="el-icon-arrow-left" style="font-size: 18px;" @click="fanhui">返回</el-button>
  8. <div class="history">历史评分</div>
  9. </div>
  10. <div style="margin-left: 30%;">
  11. <el-button type="primary" @click="open_pingfen">打印评分</el-button>
  12. <el-button type="primary" @click="open_mingxi">打印明细</el-button>
  13. </div>
  14. </div>
  15. <div>
  16. <el-table
  17. ref="multipleTable"
  18. :data="tableData"
  19. border
  20. tooltip-effect="dark"
  21. :header-cell-style="{
  22. background:'#4579c5',
  23. color:'#fff'
  24. }"
  25. style="width: 100%"
  26. @selection-change="handleSelectionChange">
  27. <el-table-column
  28. type="selection"
  29. width="55"
  30. align="center">
  31. </el-table-column>
  32. <el-table-column
  33. prop="time"
  34. label="评估日期"
  35. width="120"
  36. align="center">
  37. </el-table-column>
  38. <el-table-column
  39. prop="name"
  40. label="脱管后风险程度"
  41. width="130"
  42. align="center">
  43. </el-table-column>
  44. <el-table-column
  45. prop="name"
  46. label="患者意识程度"
  47. width="130"
  48. align="center">
  49. </el-table-column>
  50. <el-table-column
  51. prop="name"
  52. label="患者配合程度"
  53. width="130"
  54. align="center">
  55. </el-table-column>
  56. <el-table-column
  57. prop="name"
  58. label="护理措施"
  59. width=""
  60. align="center">
  61. </el-table-column>
  62. <el-table-column
  63. prop="mark"
  64. label="总评分"
  65. width="80"
  66. align="center">
  67. </el-table-column>
  68. <el-table-column
  69. prop="evaluate"
  70. label="责任护士"
  71. width="100"
  72. align="center">
  73. </el-table-column>
  74. <el-table-column
  75. label="操作"
  76. width="155"
  77. align="center"
  78. show-overflow-tooltip>
  79. <template slot-scope="scope">
  80. <el-button type="primary" icon="el-icon-edit-outline" @click="open_xiugai(scope.row)"></el-button>
  81. <el-button type="primary" icon="el-icon-delete" @click="open_delete(scope.row)"></el-button>
  82. </template>
  83. </el-table-column>
  84. </el-table>
  85. </div>
  86. </div>
  87. <!-- 打印评分 -->
  88. <el-dialog
  89. title="提示"
  90. :visible.sync="dialogVisible"
  91. width="67%"
  92. >
  93. <div>
  94. <el-button type="primary" @click="print_pingfen(1)" style="float:right">打印</el-button>
  95. <div id="pingfeng" >
  96. <div class="diedao_content" style="">
  97. <div style="width:100%">
  98. <div style="text-align: center;"><h1>血液透析中心住院患者导管脱落危险因素评估记录</h1></div>
  99. <div style="margin-top: 20px;font-size: 16px;">
  100. <span>患者姓名:</span>
  101. <span>透析号:</span>
  102. <span>打印时间:</span>
  103. </div>
  104. <table class="table" border="1" style="border-collapse:collapse;text-align:center;width:100%;font-size:16px">
  105. <tr>
  106. <td style="width:100px">评估日期</td>
  107. <td style="width:100px">脱管后风险程度</td>
  108. <td style="width:100px">患者意识程度</td>
  109. <td style="width:100px">患者配合程度</td>
  110. <td style="width:400px">护理措施</td>
  111. <td style="width:100px">总评分</td>
  112. <td style="width:100px">责任护士</td>
  113. </tr>
  114. <tr v-for="(item,index) in multipleSelection" :key="index">
  115. <td>{{ item.time }}</td>
  116. <td></td>
  117. <td></td>
  118. <td></td>
  119. <td></td>
  120. <td>{{ item.mark }}</td>
  121. <td>{{ item.evaluate }}</td>
  122. </tr>
  123. </table>
  124. </div>
  125. </div>
  126. </div>
  127. </div>
  128. <span slot="footer" class="dialog-footer">
  129. <el-button @click="dialogVisible = false">取 消</el-button>
  130. <el-button type="primary" @click="dialogVisible = false">确 定</el-button>
  131. </span>
  132. </el-dialog>
  133. <!-- 打印明细 -->
  134. <el-dialog
  135. title="提示"
  136. :visible.sync="mingxi_dialogVisible"
  137. width="67%"
  138. >
  139. <div>
  140. <div style="">
  141. <el-button type="primary" @click="print_pingfen(2)" style="float:right">打印</el-button>
  142. </div>
  143. <div id="mingxi" >
  144. <div class="diedao_content" style="page-break-after: always;" v-for="i in multipleSelection">
  145. <div style="width:100%;margin-top: 20px;">
  146. <div style="text-align: center;"><h1>血液透析中心住院患者导管脱落危险因素评估记录</h1></div>
  147. <div style="margin-top: 20px;font-size: 16px;">
  148. <span>患者姓名:</span>
  149. <span>透析号:</span>
  150. <span>评估日期:</span>
  151. <span>评估护士:</span>
  152. <span>总分:</span>
  153. </div>
  154. <table border="1" style="width: 100%; border-collapse:collapse ;">
  155. <thead>
  156. <tr>
  157. <th style="width: 15%;">项目</th>
  158. <th style="width: 50%;">分值</th>
  159. <th>护理措施</th>
  160. </tr>
  161. </thead>
  162. <tbody>
  163. <tr>
  164. <td class="start">A.脱管后风险程度</td>
  165. <td>
  166. <div class="jiange">
  167. <el-radio-group >
  168. <el-radio v-for="(item,index ) in tuoguan" :label="item" :key="index" style="">{{ item }}</el-radio>
  169. </el-radio-group>
  170. </div>
  171. </td>
  172. <td rowspan="3">
  173. <div style="vertical-align: top; color: black; padding: 5px;">
  174. <label><input name="ball" type="checkbox" value="football" />&nbsp;1.管道维护,导管脱落严重后果及预防措施的健康教育;</label> <br/>
  175. <label><input name="ball" type="checkbox" value="football" />&nbsp;2.床边悬挂警示标识(>9分悬挂);</label><br/>
  176. <label><input name="ball" type="checkbox" value="football" />&nbsp;3.正确妥善固定;</label><br/>
  177. <label><input name="ball" type="checkbox" value="football" />&nbsp;4.正确卧位及床上活动方式, 病人带管下床活动时, 将引流管固定在病人的衣服或裤子上;</label><br/>
  178. <label><input name="ball" type="checkbox" value="football" />&nbsp;5.加强巡视,及时发现满足患者需要;</label><br/>
  179. <label><input name="ball" type="checkbox" value="football" />&nbsp;6.严格交接班,各班重点交接,观察外露长度,必要时记录;</label><br/>
  180. <label><input name="ball" type="checkbox" value="football" />&nbsp;7.昏迷、暴躁、不合作病人,根据医嘱使用镇静剂和约束带;</label><br/>
  181. <label><input name="ball" type="checkbox" value="football" />&nbsp;8.进行诊疗护理需要移动患者时,根据医嘱使用镇静剂和约束带;</label><br/>
  182. <label><input name="ball" type="checkbox" value="football" />&nbsp;9.对于气管插管清醒患者,进行心理疏导和安全教育。</label>
  183. </div>
  184. </td>
  185. </tr>
  186. <tr>
  187. <td class="start">B.患者意识程度</td>
  188. <td>
  189. <div class="jiange">
  190. <el-radio-group >
  191. <el-radio v-for="(item,index ) in yishi" :label="item" :key="index">{{ item }}</el-radio>
  192. </el-radio-group>
  193. </div>
  194. </td>
  195. </tr>
  196. <tr>
  197. <td class="start">C.患者配合程度</td>
  198. <td>
  199. <div class="jiange">
  200. <el-radio-group >
  201. <el-radio v-for="(item,index ) in peihe" :label="item" :key="index">{{ item }}</el-radio>
  202. </el-radio-group>
  203. </div>
  204. </td>
  205. </tr>
  206. </tbody>
  207. </table>
  208. <div style="margin-top: 20px;">
  209. <p>患者知情同意书:我对住院期间发生导管脱落的风险及预防措施已知晓,并给予配合。</p>
  210. <div class="zhuangui">
  211. <p style="display: inline-block; margin-right: 70px;">患者/家属签字: <span style="display: inline-block;border-bottom:1px solid #DCDFE6;width: 60px;"></span></p>
  212. <p style="display: inline-block;">
  213. 日期:
  214. <span style="display: inline-block;border-bottom:1px solid #DCDFE6;width: 60px;"></span>
  215. </p>
  216. </div>
  217. <div class="zhuangui">
  218. <span>转归:</span>
  219. <el-radio label="1">脱落</el-radio>
  220. <el-radio label="2">未脱落</el-radio>
  221. </div>
  222. <div class="zhuangui">
  223. <p style="display: inline-block; margin-right: 30px;">
  224. 评估人签字:
  225. <span style="display: inline-block;border-bottom:1px solid #DCDFE6;width: 60px;"></span>
  226. </p>
  227. <p style="display: inline-block;">
  228. 日期:
  229. <span style="display: inline-block;border-bottom:1px solid #DCDFE6;width: 60px;"></span>
  230. </p>
  231. </div>
  232. <div class="zhuangui">
  233. <p style="display: inline-block; margin-right: 30px;">
  234. 护士长签字:
  235. <span style="display: inline-block;border-bottom:1px solid #DCDFE6;width: 60px;"></span>
  236. </p>
  237. <p style="display: inline-block;">
  238. 日期:
  239. <span style="display: inline-block;border-bottom:1px solid #DCDFE6;width: 60px;"></span>
  240. </p>
  241. </div>
  242. </div>
  243. <hr style="margin: 10px 0px;border:1px solid rgb(135, 133, 133);"/><!--水平线-->
  244. <div class="shuoming">
  245. <p>说明:</p>
  246. <p>1.<5分为正常,5~8分为危险,≥9分为高度危险。</p>
  247. <p>2.导管脱落危险因素≥5分,需填写该表。</p>
  248. <p>3.常规情况下,评分5~8分,至少每天评估一次;评分≥9,至少每班评估一次,紧急与特殊情况,应随时评估。</p>
  249. </div>
  250. <div style="font-size: 16px;">打印时间:</div>
  251. </div>
  252. </div>
  253. </div>
  254. </div>
  255. </el-dialog>
  256. <!-- 编辑 -->
  257. <el-dialog
  258. title="提示"
  259. :visible.sync="editor_dialogVisible"
  260. width="67%"
  261. >
  262. <div>
  263. <table class="tables" border="1" style="width: 100%;border-collapse: collapse;">
  264. <thead>
  265. <tr>
  266. <th style="width: 15%;">项目</th>
  267. <th style="width: 50%;">分值</th>
  268. <th>护理措施</th>
  269. </tr>
  270. </thead>
  271. <tbody>
  272. <tr>
  273. <td class="start">A.脱管后风险程度</td>
  274. <td>
  275. <div class="jiange">
  276. <el-radio-group v-model="radio" @change="handleCheckedCitiesChange">
  277. <el-radio v-for="(item,index ) in tuoguan" :label="item" :key="index" style="">{{ item }}</el-radio>
  278. </el-radio-group>
  279. </div>
  280. </td>
  281. <td rowspan="3">
  282. <div style="vertical-align: top; color: black; padding: 5px;">
  283. <label><input name="ball" type="checkbox" value="football" />&nbsp;1.管道维护,导管脱落严重后果及预防措施的健康教育;</label> <br/>
  284. <label><input name="ball" type="checkbox" value="football" />&nbsp;2.床边悬挂警示标识(>9分悬挂);</label><br/>
  285. <label><input name="ball" type="checkbox" value="football" />&nbsp;3.正确妥善固定;</label><br/>
  286. <label><input name="ball" type="checkbox" value="football" />&nbsp;4.正确卧位及床上活动方式, 病人带管下床活动时, 将引流管固定在病人的衣服或裤子上;</label><br/>
  287. <label><input name="ball" type="checkbox" value="football" />&nbsp;5.加强巡视,及时发现满足患者需要;</label><br/>
  288. <label><input name="ball" type="checkbox" value="football" />&nbsp;6.严格交接班,各班重点交接,观察外露长度,必要时记录;</label><br/>
  289. <label><input name="ball" type="checkbox" value="football" />&nbsp;7.昏迷、暴躁、不合作病人,根据医嘱使用镇静剂和约束带;</label><br/>
  290. <label><input name="ball" type="checkbox" value="football" />&nbsp;8.进行诊疗护理需要移动患者时,根据医嘱使用镇静剂和约束带;</label><br/>
  291. <label><input name="ball" type="checkbox" value="football" />&nbsp;9.对于气管插管清醒患者,进行心理疏导和安全教育。</label>
  292. </div>
  293. </td>
  294. </tr>
  295. <tr>
  296. <td class="start">B.患者意识程度</td>
  297. <td>
  298. <div class="jiange">
  299. <el-radio-group v-model="radio1" @change="handleCheckedCitiesChange">
  300. <el-radio v-for="(item,index ) in yishi" :label="item" :key="index">{{ item }}</el-radio>
  301. </el-radio-group>
  302. </div>
  303. </td>
  304. </tr>
  305. <tr>
  306. <td class="start">C.患者配合程度</td>
  307. <td>
  308. <div class="jiange">
  309. <el-radio-group v-model="radio2" @change="handleCheckedCitiesChange">
  310. <el-radio v-for="(item,index ) in peihe" :label="item" :key="index">{{ item }}</el-radio>
  311. </el-radio-group>
  312. </div>
  313. </td>
  314. </tr>
  315. </tbody>
  316. </table>
  317. </div>
  318. <div class="content_top" style="margin: 10px 0px;">
  319. <div>
  320. <div class="bottoms">
  321. <span>总分:</span>
  322. <el-input v-model="duct_Totalpoints" style="width: 100px;"></el-input>分
  323. </div>
  324. <div class="bottoms">
  325. <span>评估日期:</span>
  326. <el-date-picker
  327. v-model="value1"
  328. type="date"
  329. placeholder="选择日期"
  330. :clearable="false"
  331. style="width: 150px;">
  332. </el-date-picker>
  333. </div>
  334. <div class="bottoms">
  335. <span>评估人:</span>
  336. <el-select v-model="value" placeholder="请选择" >
  337. <el-option
  338. v-for="item in options"
  339. :key="item.value"
  340. :label="item.label"
  341. :value="item.value"
  342. style="width:150px;">
  343. </el-option>
  344. </el-select>
  345. </div>
  346. </div>
  347. <div style="margin:5px 10px;">
  348. <el-button type="primary">确认</el-button>
  349. </div>
  350. </div>
  351. <hr style="border:none;height:1px;background:#DCDFE6;"/><!--水平线-->
  352. <div style="margin-top: 20px;">
  353. <p>患者知情同意书:我对住院期间发生导管脱落的风险及预防措施已知晓,并给予配合。</p>
  354. <div class="zhuangui">
  355. <p style="display: inline-block; margin-right: 70px;">患者/家属签字: <span style="display: inline-block;border-bottom:1px solid #DCDFE6;width: 60px;"></span></p>
  356. <p style="display: inline-block;">
  357. 日期:
  358. <el-date-picker
  359. v-model="value1"
  360. type="date"
  361. placeholder="选择日期"
  362. style="width: 150px;">
  363. </el-date-picker>
  364. </p>
  365. </div>
  366. <div class="zhuangui">
  367. <span>转归:</span>
  368. <el-radio v-model="radio" label="1">脱落</el-radio>
  369. <el-radio v-model="radio" label="2">未脱落</el-radio>
  370. </div>
  371. <div class="zhuangui">
  372. <p style="display: inline-block; margin-right: 30px;">
  373. 评估人签字:
  374. <el-select v-model="value" placeholder="请选择" style="width: 120px;">
  375. <el-option
  376. v-for="item in options"
  377. :key="item.value"
  378. :label="item.label"
  379. :value="item.value">
  380. </el-option>
  381. </el-select>
  382. </p>
  383. <p style="display: inline-block;">
  384. 日期:
  385. <el-date-picker
  386. v-model="value1"
  387. type="date"
  388. placeholder="选择日期"
  389. style="width: 150px;">
  390. </el-date-picker>
  391. </p>
  392. </div>
  393. <div class="zhuangui">
  394. <p style="display: inline-block; margin-right: 30px;">
  395. 护士长签字:
  396. <el-select v-model="value" placeholder="请选择" style="width: 120px;">
  397. <el-option
  398. v-for="item in options"
  399. :key="item.value"
  400. :label="item.label"
  401. :value="item.value">
  402. </el-option>
  403. </el-select>
  404. </p>
  405. <p style="display: inline-block;">
  406. 日期:
  407. <el-date-picker
  408. v-model="value1"
  409. type="date"
  410. placeholder="选择日期"
  411. style="width: 150px;">
  412. </el-date-picker>
  413. </p>
  414. </div>
  415. </div>
  416. <hr style="margin: 10px 0px;border:none;height:1px;background:#DCDFE6;"/><!--水平线-->
  417. <div class="shuoming">
  418. <p>说明:</p>
  419. <p>1.<5分为正常,5~8分为危险,≥9分为高度危险。</p>
  420. <p>2.导管脱落危险因素≥5分,需填写该表。</p>
  421. <p>3.常规情况下,评分5~8分,至少每天评估一次;评分≥9,至少每班评估一次,紧急与特殊情况,应随时评估。</p>
  422. </div>
  423. </el-dialog>
  424. <!--删除 -->
  425. <el-dialog
  426. title="提示"
  427. :visible.sync="delete_centerDialogVisible"
  428. width="20%"
  429. center>
  430. <span>是否删除该记录</span>
  431. <span slot="footer" class="dialog-footer">
  432. <el-button @click="delete_centerDialogVisible = false">取 消</el-button>
  433. <el-button type="primary" @click="delete_daogaun">确 定</el-button>
  434. </span>
  435. </el-dialog>
  436. </div>
  437. </template>
  438. <script>
  439. import print from 'print-js'
  440. export default{
  441. data(){
  442. return{
  443. tableData:[],
  444. multipleSelection:[],
  445. dialogVisible:false,
  446. mingxi_dialogVisible:false,
  447. editor_dialogVisible:false,
  448. delete_centerDialogVisible:false,
  449. tableData:[{id:1,time:'2023-9-27',mark:'15',evaluate:'千亦雪'},{id:2,time:'2023-9-27',mark:'14',evaluate:'千任雪'}],
  450. tuoguan:['低危导管 (1分)','中危导管 (2分)','高危导管 (3分)'],
  451. yishi:['意识清醒 (0分)','中昏迷、深昏迷 (1分)','嗜睡、昏睡 (2分)','浅昏迷 (3分)','意识模糊 (4分)'],
  452. peihe:['完全配合 (1分)','部分配合 (2分)','不配合 (3分)'],
  453. value1:'',
  454. radio:'',
  455. radio1:'',
  456. radio2:'',
  457. radio_val:null,
  458. radio1_val:null,
  459. radio2_val:null,
  460. // duct_Totalpoints:0,
  461. options:[],
  462. input:'',
  463. value:'',
  464. row:''
  465. }
  466. },
  467. methods:{
  468. fanhui(){
  469. window.history.go(-1);
  470. },
  471. handleSelectionChange(val) {
  472. this.multipleSelection = val;
  473. },
  474. open_pingfen(){
  475. if(this.multipleSelection.length==0){
  476. this.$message('请选择需要打印的记录')
  477. }else{
  478. this.dialogVisible=true
  479. }
  480. },
  481. open_mingxi(){
  482. if(this.multipleSelection.length==0){
  483. this.$message('请选择需要打印的记录')
  484. }else{
  485. this.mingxi_dialogVisible=true
  486. }
  487. },
  488. print_pingfen(ids){
  489. const style= '@media print {.diedao_content{background-color: white; width:960px; margin:0 auto; padding: 0 0 20px 0;} .table tr td{padding:5px}}'
  490. if(ids==1){
  491. printJS({
  492. printable: 'pingfeng',
  493. type: 'html',
  494. style: style,
  495. scanStyles: false
  496. })
  497. this.dialogVisible=false
  498. }else if(ids==2){
  499. printJS({
  500. printable: 'mingxi',
  501. type: 'html',
  502. style: style,
  503. scanStyles: false
  504. })
  505. this.mingxi_dialogVisible=false
  506. }
  507. },
  508. open_xiugai(row){
  509. this.editor_dialogVisible=true
  510. },
  511. open_delete(row){
  512. this.row=row.id
  513. this.delete_centerDialogVisible=true
  514. },
  515. delete_daogaun(){
  516. for(let i=0;i<this.tableData.length;i++){
  517. if(this.row==this.tableData[i].id){
  518. this.tableData.splice(i,1)
  519. }
  520. }
  521. this.delete_centerDialogVisible=false
  522. },
  523. handleCheckedCitiesChange(e){
  524. const ball=e
  525. const jiequ =(ball.split('(')[1].split('分')[0]) * 1
  526. if(e == this.radio){
  527. this.radio_val = jiequ
  528. }
  529. if(e == this.radio1){
  530. this.radio1_val = jiequ
  531. }
  532. if(e == this.radio2){
  533. this.radio2_val = jiequ
  534. }
  535. },
  536. daoguanhistory(){
  537. this.$router.push({path: '/patients/daoguan_history'})
  538. }
  539. },
  540. computed:{
  541. duct_Totalpoints(){
  542. return this.radio_val + this.radio1_val + this.radio2_val
  543. }
  544. }
  545. }
  546. </script>
  547. <style lang="scss" scoped>
  548. .patient-app-containers {
  549. margin-left: 10px;
  550. margin-right: 10px;
  551. background: #fff;
  552. }
  553. .history{
  554. display: inline-block;
  555. border-left:2px solid gray ;
  556. padding: 0 10px;
  557. margin-left:10px;
  558. color: gray;
  559. font-size: 18px;
  560. }
  561. .diedao_content{
  562. background-color: white;
  563. width:960px;
  564. margin:0 auto;
  565. padding: 0 0 20px 0;
  566. }
  567. .table tr td{
  568. padding:5px,
  569. }
  570. .tables{
  571. border: 1px solid #DCDFE6;
  572. border-collapse:collapse;
  573. border-spacing: 0;
  574. thead th{
  575. background: #0077ff9f;
  576. color: white;
  577. text-align: center;
  578. height: 40px;
  579. }
  580. tbody td{
  581. height: 40px;
  582. .el-radio {
  583. color: #101010;
  584. cursor: pointer;
  585. margin-right: 30px;
  586. font-size: 15px !important;
  587. }
  588. }
  589. .start{
  590. text-align: center;
  591. }
  592. .bing{
  593. width: 150px;
  594. text-align: center;
  595. }
  596. .bg_color{
  597. background: rgb(243, 240, 240);
  598. }
  599. .jiange{
  600. // margin-left: 20px;
  601. padding-left: 10px;
  602. color: black;
  603. }
  604. input{
  605. -webkit-appearance: checkbox;
  606. }
  607. }
  608. .shuoming p{
  609. margin-top: 5px;
  610. color: rgb(167, 165, 165);
  611. }
  612. .zhuangui{
  613. margin-top: 10px;
  614. }
  615. .content_top{
  616. display: flex;
  617. justify-content: space-between;
  618. }
  619. .bottoms{
  620. display: inline-block;
  621. margin-left: 10px;
  622. margin-top: 5px;
  623. }
  624. </style>