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

statementPrint.vue 24KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692
  1. <template>
  2. <div>
  3. <template>
  4. <el-button
  5. style="position:fixed;right:25px;z-index:999"
  6. :loading="loading"
  7. size="small"
  8. icon="el-icon-printer"
  9. @click="printThisPage"
  10. type="primary"
  11. >打印</el-button
  12. >
  13. </template>
  14. <div class='dialysisPage' style="padding-top:40px;">
  15. <div v-if="org_id == 9990 || org_id == 10138 || org_id == 9504">
  16. <printTwo :info="info" v-if="org_id == 9990"></printTwo>
  17. <printThree :info="info" :paramsObj="paramsObj" :balanceAccounts="balanceAccounts" v-if="org_id == 10138"></printThree>
  18. <printFour v-if="org_id == 9504" :info="info"></printFour>
  19. </div>
  20. <printOne :info="info" v-else></printOne>
  21. </div>
  22. </div>
  23. </template>
  24. <script>
  25. import { parseTime } from "@/utils";
  26. import { getDialysisRecord } from "@/api/dialysis";
  27. import { getDataConfig } from "@/utils/data";
  28. import { jsGetAge, uParseTime } from "@/utils/tools";
  29. import axios from 'axios'
  30. import BreadCrumb from "@/xt_pages/components/bread-crumb";
  31. import print from "print-js";
  32. import printOne from "./statementTemplate/printOne"
  33. import printTwo from "./statementTemplate/printTwo"
  34. import printThree from "./statementTemplate/printThree"
  35. import printFour from "./statementTemplate/printFour"
  36. import { getAllDoctorList,getAllHisPatientList,getPrescriptionPrint } from "@/api/project/project"
  37. import { getPrivateExpenses } from '@/api/his/his'
  38. export default {
  39. name: "dialysisPrintOrder",
  40. components: {
  41. BreadCrumb,
  42. printOne,
  43. printTwo,
  44. printThree,
  45. printFour
  46. },
  47. props:{
  48. paramsObj:Object
  49. },
  50. data() {
  51. return {
  52. crumbs: [
  53. { path: false, name: '门诊医生站' },
  54. { path: false, name: '打印' }
  55. ],
  56. record_date:"",
  57. patientTableData:[],
  58. advicePrint:[],
  59. hisPatient:{},
  60. patient:{},
  61. search_input:"",
  62. loading:false,
  63. patient_id:0,
  64. prescription_id:0,
  65. ids:'',
  66. info:null,
  67. org_id:"",
  68. balanceAccounts:{},
  69. };
  70. },
  71. methods:{
  72. printThisPage() {
  73. var ptime = Math.round(new Date().getTime() / 1000);
  74. this.print_time = uParseTime(ptime, "{y}-{m}-{d} {h}:{i}");
  75. if(this.$store.getters.xt_user.org_id == 10138){
  76. setTimeout(() => {
  77. const style =
  78. '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 47%;}}}';
  79. const style2 =
  80. '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 50%;}}}';
  81. const style3 =
  82. '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 55%;}}}';
  83. const style4 =
  84. '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 58%;}}}';
  85. const style5 =
  86. '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 61%;}}}';
  87. const style6 =
  88. '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 66%;}}}';
  89. const style7 =
  90. '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 71%;}}}';
  91. const style8 =
  92. '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 75%;}}}';
  93. const style9 =
  94. '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 80%;}}}';
  95. const style10 =
  96. '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 85%;}}}';
  97. const style11 =
  98. '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 87%;}}}';
  99. const style12 =
  100. '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 89%;}}}';
  101. if(this.num >= 13){
  102. printJS({
  103. printable: "prescription-print",
  104. type: "html",
  105. style: style,
  106. scanStyles: false
  107. });
  108. }else if(this.num == 12){
  109. printJS({
  110. printable: "prescription-print",
  111. type: "html",
  112. style: style2,
  113. scanStyles: false
  114. });
  115. }else if(this.num == 11){
  116. printJS({
  117. printable: "prescription-print",
  118. type: "html",
  119. style: style3,
  120. scanStyles: false
  121. });
  122. }else if(this.num == 10){
  123. printJS({
  124. printable: "prescription-print",
  125. type: "html",
  126. style: style4,
  127. scanStyles: false
  128. });
  129. }else if(this.num == 9){
  130. printJS({
  131. printable: "prescription-print",
  132. type: "html",
  133. style: style5,
  134. scanStyles: false
  135. });
  136. }else if(this.num == 8){
  137. printJS({
  138. printable: "prescription-print",
  139. type: "html",
  140. style: style6,
  141. scanStyles: false
  142. });
  143. }else if(this.num == 7){
  144. printJS({
  145. printable: "prescription-print",
  146. type: "html",
  147. style: style7,
  148. scanStyles: false
  149. });
  150. }else if(this.num == 6){
  151. printJS({
  152. printable: "prescription-print",
  153. type: "html",
  154. style: style8,
  155. scanStyles: false
  156. });
  157. }else if(this.num == 5){
  158. printJS({
  159. printable: "prescription-print",
  160. type: "html",
  161. style: style9,
  162. scanStyles: false
  163. });
  164. }else if(this.num == 4){
  165. printJS({
  166. printable: "prescription-print",
  167. type: "html",
  168. style: style10,
  169. scanStyles: false
  170. });
  171. }else if(this.num == 3){
  172. printJS({
  173. printable: "prescription-print",
  174. type: "html",
  175. style: style11,
  176. scanStyles: false
  177. });
  178. }else if(this.num <= 2){
  179. printJS({
  180. printable: "prescription-print",
  181. type: "html",
  182. style: style12,
  183. scanStyles: false
  184. });
  185. }
  186. },500)
  187. }else if(this.$store.getters.xt_user.org_id == 9504){
  188. const style =
  189. '@media print {.printTitle{font-size: 20px;text-align: center;font-weight: bold;}.infoMain{display: flex;flex-wrap: wrap;padding:0 10px;margin-top:10px;font-size:12px;}.infoMain .infoP{width: 33%;}.chargeBox{border: 1px solid #000;font-size:12px;}.chargeUl{display:flex;justify-content: space-between;text-align: center;}.chargeUl p{line-height: 1px;}.chargeP{line-height: 1px;padding-bottom:16px;}.moneyBox{display: flex;justify-content: space-between;padding: 0 10px;background: #eeeeee;-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact;print-color-adjust:exact;height: 40px;align-items: center;border:1px solid #000; border-top:none;font-size:12px;}.actionBar{display: flex;justify-content: space-between; line-height: 24px;padding:0 10px;font-size:12px;}.actionBar div{width:150px;}}';
  190. printJS({
  191. printable: "prescription-print",
  192. type: "html",
  193. style: style,
  194. scanStyles: false
  195. });
  196. }else{
  197. const style =
  198. '@media print {.statementTitle{font-size: 28px;text-align: center;font-weight: bold;margin-bottom: 10px;}.statementTable{width: 100%;text-align: center;border-collapse: collapse;line-height: 40px;font-size: 16px;border-color: #000;}}';
  199. printJS({
  200. printable: "statement-print",
  201. type: "html",
  202. style: style,
  203. scanStyles: false
  204. });
  205. }
  206. // if (this.org_template_info.template_id == 1) {
  207. // printJS({
  208. // printable: "dialysis-print-box",
  209. // type: "html",
  210. // style: style,
  211. // scanStyles: false
  212. // });
  213. // }
  214. },
  215. getAllDoctorList(){
  216. getAllDoctorList().then(response=>{
  217. if(response.data.state == 1){
  218. var doctor = response.data.data.doctor;
  219. this.doctorList = doctor
  220. }
  221. })
  222. },
  223. getAllHisPatientList(){
  224. const params = {
  225. record_date:this.record_date
  226. };
  227. getAllHisPatientList(params).then(response=>{
  228. if(response.data.state == 1){
  229. this.patientTableData = response.data.data.list;
  230. this.patientTableDataTwo = response.data.data.list;
  231. console.log('222', this.patientTableData);
  232. let cal_one = 0;
  233. let cal_two = 0;
  234. for (let i = 0; i < response.data.data.list.length; i++) {
  235. if (response.data.data.list[i].prescription == null || response.data.data.list[i].prescription.length == 0) {
  236. cal_one = cal_one + 1
  237. }
  238. if (response.data.data.list[i].prescription != null && response.data.data.list[i].prescription.length > 0) {
  239. cal_two = cal_two + 1
  240. }
  241. }
  242. // this.$refs.tab.setCurrentRow(this.patientTableData[0])
  243. // console.log(this.patientTableData[0])
  244. // this.choosePatient(this.patientTableData[0])
  245. this.cal_one = cal_one;
  246. this.cal_two = cal_two
  247. }
  248. })
  249. },
  250. changePatient(row){
  251. console.log("row",row);
  252. this.patient_id = row.patient_id;
  253. this.record_date = this.record_date;
  254. this.prescription_id = this.prescription_id
  255. // var params = {
  256. // patient_id:row.patient_id,
  257. // record_date:this.record_date,
  258. // prescription_id:this.prescription_id,
  259. // }
  260. // getPrescriptionPrint(params).then(response=>{
  261. // if(response.data.state == 1){
  262. // var advicePrint = response.data.data.advicePrint
  263. // console.log("adviceprint",advicePrint)
  264. // this.advicePrint = advicePrint
  265. // // var hisPatient = response.data.data.hisPatient
  266. // // console.log("hispatient",hisPatient)
  267. // // this.hisPatient = hisPatient
  268. // var patient = response.data.data.patient
  269. // console.log("patient",patient)
  270. // this.patient = patient
  271. // var doctorPorject = response.data.data.doctorPorject
  272. // console.log("doctorporject",doctorPorject)
  273. // }
  274. // })
  275. }, getTimes(time) {
  276. return uParseTime(time, '{y}-{m}-{d}')
  277. },
  278. searchAction(){
  279. },
  280. getInfo(order_id,obj) {
  281. if (obj.balance_accounts_type == 2){
  282. let params = {
  283. his_patient_id: obj.his_patient_id,
  284. id: obj.order_id,
  285. }
  286. getPrivateExpenses(params).then(response => {
  287. if (response.data.state == 0) {
  288. // this.$message.error(response.data.msg)
  289. return false
  290. } else {
  291. this.balanceAccounts = response.data.data
  292. let arr = []
  293. let obj = {
  294. type:1,
  295. details: [],
  296. total: 0
  297. }
  298. let obj2 = {
  299. type:2,
  300. details: [],
  301. total: 0
  302. }
  303. let obj3 = {
  304. type:3,
  305. details: [],
  306. total: 0
  307. }
  308. let num = 0
  309. this.balanceAccounts.order_info.map(item => {
  310. if(item.advice_id > 0){
  311. obj.details.push(item)
  312. obj.total += (item.pric * item.advice.prescribing_number)
  313. num++
  314. }else{
  315. if(item.project.type == 2){
  316. obj2.details.push(item)
  317. obj2.total += (item.pric * item.project.count)
  318. num++
  319. }else{
  320. obj3.details.push(item)
  321. obj3.total += (item.pric * item.project.count)
  322. num++
  323. }
  324. }
  325. })
  326. this.balanceAccounts.new_detail_list = []
  327. this.balanceAccounts.new_detail_list.push(obj)
  328. this.balanceAccounts.new_detail_list.push(obj2)
  329. this.balanceAccounts.new_detail_list.push(obj3)
  330. console.log(111,this.balanceAccounts)
  331. this.num = num
  332. console.log('this.num',this.num)
  333. }
  334. })
  335. }else if (this.$store.getters.xt_user.org_id == 3877 || this.$store.getters.xt_user.org_id == 9919 || this.$store.getters.xt_user.org_id == 9671 || this.$store.getters.xt_user.org_id == 9674 || this.$store.getters.xt_user.org_id == 10106 || this.$store.getters.xt_user.org_id == 4 || this.$store.getters.xt_user.org_id == 9990) {
  336. var that = this;
  337. axios.get('http://127.0.0.1:9532/api/settle/query', {
  338. params: {
  339. order_id: order_id,
  340. admin_user_id:this.$store.getters.xt_user.user.id,
  341. }
  342. })
  343. .then(function (response) {
  344. if (response.data.state == 0) {
  345. this.$message.error(response.data.msg);
  346. return false
  347. } else {
  348. console.log("logloglog");
  349. console.log(response.data.data.info);
  350. that.info = response.data.data.info;
  351. console.log(that.info);
  352. that.p_admin = response.data.data.printor_admin;
  353. that.charge_admin = response.data.data.charge_admin;
  354. that.info['p_admin'] = that.p_admin;
  355. that.info['charge_admin'] = that.charge_admin;
  356. that.info['order_number'] = response.data.data.order_number;
  357. that.info['patient'] = response.data.data.patient;
  358. that.info['date'] = response.data.data.date;
  359. that.info['number'] = response.data.data.number;
  360. that.info['order_infos'] = response.data.data.order_infos;
  361. that.info['diagnosis'] = response.data.data.diagnosis;
  362. that.info['org_code'] = response.data.data.org_code;
  363. that.info['org_name'] = response.data.data.org_name;
  364. that.info['doctor_code'] = response.data.data.doctor_code;
  365. that.info['department'] = response.data.data.department;
  366. that.info['health_card_no'] = response.data.data.health_card_no;
  367. that.info['bed_cost_total'] = response.data.data.bedCostTotal;
  368. that.info['bed_cost_self_total'] = response.data.data.bedCostSelfTotal;
  369. that.info['bed_cost_part_self_total'] = response.data.data.bedCostPartSelfTotal;
  370. that.info['operation_cost_total'] = response.data.data.operationCostTotal;
  371. that.info['operation_cost_self_total'] = response.data.data.operationCostSelfTotal;
  372. that.info['operation_cost_part_self_total'] = response.data.data.operationCostPartSelfTotal;
  373. that.info['other_cost_total'] = response.data.data.otherCostTotal;
  374. that.info['other_cost_self_total'] = response.data.data.otherCostSelfTotal;
  375. that.info['other_cost_part_self_total'] = response.data.data.otherCostPartSelfTotal;
  376. that.info['material_cost_total'] = response.data.data.materialCostTotal;
  377. that.info['material_cost_self_total'] = response.data.data.materialCostSelfTotal;
  378. that.info['material_cost_part_self_total'] = response.data.data.materialCostPartSelfTotal;
  379. that.info['western_medicine_cost_total'] = response.data.data.westernMedicineCostTotal;
  380. that.info['western_medicine_cost_self_total'] = response.data.data.westernMedicineCostSelfTotal;
  381. that.info['western_medicine_cost_part_self_total'] = response.data.data.westernMedicineCostPartSelfTotal;
  382. that.info['chinese_traditional_medicine_cost_total'] = response.data.data.chineseTraditionalMedicineCostTotal;
  383. that.info['chinese_traditional_medicine_cost_self_total'] = response.data.data.chineseTraditionalMedicineCostSelfTotal;
  384. that.info['chinese_traditional_medicine_cost_part_self_total'] = response.data.data.chineseTraditionalMedicineCostPartSelfTotal;
  385. that.info['check_cost_total'] = response.data.data.checkCostTotal;
  386. that.info['check_cost_self_total'] = response.data.data.checkCostSelfTotal;
  387. that.info['check_cost_part_self_total'] = response.data.data.checkCostPartSelfTotal;
  388. that.info['laboratory_cost_total'] = response.data.data.laboratoryCostTotal;
  389. that.info['laboratory_cost_self_total'] = response.data.data.laboratoryCostSelfTotal;
  390. that.info['laboratory_cost_part_self_total'] = response.data.data.laboratoryCostPartSelfTotal;
  391. that.info['treat_cost_total'] = response.data.data.treatCostTotal;
  392. that.info['treat_cost_self_total'] = response.data.data.treatCostSelfTotal;
  393. that.info['treat_cost_part_self_total'] = response.data.data.treatCostPartSelfTotal;
  394. that.info['date'] = response.data.data.date;
  395. that.info['number'] = response.data.data.number;
  396. that.info['order_infos'] = response.data.data.order_infos;
  397. that.info['diagnosis'] = response.data.data.diagnosis
  398. let obj = {
  399. type:1,
  400. details: [],
  401. total: 0
  402. }
  403. let obj2 = {
  404. type:2,
  405. details: [],
  406. total: 0
  407. }
  408. let obj3 = {
  409. type:3,
  410. details: [],
  411. total: 0
  412. }
  413. let num = 0
  414. that.info.order_infos.map(item => {
  415. if(item.advice_id > 0){
  416. obj.details.push(item)
  417. obj.total += (item.pric * item.advice.prescribing_number)
  418. num++
  419. }else{
  420. if(item.project.type == 2){
  421. obj2.details.push(item)
  422. obj2.total += (item.pric * item.project.count)
  423. num++
  424. }else{
  425. obj3.details.push(item)
  426. obj3.total += (item.pric * item.project.count)
  427. num++
  428. }
  429. }
  430. })
  431. that.info.new_detail_list = []
  432. that.info.new_detail_list.push(obj)
  433. that.info.new_detail_list.push(obj2)
  434. that.info.new_detail_list.push(obj3)
  435. console.log('123',that.info.new_detail_list)
  436. that.num = num
  437. if(that.paramsObj.settle_type != 1){
  438. that.info.begndate = that.getTimes(that.paramsObj.start_time)
  439. that.info.enddate = that.getTimes(that.paramsObj.end_time)
  440. }
  441. }
  442. })
  443. .catch(function (error) {
  444. });
  445. }
  446. }
  447. },
  448. created() {
  449. this.getInfo(this.paramsObj.order_id,this.paramsObj);
  450. this.org_id = this.$store.getters.xt_user.org_id;
  451. console.log("this.org_id",this.org_id)
  452. },
  453. watch:{
  454. paramsObj:{//深度监听,可监听到对象、数组的变化
  455. handler(val, oldVal){
  456. this.paramsObj = val;
  457. this.getInfo(this.paramsObj.order_id,this.paramsObj)
  458. },
  459. deep:true
  460. }
  461. }
  462. };
  463. </script>
  464. <style>
  465. .dialysis-print-order {
  466. width: 960px;
  467. margin: 0 auto;
  468. }
  469. .dialysis-print-order .order-yy-name {
  470. margin: auto;
  471. text-align: center;
  472. font-size: 20px;
  473. letter-spacing: 5px;
  474. }
  475. .dialysis-print-order .order-title {
  476. margin: auto;
  477. font-weight: 600;
  478. text-align: center;
  479. font-size: 22px;
  480. padding: 10px;
  481. }
  482. .dialysis-print-order .table-box {
  483. width: 100%;
  484. line-height: 23px;
  485. font-size: 14px;
  486. }
  487. .dialysis-print-order .print-table {
  488. width: 100%;
  489. text-align: center;
  490. border-collapse: collapse;
  491. line-height: 40px;
  492. font-size: 14px;
  493. border-color: #000;
  494. }
  495. .dialysis-print-order .print-table-no {
  496. width: 100%;
  497. text-align: center;
  498. border-collapse: collapse;
  499. font-size: 14px;
  500. }
  501. .dialysis-print-order .under-line {
  502. border-bottom: 1px solid #999;
  503. width: 95%;
  504. text-align: center;
  505. margin-left: 2px;
  506. }
  507. .dialysis-print-order .title-box {
  508. text-align: center;
  509. font-size: 16px;
  510. }
  511. .dialysis-print-order .radio-lebel-box {
  512. font-weight: 400;
  513. cursor: pointer;
  514. }
  515. .dialysis-print-order .radio-no {
  516. opacity: 0;
  517. outline: none;
  518. position: absolute;
  519. margin: 0;
  520. width: 0;
  521. height: 0;
  522. z-index: -1;
  523. }
  524. .dialysis-print-order .radio-inner {
  525. white-space: nowrap;
  526. cursor: pointer;
  527. outline: none;
  528. display: inline-block;
  529. line-height: 1;
  530. position: relative;
  531. vertical-align: middle;
  532. }
  533. .dialysis-print-order .radio-fang {
  534. display: inline-block;
  535. position: relative;
  536. border: 1px solid #000;
  537. box-sizing: border-box;
  538. width: 14px;
  539. height: 14px;
  540. background-color: #fff;
  541. z-index: 1;
  542. transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46),
  543. background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46);
  544. }
  545. .dialysis-print-order .is-checked-radio::after {
  546. content: "√";
  547. font-size: 15px;
  548. }
  549. .dialysis-print-order .print-table-no tr td {
  550. padding: 8px 5px;
  551. line-height: 25px;
  552. }
  553. .dialysis-print-order .print-table tr td {
  554. padding: 1px 1px;
  555. /*line-height: 25px;*/
  556. }
  557. .es-img {
  558. height: 30px;
  559. }
  560. .advice-name {
  561. text-align: left;
  562. }
  563. .advice-children {
  564. display: flex;
  565. }
  566. .title-box-pro {
  567. border: 0 #fff;
  568. line-height: 25px;
  569. height: 25px;
  570. text-align: left;
  571. padding-left: 10px !important;
  572. }
  573. .title-box-pro-tr {
  574. border: 0 #fff;
  575. }
  576. .text-align-left {
  577. text-align: left !important;
  578. padding-left: 10px !important;
  579. font-size: 14px !important;
  580. line-height: 25px;
  581. }
  582. .print-table-tr-new td {
  583. line-height: 20px !important;
  584. }
  585. .border-top-solid {
  586. border: solid 1px #000;
  587. }
  588. .print-template-two tr {
  589. line-height: 30px;
  590. }
  591. .table-box1 {
  592. border: 1px solid #000;
  593. width: 100%;
  594. line-height: 30px;
  595. font-size: 14px;
  596. border-collapse: collapse;
  597. }
  598. .table-box1 tr {
  599. border-bottom: 1px solid #000;
  600. }
  601. </style>
  602. <style lang="scss">
  603. .newContainer{
  604. .dialysisPage::-webkit-scrollbar {
  605. height: 15px;
  606. }
  607. .el-date-editor{
  608. .el-input__inner{
  609. padding-right:0px;
  610. }
  611. }
  612. .el-table td, .el-table th{
  613. text-align: center;
  614. }
  615. }
  616. .newContainer::-webkit-scrollbar{
  617. height: 15px !important;
  618. }
  619. </style>