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

printThree.vue 26KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644
  1. <template>
  2. <div>
  3. <div v-if="paramsObj.balance_accounts_type != 2" id='prescription-print' class="prescription-print"
  4. style="position: relative;">
  5. <img style="width:100%;height:80px" src="https://kuyi.shengws.com/bailin/bltotle.jpg" alt="">
  6. <div class="printTitle" style="position: absolute;left: 40%;top: 50px;">门诊收费清单</div>
  7. <div style="display:flex;">
  8. <div>单据号:<span
  9. style="display:inline-block;width:200px;">{{info.order_number ? info.order_number : ''}}</span>
  10. </div>
  11. <div>透析号:<span style="display:inline-block;width:200px;">{{info.patient.dialysis_no ? info.patient.dialysis_no : ''}}</span>
  12. </div>
  13. <div style="margin-left:2px;">电脑号:<span
  14. style="display:inline-block;">{{info.psn_no ? info.psn_no : ''}}</span></div>
  15. </div>
  16. <div style="display:flex;justify-content: space-between;">
  17. <div style="display:flex;">
  18. <div>姓名:<span style="display:inline-block;width:50px;">{{info.patient.name ? info.patient.name.indexOf('(') > -1 ? info.patient.name.substring(0,info.patient.name.indexOf('(')) : info.patient.name : ''}}</span>
  19. </div>
  20. <div>性别:<span
  21. style="display:inline-block;width:30px;">{{info.patient.gender == '1' ? '男' : '女'}}</span>
  22. </div>
  23. <div>年龄:<span
  24. style="display:inline-block;width:50px;">{{info.patient.age ? info.patient.age : ''}}岁</span>
  25. </div>
  26. <div>费别:<span style="display:inline-block;min-width:80px;">医保</span>
  27. </div>
  28. <div>收费日期:<span style="display:inline-block;width:100px;">{{info.setl_time ? info.setl_time.split(' ')[0] : ''}}</span>
  29. </div>
  30. </div>
  31. <div style="float:right">金额单位:元</div>
  32. </div>
  33. <div style="min-height: 300px;">
  34. <table border='1' style="width:100%;" cellspacing="0">
  35. <tr>
  36. <td width="70">类别</td>
  37. <td>项目</td>
  38. <td min-width="180" style="min-width:60px;">规格</td>
  39. <td width="40">单位</td>
  40. <td width="40">数量</td>
  41. <td width="60">单价</td>
  42. <td width="70">总额</td>
  43. <td width="130">小计</td>
  44. </tr>
  45. <div v-for="(item,i) in info.new_detail_list" :key="i" style="width:100%;display: table-row-group;">
  46. <tr v-for="(subItem,index) in item.details" :key="index">
  47. <td>
  48. <span v-if="item.type == 1">药品费</span>
  49. <span v-if="item.type == 2">诊疗费</span>
  50. <span v-if="item.type == 3">耗材费</span>
  51. <span v-if="item.type == 4">诊疗费</span>
  52. </td>
  53. <td>
  54. <span v-if="item.type == 1">{{ subItem.advice.advice_name }}</span>
  55. <span v-if="item.type == 2">{{ subItem.project.project.project_name }}</span>
  56. <span v-if="item.type == 3">{{ subItem.project.good_info.good_name }}</span>
  57. <span v-if="item.type == 4">{{ subItem.project.project.team_name }}</span>
  58. </td>
  59. <td>
  60. <span v-if="item.type == 1"><span
  61. v-if="subItem.advice.drug.min_unit != subItem.advice.drug.dose_unit">{{subItem.advice.drug.dose}}{{subItem.advice.drug.dose_unit}}&nbsp;* &nbsp;</span>{{subItem.advice.drug.min_number}}{{subItem.advice.drug.min_unit}}/{{subItem.advice.drug.max_unit}}</span>
  62. <span v-if="item.type == 2"></span>
  63. <span v-if="item.type == 3">{{ subItem.project.good_info.specification_name }}</span>
  64. <span v-if="item.type == 4"></span>
  65. </td>
  66. <td>
  67. <span v-if="item.type == 1">{{ subItem.advice.drug.prescribing_number_unit }}</span>
  68. <span v-if="item.type == 2">{{ subItem.project.unit }}</span>
  69. <span v-if="item.type == 3">{{ subItem.project.unit }}</span>
  70. <span v-if="item.type == 4"></span>
  71. </td>
  72. <td>
  73. <span v-if="item.type == 1">{{ subItem.advice.prescribing_number }}</span>
  74. <span v-if="item.type == 2">{{ subItem.project.count }}</span>
  75. <span v-if="item.type == 3">{{ subItem.project.count }}</span>
  76. <span v-if="item.type == 4"></span>
  77. </td>
  78. <td>
  79. <span v-if="item.type == 1">{{ subItem.pric }}</span>
  80. <span v-if="item.type == 2">{{ subItem.pric }}</span>
  81. <span v-if="item.type == 3">{{ subItem.pric }}</span>
  82. <span v-if="item.type == 4">{{subItem.Total}}</span>
  83. </td>
  84. <td>
  85. <span v-if="item.type == 1">{{ (subItem.advice.prescribing_number * subItem.pric).toFixed(2) }}</span>
  86. <span v-if="item.type == 2">{{ (subItem.project.count * subItem.pric).toFixed(2) }}</span>
  87. <span v-if="item.type == 3">{{ (subItem.project.count * subItem.pric).toFixed(2) }}</span>
  88. <span v-if="item.type == 4">{{subItem.Total}}</span>
  89. <!--<span v-if="item.type == 4"></span>-->
  90. </td>
  91. <td :rowspan="item.details.length" v-if="index == 0"
  92. style="vertical-align: middle;text-align: center;">{{ item.total.toFixed(2) }}
  93. </td>
  94. </tr>
  95. </div>
  96. <tr>
  97. <td colspan="7">
  98. <div style="display:flex;flez-wrap:wrap;">
  99. <div style="width:33%;" v-for="(item,index) in info.new_detail_list" :key="index">
  100. <span v-if="item.type == 1">药品费: {{ item.total.toFixed(2) }}</span>
  101. <span v-if="item.type == 2">诊疗费: {{ item.total.toFixed(2) }}</span>
  102. <span v-if="item.type == 3">耗材费: {{ item.total.toFixed(2) }}</span>
  103. <span v-if="item.type == 4">诊疗费: {{ item.total.toFixed(2) }}</span>
  104. <!--<span v-if="item.type == 4">检验费: {{ item.total.toFixed(4) }}</span>-->
  105. </div>
  106. </div>
  107. </td>
  108. <td>合计: {{info.medfee_sumamt?info.medfee_sumamt:0}}元</td>
  109. </tr>
  110. <tr>
  111. <td colspan="7">
  112. <div style="display:flex;flez-wrap:wrap;margin-bottom:10px;font-size:16px;">
  113. <div style="width:33%;">医疗费总额:{{info.medfee_sumamt?info.medfee_sumamt:0}}元</div>
  114. <div style="width:33%;">基金支付金额:{{info.hifp_pay?info.hifp_pay:0}}元</div>
  115. <div style="width:33%;">个人账户支付金额:{{info.acct_pay?info.acct_pay:0}}元</div>
  116. </div>
  117. <div style="display:flex;flez-wrap:wrap;font-size:16px;">
  118. <div style="width:33%;">个人支付金额:{{ info.psn_pay?info.psn_pay:0 }}元</div>
  119. <div style="width:33%;">个人账户金额:{{info.balc >= 0 ? info.balc : 0 }}元</div>
  120. </div>
  121. </td>
  122. <td style="font-size:16px;">合计:{{info.medfee_sumamt?info.medfee_sumamt:0}}元</td>
  123. </tr>
  124. </table>
  125. </div>
  126. <div style="float:right;margin:10px 0;display:flex;">
  127. <div>操作人:<span style="width:100px;display:inline-block;">{{info.p_admin.user_name}}</span></div>
  128. <div>操作日期:<span style="width:100px;display:inline-block;">{{info.setl_time ? info.setl_time.split(' ')[0] : ''}}</span>
  129. </div>
  130. </div>
  131. <img style="width:100%;" src="https://kuyi.shengws.com/bailin/blend.jpg" alt="">
  132. </div>
  133. <div v-else id='prescription-print' class="prescription-print" style="position: relative;">
  134. <img style="width:100%;height:80px" src="https://kuyi.shengws.com/bailin/bltotle.jpg" alt="">
  135. <div class="printTitle" style="position: absolute;left: 40%;top: 50px;">门诊收费清单</div>
  136. <div style="display:flex;">
  137. <div>单据号:<span style="display:inline-block;width:200px;">{{balanceAccounts.his.number ? balanceAccounts.his.number : ''}}</span>
  138. </div>
  139. <div>透析号:<span style="display:inline-block;width:200px;">{{balanceAccounts.patient ? balanceAccounts.patient.dialysis_no : ''}}</span>
  140. </div>
  141. <div>电脑号:<span style="display:inline-block;width:80px;"></span></div>
  142. </div>
  143. <div style="display:flex;justify-content: space-between;">
  144. <div style="display:flex;">
  145. <div>姓名:<span style="display:inline-block;width:50px;">{{balanceAccounts.patient ? balanceAccounts.patient.name.indexOf('(') > -1 ? balanceAccounts.patient.name.substring(0,balanceAccounts.patient.name.indexOf('(')) : balanceAccounts.patient.name : ''}}</span>
  146. </div>
  147. <div>性别:<span style="display:inline-block;width:30px;">{{balanceAccounts.patient.gender == '1' ? '男' : '女'}}</span>
  148. </div>
  149. <div>年龄:<span style="display:inline-block;width:50px;">{{balanceAccounts.patient ? balanceAccounts.patient.age : ''}}岁</span>
  150. </div>
  151. <div>费别:<span style="display:inline-block;width:80px;">自费</span>
  152. </div>
  153. <div>收费日期:<span style="display:inline-block;width:100px;">{{getTime(balanceAccounts.order.settle_accounts_date,"{y}-{m}-{d}")?getTime(balanceAccounts.order.settle_accounts_date,'{y}-{m}-{d}'):''}}</span>
  154. </div>
  155. </div>
  156. <div style="float:right">金额单位:元</div>
  157. </div>
  158. <div style="min-height: 300px;">
  159. <table border='1' style="width:100%;" cellspacing="0">
  160. <tr>
  161. <td width="70">类别</td>
  162. <td>项目</td>
  163. <td min-width="180" style="min-width:60px;">规格</td>
  164. <td width="40">单位</td>
  165. <td width="40">数量</td>
  166. <td width="60">单价</td>
  167. <td width="70">总额</td>
  168. <td width="130">小计</td>
  169. </tr>
  170. <div v-for="(item,i) in balanceAccounts.new_detail_list" :key="i"
  171. style="width:100%;display: table-row-group;">
  172. <tr v-for="(subItem,index) in item.details" :key="index">
  173. <td>
  174. <span v-if="item.type == 1">药品费</span>
  175. <span v-if="item.type == 2">诊疗费</span>
  176. <span v-if="item.type == 3">耗材费</span>
  177. <span v-if="item.type == 4">诊疗费</span>
  178. </td>
  179. <td>
  180. <span v-if="item.type == 1">{{ subItem.advice.advice_name }}</span>
  181. <span v-if="item.type == 2">{{ subItem.project.project.project_name }}</span>
  182. <span v-if="item.type == 3">{{ subItem.project.good_info.good_name }}</span>
  183. <span v-if="item.type == 4">{{ subItem.Name }}</span>
  184. </td>
  185. <td>
  186. <span v-if="item.type == 1"><span
  187. v-if="subItem.advice.drug.min_unit != subItem.advice.drug.dose_unit">{{subItem.advice.drug.dose}}{{subItem.advice.drug.dose_unit}}&nbsp;* &nbsp;</span>{{subItem.advice.drug.min_number}}{{subItem.advice.drug.min_unit}}/{{subItem.advice.drug.max_unit}}</span>
  188. <span v-if="item.type == 2"></span>
  189. <span v-if="item.type == 3">{{ subItem.project.good_info.specification_name }}</span>
  190. <span v-if="item.type == 4"></span>
  191. </td>
  192. <td>
  193. <span v-if="item.type == 1">{{ subItem.advice.drug.prescribing_number_unit }}</span>
  194. <span v-if="item.type == 2">{{ subItem.project.unit }}</span>
  195. <span v-if="item.type == 3">{{ subItem.project.unit }}</span>
  196. <span v-if="item.type == 4"></span>
  197. </td>
  198. <td>
  199. <span v-if="item.type == 1">{{ subItem.advice.prescribing_number }}</span>
  200. <span v-if="item.type == 2">{{ subItem.project.count }}</span>
  201. <span v-if="item.type == 3">{{ subItem.project.count }}</span>
  202. <span v-if="item.type == 4">1</span>
  203. </td>
  204. <td>
  205. <span v-if="item.type == 1">{{ subItem.pric }}</span>
  206. <span v-if="item.type == 2">{{ subItem.pric }}</span>
  207. <span v-if="item.type == 3">{{ subItem.pric }}</span>
  208. <span v-if="item.type == 4">{{subItem.Total}}</span>
  209. </td>
  210. <td>
  211. <span v-if="item.type == 1">{{ (subItem.advice.prescribing_number * subItem.pric).toFixed(2) }}</span>
  212. <span v-if="item.type == 2">{{ (subItem.project.count * subItem.pric).toFixed(2) }}</span>
  213. <span v-if="item.type == 3">{{ (subItem.project.count * subItem.pric).toFixed(2) }}</span>
  214. <span v-if="item.type == 4">{{subItem.Total}}</span>
  215. </td>
  216. <td :rowspan="item.details.length" v-if="index == 0"
  217. style="vertical-align: middle;text-align: center;">{{ item.total.toFixed(2) }}
  218. </td>
  219. </tr>
  220. </div>
  221. <tr>
  222. <td colspan="7">
  223. <div style="display:flex;flez-wrap:wrap;">
  224. <div style="width:33%;" v-for="(item,index) in balanceAccounts.new_detail_list"
  225. :key="index">
  226. <span v-if="item.type == 1">药品费: {{ item.total.toFixed(2) }}</span>
  227. <span v-if="item.type == 2">诊疗费: {{ item.total.toFixed(2) }}</span>
  228. <span v-if="item.type == 3">耗材费: {{ item.total.toFixed(2) }}</span>
  229. <span v-if="item.type == 4">诊疗费: {{ item.total.toFixed(2) }}</span>
  230. </div>
  231. </div>
  232. </td>
  233. <td>合计: {{balanceAccounts.order.medfee_sumamt?balanceAccounts.order.medfee_sumamt:0}}元</td>
  234. </tr>
  235. <tr>
  236. <td colspan="7">
  237. <div style="display:flex;flez-wrap:wrap;">
  238. <div style="width:33%;">
  239. 医疗费总额:{{balanceAccounts.order.medfee_sumamt?balanceAccounts.order.medfee_sumamt:0}}元
  240. </div>
  241. <div style="width:33%;">基金支付金额:0元</div>
  242. <div style="width:33%;">个人账户支付金额:0元</div>
  243. </div>
  244. <div style="display:flex;flez-wrap:wrap;">
  245. <div style="width:33%;">
  246. 个人支付金额:{{balanceAccounts.order.medfee_sumamt?balanceAccounts.order.medfee_sumamt:0}}元
  247. </div>
  248. <div style="width:33%;">个人账户金额:0元</div>
  249. </div>
  250. </td>
  251. <td>合计:{{balanceAccounts.order.medfee_sumamt?balanceAccounts.order.medfee_sumamt:0}}元</td>
  252. </tr>
  253. </table>
  254. </div>
  255. <div style="float:right;margin:10px 0;display:flex;">
  256. <div>操作人:<span
  257. style="width:100px;display:inline-block;">{{balanceAccounts.current_admin.user_name}}</span>
  258. </div>
  259. <div>操作日期:<span style="width:100px;display:inline-block;">{{getTime(new Date(),'{y}-{m}-{d}')?getTime(new Date(),'{y}-{m}-{d}'):''}}</span>
  260. </div>
  261. </div>
  262. <img style="width:100%;" src="https://kuyi.shengws.com/bailin/blend.jpg" alt="">
  263. </div>
  264. </div>
  265. </template>
  266. <script>
  267. import { getChargePrint } from '@/api/project/project'
  268. import { uParseTime } from '@/utils/tools'
  269. export default {
  270. data() {
  271. return {
  272. list: {},
  273. prescription: [],
  274. patient: {},
  275. orgname: '',
  276. result: {},
  277. org_code: '',
  278. patient_name: '',
  279. doctor_code: '',
  280. doctor_name: '',
  281. name_arr: [],
  282. spec_arr: [],
  283. count_arr: [],
  284. price_arr: [],
  285. total_arr: []
  286. }
  287. },
  288. props: {
  289. paramsObj: Object,
  290. info: Object,
  291. balanceAccounts: Object
  292. },
  293. methods: {
  294. getName(list) {
  295. let new_list = []
  296. for (let i = 0; i < list.length; i++) {
  297. if (list[i].aac031 == '1') {
  298. new_list.push(list[i])
  299. }
  300. }
  301. switch (new_list[0].bcc334) {
  302. case 'A31001':
  303. return '深圳医保1档'
  304. break
  305. case 'A31002':
  306. return '深圳医保2档'
  307. break
  308. case 'A31003':
  309. return '深圳医保3档'
  310. break
  311. case 'A31004':
  312. return '二档(少儿)'
  313. break
  314. case 'A31005':
  315. return '学生二档'
  316. break
  317. case 'A31006':
  318. return '大学生二档'
  319. break
  320. case 'A32001':
  321. return '在职公务员'
  322. break
  323. case 'A32002':
  324. return '在职驻深公务员'
  325. break
  326. case 'A39301':
  327. return '家属统筹医疗'
  328. break
  329. case 'A41001':
  330. return '工伤在职'
  331. break
  332. case 'A51001':
  333. return '生育在职'
  334. break
  335. case 'A52001':
  336. return '生育医疗一档'
  337. break
  338. case 'A52002':
  339. return '生育医疗一档'
  340. break
  341. case 'C31001':
  342. return '一档医疗退休'
  343. break
  344. case 'C31002':
  345. return '二档医疗退休'
  346. break
  347. }
  348. },
  349. getValue(item) {
  350. return this.getItemName(item.aka111) + ': ' + item.bka058 + '元'
  351. },
  352. getItemName(number) {
  353. switch (number) {
  354. case '01':
  355. return '床位费'
  356. break
  357. case '02':
  358. return '西药费'
  359. break
  360. case '03':
  361. return '中药费'
  362. break
  363. case '04':
  364. return '中成药费'
  365. break
  366. case '05':
  367. return '中草药费'
  368. break
  369. case '06':
  370. return '检查费'
  371. break
  372. case '07':
  373. return '治疗费'
  374. break
  375. case '08':
  376. return '放射费'
  377. break
  378. case '09':
  379. return '手术费'
  380. break
  381. case '10':
  382. return '化验费'
  383. break
  384. case '11':
  385. return '输血费'
  386. break
  387. case '12':
  388. return '输氧费'
  389. break
  390. case '13':
  391. return '其它费'
  392. break
  393. case '14':
  394. return '麻醉费'
  395. break
  396. case '15':
  397. return '材料费'
  398. break
  399. case '16':
  400. return '特殊检查费'
  401. break
  402. case '17':
  403. return '特殊治疗费'
  404. break
  405. case '18':
  406. return '诊疗费(诊查费)'
  407. break
  408. case '19':
  409. return '护理费'
  410. break
  411. case '20':
  412. return '诊金'
  413. break
  414. case '21':
  415. return '检查费(CT)'
  416. break
  417. case '22':
  418. return '检查费(MRT)'
  419. break
  420. case '23':
  421. return '检查费(其他)'
  422. break
  423. case '24':
  424. return '特需服务费'
  425. break
  426. case '25':
  427. return '杂费'
  428. break
  429. case '26':
  430. return '挂号费'
  431. break
  432. case '99':
  433. return '诊疗费'
  434. break
  435. }
  436. },
  437. getChargePrint(record_date, patient_id, prescription_id) {
  438. var params = {
  439. record_date: record_date,
  440. patient_id: patient_id,
  441. prescription_id: prescription_id
  442. }
  443. console.log('params', params)
  444. getChargePrint(params).then(response => {
  445. if (response.data.state == 1) {
  446. var list = response.data.data.list
  447. console.log('list9999999999', list)
  448. this.list = list
  449. var prescription = response.data.data.prescription
  450. console.log('prescription', prescription)
  451. this.prescription = prescription
  452. var patient = response.data.data.patient
  453. console.log('patient', patient)
  454. this.patient = patient
  455. var histpatient = response.data.data.hisPatient
  456. console.log('hispatient', histpatient)
  457. }
  458. })
  459. },
  460. getTime(value, temp) {
  461. if (value != undefined) {
  462. return uParseTime(value, temp)
  463. }
  464. return ''
  465. }
  466. },
  467. mounted() {
  468. this.org_id = this.$store.getters.xt_user.org_id
  469. var record_date = this.paramsObj.record_date
  470. console.log('record_date', record_date)
  471. var patient_id = this.paramsObj.patient_id
  472. console.log('patient_id', patient_id)
  473. var prescription_id = this.paramsObj.prescription_id
  474. this.getChargePrint(record_date, patient_id, prescription_id)
  475. var xtuser = this.$store.getters.xt_user
  476. this.orgname = xtuser.org.org_name
  477. },
  478. watch: {
  479. paramsObj: {//深度监听,可监听到对象、数组的变化
  480. handler(val, oldVal) {
  481. this.paramsObj = val
  482. this.patient_id = this.paramsObj.patient_id
  483. var record_date = this.paramsObj.record
  484. this.record_date = record_date
  485. var prescription_id = this.paramsObj.prescription_id
  486. this.prescription_id = prescription_id
  487. },
  488. deep: true
  489. }
  490. }
  491. }
  492. </script>
  493. <style lang="scss" scoped>
  494. .prescription-print {
  495. -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 60px rgba(0, 0, 0, 0.06) inset;
  496. -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
  497. box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
  498. margin-bottom: 20px;
  499. padding: 20px 10px;
  500. }
  501. .printTitle {
  502. font-size: 22px;
  503. text-align: center;
  504. font-weight: bold;
  505. }
  506. .infoMain {
  507. display: flex;
  508. flex-wrap: wrap;
  509. padding: 0 10px;
  510. margin-top: 10px;
  511. }
  512. .infoMain .infoP {
  513. width: 33%;
  514. line-height: 24px;
  515. }
  516. .chargeBox {
  517. border: 1px solid #000;
  518. }
  519. .chargeUl {
  520. display: flex;
  521. justify-content: space-between;
  522. text-align: center;
  523. }
  524. .chargeUl p {
  525. height: 40px;
  526. line-height: 40px;
  527. }
  528. .chargeP {
  529. height: 40px;
  530. line-height: 40px;
  531. }
  532. .moneyBox {
  533. display: flex;
  534. justify-content: space-between;
  535. padding: 0 10px;
  536. background: #eee;
  537. height: 40px;
  538. align-items: center;
  539. border: 1px solid #000;
  540. border-top: none
  541. }
  542. .actionBar {
  543. display: flex;
  544. justify-content: space-between;
  545. line-height: 24px;
  546. padding: 0 10px;
  547. }
  548. .actionBar div {
  549. width: 150px;
  550. }
  551. table {
  552. td {
  553. padding: 10px 5px;
  554. }
  555. }
  556. </style>