123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563 |
- <template>
- <div class="main-contain">
- <div class="app-container " style="padding-left:0px;margin:0px;" v-loading="loading"
- element-loading-text="拼命加载中">
- <div style="justify-content: space-between;margin: 0px 0 12px 0;display: flex;align-items: center;">
- <div>
- <span style="font-size:14px;color:#606266">仓库:</span>
- <el-select v-model="storehouse_id" style="width:200px;margin-right:10px;" placeholder="请选择"
- filterable
- @change="changeStorehouseName">
- <el-option
- v-for="item in houseList"
- :key="item.id"
- :label="item.storehouse_name"
- :value="item.id">
- </el-option>
- </el-select>
- <span style="font-size:14px;color:#606266">库存预警:</span>
- <el-select v-model="good_type" style="width:250px;margin-right:10px;" placeholder="请选择"
- filterable
- @change="changeGoodName">
- <el-option
- v-for="item in goodList"
- :key="item.id"
- :label="item.name"
- :value="item.id">
- </el-option>
- </el-select>
- <el-input v-model="keyword" style="width:200px" placeholder="请输入药品名称或生产厂商" ></el-input>
- <el-button type="primary" icon="el-icon-search" @click="seach">搜索</el-button>
- </div>
-
- <div>
- <!-- <el-button
- size="small"
- class="filter-item"
- type="primary"
- @click="toCheck"
- >调试
- </el-button> -->
- <el-button
- size="small"
- class="filter-item"
- type="primary"
- @click="toSet"
- >设置
- </el-button>
- <el-button
- size="small"
- class="filter-item"
- type="primary"
- icon="el-icon-printer"
- @click="printOrder"
- >打印
- </el-button>
- <el-button
- size="small"
- class="filter-item"
- type="primary"
- @click="exportStock"
- >导出
- </el-button>
- </div>
- </div>
-
- <el-table
- :row-style="{ color: '#303133' }"
- :header-cell-style="{
- backgroundColor: 'rgb(245, 247, 250)',
- color: '#606266'
- }"
- :data="tableList"
- :class="signAndWeighBoxPatients"
- border
- :cell-class-name="cellStyle"
- >
- <el-table-column label="药品类型" align="center">
- <template slot-scope="scope">
- {{getDrugTypeName(scope.row.drug_type)}}
- </template>
- </el-table-column>
- <el-table-column label="药品名称" align="center">
- <template slot-scope="scope">
- {{scope.row.drug_name}}
- </template>
- </el-table-column>
- <el-table-column label="规格&单位" align="center">
- <template slot-scope="scope">
- {{scope.row.dose}}{{scope.row.dose_unit}}*{{scope.row.min_number}}{{scope.row.min_unit}}/{{scope.row.max_unit}}
- </template>
- </el-table-column>
- <el-table-column label="生产厂商" align="center">
- <template slot-scope="scope">
- {{getManufacturName(scope.row.manufacturer)}}
- </template>
- </el-table-column>
- <el-table-column label="经销商" align="center" v-if="org_id ==10485">
- <template slot-scope="scope">
- {{getDearName(scope.row.dealer)}}
- </template>
- </el-table-column>
- <el-table-column label="批准文号" align="center">
- <template slot-scope="scope">
- {{scope.row.number}}
- </template>
- </el-table-column>
- <el-table-column label="国家编码" align="center">
- <template slot-scope="scope">
- {{scope.row.medical_insurance_number}}
- </template>
- </el-table-column>
- <el-table-column label="仓库名称" align="center">
- <template slot-scope="scope">
- <tr style="background: none" v-for="(item, index) in scope.row.drug_stock_info" :key="index">
- <td style="border-right: none;border-inline-end: none;text-align: center;">
- {{ getHouseName(item.storehouse_id) }}
- </td>
- </tr>
- </template>
- </el-table-column>
-
- <el-table-column label="入库数量" align="center">
- <template slot-scope="scope">
- <tr style="background: none" v-for="(item, index) in scope.row.drug_stock_info" :key="index">
- <td style="border-right: none;border-inline-end: none;text-align: center; ">
-
- {{getDrugIn(item.storehouse_id,scope.row.drug_stock_count,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}
- </td>
- </tr>
- </template>
- </el-table-column>
-
- <el-table-column label="出库数量" align="center">
- <template slot-scope="scope">
- <tr style="background: none" v-for="(item, index) in scope.row.drug_stock_info" :key="index">
- <td style="border-right: none;border-inline-end: none;text-align: center;">
- <span>
-
- {{getActOut(item.storehouse_id,scope.row.drug_stock_count,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}
- </span>
- </td>
- </tr>
- </template>
- </el-table-column>
-
- <el-table-column label="退库数量" align="center">
- <template slot-scope="scope">
- <tr style="background: none" v-for="(item, index) in scope.row.drug_stock_info" :key="index">
- <td style="border-right: none;border-inline-end: none;text-align: center;">
-
- {{getDrugCancel(item.storehouse_id,scope.row.drug_stock_count,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}
- </td>
- </tr>
- </template>
- </el-table-column>
-
- <el-table-column label="实际出库" align="center">
- <template slot-scope="scope">
- <tr style="background: none" v-for="(item, index) in scope.row.drug_stock_info" :key="index">
- <td style="border-right: none;border-inline-end: none;text-align: center;">
-
- <span style="color:#0099FF" @click="toDialogClick(scope.row.id,scope.row.drug_name,scope.row.dose,scope.row.dose_unit,scope.row.min_number,scope.row.min_unit,scope.row.max_unit,item.storehouse_id)">
- {{getDrugOut(item.storehouse_id,scope.row.drug_stock_count,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}
- </span>
- </td>
- </tr>
- </template>
- </el-table-column>
-
- <el-table-column label="剩余库存" align="center">
- <template slot-scope="scope">
- <tr style="background: none" v-for="(item, index) in scope.row.drug_stock_info" :key="index">
- <td style="border-right: none;border-inline-end: none;text-align: center;">
- {{getFlushCount(item.storehouse_id,scope.row.drug_stock_count,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}
- </td>
- </tr>
- </template>
- </el-table-column>
-
- <el-table-column label="总库存量" align="center">
- <template slot-scope="scope">
- <div v-if="getWarehoseInfo(scope.row.drug_warehouse_info) > 0">
- <span v-if="scope.row.total_count<=scope.row.drug_stock_limit_count" style="color:red">{{getSumCount(scope.row.drug_stock_count,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}<i class="el-icon-warning"></i></span>
-
- <span v-if="scope.row.total_count >scope.row.drug_stock_limit_count">{{getSumCount(scope.row.drug_stock_count,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span>
- </div>
- </template>
- </el-table-column>
-
- <el-table-column
- prop="drug_name"
- label="操作"
- align="center"
- width="200px"
- >
- <template slot-scope="scope">
- <el-button
- size="small"
- type="primary"
- @click="handleDetail(scope.row)"
- >库存流水
- </el-button>
- <el-button
- size="small"
- type="primary"
- @click="handleBatch(scope.row)"
- >批次
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <el-pagination
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :page-sizes="[10, 50, 100,200,300,400,500,1000]"
- :page-size="10"
- background
- align="right"
- style="margin-top:20px;"
- layout="total, sizes, prev, pager, next, jumper"
- :total="total"
- >
- </el-pagination>
- </div>
-
-
- <el-dialog
- title="出库详情"
- :visible.sync="dialogVisible"
- width="70%">
- <span>
- 药品名称:{{drug_name}}
- 规格&单位:{{specification_name}}
- 查询日期:
- <el-date-picker
- size="small"
- v-model="start_first_time"
- prefix-icon="el-icon-date"
- :editable="false"
- style="width: 150px;"
- type="date"
- placeholder="选择日期时间"
- align="right"
- format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"
- @change="startFirstTimeChange"
- ></el-date-picker>
- <span>-</span>
- <el-date-picker
- size="small"
- v-model="end_first_time"
- prefix-icon="el-icon-date"
- :editable="false"
- style="width: 150px;"
- type="date"
- placeholder="选择日期时间"
- align="right"
- format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"
- @change="endEndTimeChange"
- ></el-date-picker>
- </span>
- <el-divider></el-divider>
- <el-table
- :row-style="{ color: '#303133' }"
- :header-cell-style="{
- backgroundColor: 'rgb(245, 247, 250)',
- color: '#606266'
- }"
- :data="tableData"
- :class="signAndWeighBoxPatients"
- border
- >
- <el-table-column label="序号" align="center">
- <template slot-scope="scope">
- {{scope.$index + 1}}
- </template>
- </el-table-column>
- <el-table-column label="单据编号" align="center">
- <template slot-scope="scope">
- {{scope.row.warehouse_out_order_number}}
- </template>
- </el-table-column>
- <el-table-column label="操作时间" align="center">
- <template slot-scope="scope">
- {{getTimeOne(scope.row.ctime)}}
- </template>
- </el-table-column>
- <el-table-column label="出库数量" align="center">
- <template slot-scope="scope">
- {{scope.row.count}}{{scope.row.count_unit}}
-
- </template>
- </el-table-column>
- <el-table-column label="库存数量" align="center">
- <template slot-scope="scope">
-
- <span v-if="parseInt(scope.row.over_count/scope.row.drug.min_number) > 0">{{parseInt(scope.row.over_count/scope.row.drug.min_number)}}{{scope.row.drug.max_unit}}</span>
- <span v-if="scope.row.over_count%scope.row.drug.min_number > 0">{{scope.row.over_count%scope.row.drug.min_number}}{{scope.row.drug.min_unit}}</span>
- </template>
- </el-table-column>
-
- <el-table-column label="使用人" align="center">
- <template slot-scope="scope">
- {{getName(scope.row.patient_id)}}
- </template>
- </el-table-column>
- <el-table-column label="备注" align="center">
- <template slot-scope="scope">
- {{scope.row.remark}}
- </template>
- </el-table-column>
- </el-table>
- <el-pagination
- @size-change="handleSizeChangeOne"
- @current-change="handleCurrentChangeOne"
- :page-sizes="[10, 50, 100,200,500,1000]"
- :page-size="10"
- background
- align="right"
- style="margin-top:20px;"
- layout="total, sizes, prev, pager, next, jumper"
- :total="totalone"
- >
- </el-pagination>
- <span slot="footer" class="dialog-footer">
- <el-button @click="dialogVisible = false">取 消</el-button>
- <el-button type="primary" @click="dialogVisible = false">确 定</el-button>
- </span>
- </el-dialog>
-
- <el-dialog title="设置" :visible.sync="visibility" :close-on-click-modal="isClose"
- :close-on-press-escape="isClose">
- <div style="text-align: center;">
-
- <div>
- <el-button type="primary" v-if="!is_open" @click="changeOpen(1)">启用自动扣减</el-button>
- <el-button type="danger" v-if="is_open" @click="changeOpen(2)">关闭自动扣减</el-button>
- <div style="margin-top: 40px;"><p style="color:#909399;text-align: center;">
- 启用“药品管理”后,在开透析医嘱时,医生可以选择药品后将自动产生出库单</p></div>
- </div>
- </div>
-
- <span slot="footer" class="dialog-footer">
- <el-button @click="hide()">取 消</el-button>
- </span>
- </el-dialog>
- </div>
- </template>
- <script>
- import { getStorehouseList,getDrugNewQuery,getDrugWarehouseOutInfoById } from "@/api/drug/drug"
- import { createDrugStockAutomaticReduceConfig, getDrugStockAutomaticReduceConfig,getDrugInitDataList } from '@/api/drug/drug_stock'
- import { uParseTime } from '@/utils/tools'
- import { max } from 'moment'
- const moment = require('moment')
- export default {
-
- data(){
- return{
- tableList:[],
- goodList:[
- {id:1,name:"全部药品"},
- {id:2,name:"库存预警"},
- {id:3,name:"库存为零"},
- {id:4,name:"库存不为零"},
- ],
- houseList:[],
- storehouse_id:0,
- good_type:1,
- multipleSelection: [],
- signAndWeighBoxPatients: "sign-and-weigh-box-patients",
- manufacturerList:[],
- limit:10,
- page:1,
- total:0,
- limitone:10,
- pageone:1,
- totalone:0,
- keyword:"",
- goodTypeList:[],
- start_time:"",
- end_time:"",
- countList:[],
- outCountList:[],
- autoCountList:[],
- cancelCountList:[],
- org_id:this.$store.getters.xt_user.org_id,
- dialogVisible:false,
- start_first_time:moment().startOf('month').format("YYYY-MM-DD"),
- end_first_time:moment().endOf('month').format("YYYY-MM-DD"),
- tableData:[],
- drug_id:0,
- patientList:[],
- drug_name:"",
- specification_name:"",
- drugTypeList:[],
- loading:false,
- flushList:[],
- flushListOne:[],
- dose:"",
- dose_unit:"",
- min_number:0,
- max_unit:"",
- min_unit:"",
- is_open: false,
- visibility: false,
- isClose: false,
- drug_type: 0,
- storehouseId:0,
- dealerList:[],
- }
-
- },
- methods:{
- changeStorehouseName(){
- this.getlist()
- },
- changeGoodName(){
- this.getlist()
- },
- toClick(val){
- var manufacturer_name = ""
- var specification_name = ""
- for(let i=0;i<this.manufacturerList.length;i++){
- if(val.manufacturer == this.manufacturerList[i].id){
- manufacturer_name = this.manufacturerList[i].manufacturer_name
- }
- }
- specification_name = val.specification_name + "/" + val.packing_unit
- var overCount = this.getOverplus(val.xt_warehouse_info)
- // window.sessionStorage.setItem('start_time',this.start_time)
- // window.sessionStorage.setItem('end_time',this.end_time)
- this.$router.push({path:"/stock/in/stockflow?id="+val.id+"&manufacturer="+manufacturer_name+"&packing_unit="+val.packing_unit+"&overCount="+overCount})
- },
- toClickOne(val){
-
- var manufacturer_name = ""
- var specification_name = ""
- for(let i=0;i<this.manufacturerList.length;i++){
- if(val.manufacturer == this.manufacturerList[i].id){
- manufacturer_name = this.manufacturerList[i].manufacturer_name
- }
- }
- specification_name = val.specification_name + "/" + val.packing_unit
- var overCount = this.getOverplus(val.xt_warehouse_info)
- // window.sessionStorage.setItem('start_time',this.start_time)
- // window.sessionStorage.setItem('end_time',this.end_time)
- this.$router.push({path:"/stock/in/stockbatchnumber?id="+val.id+"&manufacturer="+manufacturer_name+"&packing_unit="+val.packing_unit+"&overCount="+overCount})
- },
-
- getStorehouseList(){
- getStorehouseList().then(response=>{
- if(response.data.state == 1){
- var houseList = response.data.data.list
- var obj = {id:0,storehouse_name:"全部"}
- this.houseList.push(obj)
- for(let i=0;i<houseList.length;i++){
- this.houseList.push(houseList[i])
- }
- this.manufacturerList = response.data.data.manufacturerList
- this.goodTypeList = response.data.data.goodTypeList
- this.patientList = response.data.data.patientList
- this.dealerList = response.data.data.dealerList
- }
- })
- },
- getlist(){
- this.loading = true
- var params = {
- storehouse_id:this.storehouse_id,
- good_type:this.good_type,
- keyword:this.keyword,
- page:this.page,
- limit:this.limit,
- start_time:this.start_time,
- end_time:this.end_time,
- }
- this.tableList = []
- getDrugNewQuery(params).then(response=>{
- if(response.data.state == 1){
- this.loading = false
- // var list = response.data.data.list
-
- var countList = response.data.data.countList
- console.log("countList999999999999",countList)
- for (let i = 0; i < countList.length; i++) {
- for (let j = 0; j < countList[i].drug_warehouse_info.length; j++) {
- if (countList[i].max_unit == countList[i].drug_warehouse_info[j].max_unit) {
- countList[i].drug_warehouse_info[j].stock_max_number =countList[i].min_number *countList[i].drug_warehouse_info[j].stock_max_number
- countList[i].drug_warehouse_info[j].warehousing_count =countList[i].min_number *countList[i].drug_warehouse_info[j].warehousing_count
- }
- }
- }
- this.tableList = countList
- // for (let i = 0; i < list.length; i++) {
- // for (let j = 0; j < list[i].drug_warehouse_info.length; j++) {
- // if (list[i].max_unit == list[i].drug_warehouse_info[j].max_unit) {
- // list[i].drug_warehouse_info[j].stock_max_number =list[i].min_number *list[i].drug_warehouse_info[j].stock_max_number
- // list[i].drug_warehouse_info[j].warehousing_count =list[i].min_number *list[i].drug_warehouse_info[j].warehousing_count
- // }
- // }
- // for (let y = 0; y < list[i].drug_warehouse_out.length; y++) {
- // if (list[i].drug_warehouse_out[y].count_unit == list[i].max_unit) {
- // list[i].drug_warehouse_out[y].count =list[i].drug_warehouse_out[y].count * list[i].min_number
- // }
- // }
- // for (let z = 0; z < list[i].drug_cancel_stock_info.length; z++) {
- // if (list[i].drug_cancel_stock_info[z].max_unit == list[i].max_unit) {
- // list[i].drug_cancel_stock_info[z].count =list[i].drug_cancel_stock_info[z].count * list[i].min_number
- // }
- // }
-
- // for (let m = 0; m < list[i].drug_flow_info.length; m++) {
- // if (list[i].drug_flow_info[m].max_unit == list[i].max_unit) {
- // list[i].drug_flow_info[m].count =list[i].drug_flow_info[m].count * list[i].min_number
- // }
- // }
-
- // for (let n = 0; n< list[i].drug_act_flow_info.length; n++) {
- // if (list[i].drug_act_flow_info[n].max_unit == list[i].max_unit) {
- // list[i].drug_act_flow_info[n].count =list[i].drug_act_flow_info[n].count * list[i].min_number
- // }
- // }
- // }
- // var arr = [];
- // for (let i = 0; i < list.length; i++) {
- // if (list[i].drug_warehouse_info.length > 0) {
- // arr.push(list[i]);
- // }
- // }
- // this.tableList = arr;
- this.total = response.data.data.total
- this.drugTypeList = response.data.data.drugTypeList
- }
- })
- },
- getManufacturName(id){
- var manufacturer_name = ""
- for(let i=0;i<this.manufacturerList.length;i++){
- if(id == this.manufacturerList[i].id){
- manufacturer_name = this.manufacturerList[i].manufacturer_name
- }
- }
- return manufacturer_name
- },
- handleSizeChange(val) {
- this.limit = val;
- this.getlist()
- },
- handleCurrentChange(val) {
- this.page = val;
- this.getlist()
- },
- handleSizeChangeOne(val) {
- this.limitone = val;
- this.toDialogClick(this.drug_id,this.drug_name,this.dose,this.dose_unit,this.min_number,this.min_unit,this.max_unit,this.storehouseId)
- },
- handleCurrentChangeOne(val) {
- this.pageone = val;
- this.toDialogClick(this.drug_id,this.drug_name,this.dose,this.dose_unit,this.min_number,this.min_unit,this.max_unit,this.storehouseId)
- },
- seach(){
- this.getlist()
- },
- getGoodTypeName(id){
- var type_name = ""
- for(let i=0;i<this.goodTypeList.length;i++){
- if(id == this.goodTypeList[i].id){
- type_name = this.goodTypeList[i].type_name
- }
- }
- return type_name
- },
- getHouseName(id){
- var storehouse_name = ""
- for(let i=0;i<this.houseList.length;i++){
- if(id == this.houseList[i].id){
- storehouse_name = this.houseList[i].storehouse_name
- }
- }
- return storehouse_name
- },
- getWareInfoCount(val,storehouse_id){
- var count = 0
- if(val.length > 0){
- for(let i=0;i<val.length;i++){
- if(val[i].storehouse_id == storehouse_id){
- count +=val[i].warehousing_count
- }
- }
- }
- if(count > 0){
- return count
- }else{
- return ""
- }
- },
- getOverFlushInfo(arr, max_unit, min_unit, min_number) {
- console.log("ar232323232323232wo",arr)
- var max_str = "";
- var min_str = "";
- var total = 0;
- var newarr = arr;
- if (newarr.length > 0) {
- for (let i = 0; i < newarr.length; i++) {
- total += newarr[i].stock_max_number + newarr[i].stock_min_number;
- }
- }
- if (total < min_number) {
- min_str = total + min_unit;
- }
- if (total == 0) {
- min_str = "";
- max_str = "";
- }
- if (total >= min_number) {
- if (parseInt(total / min_number) != 0) {
- max_str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- min_str = (total % min_number) + min_unit;
- }
- }
- return max_str + min_str;
- },
- toDialogClick(id,drug_name,dose,dose_unit,min_number,min_unit,max_unit,storehouse_id){
- this.drug_id = id
- this.drug_name = drug_name
- this.dose = dose
- this.dose_unit = dose_unit
- this.min_number = min_number
- this.min_unit = min_unit
- this.max_unit = max_unit
- this.specification_name = dose + dose_unit + "*"+min_number+min_unit +"/"+ max_unit
- this.storehouseId = storehouse_id
- var params = {
- drug_id:id,
- limit:this.limitone,
- page:this.pageone,
- start_first_time:this.start_first_time,
- end_first_time:this.end_first_time,
- storehouse_id:storehouse_id,
- }
- getDrugWarehouseOutInfoById(params).then(response=>{
- if(response.data.state == 1){
- var list = response.data.data.list
- console.log("list23233233232w",list)
- this.tableData = list
- var flushList = response.data.data.flushList
- console.log("flushList",flushList)
- this.flushList = flushList
- var flushListOne = response.data.data.flushListOne
- this.flushListOne = flushListOne
- this.totalone = response.data.data.total
- this.dialogVisible = true
- }
- })
-
- },
- startFirstTimeChange(){
- this.toDialogClick(this.drug_id,this.drug_name,this.dose,this.dose_unit,this.min_number,this.min_unit,this.max_unit,this.storehouseId)
- },
- endEndTimeChange(){
- this.toDialogClick(this.drug_id,this.drug_name,this.dose,this.dose_unit,this.min_number,this.min_unit,this.max_unit,this.storehouseId)
- },
- getTime(val) {
- if(val < 0){
- return ""
- }
- if(val == ""){
- return ""
- }else {
- return uParseTime(val, '{y}-{m}-{d}')
- }
- },
- getTimeOne(val) {
- if(val < 0){
- return ""
- }
- if(val == ""){
- return ""
- }else {
- return uParseTime(val, '{y}-{m}-{d} {h}:{i}')
- }
- },
- getName(id){
- var name = ""
- for(let i=0;i<this.patientList.length;i++){
- if(id == this.patientList[i].id){
- name = this.patientList[i].name
- }
- }
- return name
- },
- getDrugTypeName(id){
- var type_name = ""
- for(let i=0;i<this.drugTypeList.length;i++){
- if(id == this.drugTypeList[i].value){
- type_name = this.drugTypeList[i].name
- }
- }
- return type_name
- },
- getWarehoseInfoSeven(arr, max_unit, min_unit, min_number, storehouse_id) {
- var total = 0;
- var max_str = "";
- var min_str = "";
- if (arr.length > 0) {
- for (let i = 0; i < arr.length; i++) {
- if (arr[i].storehouse_id == storehouse_id) {
- total += parseInt(arr[i].warehousing_count);
- }
- }
- }
- if (total < min_number) {
- min_str = total + min_unit;
- }
- if (total == 0) {
- min_str = "";
- max_str = "";
- }
- if (total >= min_number) {
- if (parseInt(total / min_number) != 0) {
- max_str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- min_str = (total % min_number) + min_unit;
- }
- }
- return max_str + min_str;
- },
- getOutFlushNightSix(info, max_unit, min_unit,min_number,storehouse_id,val){
- var str = "";
- var str_min = "";
-
- //总库存
- var total = 0;
- var total_one = 0
- var total_two = 0
- for (let i = 0; i < info.length; i++) {
- if (info[i].storehouse_id == storehouse_id) {
- total_one += info[i].count;
- }
- }
- if(val!=null && val.length > 0){
- for (let i = 0; i < val.length; i++) {
- if (val[i].storehouse_id == storehouse_id) {
- total_two += val[i].count;
- }
- }
- }
-
- if((total_one - total_two) > 0){
- total = total_one - total_two
- }
-
- if (parseInt(total / min_number) != 0) {
- str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- str_min = (total % min_number) + min_unit;
- }
- return str + str_min;
- },
- getOutFlushNightSeven(info, max_unit, min_unit,min_number,storehouse_id){
- var str = "";
- var str_min = "";
- //总库存
- var total = 0;
- var totalOne = 0
- var totalTwo = 0
- if(info!=null && info.length > 0){
- for (let i = 0; i < info.length; i++) {
- if (info[i].storehouse_id == storehouse_id) {
- totalOne += info[i].count;
- }
- }
- }
- total = totalOne
-
-
- if (parseInt(total / min_number) != 0) {
- str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- str_min = (total % min_number) + min_unit;
- }
- return str + str_min;
- },
- getOutFlushNight(info, max_unit, min_unit,min_number, cancel_info,storehouse_id){
- var str = "";
- var str_min = "";
- //总库存
- var total = 0;
- var out_count = 0;
- var over_count = 0;
- var cancel_count = 0;
- for (let i = 0; i < info.length; i++) {
- if (info[i].storehouse_id == storehouse_id) {
- total += info[i].warehousing_count;
- }
- }
-
- for (let j = 0; j < info.length; j++) {
- if (info[j].storehouse_id == storehouse_id) {
- out_count += info[j].stock_max_number + info[j].stock_min_number;
- }
- }
- over_count = total - out_count;
- if (parseInt(over_count / min_number) != 0) {
- str = parseInt(over_count / min_number) + max_unit;
- }
- if (over_count % min_number != 0) {
- str_min = (over_count % min_number) + min_unit;
- }
- return str + str_min;
- },
- getOverFlushInfoEight(arr, max_unit, min_unit, min_number, storehouse_id) {
- var max_str = "";
- var min_str = "";
- var total = 0;
- var newarr = arr;
-
- if (newarr.length > 0) {
- for (let i = 0; i < newarr.length; i++) {
- if (newarr[i].storehouse_id == storehouse_id) {
- total += newarr[i].stock_max_number + newarr[i].stock_min_number;
- }
- }
- }
- if (total < min_number) {
- min_str = total + min_unit;
- }
- if (total == 0) {
- min_str = "";
- max_str = "";
- }
- if (total >= min_number) {
- if (parseInt(total / min_number) != 0) {
- max_str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- min_str = (total % min_number) + min_unit;
- }
- }
-
- return max_str + min_str;
- },
-
- getWarehoseInfo(arr) {
- var total = 0;
- if (arr.length > 0) {
- for (let i = 0; i < arr.length; i++) {
- total += parseInt(arr[i].warehousing_count);
- }
- }
- if (total == 0) {
- total = "";
- }
-
- return total;
- },
- getOutFlushTen(info, max_unit, min_unit,min_number,storehouse_id){
- var str = "";
- var str_min = "";
- //总库存
- var total = 0;
- for (let i = 0; i < info.length; i++) {
- if (info[i].storehouse_id == storehouse_id) {
- total += info[i].count;
- }
- }
- if (parseInt(total / min_number) != 0) {
- str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- str_min = (total % min_number) + min_unit;
- }
- return str + str_min;
- },
- getDrugOut(info, max_unit, min_unit,min_number,storehouse_id,cancel_stock_info){
-
- var str = "";
- var str_min = "";
- var cancel_count = 0
- var cha_count = 0
- //总库存
- var total = 0;
- for (let i = 0; i < info.length; i++) {
- if (info[i].storehouse_id == storehouse_id) {
- total += info[i].count;
- }
- }
- for (let i = 0; i < cancel_stock_info.length; i++) {
- if(cancel_stock_info[i].storehouse_id == storehouse_id) {
- cancel_count += cancel_stock_info[i].count;
- }
- }
- cha_count = total - cancel_count
-
- if (parseInt(cha_count / min_number) != 0) {
- str = parseInt(cha_count / min_number) + max_unit;
- }
- if (cha_count % min_number != 0) {
- str_min = (cha_count % min_number) + min_unit;
- }
- return str + str_min;
- },
- handleDetail(val) {
- var manufacturer_name = "";
- for (let i = 0; i < this.manufacturerList.length; i++) {
- if (val.manufacturer == this.manufacturerList[i].id) {
- manufacturer_name = this.manufacturerList[i].manufacturer_name;
- }
- }
- var over_plus = this.getOverFlushInfo(
- val.drug_warehouse_info,
- val.max_unit,
- val.min_unit,
- val.min_number
- );
- this.$router.push({
- path:
- "/drugstock/in/drugstockflow?drug_id=" +
- val.id +
- "&manufacturer=" +
- manufacturer_name +
- "&min_number=" +
- val.min_number +
- "&max_unit=" +
- val.max_unit +
- "&min_unit=" +
- val.min_unit +
- "&over_plus=" +
- over_plus,
- });
- window.sessionStorage.setItem("start_time", this.start_time);
- window.sessionStorage.setItem("end_time", this.end_time);
- },
- handleBatch(val) {
-
- var manufacturer_name = "";
- for (let i = 0; i < this.manufacturerList.length; i++) {
- if (val.manufacturer == this.manufacturerList[i].id) {
- manufacturer_name = this.manufacturerList[i].manufacturer_name;
- }
- }
- var unit =
- val.dose +
- val.dose_unit +
- "*" +
- val.min_number +
- val.min_unit +
- "/" +
- val.max_unit;
- var over_plus = this.getOverFlushInfo(
- val.drug_warehouse_info,
- val.max_unit,
- val.min_unit,
- val.min_number
- );
-
- window.sessionStorage.setItem("start_time", this.start_time);
- window.sessionStorage.setItem("end_time", this.end_time);
- this.$router.push({
- path:
- "/drugstock/in/drugbatchnumber?drug_id=" +
- val.id +
- "&manufacturer=" +
- manufacturer_name +
- "&unit=" +
- unit +
- "&min_number=" +
- val.min_number +
- "&max_unit=" +
- val.max_unit +
- "&min_unit=" +
- val.min_unit +
- "&over_plus=" +
- over_plus,
- });
- },
- // 合并单元格样式
- cellStyle({ row, column, rowIndex, columnIndex }) {
- let arr = [5,6, 7, 8, 9,10,11];
- if (arr.indexOf(columnIndex) > -1) {
- return "spanClass";
- }
- },
-
- hide: function() {
- this.visibility = false
- },
- toSet: function() {
- this.getConfig()
- this.visibility = true
-
- }, changeOpen(val) {
- var message = ''
- if (val == 1) {
- message = '启用药品自动扣减功能'
- } else {
- message = '关闭药品自动扣减功能'
- }
-
- this.$confirm(message, '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'info'
- }).then(() => {
- createDrugStockAutomaticReduceConfig(val).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg)
- return false
- } else {
- if (response.data.data.is_open == 1) {
- this.is_open = true
- this.$message({
- type: 'success',
- message: '已启用'
- })
- } else {
- this.is_open = false
- this.$message({
- type: 'success',
- message: '已关闭'
- })
- }
- }
- })
- }).catch(() => {
-
- })
-
- },
- getConfig() {
- getDrugStockAutomaticReduceConfig().then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg)
- return false
- } else {
- var config = response.data.data.config
- if (config.is_open == 1) {
- this.is_open = true
- } else {
- this.is_open = false
- }
- }
- })
- },
- printOrder() {
- this.$router.push("/drugs/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)
- },
- exportStock() {
- console.log("tablelist23322332",this.tableList)
-
- if(this.tableList!=null && this.tableList.length > 0){
- for(let i=0;i<this.tableList.length;i++){
- this.tableList[i].index = i +1
- this.tableList[i].drug_type_name = this.getDrugTypeName(this.tableList[i].drug_type)
- this.tableList[i].specification_name = this.tableList[i].dose + this.tableList[i].dose_unit + "*" +this.tableList[i].min_number + this.tableList[i].min_unit +"/"+this.tableList[i].max_unit
- this.tableList[i].manufacturer_name = this.getManufacturName(this.tableList[i].manufacturer)
-
- this.tableList[i].stock_in_count = this.getStockIn(this.tableList[i].drug_stock_count, this.tableList[i].max_unit, this.tableList[i].min_unit,this.tableList[i].min_number);
- this.tableList[i].stock_out_count = this.getActCount(this.tableList[i].drug_stock_count,this.tableList[i].max_unit,this.tableList[i].min_unit,this.tableList[i].min_number)
- this.tableList[i].cancle_out_count = this.getCancleOut(this.tableList[i].drug_stock_count,this.tableList[i].max_unit,this.tableList[i].min_unit,this.tableList[i].min_number)
- this.tableList[i].act_cout = this.getStockOut(this.tableList[i].drug_stock_count,this.tableList[i].max_unit,this.tableList[i].min_unit,this.tableList[i].min_number,this.tableList[i].drug_cancel_stock_info)
- this.tableList[i].over_count = this.getOverCount(this.tableList[i].drug_stock_count,this.tableList[i].max_unit,this.tableList[i].min_unit,this.tableList[i].min_number)
- this.tableList[i].sum_count = this.getOverCount(this.tableList[i].drug_stock_count,this.tableList[i].max_unit,this.tableList[i].min_unit,this.tableList[i].min_number)
- }
- }
-
- import("@/vendor/Export2Excel").then((excel) => {
- const tHeader = [
- "序号",
- "药品类型",
- "药品名称",
- "规格&单位",
- "生产厂商",
- "批准文号",
- "国家编码",
- "入库数量",
- "出库数量",
- "退库数量",
- "实际出库",
- "剩余库存",
- "总库存",
- ];
- const filterVal = [
- "index",
- "drug_type_name",
- "drug_name",
- "specification_name",
- "manufacturer_name",
- "number",
- "medical_insurance_number",
- "stock_in_count",
- "stock_out_count",
- "cancle_out_count",
- "act_cout",
- "over_count",
- "sum_count",
- ];
-
- const data = this.formatJson(filterVal, this.tableList);
- excel.export_json_to_excel({
- header: tHeader,
- data,
- filename: "药品查询",
- });
- this.downloadLoading = false;
- });
- },
- formatJson(filterVal, jsonData) {
- return jsonData.map((v) => filterVal.map((j) => v[j]));
- },
- getDrugType(id) {
- var name = "";
- for (let i = 0; i < this.drugTypeList.length; i++) {
- if (this.drugTypeList[i].id == id) {
- name = this.drugTypeList[i].name;
- }
- }
-
- return name;
- },
- getManufacturerList(id) {
- var name = "";
- for (let i = 0; i < this.manufacturerList.length; i++) {
- if (id == this.manufacturerList[i].id) {
- name = this.manufacturerList[i].manufacturer_name;
- }
- }
- return name;
- },
- getWarehoseInfoOne(arr, max_unit, min_unit, min_number) {
- var total = 0;
- var max_str = "";
- var min_str = "";
- if (arr.length > 0) {
- for (let i = 0; i < arr.length; i++) {
- total += parseInt(arr[i].warehousing_count);
- }
- }
- if (total < min_number) {
- min_str = total + min_unit;
- }
- if (total == 0) {
- min_str = "";
- max_str = "";
- }
- if (total >= min_number) {
- if (parseInt(total / min_number) != 0) {
- max_str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- min_str = (total % min_number) + min_unit;
- }
- }
- return max_str + min_str;
- },
- getWarehouseOutInfo(arr, max_unit, min_unit, min_number) {
- var min_str = "";
- var max_str = "";
- var total = 0;
- if (arr.length > 0) {
- for (let i = 0; i < arr.length; i++) {
- total += parseInt(arr[i].count);
- }
- }
-
- if (total < min_number) {
- min_str = total + min_unit;
- }
- if (total == 0) {
- min_str = "";
- max_str = "";
- }
- if (total >= min_number) {
- if (parseInt(total / min_number) != 0) {
- max_str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- min_str = (total % min_number) + min_unit;
- }
- }
- return max_str + min_str;
- },
- getStockIn(arr, max_unit, min_unit, min_number) {
- var total = 0;
- var max_str = "";
- var min_str = "";
- if (arr.length > 0) {
- for (let i = 0; i < arr.length; i++) {
- total += parseInt(arr[i].sum_in_count);
- }
- }
- if (total < min_number) {
- min_str = total + min_unit;
- }
- if (total == 0) {
- min_str = "";
- max_str = "";
- }
- if (total >= min_number) {
- if (parseInt(total / min_number) != 0) {
- max_str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- min_str = (total % min_number) + min_unit;
- }
- }
- return max_str + min_str;
- },
- getStockOut(info, max_unit, min_unit,min_number,val){
- var str = "";
- var str_min = "";
- //总库存
- var total = 0;
- var totalOne = 0
- // var totalTwo = 0
- if(info!=null && info.length > 0){
- for (let i = 0; i < info.length; i++) {
- totalOne += info[i].sum_out_count;
- }
- }
-
- // if(val!=null && val.length > 0){
- // for (let i = 0; i < val.length; i++) {
- // totalTwo += val[i].sum_cancel_count;
- // }
- // }
-
- total = totalOne
-
-
- if (parseInt(total / min_number) != 0) {
- str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- str_min = (total % min_number) + min_unit;
- }
- return str + str_min;
- },
- getCancleOut(info, max_unit, min_unit,min_number){
- var str = "";
- var str_min = "";
- //总库存
- var total = 0;
- for (let i = 0; i < info.length; i++) {
- total += info[i].sum_cancel_count;
- }
- if (parseInt(total / min_number) != 0) {
- str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- str_min = (total % min_number) + min_unit;
- }
- return str + str_min;
- },
- getActCount(info, max_unit, min_unit,min_number){
- var str = "";
- var str_min = "";
- //总库存
- var total = 0;
- for (let i = 0; i < info.length; i++) {
-
- total += info[i].sum_act_out_count;
-
- }
-
- if (parseInt(total / min_number) != 0) {
- str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- str_min = (total % min_number) + min_unit;
- }
- return str + str_min;
- },
- getOverCount(arr, max_unit, min_unit, min_number) {
- var max_str = "";
- var min_str = "";
- var total = 0;
- if (arr.length > 0) {
- for (let i = 0; i < arr.length; i++) {
-
- total += arr[i].flush_count
-
- }
- }
- if (total < min_number) {
- min_str = total + min_unit;
- }
- if (total == 0) {
- min_str = "";
- max_str = "";
- }
- if (total >= min_number) {
- if (parseInt(total / min_number) != 0) {
- max_str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- min_str = (total % min_number) + min_unit;
- }
- }
-
- return max_str + min_str;
- },
-
- //修改后的
- getDrugIn(storehouse_id,val,max_unit,min_unit,min_number){
- var max_str = "";
- var min_str = "";
- var total = 0;
-
- if(val!=null && val!=undefined){
- for(let i=0;i<val.length;i++){
- if(storehouse_id == val[i].storehouse_id){
- total = val[i].sum_in_count
- }
- }
- }
-
- if (total < min_number) {
- min_str = total + min_unit;
- }
- if (total == 0) {
- min_str = "";
- max_str = "";
- }
- if (total >= min_number) {
- if (parseInt(total / min_number) != 0) {
- max_str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- min_str = (total % min_number) + min_unit;
- }
- }
-
- return max_str + min_str;
- },
- getDrugOut(storehouse_id,val,max_unit,min_unit,min_number){
- var max_str = "";
- var min_str = "";
- var total = 0;
-
- if(val!=null && val!=undefined){
- for(let i=0;i<val.length;i++){
- if(storehouse_id == val[i].storehouse_id){
- total = val[i].sum_out_count
- }
- }
- }
-
- if (total < min_number) {
- min_str = total + min_unit;
- }
- if (total == 0) {
- min_str = "";
- max_str = "";
- }
- if (total >= min_number) {
- if (parseInt(total / min_number) != 0) {
- max_str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- min_str = (total % min_number) + min_unit;
- }
- }
-
- return max_str + min_str;
- },
- getDrugCancel(storehouse_id,val,max_unit,min_unit,min_number){
- var max_str = "";
- var min_str = "";
- var total = 0;
-
- if(val!=null && val!=undefined){
- for(let i=0;i<val.length;i++){
- if(storehouse_id == val[i].storehouse_id){
- total = val[i].sum_cancel_count
- }
- }
- }
-
- if (total < min_number) {
- min_str = total + min_unit;
- }
- if (total == 0) {
- min_str = "";
- max_str = "";
- }
- if (total >= min_number) {
- if (parseInt(total / min_number) != 0) {
- max_str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- min_str = (total % min_number) + min_unit;
- }
- }
-
- return max_str + min_str;
- },
- getActOut(storehouse_id,val,max_unit,min_unit,min_number){
- var max_str = "";
- var min_str = "";
- var total = 0;
-
- if(val!=null && val!=undefined){
- for(let i=0;i<val.length;i++){
- if(storehouse_id == val[i].storehouse_id){
- total = val[i].sum_act_out_count
- }
- }
- }
-
- if (total < min_number) {
- min_str = total + min_unit;
- }
- if (total == 0) {
- min_str = "";
- max_str = "";
- }
- if (total >= min_number) {
- if (parseInt(total / min_number) != 0) {
- max_str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- min_str = (total % min_number) + min_unit;
- }
- }
-
- return max_str + min_str;
- },
- getFlushCount(storehouse_id,val,max_unit,min_unit,min_number){
- var max_str = "";
- var min_str = "";
- var total = 0;
-
- if(val!=null && val!=undefined){
- for(let i=0;i<val.length;i++){
- if(storehouse_id == val[i].storehouse_id){
- total = val[i].flush_count
- }
- }
- }
-
- if (total < min_number) {
- min_str = total + min_unit;
- }
- if (total == 0) {
- min_str = "";
- max_str = "";
- }
- if (total >= min_number) {
- if (parseInt(total / min_number) != 0) {
- max_str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- min_str = (total % min_number) + min_unit;
- }
- }
-
- return max_str + min_str;
- },
- getSumCount(val,max_unit,min_unit,min_number){
- var max_str = "";
- var min_str = "";
- var total = 0;
- if(val!=null && val!=undefined){
- for(let i=0;i<val.length;i++){
- total += val[i].flush_count
- }
- }
- if (total < min_number) {
- min_str = total + min_unit;
- }
- if (total == 0) {
- min_str = "";
- max_str = "";
- }
- if (total >= min_number) {
- if (parseInt(total / min_number) != 0) {
- max_str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- min_str = (total % min_number) + min_unit;
- }
- }
- return max_str + min_str;
- },
- toCheck(){
- getDrugInitDataList().then(response=>{
- if(response.data.state == 1){
-
- this.$message.success("保存成功!")
- }
- })
- },
- getDearName(id){
- var dear_name = ""
- for(let i=0;i<this.dealerList.length;i++){
- if(id == this.dealerList[i].id){
- dear_name = this.dealerList[i].dealer_name
- }
- }
- return dear_name
- },
- },
- created(){
- this.getStorehouseList()
- this.getlist()
-
- }
- }
- </script>
-
- <style>
- .sign-and-weigh-box .sign-and-weigh-box-patients .cell {
- font-size: 12px;
- }
-
- .sign-and-weigh-box .sign-and-weigh-box-patients .current-row > td {
- background: #6fb5fa;
- }
-
- .count {
- color: #bd2c00;
- }
-
- .el-table td,
- .el-table th.is-leaf,
- .el-table--border,
- .el-table--group {
- border-color: #d0d3da;
- }
-
- .el-table--border::after,
- .el-table--group::after,
- .el-table::before {
- background-color: #d0d3da;
- }
-
- /* 合并表格线样式 */
- .spanClass .cell {
- padding: 0 !important;
- }
-
- .spanClass .cell tr {
- display: inline-block;
- width: 100%;
- }
-
- .spanClass .cell tr td {
- padding: 10px 0;
- border-bottom: 1px solid #ebeef5;
- display: block;
- width: 100%;
- }
- .spanClass .cell tr:last-of-type td {
- border-bottom: none;
- }
- </style>
|