goodNewQuery.vue 43KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377
  1. <template>
  2. <div class="main-contain">
  3. <div class="app-container" style="padding-left:0px;margin: 0px;"
  4. v-loading="loading"
  5. element-loading-text="拼命加载中">
  6. <div style="justify-content: space-between;margin: 0px 0 12px 0;display: flex;align-items: center;">
  7. <div>
  8. <span style="font-size:14px;color:#606266">仓库:</span>
  9. <el-select v-model="storehouse_id" style="width:200px;margin-right:10px;" placeholder="请选择"
  10. filterable
  11. @change="changeStorehouseName">
  12. <el-option
  13. v-for="item in houseList"
  14. :key="item.id"
  15. :label="item.storehouse_name"
  16. :value="item.id">
  17. </el-option>
  18. </el-select>
  19. <span style="font-size:14px;color:#606266">库存预警:</span>
  20. <el-select v-model="good_type" style="width:250px;margin-right:10px;" placeholder="请选择"
  21. filterable
  22. @change="changeGoodName">
  23. <el-option
  24. v-for="item in goodList"
  25. :key="item.id"
  26. :label="item.name"
  27. :value="item.id">
  28. </el-option>
  29. </el-select>
  30. <el-input v-model="keyword" style="width:200px" placeholder="请输入耗材名称或生产厂商" ></el-input>
  31. <el-button type="primary" icon="el-icon-search" @click="seach">搜索</el-button>
  32. </div>
  33. <div>
  34. <!-- <el-button size="small" type="primary" @click="toClickTwo">脚本</el-button> -->
  35. <el-button size="small" type="primary" @click="exportList">导出</el-button>
  36. <el-button size="small" type="primary" @click="toPrint">打印</el-button>
  37. </div>
  38. </div>
  39. <el-table
  40. :row-style="{ color: '#303133' }"
  41. :header-cell-style="{
  42. backgroundColor: 'rgb(245, 247, 250)',
  43. color: '#606266'
  44. }"
  45. :data="tableList"
  46. :class="signAndWeighBoxPatients"
  47. border
  48. :cell-class-name="cellStyle"
  49. >
  50. <el-table-column label="耗材编码" align="center" v-if="org_id ==9956 || org_id == 0">
  51. <template slot-scope="scope">
  52. {{ scope.row.good_number?scope.row.good_number:"" }}
  53. </template>
  54. </el-table-column>
  55. <el-table-column label="医保等级" align="center" v-if="org_id ==10697 || org_id == 0">
  56. <template slot-scope="scope">
  57. <span>{{getMedicalInsuranceLeve(scope.row.medical_insurance_level)?getMedicalInsuranceLeve(scope.row.medical_insurance_level):"" }}</span>
  58. </template>
  59. </el-table-column>
  60. <el-table-column label="耗材类型" align="center">
  61. <template slot-scope="scope">
  62. {{getGoodTypeName(scope.row.good_type_id)}}
  63. </template>
  64. </el-table-column>
  65. <el-table-column label="耗材名称" align="center">
  66. <template slot-scope="scope">
  67. {{scope.row.good_name}}
  68. </template>
  69. </el-table-column>
  70. <el-table-column label="规格&单位" align="center">
  71. <template slot-scope="scope">
  72. {{scope.row.specification_name}}/{{scope.row.packing_unit}}
  73. </template>
  74. </el-table-column>
  75. <el-table-column label="生产厂商" align="center" v-if="org_id!=10679">
  76. <template slot-scope="scope">
  77. {{getManufacturName(scope.row.manufacturer)}}
  78. </template>
  79. </el-table-column>
  80. <el-table-column label="经销商" align="center" v-if="org_id ==10485">
  81. <template slot-scope="scope">
  82. {{getDearName(scope.row.dealer)}}
  83. </template>
  84. </el-table-column>
  85. <el-table-column label="批准文号" align="center">
  86. <template slot-scope="scope">
  87. {{scope.row.number}}
  88. </template>
  89. </el-table-column>
  90. <el-table-column label="国家编码" align="center">
  91. <template slot-scope="scope">
  92. {{scope.row.social_security_directory_code}}
  93. </template>
  94. </el-table-column>
  95. <el-table-column label="仓库名称" align="center">
  96. <template slot-scope="scope">
  97. <tr style="background: none" v-for="(item,index) in scope.row.xt_good_stock_info" :key="index">
  98. <td style="border-right: none; border-inline-end: none;text-align: center" >
  99. {{getHouseName(item.storehouse_id)}}
  100. </td>
  101. </tr>
  102. </template>
  103. </el-table-column>
  104. <el-table-column label="入库数量" align="center">
  105. <template slot-scope="scope">
  106. <tr style="background: none" v-for="(item,index) in scope.row.xt_good_stock_info" :key="index">
  107. <td style="border-right: none; border-inline-end: none;text-align: center">
  108. {{getGoodIn(scope.row.xt_good_stock,item.storehouse_id)}}
  109. </td>
  110. </tr>
  111. </template>
  112. </el-table-column>
  113. <el-table-column label="出库数量" align="center">
  114. <template slot-scope="scope">
  115. <span>
  116. <tr style="background: none" v-for="(item,index) in scope.row.xt_good_stock_info" :key="index">
  117. <td style="border-right: none; border-inline-end: none;text-align: center">
  118. <span>
  119. {{getGoodAct(scope.row.xt_good_stock,item.storehouse_id)}}
  120. </span>
  121. </td>
  122. </tr>
  123. </span>
  124. </template>
  125. </el-table-column>
  126. <el-table-column label="退库数量" align="center">
  127. <template slot-scope="scope">
  128. <tr style="background: none" v-for="(item,index) in scope.row.xt_good_stock_info" :key="index">
  129. <td style="border-right: none; border-inline-end: none;text-align: center">
  130. {{getGoodCancel(scope.row.xt_good_stock,item.storehouse_id)}}
  131. </td>
  132. </tr>
  133. </template>
  134. </el-table-column>
  135. <el-table-column label="实际出库" align="center">
  136. <template slot-scope="scope">
  137. <span>
  138. <tr style="background: none" v-for="(item,index) in scope.row.xt_good_stock_info" :key="index">
  139. <td style="border-right: none; border-inline-end: none;text-align: center">
  140. <span style="color:#0099FF" @click="toDialogClick(scope.row.id,scope.row.good_name,scope.row.specification_name,item.storehouse_id)">
  141. {{getGoodOut(scope.row.xt_good_stock,item.storehouse_id)}}
  142. </span>
  143. </td>
  144. </tr>
  145. </span>
  146. </template>
  147. </el-table-column>
  148. <el-table-column label="剩余库存" align="center">
  149. <template slot-scope="scope">
  150. <span>
  151. <tr style="background: none" v-for="(item,index) in scope.row.xt_good_stock_info" :key="index">
  152. <td style="border-right: none; border-inline-end: none;text-align: center">
  153. {{getGoodFlush(scope.row.xt_good_stock,item.storehouse_id)}}
  154. </td>
  155. </tr>
  156. </span>
  157. </template>
  158. </el-table-column>
  159. <el-table-column label="总库存量" align="center">
  160. <template slot-scope="scope">
  161. <span>
  162. <span v-if="getOverFlushInfo(scope.row.xt_warehouse_info) <= scope.row.stock_warn_count" style="color:red">
  163. {{getSumCount(scope.row.xt_good_stock,scope.row.id)}}
  164. <i class="el-icon-warning"></i>
  165. </span>
  166. <span v-if="getOverFlushInfo(scope.row.xt_warehouse_info) > scope.row.stock_warn_count">
  167. {{getSumCount(scope.row.xt_good_stock,scope.row.id)}}
  168. </span>
  169. </span>
  170. </template>
  171. </el-table-column>
  172. <el-table-column label="操作" align="center" width="200px">
  173. <template slot-scope="scope">
  174. <el-button
  175. size="small"
  176. type="primary"
  177. @click="toClick(scope.row)"
  178. >库存流水
  179. </el-button>
  180. <el-button
  181. size="small"
  182. type="primary"
  183. @click="toClickOne(scope.row)"
  184. >批次
  185. </el-button>
  186. <!-- <el-button
  187. size="small"
  188. type="primary"
  189. @click="handleCheckBatch(scope.row)"
  190. >自查
  191. </el-button> -->
  192. </template>
  193. </el-table-column>
  194. </el-table>
  195. <el-pagination
  196. @size-change="handleSizeChange"
  197. @current-change="handleCurrentChange"
  198. :page-sizes="[10, 50, 100,200,300,400,500,1000]"
  199. :page-size="10"
  200. background
  201. align="right"
  202. style="margin-top:20px;"
  203. layout="total, sizes, prev, pager, next, jumper"
  204. :total="total"
  205. >
  206. </el-pagination>
  207. </div>
  208. <el-dialog
  209. title="出库详情"
  210. :visible.sync="dialogVisible"
  211. width="70%">
  212. <span>
  213. 耗材名称:{{good_name}}
  214. 规格&单位:{{specification_name}}
  215. 查询日期:
  216. <el-date-picker
  217. size="small"
  218. v-model="start_first_time"
  219. prefix-icon="el-icon-date"
  220. :editable="false"
  221. style="width: 150px;"
  222. type="date"
  223. placeholder="选择日期时间"
  224. align="right"
  225. format="yyyy-MM-dd"
  226. value-format="yyyy-MM-dd"
  227. @change="startFirstTimeChange"
  228. ></el-date-picker>
  229. <span>-</span>
  230. <el-date-picker
  231. size="small"
  232. v-model="end_first_time"
  233. prefix-icon="el-icon-date"
  234. :editable="false"
  235. style="width: 150px;"
  236. type="date"
  237. placeholder="选择日期时间"
  238. align="right"
  239. format="yyyy-MM-dd"
  240. value-format="yyyy-MM-dd"
  241. @change="endEndTimeChange"
  242. ></el-date-picker>
  243. </span>
  244. <el-divider></el-divider>
  245. <el-table
  246. :row-style="{ color: '#303133' }"
  247. :header-cell-style="{
  248. backgroundColor: 'rgb(245, 247, 250)',
  249. color: '#606266'
  250. }"
  251. :data="tableData"
  252. :class="signAndWeighBoxPatients"
  253. border
  254. >
  255. <el-table-column label="序号" align="center">
  256. <template slot-scope="scope">
  257. {{scope.$index + 1}}
  258. </template>
  259. </el-table-column>
  260. <el-table-column label="单据编号" align="center">
  261. <template slot-scope="scope">
  262. {{scope.row.warehouse_out_order_number}}
  263. </template>
  264. </el-table-column>
  265. <el-table-column label="操作时间" align="center">
  266. <template slot-scope="scope">
  267. {{getTimeOne(scope.row.ctime)}}
  268. </template>
  269. </el-table-column>
  270. <el-table-column label="出库数量" align="center">
  271. <template slot-scope="scope">
  272. {{scope.row.count}}{{scope.row.GoodInfo.packing_unit}}
  273. </template>
  274. </el-table-column>
  275. <el-table-column label="库存数量" align="center">
  276. <template slot-scope="scope">
  277. {{scope.row.over_count}}
  278. </template>
  279. </el-table-column>
  280. <el-table-column label="使用人" align="center">
  281. <template slot-scope="scope">
  282. {{getName(scope.row.patient_id)}}
  283. </template>
  284. </el-table-column>
  285. <el-table-column label="备注" align="center">
  286. <template slot-scope="scope">
  287. {{scope.row.remark}}
  288. </template>
  289. </el-table-column>
  290. </el-table>
  291. <el-pagination
  292. @size-change="handleSizeChangeOne"
  293. @current-change="handleCurrentChangeOne"
  294. :page-sizes="[10, 50, 100,200,500,1000]"
  295. :page-size="10"
  296. background
  297. align="right"
  298. style="margin-top:20px;"
  299. layout="total, sizes, prev, pager, next, jumper"
  300. :total="totalone"
  301. >
  302. </el-pagination>
  303. <span slot="footer" class="dialog-footer">
  304. <el-button @click="dialogVisible = false">取 消</el-button>
  305. <el-button type="primary" @click="dialogVisible = false">确 定</el-button>
  306. </span>
  307. </el-dialog>
  308. <el-dialog
  309. title="自查数据"
  310. :visible.sync="checkdialogVisible"
  311. width="50%">
  312. <span>
  313. <span>ID: {{good_id}}</span>
  314. <el-table
  315. :data="checkData"
  316. border
  317. style="width: 100%">
  318. <el-table-column prop="date" label="开药日期" width="180" align="center">
  319. <template slot-scope="scope" >
  320. {{ getTime(scope.row.record_date) }}
  321. </template>
  322. </el-table-column>
  323. <el-table-column prop="date" label="时间搓" width="180" align="center">
  324. <template slot-scope="scope" >
  325. {{scope.row.record_date}}
  326. </template>
  327. </el-table-column>
  328. <el-table-column prop="name" label="开药数量" width="180" align="center">
  329. <template slot-scope="scope" >
  330. {{ scope.row.check_count }}
  331. </template>
  332. </el-table-column>
  333. <el-table-column prop="address" label="出库数量" align="center">
  334. <template slot-scope="scope" >
  335. {{getGoodCount(scope.row.record_date)}}
  336. </template>
  337. </el-table-column>
  338. <el-table-column prop="address" label="是否异常" align="center">
  339. <template slot-scope="scope" >
  340. <span v-if="scope.row.check_count==getGoodCount(scope.row.record_date)">否</span>
  341. <span v-if="scope.row.check_count!=getGoodCount(scope.row.record_date)" style="color:red">是</span>
  342. </template>
  343. </el-table-column>
  344. </el-table>
  345. </span>
  346. <span slot="footer" class="dialog-footer">
  347. <el-button @click="checkdialogVisible = false">取 消</el-button>
  348. <el-button type="primary" @click="checkdialogVisible = false">确 定</el-button>
  349. </span>
  350. </el-dialog>
  351. </div>
  352. </template>
  353. <script>
  354. import { getStorehouseList,getGoodNewQuery,getGoodWarehouseOutInfoById,toSendGoodInfomation,getCheckGoodBatchList } from "@/api/drug/drug"
  355. import {
  356. getStockDrugCount
  357. } from "@/api/stock";
  358. import { uParseTime } from '@/utils/tools'
  359. const moment = require('moment')
  360. export default {
  361. data(){
  362. return{
  363. tableList:[],
  364. goodList:[
  365. {id:1,name:"全部耗材"},
  366. {id:2,name:"库存预警"},
  367. {id:3,name:"库存为零"},
  368. {id:4,name:"库存不为零"},
  369. ],
  370. houseList:[],
  371. storehouse_id:0,
  372. good_type:1,
  373. multipleSelection: [],
  374. signAndWeighBoxPatients: "sign-and-weigh-box-patients",
  375. manufacturerList:[],
  376. limit:10,
  377. page:1,
  378. total:0,
  379. limitone:10,
  380. pageone:1,
  381. totalone:0,
  382. keyword:"",
  383. goodTypeList:[],
  384. start_time:"",
  385. end_time:"",
  386. countList:[],
  387. outCountList:[],
  388. autoCountList:[],
  389. cancelCountList:[],
  390. org_id:this.$store.getters.xt_user.org_id,
  391. dialogVisible:false,
  392. start_first_time:moment().startOf('month').format("YYYY-MM-DD"),
  393. end_first_time:moment().endOf('month').format("YYYY-MM-DD"),
  394. tableData:[],
  395. good_id:0,
  396. patientList:[],
  397. good_name:"",
  398. specification_name:"",
  399. loading:false,
  400. warehouseInfoByList:[],
  401. cancelStockInfoByList:[],
  402. warehouseOutByList:[],
  403. flushList:[],
  404. type_name:0,
  405. storehouseId:0,
  406. dealerList:[],
  407. checkdialogVisible:false,
  408. checkData:[],
  409. outData:[],
  410. medicalInsuranceLevelList:[],
  411. }
  412. },
  413. methods:{
  414. getMedicalInsuranceLeve(id){
  415. var name = ""
  416. for(let i=0;i<this.medicalInsuranceLevelList.length;i++){
  417. if(id == this.medicalInsuranceLevelList[i].value){
  418. name = this.medicalInsuranceLevelList[i].name
  419. }
  420. }
  421. return name
  422. },
  423. changeStorehouseName(){
  424. this.getlist()
  425. },
  426. changeGoodName(){
  427. this.getlist()
  428. },
  429. toClick(val){
  430. var manufacturer_name = ""
  431. var specification_name = ""
  432. for(let i=0;i<this.manufacturerList.length;i++){
  433. if(val.manufacturer == this.manufacturerList[i].id){
  434. manufacturer_name = this.manufacturerList[i].manufacturer_name
  435. }
  436. }
  437. specification_name = val.specification_name + "/" + val.packing_unit
  438. var overCount = this.getOverplus(val.xt_warehouse_info)
  439. // window.sessionStorage.setItem('start_time',this.start_time)
  440. // window.sessionStorage.setItem('end_time',this.end_time)
  441. this.$router.push({path:"/stock/in/stockflow?id="+val.id+"&manufacturer="+manufacturer_name+"&packing_unit="+val.packing_unit+"&overCount="+overCount})
  442. },
  443. toClickOne(val){
  444. var manufacturer_name = ""
  445. var specification_name = ""
  446. for(let i=0;i<this.manufacturerList.length;i++){
  447. if(val.manufacturer == this.manufacturerList[i].id){
  448. manufacturer_name = this.manufacturerList[i].manufacturer_name
  449. }
  450. }
  451. specification_name = val.specification_name + "/" + val.packing_unit
  452. var overCount = this.getOverplus(val.xt_warehouse_info)
  453. // window.sessionStorage.setItem('start_time',this.start_time)
  454. // window.sessionStorage.setItem('end_time',this.end_time)
  455. this.$router.push({path:"/stock/in/stockbatchnumber?id="+val.id+"&manufacturer="+manufacturer_name+"&packing_unit="+val.packing_unit+"&overCount="+overCount})
  456. },
  457. getStorehouseList(){
  458. getStorehouseList().then(response=>{
  459. if(response.data.state == 1){
  460. var houseList = response.data.data.list
  461. var obj = {id:0,storehouse_name:"全部"}
  462. this.houseList.push(obj)
  463. for(let i=0;i<houseList.length;i++){
  464. this.houseList.push(houseList[i])
  465. }
  466. this.manufacturerList = response.data.data.manufacturerList
  467. this.goodTypeList = response.data.data.goodTypeList
  468. this.patientList = response.data.data.patientList
  469. this.dealerList = response.data.data.dealerList
  470. }
  471. })
  472. },
  473. getlist(){
  474. this.loading = true
  475. if(this.org_id == 10679){
  476. this.page =1
  477. this.limit =100
  478. }
  479. var params = {
  480. storehouse_id:this.storehouse_id,
  481. good_type:this.good_type,
  482. keyword:this.keyword,
  483. page:this.page,
  484. limit:this.limit,
  485. start_time:this.start_time,
  486. end_time:this.end_time,
  487. }
  488. getGoodNewQuery(params).then(response=>{
  489. if(response.data.state == 1){
  490. // var list = response.data.data.list
  491. var list = response.data.data.stockList
  492. this.loading = false
  493. this.tableList = list
  494. this.total = response.data.data.total
  495. this.medicalInsuranceLevelList = response.data.data.medicalInsuranceLevelList
  496. }
  497. })
  498. },
  499. getManufacturName(id){
  500. var manufacturer_name = ""
  501. for(let i=0;i<this.manufacturerList.length;i++){
  502. if(id == this.manufacturerList[i].id){
  503. manufacturer_name = this.manufacturerList[i].manufacturer_name
  504. }
  505. }
  506. return manufacturer_name
  507. },
  508. getDearName(id){
  509. var dear_name = ""
  510. for(let i=0;i<this.dealerList.length;i++){
  511. if(id == this.dealerList[i].id){
  512. dear_name = this.dealerList[i].dealer_name
  513. }
  514. }
  515. return dear_name
  516. },
  517. handleSizeChange(val) {
  518. this.limit = val;
  519. this.getlist()
  520. },
  521. handleCurrentChange(val) {
  522. this.page = val;
  523. this.getlist()
  524. },
  525. handleSizeChangeOne(val) {
  526. this.limitone = val;
  527. this.toDialogClick(this.good_id,this.good_name,this.specification_name,this.storehouseId)
  528. },
  529. handleCurrentChangeOne(val) {
  530. this.pageone = val;
  531. this.toDialogClick(this.good_id,this.good_name,this.specification_name,this.storehouseId)
  532. },
  533. seach(){
  534. this.getlist()
  535. },
  536. getGoodTypeName(id){
  537. var type_name = ""
  538. for(let i=0;i<this.goodTypeList.length;i++){
  539. if(id == this.goodTypeList[i].id){
  540. type_name = this.goodTypeList[i].type_name
  541. }
  542. }
  543. return type_name
  544. },
  545. getHouseName(id){
  546. var storehouse_name = ""
  547. for(let i=0;i<this.houseList.length;i++){
  548. if(id == this.houseList[i].id){
  549. storehouse_name = this.houseList[i].storehouse_name
  550. }
  551. }
  552. return storehouse_name
  553. },
  554. getWareInfoCount(val,storehouse_id){
  555. var count = 0
  556. if(val!=null&&val.length > 0){
  557. for(let i=0;i<val.length;i++){
  558. if(val[i].storehouse_id == storehouse_id){
  559. count +=val[i].warehousing_count
  560. }
  561. }
  562. }
  563. if(count > 0){
  564. return count
  565. }else{
  566. return ""
  567. }
  568. },
  569. getStockDrugCount(){
  570. var params ={
  571. keywords: this.keywords,
  572. start_time:this.start_time,
  573. end_time:this.end_time,
  574. }
  575. getStockDrugCount(params).then(response=>{
  576. if(response.data.state == 1){
  577. var outlist = response.data.data.outList
  578. this.outCountList = outlist
  579. var autoCount = response.data.data.autoCount
  580. this.autoCountList = autoCount
  581. var totalCount = response.data.data.totalCount
  582. this.cancelCountList = totalCount
  583. }
  584. })
  585. },
  586. getWareInfoCountOne(val,storehouse_id){
  587. var count = 0
  588. if(val!=null&&val.length > 0){
  589. for(let i=0;i<val.length;i++){
  590. if(val[i].storehouse_id == storehouse_id){
  591. count +=val[i].stock_count
  592. }
  593. }
  594. }
  595. if(count > 0){
  596. return count
  597. }else{
  598. return ""
  599. }
  600. },
  601. getOutCount(id){
  602. var count = 0
  603. for(let i=0;i<this.outCountList.length;i++){
  604. if(id == this.outCountList[i].good_id){
  605. count = this.outCountList[i].count
  606. }
  607. }
  608. return count
  609. },
  610. getAutoCount(id){
  611. var count= 0
  612. for(let i=0;i<this.autoCountList.length;i++){
  613. if(id == this.autoCountList[i].good_id){
  614. count = this.autoCountList[i].count
  615. }
  616. }
  617. return count
  618. },
  619. getCancelCount(id){
  620. var count = 0
  621. for(let i=0;i<this.cancelCountList.length;i++){
  622. if(id == this.cancelCountList[i].good_id){
  623. count = this.cancelCountList[i].count
  624. }
  625. }
  626. return count
  627. },
  628. getCancelCountInfo(cancel_stock_info,storehouse_id){
  629. var count = 0
  630. if(cancel_stock_info!=null && cancel_stock_info.length >0){
  631. for(let i=0;i<cancel_stock_info.length;i++){
  632. if(cancel_stock_info[i].storehouse_id == storehouse_id){
  633. count += cancel_stock_info[i].count
  634. }
  635. }
  636. }
  637. return count
  638. },
  639. getWareOutInfoCount(warehouse_out_info,storehouse_id){
  640. var count = 0
  641. if(warehouse_out_info!=null && warehouse_out_info.length > 0){
  642. for(let i=0;i<warehouse_out_info.length;i++){
  643. if(storehouse_id == warehouse_out_info[i].storehouse_id){
  644. count +=warehouse_out_info[i].count
  645. }
  646. }
  647. }
  648. return count
  649. },
  650. getInCount(id){
  651. var count= 0
  652. for(let i=0;i<this.countList.length;i++){
  653. if(id == this.countList[i].good_id){
  654. count = this.countList[i].count
  655. }
  656. }
  657. return count
  658. },
  659. getOutCount(id){
  660. var count = 0
  661. for(let i=0;i<this.outCountList.length;i++){
  662. if(id == this.outCountList[i].good_id){
  663. count = this.outCountList[i].count
  664. }
  665. }
  666. return count
  667. },
  668. getAutoCount(id){
  669. var count= 0
  670. for(let i=0;i<this.autoCountList.length;i++){
  671. if(id == this.autoCountList[i].good_id){
  672. count = this.autoCountList[i].count
  673. }
  674. }
  675. return count
  676. },
  677. getCancelCount(id){
  678. var count = 0
  679. for(let i=0;i<this.cancelCountList.length;i++){
  680. if(id == this.cancelCountList[i].good_id){
  681. count = this.cancelCountList[i].count
  682. }
  683. }
  684. return count
  685. },
  686. getStockCount(id){
  687. var stock_count = 0
  688. for(let i=0;i<this.countList.length;i++){
  689. if(id == this.countList[i].good_id){
  690. stock_count = this.countList[i].stock_count
  691. }
  692. }
  693. return stock_count
  694. },
  695. getWareInfo(arr){
  696. var total = 0
  697. if(arr.length > 0){
  698. for(let i=0;i<arr.length;i++){
  699. total += parseInt(arr[i].warehousing_count)
  700. }
  701. }else{
  702. total = ""
  703. }
  704. return total
  705. },
  706. getOverplus(arr){
  707. var total = 0
  708. if(arr.length > 0){
  709. for(let i=0;i<arr.length;i++){
  710. total += arr[i].stock_count
  711. }
  712. }else{
  713. total = ""
  714. }
  715. return total
  716. },
  717. getCancelInfo(arr){
  718. var total = 0
  719. if(arr.length > 0){
  720. for(let i=0;i<arr.length;i++){
  721. total += arr[i].count
  722. }
  723. }else{
  724. total = ""
  725. }
  726. return total
  727. },
  728. getOverFlushInfo(arr){
  729. var total = 0
  730. if(arr!=null&&arr.length >0){
  731. for(let i=0;i<arr.length;i++){
  732. total += arr[i].stock_count
  733. }
  734. }
  735. return total
  736. },
  737. toDialogClick(id,good_name,specification_name,storehouse_id){
  738. this.good_id = id
  739. this.good_name = good_name
  740. this.specification_name = specification_name
  741. this.storehouseId = storehouse_id
  742. var params = {
  743. good_id:id,
  744. limit:this.limitone,
  745. page:this.pageone,
  746. start_first_time:this.start_first_time,
  747. end_first_time:this.end_first_time,
  748. storehouse_id:storehouse_id,
  749. }
  750. getGoodWarehouseOutInfoById(params).then(response=>{
  751. if(response.data.state == 1){
  752. this.dialogVisible = true
  753. var list = response.data.data.list
  754. this.tableData = list
  755. this.totalone = response.data.data.total
  756. // this.flushList = response.data.data.flushList
  757. }
  758. })
  759. },
  760. startFirstTimeChange(){
  761. this.toDialogClick(this.good_id,this.good_name,this.specification_name,this.storehouseId)
  762. },
  763. endEndTimeChange(){
  764. this.toDialogClick(this.good_id,this.good_name,this.specification_name,this.storehouseId)
  765. },
  766. getTime(val) {
  767. if(val < 0){
  768. return ""
  769. }
  770. if(val == ""){
  771. return ""
  772. }else {
  773. return uParseTime(val, '{y}-{m}-{d}')
  774. }
  775. },
  776. getTimeOne(val) {
  777. if(val < 0){
  778. return ""
  779. }
  780. if(val == ""){
  781. return ""
  782. }else {
  783. return uParseTime(val, '{y}-{m}-{d} {h}:{i}')
  784. }
  785. },
  786. getName(id){
  787. var name = ""
  788. for(let i=0;i<this.patientList.length;i++){
  789. if(id == this.patientList[i].id){
  790. name = this.patientList[i].name
  791. }
  792. }
  793. return name
  794. },
  795. getCount(ctime){
  796. var arr = []
  797. var arrOut = []
  798. var total_in = 0
  799. var total_out = 0
  800. for(let i=0;i<this.warehouseInfoByList.length;i++){
  801. if(ctime >= this.warehouseInfoByList[i].ctime){
  802. arr.push(this.warehouseInfoByList[i])
  803. }
  804. }
  805. if(arr.length > 0){
  806. for(let i=0;i<arr.length;i++){
  807. total_in +=arr[i].warehousing_count
  808. }
  809. }
  810. for(let i=0;i<this.warehouseOutByList.length;i++){
  811. if(ctime <=this.warehouseOutByList[i].ctime){
  812. arrOut.push(this.warehouseOutByList[i])
  813. }
  814. }
  815. if(arrOut.length >0){
  816. for(let i=0;i<arrOut.length;i++){
  817. total_out +=arrOut[i].count
  818. }
  819. }
  820. console.log("total23323223",total_in)
  821. return total_in - total_out
  822. },
  823. getStockCountOne(warehouse_out_id,good_id,patient_id,sys_record_time){
  824. var flush_count = 0
  825. if(this.flushList!=null && this.flushList.length > 0){
  826. for(let i=0;i<this.flushList.length;i++){
  827. if(warehouse_out_id == this.flushList[i].warehouse_out_id && good_id == this.flushList[i].good_id && patient_id == this.flushList[i].patient_id && sys_record_time == this.flushList[i].system_time){
  828. flush_count = this.flushList[i].flush_count
  829. }
  830. }
  831. }
  832. return flush_count
  833. },
  834. // 合并单元格样式
  835. cellStyle({ row, column, rowIndex, columnIndex }) {
  836. let arr = [5,6, 7, 8, 9,10,11];
  837. if (arr.indexOf(columnIndex) > -1) {
  838. return "spanClass";
  839. }
  840. },
  841. exportList(){
  842. import('@/vendor/Export2Excel').then(excel => {
  843. if(this.org_id!=0 && this.org_id!=9956){
  844. if(this.tableList!=null && this.tableList.length > 0){
  845. for(let i=0;i<this.tableList.length;i++){
  846. this.tableList[i].index = i+1
  847. this.tableList[i].type_name = this.getGoodTypeName(this.tableList[i].good_type_id)
  848. this.tableList[i].spec = this.tableList[i].specification_name +"/"+ this.tableList[i].packing_unit
  849. this.tableList[i].manufacturer_name = this.getManufacturName(this.tableList[i].manufacturer)
  850. this.tableList[i].dealer_name = this.getDearName(this.tableList[i].dealer)
  851. this.tableList[i].stock_in_count = this.GetExportStockInCount(this.tableList[i].xt_good_stock,this.tableList[i].id)
  852. this.tableList[i].stock_out_count =this.getExportStockOutCount(this.tableList[i].xt_good_stock,this.tableList[i].id)
  853. this.tableList[i].stock_cancel_count = this.getExportCancelStockInfo(this.tableList[i].xt_good_stock,this.tableList[i].id)
  854. this.tableList[i].act_out_count = this.getExportActStockOutCount(this.tableList[i].xt_good_stock,this.tableList[i].id)
  855. this.tableList[i].over_count = this.getExportOverCount(this.tableList[i].xt_good_stock,this.tableList[i].id)
  856. this.tableList[i].sum_count = this.getOverCount(this.tableList[i].xt_warehouse_info)
  857. }
  858. }
  859. const tHeader = ['序号','耗材类型', '耗材名称', '规格&单位','生产厂商','经销商','批准文号','国家编码','入库数量','出库数量','退库数量','实际出库','剩余库存','总库存']
  860. const filterVal = ['index','type_name', 'good_name', 'spec','manufacturer_name','dealer_name','number','social_security_directory_code','stock_in_count','act_out_count','stock_cancel_count','stock_out_count','over_count','sum_count']
  861. const data = this.formatJson(filterVal, this.tableList)
  862. excel.export_json_to_excel({
  863. header: tHeader,
  864. data,
  865. filename: '库存查询'
  866. })
  867. this.downloadLoading = false
  868. }
  869. if(this.org_id == 0 || this.org_id == 9956){
  870. if(this.tableList!=null && this.tableList.length > 0){
  871. for(let i=0;i<this.tableList.length;i++){
  872. this.tableList[i].index = i+1
  873. this.tableList[i].type_name = this.getGoodTypeName(this.tableList[i].good_type_id)
  874. this.tableList[i].spec = this.tableList[i].specification_name +"/"+ this.tableList[i].packing_unit
  875. this.tableList[i].manufacturer_name = this.getManufacturName(this.tableList[i].manufacturer)
  876. this.tableList[i].dealer_name = this.getDearName(this.tableList[i].dealer)
  877. this.tableList[i].stock_in_count = this.GetExportStockInCount(this.tableList[i].xt_good_stock,this.tableList[i].id)
  878. this.tableList[i].stock_out_count =this.getExportStockOutCount(this.tableList[i].xt_good_stock,this.tableList[i].id)
  879. this.tableList[i].stock_cancel_count = this.getExportCancelStockInfo(this.tableList[i].xt_good_stock,this.tableList[i].id)
  880. this.tableList[i].act_out_count = this.getExportActStockOutCount(this.tableList[i].xt_good_stock,this.tableList[i].id)
  881. this.tableList[i].over_count = this.getExportOverCount(this.tableList[i].xt_good_stock,this.tableList[i].id)
  882. this.tableList[i].sum_count = this.getOverCount(this.tableList[i].xt_warehouse_info)
  883. }
  884. }
  885. const tHeader = ['序号','耗材编码','耗材类型', '耗材名称', '规格&单位','生产厂商','经销商','批准文号','国家编码','入库数量','出库数量','退库数量','实际出库','剩余库存','总库存']
  886. const filterVal = ['index','good_number','type_name', 'good_name', 'spec','manufacturer_name','dealer_name','number','social_security_directory_code','stock_in_count','act_out_count','stock_cancel_count','stock_out_count','over_count','sum_count']
  887. const data = this.formatJson(filterVal, this.tableList)
  888. excel.export_json_to_excel({
  889. header: tHeader,
  890. data,
  891. filename: '库存查询'
  892. })
  893. this.downloadLoading = false
  894. }
  895. })
  896. },
  897. formatJson(filterVal, jsonData) {
  898. return jsonData.map(v => filterVal.map(j => v[j]));
  899. },
  900. toPrint(){
  901. this.$router.push("/good/new/query/print?start_time="+this.start_time+"&end_time="+this.end_time+"&keyword="+this.keyword+"&storehouse_id="+this.storehouse_id+"&page="+this.page+"&limit="+this.limit+"&good_type="+this.good_type)
  902. },
  903. getCancelSotckInfo(arr){
  904. var cancle_toal = 0
  905. if(arr.length >0){
  906. for(let z=0;z<arr.length;z++){
  907. cancle_toal += arr[z].count
  908. }
  909. }
  910. return cancle_toal
  911. },
  912. getStockOutFlow(arr,storehouse_id){
  913. var count = 0
  914. if(arr!=null && arr.length > 0){
  915. for(let i=0;i<arr.length;i++){
  916. if(arr[i].storehouse_id == storehouse_id){
  917. count +=arr[i].count
  918. }
  919. }
  920. }
  921. if(count > 0){
  922. return count
  923. }else{
  924. return 0
  925. }
  926. },
  927. GetStockInCount(val){
  928. var count = 0
  929. if(val!=null && val.length >0){
  930. for(let i=0;i<val.length;i++){
  931. count +=val[i].warehousing_count
  932. }
  933. }
  934. if(count > 0){
  935. return count
  936. }else{
  937. return 0
  938. }
  939. },
  940. getStockOutCount(val){
  941. var count = 0
  942. if(val!=null && val.length >0){
  943. for(let i=0;i<val.length;i++){
  944. count +=val[i].count
  945. }
  946. }
  947. if(count > 0){
  948. return count
  949. }else{
  950. return 0
  951. }
  952. },
  953. getCancelStockInfo(val){
  954. var count = 0
  955. if(val!=null && val.length >0){
  956. for(let i=0;i<val.length;i++){
  957. count +=val[i].count
  958. }
  959. }
  960. if(count > 0){
  961. return count
  962. }else{
  963. return 0
  964. }
  965. },
  966. getOverCount(val){
  967. var count = 0
  968. if(val!=null && val.length >0){
  969. for(let i=0;i<val.length;i++){
  970. count +=val[i].stock_count
  971. }
  972. }
  973. if(count > 0){
  974. return count
  975. }else{
  976. return 0
  977. }
  978. },
  979. // 修改后接口
  980. getGoodIn(val,storehouse_id){
  981. var sum_count = 0
  982. if(val!=null && val!=undefined){
  983. for(let i=0;i<val.length;i++){
  984. if(storehouse_id == val[i].storehouse_id){
  985. sum_count = val[i].stock_in_count
  986. }
  987. }
  988. }
  989. if(sum_count > 0){
  990. return sum_count
  991. }else{
  992. return 0
  993. }
  994. },
  995. getGoodOut(val,storehouse_id){
  996. var sum_count = 0
  997. if(val!=null && val!=undefined){
  998. for(let i=0;i<val.length;i++){
  999. if(storehouse_id == val[i].storehouse_id){
  1000. sum_count = val[i].stock_out_count
  1001. }
  1002. }
  1003. }
  1004. if(sum_count > 0){
  1005. return sum_count
  1006. }else{
  1007. return 0
  1008. }
  1009. },
  1010. getGoodCancel(val,storehouse_id){
  1011. var sum_count = 0
  1012. if(val!=null && val!=undefined){
  1013. for(let i=0;i<val.length;i++){
  1014. if(storehouse_id == val[i].storehouse_id){
  1015. sum_count = val[i].stock_cancel_count
  1016. }
  1017. }
  1018. }
  1019. if(sum_count > 0){
  1020. return sum_count
  1021. }else{
  1022. return 0
  1023. }
  1024. },
  1025. getGoodAct(val,storehouse_id){
  1026. var sum_count = 0
  1027. if(val!=null && val!=undefined){
  1028. for(let i=0;i<val.length;i++){
  1029. if(storehouse_id == val[i].storehouse_id){
  1030. sum_count = val[i].stock_act_out_count
  1031. }
  1032. }
  1033. }
  1034. if(sum_count > 0){
  1035. return sum_count
  1036. }else{
  1037. return 0
  1038. }
  1039. },
  1040. getGoodFlush(val,storehouse_id){
  1041. var sum_count = 0
  1042. if(val!=null && val!=undefined){
  1043. for(let i=0;i<val.length;i++){
  1044. if(storehouse_id == val[i].storehouse_id){
  1045. sum_count = val[i].flush_count
  1046. }
  1047. }
  1048. }
  1049. if(sum_count > 0){
  1050. return sum_count
  1051. }else{
  1052. return 0
  1053. }
  1054. },
  1055. getSumCount(val,good_id){
  1056. var sum_count = 0
  1057. var arr = []
  1058. if(val!=null && val!=undefined){
  1059. for(let i=0;i<val.length;i++){
  1060. if(good_id == val[i].good_id){
  1061. arr.push(val[i])
  1062. }
  1063. }
  1064. }
  1065. for(let i=0;i<arr.length;i++){
  1066. sum_count +=arr[i].flush_count
  1067. }
  1068. if(sum_count > 0){
  1069. return sum_count
  1070. }else{
  1071. return 0
  1072. }
  1073. },
  1074. toClickTwo(){
  1075. toSendGoodInfomation().then(response=>{
  1076. if(response.data.state == 1){
  1077. var msg = response.data.data.msg
  1078. console.log("脚本保存成功!")
  1079. }
  1080. })
  1081. },
  1082. //导出
  1083. GetExportStockInCount(val,id){
  1084. var sum_count = 0
  1085. var arr = []
  1086. if(val!=null && val.length > 0){
  1087. for(let i=0;i<val.length;i++){
  1088. if(val[i].good_id == id){
  1089. arr.push(val[i])
  1090. }
  1091. }
  1092. }
  1093. for(let i=0;i<arr.length;i++){
  1094. sum_count +=arr[i].stock_in_count
  1095. }
  1096. if(sum_count > 0){
  1097. return sum_count
  1098. }else{
  1099. return 0
  1100. }
  1101. },
  1102. getExportStockOutCount(val,id){
  1103. var sum_count = 0
  1104. var arr = []
  1105. if(val!=null && val.length > 0){
  1106. for(let i=0;i<val.length;i++){
  1107. if(val[i].good_id == id){
  1108. arr.push(val[i])
  1109. }
  1110. }
  1111. }
  1112. for(let i=0;i<arr.length;i++){
  1113. sum_count +=arr[i].stock_out_count
  1114. }
  1115. if(sum_count > 0){
  1116. return sum_count
  1117. }else{
  1118. return 0
  1119. }
  1120. },
  1121. getExportCancelStockInfo(val,id){
  1122. var sum_count = 0
  1123. var arr = []
  1124. if(val!=null && val.length > 0){
  1125. for(let i=0;i<val.length;i++){
  1126. if(val[i].good_id == id){
  1127. arr.push(val[i])
  1128. }
  1129. }
  1130. }
  1131. for(let i=0;i<arr.length;i++){
  1132. sum_count +=arr[i].stock_cancel_count
  1133. }
  1134. if(sum_count > 0){
  1135. return sum_count
  1136. }else{
  1137. return 0
  1138. }
  1139. },
  1140. getExportActStockOutCount(val,id){
  1141. var sum_count = 0
  1142. var arr = []
  1143. if(val!=null && val.length > 0){
  1144. for(let i=0;i<val.length;i++){
  1145. if(val[i].good_id == id){
  1146. arr.push(val[i])
  1147. }
  1148. }
  1149. }
  1150. for(let i=0;i<arr.length;i++){
  1151. sum_count +=arr[i].stock_act_out_count
  1152. }
  1153. if(sum_count > 0){
  1154. return sum_count
  1155. }else{
  1156. return 0
  1157. }
  1158. },
  1159. getExportOverCount(val,id){
  1160. var sum_count = 0
  1161. var arr = []
  1162. if(val!=null && val.length > 0){
  1163. for(let i=0;i<val.length;i++){
  1164. if(val[i].good_id == id){
  1165. arr.push(val[i])
  1166. }
  1167. }
  1168. }
  1169. for(let i=0;i<arr.length;i++){
  1170. sum_count +=arr[i].flush_count
  1171. }
  1172. if(sum_count > 0){
  1173. return sum_count
  1174. }else{
  1175. return 0
  1176. }
  1177. },
  1178. handleCheckBatch(val){
  1179. this.good_id = val.id
  1180. getCheckGoodBatchList(val.id).then(response=>{
  1181. if(response.data.state ==1){
  1182. var projectList = response.data.data.projectList
  1183. if (projectList.length> 0) {
  1184. for(let i=0;i<projectList.length;i++){
  1185. let dataInfoOne = {}
  1186. projectList.forEach((item, index) => {
  1187. let { record_date } = item
  1188. if (!dataInfoOne[record_date]) {
  1189. dataInfoOne[record_date] = {
  1190. record_date:item.record_date,
  1191. check_count:0,
  1192. child:[]
  1193. }
  1194. }
  1195. })
  1196. let hisarr = Object.values(dataInfoOne)
  1197. for(let i=0;i<hisarr.length;i++){
  1198. for(let j=0;j<projectList.length;j++){
  1199. if(hisarr[i].record_date == projectList[j].record_date){
  1200. hisarr[i].child.push(projectList[j])
  1201. }
  1202. }
  1203. }
  1204. for(let i=0;i<hisarr.length;i++){
  1205. for(let j=0;j<hisarr[i].child.length;j++){
  1206. hisarr[i].check_count += hisarr[i].child[j].count
  1207. }
  1208. }
  1209. this.checkData = []
  1210. console.log("hia_arr",hisarr)
  1211. this.checkData = hisarr
  1212. }
  1213. }
  1214. var warehouseList = response.data.data.warehouseList
  1215. if (warehouseList.length> 0) {
  1216. for(let i=0;i<warehouseList.length;i++){
  1217. let dataInfoOne = {}
  1218. warehouseList.forEach((item, index) => {
  1219. let { sys_record_time } = item
  1220. if (!dataInfoOne[sys_record_time]) {
  1221. dataInfoOne[sys_record_time] = {
  1222. sys_record_time:item.sys_record_time,
  1223. check_count:0,
  1224. child:[]
  1225. }
  1226. }
  1227. })
  1228. let hisarr = Object.values(dataInfoOne)
  1229. for(let i=0;i<hisarr.length;i++){
  1230. for(let j=0;j<warehouseList.length;j++){
  1231. if(hisarr[i].sys_record_time == warehouseList[j].sys_record_time){
  1232. hisarr[i].child.push(warehouseList[j])
  1233. }
  1234. }
  1235. }
  1236. for(let i=0;i<hisarr.length;i++){
  1237. for(let j=0;j<hisarr[i].child.length;j++){
  1238. hisarr[i].check_count += hisarr[i].child[j].count
  1239. }
  1240. }
  1241. this.outData=[]
  1242. this.outData = hisarr
  1243. }
  1244. this.checkdialogVisible = true
  1245. }
  1246. }
  1247. })
  1248. },
  1249. getGoodCount(sys_record_time){
  1250. var count = 0
  1251. for(let i=0;i<this.outData.length;i++){
  1252. if(this.outData[i].sys_record_time == sys_record_time){
  1253. count = this.outData[i].check_count
  1254. }
  1255. }
  1256. return count
  1257. }
  1258. },
  1259. created(){
  1260. this.houseList = []
  1261. this.getStorehouseList()
  1262. this.getlist()
  1263. // var org_id = this.$store.getters.xt_user.org_id
  1264. // if(org_id == 9583 || org_id == 3907){
  1265. // this.getStockDrugCount()
  1266. // }
  1267. }
  1268. }
  1269. </script>
  1270. <style>
  1271. .app-container{
  1272. /* padding-left: 0;
  1273. margin-left: 0; */
  1274. }
  1275. .sign-and-weigh-box .sign-and-weigh-box-patients .cell {
  1276. font-size: 12px;
  1277. }
  1278. .sign-and-weigh-box .sign-and-weigh-box-patients .current-row > td {
  1279. background: #6fb5fa;
  1280. }
  1281. .count {
  1282. color: #bd2c00;
  1283. }
  1284. .el-table td,
  1285. .el-table th.is-leaf,
  1286. .el-table--border,
  1287. .el-table--group {
  1288. border-color: #d0d3da;
  1289. }
  1290. .el-table--border::after,
  1291. .el-table--group::after,
  1292. .el-table::before {
  1293. background-color: #d0d3da;
  1294. }
  1295. /* 合并表格线样式 */
  1296. .spanClass .cell {
  1297. padding: 0 !important;
  1298. }
  1299. .spanClass .cell tr {
  1300. display: inline-block;
  1301. width: 100%;
  1302. }
  1303. .spanClass .cell tr td {
  1304. padding: 10px 0;
  1305. border-bottom: 1px solid #ebeef5;
  1306. display: block;
  1307. width: 100%;
  1308. }
  1309. .spanClass .cell tr:last-of-type td {
  1310. border-bottom: none;
  1311. }
  1312. </style>