stockFlow.vue 23KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687
  1. <template>
  2. <div class="main-contain">
  3. <div class="position">
  4. <bread-crumb :crumbs="crumbs"></bread-crumb>
  5. </div>
  6. <div class="app-container ">
  7. <div class="cell clearfix">
  8. 耗材名称:{{getGoodName(this.$route.query.id)}} &nbsp;
  9. 库存: {{this.$route.query.overCount}}{{packing_unit}} &nbsp;
  10. 规格:{{getSpecName(this.$route.query.id)}} &nbsp;
  11. 厂家:{{this.$route.query.manufacturer}}
  12. </div>
  13. <div class="cell clearfix">
  14. <span>日期查询:</span>
  15. <el-date-picker
  16. size="small"
  17. v-model="start_time"
  18. prefix-icon="el-icon-date"
  19. :editable="false"
  20. style="width: 196px;"
  21. type="date"
  22. placeholder="选择日期时间"
  23. align="right"
  24. format="yyyy-MM-dd"
  25. value-format="yyyy-MM-dd"
  26. @change="startTimeChange"
  27. ></el-date-picker>-
  28. <el-date-picker
  29. size="small"
  30. v-model="end_time"
  31. prefix-icon="el-icon-date"
  32. :editable="false"
  33. style="width: 196px;margin-right:10px;"
  34. type="date"
  35. placeholder="选择日期时间"
  36. align="right"
  37. format="yyyy-MM-dd"
  38. value-format="yyyy-MM-dd"
  39. @change="endTimeChange"
  40. ></el-date-picker>
  41. <span>出入库方式:</span>
  42. <el-select v-model="stock_type" style="width:160px;margin-right:10px;" placeholder="请选择" @change="changeDrug">
  43. <el-option
  44. v-for="(item,index) in stockType"
  45. :key="index"
  46. :label="item.name"
  47. :value="item.id">
  48. </el-option>
  49. </el-select>
  50. <span>
  51. <el-button type="primary" size="small" @click="toExprot">导出</el-button>
  52. <el-button type="primary" size="small" @click="toTongBu">同步</el-button>
  53. </span>
  54. </div>
  55. <el-table
  56. :data="tableList"
  57. border
  58. style="width: 100%">
  59. <el-table-column prop="date" label="序号" width="180" align="center">
  60. <template slot-scope="scope">
  61. {{scope.$index + 1}}
  62. </template>
  63. </el-table-column>
  64. <el-table-column prop="drug_type" label="出入库方式" width="180" align="center">
  65. <template slot-scope="scope">
  66. <span v-if="scope.row.consumable_type == 1">手动入库</span>
  67. <span v-if="scope.row.consumable_type == 2">手动出库</span>
  68. <span v-if="scope.row.consumable_type == 3">自动出库</span>
  69. <span v-if="scope.row.consumable_type == 4">手动退库</span>
  70. <span v-if="scope.row.consumable_type == 7">自动退库</span>
  71. <span v-if="scope.row.consumable_type == 10">盘盈</span>
  72. <span v-if="scope.row.consumable_type == 11">盘亏</span>
  73. <span v-if="scope.row.consumable_type == 12">调拨出库</span>
  74. <span v-if="scope.row.consumable_type == 13">调拨入库</span>
  75. <span v-if="scope.row.consumable_type == 15">结算出库</span>
  76. </template>
  77. </el-table-column>
  78. <el-table-column prop="drug_name" label="出/入库单据编码" align="center">
  79. <template slot-scope="scope">
  80. <span v-if="scope.row.consumable_type == 1">{{scope.row.warehousing_order}}</span>
  81. <span v-if="scope.row.consumable_type == 2">{{scope.row.warehouse_out_order_number}}</span>
  82. <span v-if="scope.row.consumable_type == 3">{{scope.row.warehouse_out_order_number}}</span>
  83. <span v-if="scope.row.consumable_type == 4 || scope.row.consumable_type == 7">{{scope.row.cancel_order_number}}</span>
  84. <span v-if="scope.row.consumable_type == 10">{{scope.row.warehouse_out_order_number}}</span>
  85. <span v-if="scope.row.consumable_type == 11">{{scope.row.warehouse_out_order_number}}</span>
  86. <span v-if="scope.row.consumable_type == 12">{{scope.row.warehouse_out_order_number}}</span>
  87. <span v-if="scope.row.consumable_type == 13">{{scope.row.warehousing_order}}</span>
  88. <span v-if="scope.row.consumable_type == 15">{{scope.row.warehouse_out_order_number}}</span>
  89. </template>
  90. </el-table-column>
  91. <el-table-column prop="drug_name" label="出库日期" align="center">
  92. <template slot-scope="scope">
  93. {{getTime(scope.row.ctime)}}
  94. </template>
  95. </el-table-column>
  96. <el-table-column prop="drug_name" label="操作日期" align="center">
  97. <template slot-scope="scope">
  98. {{getTime(scope.row.operate_time)}}
  99. </template>
  100. </el-table-column>
  101. <el-table-column prop="drug_name" label="仓库名称" align="center">
  102. <template slot-scope="scope">
  103. <span>{{getHouseName(scope.row.storehouse_id)}}</span>
  104. </template>
  105. </el-table-column>
  106. <el-table-column prop="drug_name" label="数量" align="center">
  107. <template slot-scope="scope">
  108. <span>{{scope.row.count}}{{packing_unit}}</span>
  109. </template>
  110. </el-table-column>
  111. <!-- <el-table-column label="批次" align="center">
  112. <template slot-scope="scope">
  113. <span>{{scope.row.number}}</span>
  114. </template>
  115. </el-table-column> -->
  116. <el-table-column prop="drug_name" label="单价" align="center">
  117. <template slot-scope="scope">
  118. <span v-if="scope.row.price >0">{{scope.row.price}}</span>
  119. <span v-if="scope.row.price == 0">{{good.packing_price}}</span>
  120. </template>
  121. </el-table-column>
  122. <el-table-column prop="drug_name" label="有效期" align="center">
  123. <template slot-scope="scope" >
  124. <span>{{getTime(scope.row.expire_date,"{y}-{h}-{d}")}}</span>
  125. </template>
  126. </el-table-column>
  127. <!-- <el-table-column prop="drug_name" label="批准文号" align="center">
  128. <template slot-scope="scope" >
  129. <span>{{scope.row.license_number}}</span>
  130. </template>
  131. </el-table-column> -->
  132. <el-table-column prop="drug_name" label="生产商" align="center">
  133. <template slot-scope="scope">
  134. <span > {{getManufacturer(scope.row.manufacturer)}}</span>
  135. </template>
  136. </el-table-column>
  137. <el-table-column prop="drug_name" label="使用人" align="center">
  138. <template slot-scope="scope">
  139. <span > {{getPatientName(scope.row.patient_id)}}</span>
  140. </template>
  141. </el-table-column>
  142. <el-table-column prop="drug_name" label="剩余库存" align="center">
  143. <template slot-scope="scope">
  144. <span > {{scope.row.over_count}}</span>
  145. </template>
  146. </el-table-column>
  147. <el-table-column prop="remark" label="备注" align="center">
  148. <template slot-scope="scope">
  149. <span > {{scope.row.remark}}</span>
  150. </template>
  151. </el-table-column>
  152. </el-table>
  153. <el-pagination
  154. @size-change="handleSizeChange"
  155. @current-change="handleCurrentChange"
  156. :page-sizes="[10, 50, 100,500,1000]"
  157. :page-size="10"
  158. background
  159. align="right"
  160. style="margin-top:20px;"
  161. layout="total, sizes, prev, pager, next, jumper"
  162. :total="total"
  163. >
  164. </el-pagination>
  165. </div>
  166. </div>
  167. </template>
  168. <script>
  169. import { uParseTime } from '@/utils/tools'
  170. import BreadCrumb from '@/xt_pages/components/bread-crumb'
  171. import {getStockDrugCount,getStockFlow,getStockFlowOrderList} from "@/api/stock"
  172. export default {
  173. name: 'stockIn',
  174. created() {
  175. var nowDate = new Date();
  176. var nowYear = nowDate.getFullYear();
  177. var nowMonth = nowDate.getMonth() + 1;
  178. var nowDay = nowDate.getDate();
  179. this.end_time =
  180. nowYear +
  181. "-" +
  182. (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
  183. "-" +
  184. (nowDay < 10 ? "0" + nowDay : nowDay);
  185. nowDate.setMonth(nowDate.getMonth() - 1);
  186. nowYear = nowDate.getFullYear();
  187. nowMonth = nowDate.getMonth() + 1;
  188. nowDay = nowDate.getDate();
  189. this.start_time =
  190. nowYear +
  191. "-" +
  192. (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
  193. "-" +
  194. (nowDay < 10 ? "0" + nowDay : nowDay);
  195. this.getStockFlow()
  196. this.packing_unit = this.$route.query.packing_unit
  197. },
  198. components: {
  199. BreadCrumb
  200. },
  201. data() {
  202. return {
  203. crumbs: [
  204. { path: false, name: '库存管理' },
  205. { path: '/stock/drugs/stock/query', name: '药品库存查询' },
  206. { path:'/drugstock/in/drugstockflow',name:'库存流水'}
  207. ],
  208. keywords: '',
  209. total: 0,
  210. multipleSelection: [],
  211. signAndWeighBoxPatients: 'sign-and-weigh-box-patients',
  212. start_time: '',
  213. end_time: '',
  214. page: 1,
  215. limit: 10,
  216. goodType: [],
  217. goodInfo: [],
  218. tempArr: [],
  219. sameRowArr: [],
  220. WarehouseInfo: {
  221. loading: false,
  222. warehouseInfoDate: []
  223. },
  224. tableData:[],
  225. drug_category:0,
  226. stock_type:0,
  227. drugCategory:[
  228. {id:0,name:"全部"}
  229. ],
  230. drugTypeList:[],
  231. tableList:[],
  232. manufacturerList:[],
  233. stockType:[
  234. {id:0,name:"全部"},
  235. {id:1,name:"手动入库"},
  236. {id:2,name:"手动出库"},
  237. {id:3,name:"自动出库"},
  238. {id:4,name:"手动退库"},
  239. {id:7,name:"自动退库"},
  240. {id:10,name:"盘盈"},
  241. {id:11,name:"盘亏"},
  242. {id:12,name:"调拨出库"},
  243. {id:13,name:"调拨入库"},
  244. {id:15,name:"结算出库"},
  245. ],
  246. countList:[],
  247. outCountList:[],
  248. autoCountList:[],
  249. keywords:"",
  250. obj:{},
  251. packing_unit:"",
  252. cancelCountList:[],
  253. good:{},
  254. houseList:[],
  255. patientList:[]
  256. }
  257. },
  258. methods:{
  259. handleSizeChange(val) {
  260. this.limit = val
  261. this.getStockFlow()
  262. },
  263. handleCurrentChange(val) {
  264. this.page = val
  265. this.getStockFlow()
  266. },
  267. startTimeChange: function(val) {
  268. this.tableList = []
  269. var time = this.getTimestamp(val) - this.getTimestamp(this.end_time);
  270. if (time > 0) {
  271. this.$message.error("开始时间不能大于结束时间");
  272. this.start_time = "";
  273. } else {
  274. this.getStockFlow()
  275. }
  276. },
  277. endTimeChange: function(val) {
  278. this.tableList = []
  279. var time = this.getTimestamp(val) - this.getTimestamp(this.start_time);
  280. if (time < 0) {
  281. this.$message.error("结束时间不能小于开始时间");
  282. this.end_time = "";
  283. } else {
  284. this.getStockFlow()
  285. }
  286. },
  287. getManufacturer(id){
  288. var name = ""
  289. for(let i=0;i<this.manufacturerList.length;i++){
  290. if(id == this.manufacturerList[i].id){
  291. name = this.manufacturerList[i].manufacturer_name
  292. }
  293. }
  294. return name
  295. },
  296. getTime(val) {
  297. if(val < 0){
  298. return ""
  299. }
  300. if(val == ""){
  301. return ""
  302. }else {
  303. return uParseTime(val, '{y}-{m}-{d}')
  304. }
  305. },
  306. //入库详情
  307. // getlist(){
  308. // var params= {
  309. // limit:this.limit,
  310. // page:this.page,
  311. // id:this.$route.query.id,
  312. // start_time:this.start_time,
  313. // end_time:this.end_time,
  314. // is_sys:this.stockType
  315. // }
  316. // getStockInList(params).then(response=>{
  317. // if(response.data.state == 1){
  318. // var list = response.data.data.list
  319. // for(let i=0;i<list.length;i++){
  320. // list[i].stock_way = 4
  321. // this.tableList.push(list[i])
  322. // }
  323. // var total = response.data.data.total
  324. // this.total = total
  325. // // console.log("入库数据",this.tableList)
  326. // var manufacturerList = response.data.data.manufacturerList
  327. // this.manufacturerList = manufacturerList
  328. // }
  329. // })
  330. // },
  331. // getStockOutList(){
  332. // var params= {
  333. // limit:this.limit,
  334. // page:this.page,
  335. // id:this.$route.query.id,
  336. // start_time:this.start_time,
  337. // end_time:this.end_time,
  338. // is_sys:this.stock_type
  339. // }
  340. // getStockOutList(params).then(response=>{
  341. // if(response.data.state == 1){
  342. // var outList = response.data.data.outList
  343. // console.log("outList990-0000990",outList)
  344. // for(let i=0;i<outList.length;i++){
  345. // if(outList[i].is_sys == 0){
  346. // outList[i].stock_way = 3
  347. // }
  348. // if(outList[i].is_sys == 1){
  349. // outList[i].stock_way = 2
  350. // }
  351. // this.tableList.push(outList[i])
  352. // }
  353. // console.log("hhhhhhhhhh",this.tableList)
  354. // var total = response.data.data.total
  355. // this.total = total
  356. // }
  357. // })
  358. // },
  359. getStockDrugCount(){
  360. var params ={
  361. keywords: this.keywords,
  362. start_time:this.start_time,
  363. end_time:this.end_time,
  364. }
  365. getStockDrugCount(params).then(response=>{
  366. if(response.data.state == 1){
  367. var count = response.data.data.count
  368. this.countList = count
  369. var outlist = response.data.data.outList
  370. this.outCountList = outlist
  371. var autoCount = response.data.data.autoCount
  372. this.autoCountList = autoCount
  373. var totalCount = response.data.data.totalCount
  374. this.cancelCountList = totalCount
  375. }
  376. })
  377. },
  378. getInCount(id){
  379. var count= ""
  380. for(let i=0;i<this.countList.length;i++){
  381. if(id == this.countList[i].good_id){
  382. count = this.countList[i].count
  383. }
  384. }
  385. return count
  386. },
  387. getOutCount(id){
  388. var count = ""
  389. for(let i=0;i<this.outCountList.length;i++){
  390. if(id == this.outCountList[i].good_id){
  391. count = this.outCountList[i].count
  392. }
  393. }
  394. return count
  395. },
  396. getAutoCount(id){
  397. var count= ""
  398. for(let i=0;i<this.autoCountList.length;i++){
  399. if(id == this.autoCountList[i].good_id){
  400. count = this.autoCountList[i].count
  401. }
  402. }
  403. return count
  404. },
  405. getCancelCount(id){
  406. var count = 0
  407. for(let i=0;i<this.cancelCountList.length;i++){
  408. if(id == this.cancelCountList[i].good_id){
  409. count = this.cancelCountList[i].count
  410. }
  411. }
  412. return count
  413. },
  414. getTimestamp(time) {
  415. // 把时间日期转成时间戳
  416. return new Date(time).getTime() / 1000;
  417. },
  418. changeDrug(val){
  419. this.tableList= []
  420. this.stock_type = val
  421. this.getStockFlow()
  422. },
  423. getStockCount(id){
  424. var stock_count = 0
  425. for(let i=0;i<this.countList.length;i++){
  426. if(id == this.countList[i].good_id){
  427. stock_count = this.countList[i].stock_count
  428. }
  429. }
  430. return stock_count
  431. },
  432. getStockFlow(){
  433. var params= {
  434. limit:this.limit,
  435. page:this.page,
  436. good_id:this.$route.query.id,
  437. start_time:this.start_time,
  438. end_time:this.end_time,
  439. is_sys:this.stock_type
  440. }
  441. getStockFlow(params).then(response=>{
  442. if(response.data.state == 1){
  443. var list = response.data.data.list
  444. var total = response.data.data.total
  445. this.tableList = list
  446. this.total = total
  447. this.good = response.data.data.good
  448. var manufacturerList = response.data.data.manufacturerList
  449. this.manufacturerList = manufacturerList
  450. this.houseList = response.data.data.houseList
  451. this.patientList = response.data.data.patients
  452. }
  453. })
  454. },
  455. getHouseName(id){
  456. var storehouse_name = ""
  457. for(let i=0;i<this.houseList.length;i++){
  458. if(id == this.houseList[i].id){
  459. storehouse_name = this.houseList[i].storehouse_name
  460. }
  461. }
  462. return storehouse_name
  463. },
  464. getGoodName(id){
  465. var good_name = ""
  466. if(id == this.good.id){
  467. good_name = this.good.good_name
  468. }
  469. return good_name
  470. },
  471. getSpecName(id){
  472. var specification_name = ""
  473. if(id == this.good.id){
  474. specification_name = this.good.specification_name
  475. }
  476. return specification_name
  477. },
  478. getPatientName(id){
  479. var name = ""
  480. for(let i=0;i<this.patientList.length;i++){
  481. if(id == this.patientList[i].id){
  482. name = this.patientList[i].name
  483. }
  484. }
  485. return name
  486. },
  487. toExprot(){
  488. import('@/vendor/Export2Excel').then(excel => {
  489. console.log("tableList",this.tableList)
  490. if(this.tableList!=null && this.tableList.length>0){
  491. for(let i=0;i<this.tableList.length;i++){
  492. this.tableList[i].index = i+1
  493. if(this.tableList[i].consumable_type == 1){
  494. this.tableList[i].consumable_type_name = "手动入库"
  495. }
  496. if(this.tableList[i].consumable_type == 2){
  497. this.tableList[i].consumable_type_name = "手动出库"
  498. }
  499. if(this.tableList[i].consumable_type == 3){
  500. this.tableList[i].consumable_type_name = "自动出库"
  501. }
  502. if(this.tableList[i].consumable_type == 4){
  503. this.tableList[i].consumable_type_name = "手动退库"
  504. }
  505. if(this.tableList[i].consumable_type == 7){
  506. this.tableList[i].consumable_type_name = "自动退库"
  507. }
  508. if(this.tableList[i].consumable_type == 10){
  509. this.tableList[i].consumable_type_name = "盘盈"
  510. }
  511. if(this.tableList[i].consumable_type == 11){
  512. this.tableList[i].consumable_type_name = "盘亏"
  513. }
  514. if(this.tableList[i].consumable_type == 12){
  515. this.tableList[i].consumable_type_name = "调拨出库"
  516. }
  517. if(this.tableList[i].consumable_type == 13){
  518. this.tableList[i].consumable_type_name = "调拨入库"
  519. }
  520. if(this.tableList[i].consumable_type == 15){
  521. this.tableList[i].consumable_type_name = "结算出库"
  522. }
  523. if(this.tableList[i].consumable_type == 1){
  524. this.tableList[i].order_number = this.tableList[i].warehousing_order
  525. }
  526. if(this.tableList[i].consumable_type == 2){
  527. this.tableList[i].order_number = this.tableList[i].warehouse_out_order_number
  528. }
  529. if(this.tableList[i].consumable_type == 3){
  530. this.tableList[i].order_number = this.tableList[i].warehouse_out_order_number
  531. }
  532. if(this.tableList[i].consumable_type == 5){
  533. this.tableList[i].order_number = this.tableList[i].warehouse_out_order_number
  534. }
  535. if(this.tableList[i].consumable_type == 12){
  536. this.tableList[i].order_number = this.tableList[i].warehouse_out_order_number
  537. }
  538. if(this.tableList[i].consumable_type == 15){
  539. this.tableList[i].order_number = this.tableList[i].warehouse_out_order_number
  540. }
  541. if(this.tableList[i].consumable_type == 4 || this.tableList[i].consumable_type == 7){
  542. this.tableList[i].order_number = this.tableList[i].cancel_order_number
  543. }
  544. if(this.tableList[i].consumable_type == 7){
  545. this.tableList[i].order_number = this.tableList[i].cancel_order_number
  546. }
  547. if(this.tableList[i].consumable_type == 11|| this.tableList[i].consumable_type == 13 ||this.tableList[i].consumable_type == 10 ){
  548. this.tableList[i].warehousing_order = this.tableList[i].warehousing_order
  549. }
  550. this.tableList[i].record_time = this.getTime(this.tableList[i].ctime)
  551. this.tableList[i].storehouse_name = this.getHouseName(this.tableList[i].storehouse_id)
  552. this.tableList[i].coutn_unit = (this.tableList[i].count.toString()) +this.packing_unit
  553. if(this.tableList[i].price>0){
  554. this.tableList[i].total_price = this.tableList[i].price
  555. }
  556. if(this.tableList[i].price == 0){
  557. this.tableList[i].total_price = this.tableList[i].packing_price
  558. }
  559. this.tableList[i].expire_date_name = this.getTime(this.tableList[i].expire_date,"{y}-{h}-{d}")
  560. this.tableList[i].manufacturer_name = this.getManufacturer( this.tableList[i].manufacturer)
  561. this.tableList[i].patient_name = this.getPatientName(this.tableList[i].patient_id)
  562. }
  563. }
  564. const multiHeader =['序号','出入库方式','出入库单据编码','操作日期','仓库名称','数量','单价','有效期','生产商','使用人','剩余库存']
  565. const filterVal = ['index', 'consumable_type_name', 'order_number', 'record_time', 'storehouse_name', 'coutn_unit', 'total_price', 'expire_date_name','manufacturer_name','patient_name','over_count']
  566. const data = this.formatJson(filterVal, this.tableList)
  567. console.log("datawoowow",data)
  568. excel.export_json_to_excel({
  569. header: multiHeader,
  570. data,
  571. filename: '耗材流水'
  572. })
  573. })
  574. },
  575. formatJson(filterVal, jsonData) {
  576. return jsonData.map(v => filterVal.map(j => v[j]))
  577. },
  578. toTongBu(){
  579. var params = {
  580. good_id:this.$route.query.id,
  581. }
  582. getStockFlowOrderList(params).then(response=>{
  583. })
  584. }
  585. }
  586. }
  587. </script>
  588. <style rel="stylesheet/css" lang="scss" scoped>
  589. .information {
  590. border: 1px #dcdfe6 solid;
  591. padding: 30px 20px 30px 20px;
  592. .border {
  593. border-bottom: 1px #dcdfe6 solid;
  594. margin: 0px 0 20px 0;
  595. }
  596. }
  597. .title {
  598. background: #409eff;
  599. height: 44px;
  600. line-height: 44px;
  601. padding: 0 0 0 10px;
  602. color: #fff;
  603. margin: 0 0 10px 0;
  604. }
  605. .edit_separater {
  606. border-top: 1px solid rgb(233, 233, 233);
  607. margin-top: 15px;
  608. margin-bottom: 15px;
  609. }
  610. </style>
  611. <style>
  612. .sign-and-weigh-box .sign-and-weigh-box-patients .cell {
  613. font-size: 12px;
  614. }
  615. .sign-and-weigh-box .sign-and-weigh-box-patients .current-row > td {
  616. background: #6fb5fa;
  617. }
  618. .count {
  619. color: #bd2c00;
  620. }
  621. .el-table td,
  622. .el-table th.is-leaf,
  623. .el-table--border,
  624. .el-table--group {
  625. border-color: #d0d3da;
  626. }
  627. .el-table--border::after,
  628. .el-table--group::after,
  629. .el-table::before {
  630. background-color: #d0d3da;
  631. }
  632. </style>