123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- <template>
- <div class="main-contain">
- <div class="position">
- <bread-crumb :crumbs="crumbs"></bread-crumb>
- <el-row style="float:right;">
- <el-col :span="24">
- <el-button size="small" icon="el-icon-printer" type="primary" @click="printAction">打印</el-button>
- </el-col>
- </el-row>
- </div>
- <div class="app-container" style="background-color: white;">
- <div id="print_content">
- <div class="print_main_content">
- <div class="order_title_panl">
- <span class="main_title">耗材管理查询表</span>
- </div>
- <div style="text-align:right;margin-bottom:20px;font-size: 18px;">
- 打印时间:{{time_now}}
- </div>
- <div class="table_panel">
- <table class="table">
- <thead>
- <tr>
- <td width="60">药品名称</td>
- <td width="80">规格名称</td>
- <td width="80">入库数量</td>
- <td width="80">实际入库</td>
- <td width="80">出库数量</td>
- <td width="80">实际出库</td>
- <td width="80">剩余库存</td>
- </tr>
- </thead>
- <tbody>
- <tr v-for='(item,index) in tableData' :key="index">
- <td>{{item.drug_name}}</td>
- <td>{{item.drug_spec}}</td>
- <td>{{item.Count}}</td>
- <td>{{item.Count}}</td>
- <td>{{item.outCount}}</td>
- <td>{{item.outCount}}</td>
- <td>{{item.total}}</td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
-
- <script>
- import BreadCrumb from '@/xt_pages/components/bread-crumb'
- import { getSelfStockQuery } from "@/api/drug/drug"
- import print from 'print-js'
- const moment = require('moment')
- export default {
- components:{
- BreadCrumb
- },
- data(){
- return{
- crumbs: [
- { path: false, name: '自备药管理' },
- { path: false, name: '库存查询' },
- { path: false, name: '库存打印' },
- ],
- start_time:"",
- end_time:"",
- drug_name:"",
- drug_spec:"",
- keyword:"",
- tableData:[],
- time_now:moment(new Date()).add('year',0).format("YYYY-MM-DD"),
- type_name:"",
- limit:20,
- page:1,
- }
- },
- methods:{
- printAction: function() {
- const style = '@media print { .print_main_content { background-color: white; width:960px; margin:0 auto; padding: 0 0 20px 0; } .order_title_panl { text-align: center; } .main_title { font-size: 18px; line-height: 40px; font-weight: 500; } .table_panel { } .table { width: 100%; border: 1px solid; border-collapse: collapse; padding: 2px; } thead tr td { border: 1px solid; text-align: center; font-size: 16px; padding: 15px 5px; } tbody tr td { border: 1px solid; text-align: center; font-size: 16px; padding: 10px 5px; white-space: pre-line;} .proj { padding: 5px 0; text-align: left; } .proj_title { font-size: 16px; font-weight: 500; line-height: 25px; } .proj_item { font-size: 15px; line-height: 20px; } .zone_name { font-weight: 500; } }'
- printJS({
- printable: 'print_content',
- type: 'html',
- documentTitle: ' ',
- style: style,
- scanStyles: false
- })
- },
- getlist(){
- var params ={
- type_name:this.type_name,
- start_time:this.start_time,
- end_time:this.end_time,
- keywords:this.keywords,
- page:this.page,
- limit:this.limit
- }
- console.log("params",params)
- getSelfStockQuery(params).then(response=>{
- if(response.data.state == 1){
- var stockQuery = response.data.data.stockQuery
- var stockOutQuery = response.data.data.stockOutQuery
- for(let i=0;i<stockQuery.length;i++){
- for(let j=0;j<stockOutQuery.length;j++){
- if(stockQuery[i].drug_name_id == stockOutQuery[j].drug_name_id ){
- stockQuery[i].outCount = stockOutQuery[j].Count
- stockQuery[i].total = stockQuery[i].Count - stockOutQuery[j].Count
- }
- }
- }
- console.log("表格数据",stockQuery)
- this.tableData = stockQuery
- }
- })
- },
- },
- created(){
- var starttime = this.$route.query.start_time
- this.start_time = starttime
- var endtime = this.$route.query.end_time
- this.end_time = endtime
- var type_name = this.$route.query.type_name
- this.type_name = type_name
- var keyword = this.$route.query.keyword
- this.keyword = keyword
-
- this.getlist()
- }
- }
- </script>
-
-
- <style rel="stylesheet/scss" lang="scss" scoped>
- .print_main_content {
- background-color: white;
- max-width: 1500px;
- margin: 0 auto;
- padding: 0 0 20px 0;
-
- .order_title_panl {
- text-align: center;
-
- .main_title {
- font-size: 18px;
- line-height: 40px;
- font-weight: 500;
- }
- }
- .table_panel {
- .table {
- width: 100%;
- border: 1px solid;
- border-collapse: collapse;
- padding: 2px;
-
-
- thead {
- tr {
- td {
- border: 1px solid;
- text-align: center;
- font-size: 18px;
- padding: 15px 5px;
- }
- }
- }
- tbody {
- tr {
- td {
- border: 1px solid;
- text-align: center;
- font-size: 18px;
- padding: 10px 5px;
- white-space: pre-line;
- .proj {
- padding: 5px 0;
- text-align: left;
-
- .proj_title {
- font-size: 16px;
- font-weight: 500;
- line-height: 25px;
- }
-
- .proj_item {
- font-size: 15px;
- line-height: 20px;
-
- .zone_name {
- font-weight: 500;
- }
- }
- }
- }
- }
- }
- }
- }
- }
- </style>
|