123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
- <title></title>
- <style>
- table,
- table tr th,
- table tr td {
- border: 2px solid #333333;
- padding: 5px 0;
- height: 55px;
- }
- #app {
- /* height: 98vh;
- position: relative; */
- }
- .content {
- width: 1000px;
- padding: 70px 20px 20px 20px;
- font-size: 22px;
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- }
- table {
- width: 100%;
- text-align: center;
- border-collapse: collapse;
- border: 3px solid #333333;
- }
- .col-bgc {
- background: #f6f7fb;
- }
- .bottom-row1 {
- display: flex;
- /* justify-content: space-between; */
- margin-top: 5px 0;
- }
- .bottom-row2 {
- display: flex;margin-top: 5px 0;
- }
- img {
- width: 41px;
- height: 41px;
- margin-right: 118px;
- }
- .config {
- margin-top: 10px;
- }
- .autograph {
- margin-top: 10px;
- margin-left: 180px;
- }
- .autograph1 {
- margin-top: 10px;
- margin-left: 200px;
- }
- .bottom-row3 {
- margin: 10px 0;
- }
- .title {
- text-align: center;
- font-size: 36px;
- font-weight: 500;
- margin-bottom: 20px;
- }
- .number {
- text-align: right;
- margin-bottom: 10px;
- margin-top: 20px;
- }
- .small-row {
- display: flex;
- }
- .small-content {
- width: 400px;
- margin: 0 auto;
- border: 1px solid #ccc;
- padding: 20px 20px 160px 20px;
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- margin: auto;
- height: 450px;
- }
- .small-title {
- text-align: center;
- font-size: 18px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .small-row {
- display: flex;
- justify-content: space-between;
- margin: 10px;
- }
- .small-img {
- margin-right: 0;
- }
- .sign {
- margin-right: 100px;
- }
- </style>
- </head>
- <body>
- <div id="app">
- <div class="content" v-if="true">
- <!--<div v-if="tableData.inOutFlag == '2'" class="title">{{tableData.companyName}}</div>
- <div v-else class="title">
- {{tableData.contractManagementInfo?tableData.contractManagementInfo.seller:tableData.companyName}}</div> -->
- <div v-if="tableData.inOutFlag == '2'" class="title">入库检斤单</div>
- <div v-else class="title">出库检斤单</div>
- <div class="number">{{tableData.contractManagementInfo?tableData.contractManagementInfo.contractNo:''}}</div>
- <table class="table">
- <tr class="row">
- <td class="col col-bgc">出货单位</td>
- <td class="col" colspan="4">
- {{tableData.contractManagementInfo?tableData.contractManagementInfo.seller:tableData.warehouseName}}</td>
- <td class="col col-bgc">车牌号</td>
- <td class="col" colspan="1">{{tableData.carNo}}</td>
- <td class="col col-bgc">货名</td>
- <td class="col" colspan="1">{{tableData.goodsName}}</td>
- </tr>
- <tr class="row">
- <td class="col col-bgc">收货单位</td>
- <td class="col" colspan="4">
- {{tableData.contractManagementInfo?tableData.contractManagementInfo.buyer:tableData.receiveWarehouse}}
- </td>
- <td class="col col-bgc">类型</td>
- <td class="col" colspan="1">{{tableData.type}}</td>
- <td class="col col-bgc">检斤时间</td>
- <td class="col" colspan="1">{{tableData.updateDate}}</td>
- </tr>
- <tr class="row">
- <td class="col col-bgc" colspan="2">毛重(吨)</td>
- <td class="col" colspan="2">{{tableData.grossWeight}}</td>
- <td class="col col-bgc" colspan="2">皮重(吨)</td>
- <td class="col" colspan="3">{{tableData.tare}}</td>
- </tr>
- <tr class="row">
- <td class="col col-bgc" colspan="2">扣重(吨)</td>
- <td class="col"colspan="2" >{{tableData.deductionWeight ? tableData.deductionWeight : '0'}}</td>
- <td class="col col-bgc" colspan="2">净重(吨)</td>
- <td class="col" colspan="3">{{tableData.netWeight}}</td>
- </tr>
- </table>
- <div class="bottom">
- <div class="bottom-row1">
- <div class="config" >检斤员:{{tableData.backOffice}}</div>
- </div>
- <div class="bottom-row2">
- <div class="config">收货单位签名或盖章:</div>
- <div class="autograph">客户签名:</div>
- <div class="autograph">司机签名:</div>
- </div>
- <!-- <div v-if='tableData.inOutType!="移库入库"&&tableData.inOutType!="移库出库"' class="bottom-row2">
- <div style='color:transparent;' class="config">收货单位签名或盖章:</div>
- </div> -->
- </div>
- </div>
- </div>
- </body>
- <script src="../cdn/vue/2.6.10/vue.min.js"></script>
- <script src="https://unpkg.com/element-ui/lib/index.js"></script>
- <script type="text/javascript">
- new Vue({
- el: '#app',
- data: {
- tableData: {},
- name: "",
- bigContent: false,
- smallContent: false
- },
- computed: {},
- methods: {
- tableRowClassName({
- row,
- rowIndex
- }) {
- if (rowIndex === 1) {
- return 'warning-row';
- } else if (rowIndex === 3) {
- return 'success-row';
- }
- return '';
- },
- getQueryVariable(variable) {
- var query = window.location.search.substring(1);
- var vars = query.split("&");
- for (var i = 0; i < vars.length; i++) {
- var pair = vars[i].split("=");
- if (pair[0] == variable) {
- return pair[1];
- }
- }
- return (false);
- },
- printSmall() {},
- printBig() {},
- },
- mounted() {
- // console.log("sssss",this.getQueryVariable("tableData"))
- // let _data = decodeURIComponent(this.getQueryVariable("tableData"))
- // console.log("dfddd",_data)
- let _data = JSON.parse(localStorage.getItem('ck_bd_printData'))
- console.log(_data)
- let _type = this.getQueryVariable("type")
- if (_type == 2) {
- this.bigContent = true
- this.smallContent = false
- } else {
- this.smallContent = true
- this.bigContent = false
- }
- this.tableData = _data
- document.title = "粮食检斤单"
- window.print()
- window.onafterprint = function(event) {
- window.history.back(-1)
- };
- },
- watch: {}
- })
- </script>
- </html>
|