|  |  |  | 
|---|
|  |  |  | <top-header/> | 
|---|
|  |  |  | <template> | 
|---|
|  |  |  | <el-row> | 
|---|
|  |  |  | <el-col :span="15"> | 
|---|
|  |  |  | <el-col :span="13"> | 
|---|
|  |  |  | <el-row class="header-left-task" type="flex" align="center" > | 
|---|
|  |  |  | <el-col v-for="(task, index) in tasks" :key="index" > | 
|---|
|  |  |  | <el-row type="flex" align="center" justify="center" @click.native="borderClick(task)"> | 
|---|
|  |  |  | <dv-border-box-2> | 
|---|
|  |  |  | <el-card class="header-card" > | 
|---|
|  |  |  | <el-row> | 
|---|
|  |  |  | <el-col :span="4" v-for="(item, index) in Object.keys(waveLabels)" :key="index"> | 
|---|
|  |  |  | <el-col class="heaer-label-column" v-for="(item, index) in Object.keys(waveLabels)" :key="index"> | 
|---|
|  |  |  | <div class="header-card-label" >{{ waveLabels[item] }}</div> | 
|---|
|  |  |  | <div class="header-card-val" >{{ task[item] }}</div> | 
|---|
|  |  |  | </el-col> | 
|---|
|  |  |  | 
|---|
|  |  |  | </el-col> | 
|---|
|  |  |  | </el-row> | 
|---|
|  |  |  | <el-row class="detl-info-row"> | 
|---|
|  |  |  | <dv-border-box-2> | 
|---|
|  |  |  | <el-card> | 
|---|
|  |  |  | <el-table :data="mergeTaskDetl" class="talbe-matnr" @row-click="selectRow"> | 
|---|
|  |  |  | <el-table-column v-for="(item,index) in Object.keys(detlLabels)" :prop="item" :label="detlLabels[item]" :key="index"/> | 
|---|
|  |  |  | </el-table> | 
|---|
|  |  |  | </el-card> | 
|---|
|  |  |  | </dv-border-box-2> | 
|---|
|  |  |  | <el-card class="detl-info-card"> | 
|---|
|  |  |  | <el-table :data="mergeTaskDetl" class="table-matnr" @row-click="selectRow"> | 
|---|
|  |  |  | <el-table-column v-for="(item,index) in Object.keys(detlLabels)" :prop="item" :label="detlLabels[item]" :key="index"/> | 
|---|
|  |  |  | </el-table> | 
|---|
|  |  |  | </el-card> | 
|---|
|  |  |  | </el-row> | 
|---|
|  |  |  | <el-row class="pick-order-detl"> | 
|---|
|  |  |  | <dv-border-box11 title="拣货订单明细" class="detl-box-border"> | 
|---|
|  |  |  | 
|---|
|  |  |  | </dv-border-box11> | 
|---|
|  |  |  | </el-row> | 
|---|
|  |  |  | </el-col> | 
|---|
|  |  |  | <el-col :span="9"> | 
|---|
|  |  |  | <el-col :span="11"> | 
|---|
|  |  |  | <el-row class="order-box-row"> | 
|---|
|  |  |  | <dv-border-box-11 title="订单完成情况" class="order-box"> | 
|---|
|  |  |  | <el-table :data="orders" v-if="orders.length > 0" class="order-table"> | 
|---|
|  |  |  | <el-table-column v-for="(item, dex) in Object.keys(orderStatus)" :prop="item" :label="orderStatus[item]" :key="dex"> | 
|---|
|  |  |  | <el-table-column v-for="(item, dex) in Object.keys(orderStatus)" :prop="item" :label="orderStatus[item]" :key="dex" > | 
|---|
|  |  |  | <template slot-scope="scope"> | 
|---|
|  |  |  | <el-popover | 
|---|
|  |  |  | placement="right" | 
|---|
|  |  |  | width="300" | 
|---|
|  |  |  | trigger="manual" | 
|---|
|  |  |  | v-model="visible" | 
|---|
|  |  |  | v-if="item === 'action'" > | 
|---|
|  |  |  | <template> | 
|---|
|  |  |  | <div> | 
|---|
|  |  |  | <span>选择目标发货区</span> | 
|---|
|  |  |  | <el-divider/> | 
|---|
|  |  |  | <el-row :gutter="15"> | 
|---|
|  |  |  | <el-col v-for="(palt, index) in platforms" :key="index" class="platform" :span="7" @click.native="bindShipping(palt, scope)"> | 
|---|
|  |  |  | <div>{{palt.platformNo}}</div> | 
|---|
|  |  |  | </el-col> | 
|---|
|  |  |  | </el-row> | 
|---|
|  |  |  | </div> | 
|---|
|  |  |  | </template> | 
|---|
|  |  |  | <el-button slot="reference" type="text" @click.native.prevent="print(scope.$index, orders)">打印明细</el-button> | 
|---|
|  |  |  | </el-popover> | 
|---|
|  |  |  | <el-button slot="reference" type="text" @click.native.prevent="print(scope.$index, orders)" class="btnPrint" v-if="item === 'action'" >打印明细</el-button> | 
|---|
|  |  |  | <div v-else class="ship-order-list"> | 
|---|
|  |  |  | {{scope.row[item]}} | 
|---|
|  |  |  | </div> | 
|---|
|  |  |  | 
|---|
|  |  |  | </el-table-column> | 
|---|
|  |  |  | </el-table> | 
|---|
|  |  |  | <el-empty description="暂无投放订单" class="empty-padding" v-else></el-empty> | 
|---|
|  |  |  | <el-popover | 
|---|
|  |  |  | placement="right" | 
|---|
|  |  |  | trigger="manual" | 
|---|
|  |  |  | class="popover-order" | 
|---|
|  |  |  | v-model="visible"> | 
|---|
|  |  |  | <template> | 
|---|
|  |  |  | <div> | 
|---|
|  |  |  | <span>选择目标发货区</span> | 
|---|
|  |  |  | <el-divider/> | 
|---|
|  |  |  | <el-row :gutter="15"> | 
|---|
|  |  |  | <el-col v-for="(palt, index) in platforms" :key="index" :span="7" @click.native="bindShipping(palt)"> | 
|---|
|  |  |  | <div class="platform" >{{palt.platformNo}}</div> | 
|---|
|  |  |  | </el-col> | 
|---|
|  |  |  | </el-row> | 
|---|
|  |  |  | </div> | 
|---|
|  |  |  | </template> | 
|---|
|  |  |  | </el-popover> | 
|---|
|  |  |  | </dv-border-box-11> | 
|---|
|  |  |  | </el-row> | 
|---|
|  |  |  | <el-row type="flex" align="center" id="datav"> | 
|---|
|  |  |  | <dv-border-box-11  title="播种墙" class="pick-wall" > | 
|---|
|  |  |  | <el-row type="flex" align="center" justify="center" class="pick-wall-circle" > | 
|---|
|  |  |  | <el-col :span="1"> | 
|---|
|  |  |  | <p class="pick-wall-tip"></p> | 
|---|
|  |  |  | </el-col> | 
|---|
|  |  |  | <el-col :span="22"> | 
|---|
|  |  |  | <p>绿色:任务已完成  黄色:等待中  红色:播种中</p> | 
|---|
|  |  |  | </el-col> | 
|---|
|  |  |  | </el-row> | 
|---|
|  |  |  | <!--                  <el-row type="flex" align="center" justify="center" class="pick-wall-circle" >--> | 
|---|
|  |  |  | <!--                    <el-col :span="1">--> | 
|---|
|  |  |  | <!--                      <p class="pick-wall-tip"></p>--> | 
|---|
|  |  |  | <!--                    </el-col>--> | 
|---|
|  |  |  | <!--                    <el-col :span="22">--> | 
|---|
|  |  |  | <!--                      <p>绿色:任务已完成  黄色:等待中  红色:播种中</p>--> | 
|---|
|  |  |  | <!--                    </el-col>--> | 
|---|
|  |  |  | <!--                  </el-row>--> | 
|---|
|  |  |  | <div class="pick-wall-box"> | 
|---|
|  |  |  | <el-col :span="6" v-for="(item, index) in seedBracket" :key="index" @click.native="lightClick(item)"> | 
|---|
|  |  |  | <el-col :span="6" v-for="(item, index) in seedBracket" :key="index" > | 
|---|
|  |  |  | <div class="seed-bracket" :style="getLightStatus(item)" /> | 
|---|
|  |  |  | </el-col> | 
|---|
|  |  |  | </div> | 
|---|
|  |  |  | 
|---|
|  |  |  | <el-row> | 
|---|
|  |  |  | <el-col class="header-title">复核当前作业中数量</el-col> | 
|---|
|  |  |  | <el-col style="text-align: center"> | 
|---|
|  |  |  | <el-col :span="10" class="content">总需求数量:</el-col> | 
|---|
|  |  |  | <el-col :span="10" class="content">需求数量:</el-col> | 
|---|
|  |  |  | <el-col :span="8" class="content-value">{{ selected.anfme }}</el-col> | 
|---|
|  |  |  | </el-col> | 
|---|
|  |  |  | <el-col> | 
|---|
|  |  |  | 
|---|
|  |  |  | <el-col> | 
|---|
|  |  |  | <div class="header-title">拣货数量:</div> | 
|---|
|  |  |  | <dv-border-box-10  class="box"> | 
|---|
|  |  |  | <el-input type="text" v-model="workQty"></el-input> | 
|---|
|  |  |  | <el-input type="text" v-model="selected.revQty" disabled></el-input> | 
|---|
|  |  |  | </dv-border-box-10> | 
|---|
|  |  |  | </el-col> | 
|---|
|  |  |  | </el-row> | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | created () { | 
|---|
|  |  |  | //获取当前执行任务 | 
|---|
|  |  |  | this.getWaves() | 
|---|
|  |  |  | //获取当前播种墙库位信息 | 
|---|
|  |  |  | this.getSeedLoc() | 
|---|
|  |  |  | //获取所有发货暂存区 | 
|---|
|  |  |  | this.getAllPlatforms() | 
|---|
|  |  |  | let that = this | 
|---|
|  |  |  | setInterval(() => { | 
|---|
|  |  |  | that.refreshData() | 
|---|
|  |  |  | }, 10000) | 
|---|
|  |  |  | }, | 
|---|
|  |  |  |  | 
|---|
|  |  |  | computed: { | 
|---|
|  |  |  | getLightStatus() { | 
|---|
|  |  |  | return (item)=> { | 
|---|
|  |  |  | 
|---|
|  |  |  | return  'background: gainsboro;' | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | getWorkQty() { | 
|---|
|  |  |  | return this.selected.anfme - this.selected.workQty | 
|---|
|  |  |  | } | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | methods: { | 
|---|
|  |  |  | refreshData() { | 
|---|
|  |  |  | //获取当前执行任务 | 
|---|
|  |  |  | this.getWaves() | 
|---|
|  |  |  | //获取当前播种墙库位信息 | 
|---|
|  |  |  | this.getSeedLoc() | 
|---|
|  |  |  | //获取所有发货暂存区 | 
|---|
|  |  |  | this.getAllPlatforms() | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | printPage() { | 
|---|
|  |  |  | // let element = document.querySelector('#datav'); | 
|---|
|  |  |  | // let el = this.$refs.datav | 
|---|
|  |  |  | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | //拍灯容器流动 | 
|---|
|  |  |  | lightClick(item) { | 
|---|
|  |  |  | if (item.platformId == null || item.platformId == undefined || item.platformId == '') { | 
|---|
|  |  |  | this.$message.error('请打印订单明细,并选择目标集货区!!') | 
|---|
|  |  |  | return | 
|---|
|  |  |  | } | 
|---|
|  |  |  | this.slapLight(item) | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | //订单入库集货区,并打印单据 | 
|---|
|  |  |  | bindShipping(plat, item) { | 
|---|
|  |  |  | bindShipping(plat) { | 
|---|
|  |  |  | this.visible = false | 
|---|
|  |  |  | let order = item.row | 
|---|
|  |  |  | let order = this.selectOrder | 
|---|
|  |  |  | if (order == null) { | 
|---|
|  |  |  | this.$message.error("当前订单信息不存在,请联系管理员!!") | 
|---|
|  |  |  | return | 
|---|
|  |  |  | 
|---|
|  |  |  | // eslint-disable-next-line no-undef | 
|---|
|  |  |  | $ajax.post('/api/bind/shipping/platform', {orderId: order.id, waveId: order.waveId, platformId: plat.id}).then(response => { | 
|---|
|  |  |  | if (response.code === 200) { | 
|---|
|  |  |  | that.refreshData() | 
|---|
|  |  |  | //隐藏发货区,执行打印 | 
|---|
|  |  |  | } else { | 
|---|
|  |  |  | this.$message.error(response.msg) | 
|---|
|  |  |  | 
|---|
|  |  |  | for (let i = 0; i < this.mergeTaskDetl.length; i++) { | 
|---|
|  |  |  | if (this.mergeTaskDetl[i].matnr === this.selected.matnr && this.workQty > this.mergeTaskDetl[i].anfme) { | 
|---|
|  |  |  | this.$message({ | 
|---|
|  |  |  | message: '拣货数量不能大于任务数量!!', | 
|---|
|  |  |  | message: '拣货数量应等于任务数量!!', | 
|---|
|  |  |  | type: 'error' | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | return | 
|---|
|  |  |  | 
|---|
|  |  |  | //隐藏弹框 | 
|---|
|  |  |  | this.show = false | 
|---|
|  |  |  | // eslint-disable-next-line no-undef | 
|---|
|  |  |  | $ajax.post('wave/sow/review', { waveSeedId: this.selected.id, reviewNum: this.workQty }).then(response => { | 
|---|
|  |  |  | $ajax.post('wave/sow/review', { waveSeedId: this.selected.id, reviewNum: this.selected.revQty }).then(response => { | 
|---|
|  |  |  | if (response.code === 200) { | 
|---|
|  |  |  | this.getWaves() | 
|---|
|  |  |  | } else { | 
|---|
|  |  |  | 
|---|
|  |  |  | getTaskDetl (data) { | 
|---|
|  |  |  | let that = this | 
|---|
|  |  |  | // eslint-disable-next-line no-undef | 
|---|
|  |  |  | $ajax.post('wave/task/detl/qutify/', { taskNo: data.taskNo, matnr: data.matnr }).then(response => { | 
|---|
|  |  |  | $ajax.post('wave/task/detl/qutify/', { taskNo: data.taskNo, matnr: data.matnr, waveNo: data.waveNo }).then(response => { | 
|---|
|  |  |  | if (response.code === 200) { | 
|---|
|  |  |  | that.taskDetls = [] | 
|---|
|  |  |  | // this.show = false | 
|---|
|  |  |  | 
|---|
|  |  |  | </script> | 
|---|
|  |  |  |  | 
|---|
|  |  |  | <style lang="less"> | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @media screen and (max-width: 1920px){ | 
|---|
|  |  |  | #data-view { | 
|---|
|  |  |  | width: 100%; | 
|---|
|  |  |  | 
|---|
|  |  |  | margin: 5px 0; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .platform { | 
|---|
|  |  |  | display: flex; | 
|---|
|  |  |  | align-items: center; | 
|---|
|  |  |  | justify-content: center; | 
|---|
|  |  |  | height: 80px; | 
|---|
|  |  |  | background-color: #03d3ec; | 
|---|
|  |  |  | margin: 5px; | 
|---|
|  |  |  | text-align: center; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .pick-order-detl { | 
|---|
|  |  |  | padding: 0 15px; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .detl-box-border { | 
|---|
|  |  |  | height: 59vh; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | height: 45vh; | 
|---|
|  |  |  | .detl-box-padding { | 
|---|
|  |  |  | height: 65px | 
|---|
|  |  |  | } | 
|---|
|  |  |  | 
|---|
|  |  |  | text-align: center; | 
|---|
|  |  |  | color: white; | 
|---|
|  |  |  | margin: 20vh; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .container { | 
|---|
|  |  |  | padding: 45px 60px; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .btn { | 
|---|
|  |  |  | width: 30vh;height: 7vh;font-size: 23px; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .pick-wall { | 
|---|
|  |  |  | padding: 60px 10px 10px 10px; | 
|---|
|  |  |  | height: 68vh; | 
|---|
|  |  |  | height: 47vh; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .pick-wall-box { | 
|---|
|  |  |  | .seed-bracket { | 
|---|
|  |  |  | 
|---|
|  |  |  | background: #03d3ec; | 
|---|
|  |  |  | border-left: 5px solid #50bfff | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | span { | 
|---|
|  |  |  | margin: 2px; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | text-align: center; | 
|---|
|  |  |  | padding: 15px; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .header-card-label { | 
|---|
|  |  |  | font-size: 25px; | 
|---|
|  |  |  | font-style: oblique; | 
|---|
|  |  |  | padding: 5px; | 
|---|
|  |  |  | color: white; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | .header-card-val { | 
|---|
|  |  |  | font-size: 20px; | 
|---|
|  |  |  | padding: 10px; | 
|---|
|  |  |  | color: orange; | 
|---|
|  |  |  | .heaer-label-column { | 
|---|
|  |  |  | min-width: 170px; | 
|---|
|  |  |  | width: auto; | 
|---|
|  |  |  | .header-card-label { | 
|---|
|  |  |  | font-size: 25px; | 
|---|
|  |  |  | font-style: oblique; | 
|---|
|  |  |  | padding: 5px; | 
|---|
|  |  |  | color: white; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | .header-card-val { | 
|---|
|  |  |  | font-size: 20px; | 
|---|
|  |  |  | padding: 10px; | 
|---|
|  |  |  | color: orange; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .detl-info-row { | 
|---|
|  |  |  | padding: 0 15px; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .detl-info-card { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .order-box-row { | 
|---|
|  |  |  | width: 84vh; | 
|---|
|  |  |  | height: 38vh; | 
|---|
|  |  |  | height: 33vh; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .order-box { | 
|---|
|  |  |  | padding:0px 30px; | 
|---|
|  |  |  | 
|---|
|  |  |  | width: 74vh; | 
|---|
|  |  |  | padding-top: 65px; | 
|---|
|  |  |  | height: 275px; | 
|---|
|  |  |  | overflow: hidden; | 
|---|
|  |  |  | overflow-y: auto; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .popover-order { | 
|---|
|  |  |  | width: 300px; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .platform { | 
|---|
|  |  |  | display: flex; | 
|---|
|  |  |  | align-items: center; | 
|---|
|  |  |  | justify-content: center; | 
|---|
|  |  |  | height: 80px; | 
|---|
|  |  |  | background-color: #03d3ec; | 
|---|
|  |  |  | margin: 5px; | 
|---|
|  |  |  | text-align: center; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .ship-order-list { | 
|---|
|  |  |  | font-size: 18px; color: white; | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | .empty-padding { | 
|---|
|  |  |  | padding-top: 65px; | 
|---|
|  |  |  | padding-top: 105px; | 
|---|
|  |  |  | .el-empty__image { | 
|---|
|  |  |  | height: 100px; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | .order-detl-list { | 
|---|
|  |  |  | overflow: hidden; | 
|---|
|  |  |  | overflow-y: scroll; | 
|---|
|  |  |  | height: 43vh; | 
|---|
|  |  |  | height: 38vh; | 
|---|
|  |  |  | padding: 0 15px; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | top: 0px !important; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .talbe-matnr { | 
|---|
|  |  |  | height: 26vh; | 
|---|
|  |  |  | .table-matnr { | 
|---|
|  |  |  | height: 16vh; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .el-table { | 
|---|
|  |  |  | 
|---|
|  |  |  | @media screen and (max-width: 1281px)  { | 
|---|
|  |  |  | #data-view { | 
|---|
|  |  |  | .header-left-task { | 
|---|
|  |  |  | .header-card { | 
|---|
|  |  |  | margin: 5px;height: 90px; | 
|---|
|  |  |  | padding: 5px; | 
|---|
|  |  |  | padding: 5px 15px 5px 15px; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .header-card-label { | 
|---|
|  |  |  | font-size: 18px; | 
|---|
|  |  |  | padding: 5px; | 
|---|
|  |  |  | .header-card { | 
|---|
|  |  |  | margin: 2px; | 
|---|
|  |  |  | height: 70px; | 
|---|
|  |  |  | padding: 2px; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .el-card__body { | 
|---|
|  |  |  | padding: 5px 20px; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .header-card-val { | 
|---|
|  |  |  | font-size: 14px; | 
|---|
|  |  |  | .heaer-label-column{ | 
|---|
|  |  |  | max-width: 130px; | 
|---|
|  |  |  | min-width: 75px; | 
|---|
|  |  |  | width: auto; | 
|---|
|  |  |  | .header-card-label { | 
|---|
|  |  |  | font-size: 13px; | 
|---|
|  |  |  | padding: 5px; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .header-card-val { | 
|---|
|  |  |  | font-size: 11px; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .detl-info-row { | 
|---|
|  |  |  | padding: 0 15px; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .detl-info-card { | 
|---|
|  |  |  | padding: 0; | 
|---|
|  |  |  | .el-card__body { | 
|---|
|  |  |  | padding: 8px; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .el-table { | 
|---|
|  |  |  | th.el-table__cell>.cell { | 
|---|
|  |  |  | text-align: center; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .el-table__cell { | 
|---|
|  |  |  | padding: 5px 0; | 
|---|
|  |  |  | text-align: center; | 
|---|
|  |  |  | width: auto; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .order-box-row { | 
|---|
|  |  |  | width: 58vh; | 
|---|
|  |  |  | width: 68vh; | 
|---|
|  |  |  | height: 28vh; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .order-box { | 
|---|
|  |  |  | 
|---|
|  |  |  | width: 74vh; | 
|---|
|  |  |  | padding-top: 65px; | 
|---|
|  |  |  | height: 275px; | 
|---|
|  |  |  | overflow: hidden; | 
|---|
|  |  |  | overflow-y: auto; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .btnPrint { | 
|---|
|  |  |  | font-size: 9px; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .ship-order-list { | 
|---|
|  |  |  | font-size: 14px; | 
|---|
|  |  |  | font-size: 10px; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .el-table__cell { | 
|---|
|  |  |  | padding: 0; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | .empty-padding { | 
|---|
|  |  |  | padding-top: 65px; | 
|---|
|  |  |  | width: 30px; | 
|---|
|  |  |  | height: 30px; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .talbe-matnr { | 
|---|
|  |  |  | height: 20vh; | 
|---|
|  |  |  | .table-matnr { | 
|---|
|  |  |  | height: 15vh; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .el-table .cell { | 
|---|
|  |  |  | font-size: 16px !important; | 
|---|
|  |  |  | font-size: 10px !important; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .pick-order-detl { | 
|---|
|  |  |  | padding: 0 10px; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .detl-box-border { | 
|---|
|  |  |  | height: 39vh; | 
|---|
|  |  |  | height: 49vh; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .detl-box-padding { | 
|---|
|  |  |  | height: 65px | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | .order-detl-list { | 
|---|
|  |  |  | height: 23vh; | 
|---|
|  |  |  | height: 38vh; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|