ruanqi 2 years ago
parent
commit
43c313bb57
  1. 4
      src/views/modules/board/SORoutingBoard.vue
  2. 2
      src/views/modules/board/scheduledBoard.vue
  3. 20
      src/views/modules/board/shopOrderBoard.vue

4
src/views/modules/board/SORoutingBoard.vue

@ -98,7 +98,7 @@
</el-table> </el-table>
<el-table <el-table
cell-style="cc" cell-style="cc"
height="140"
height="99"
:data="tableData2" :data="tableData2"
ref="wt_table" ref="wt_table"
border border
@ -193,7 +193,7 @@
}, },
mounted () { mounted () {
this.$nextTick(() => { this.$nextTick(() => {
this.height = window.innerHeight - 221
this.height = window.innerHeight - 172
}) })
// this.autoRoll() // this.autoRoll()
}, },

2
src/views/modules/board/scheduledBoard.vue

@ -227,7 +227,7 @@
this.option = ({ this.option = ({
title: [{ title: [{
text: '总生产情况\nProduction State' ,
text: '总生产情况\nProduction Status' ,
// text: '' + data_temp[i + x].itemNo, // text: '' + data_temp[i + x].itemNo,
// x 'center' ¦ 'left' ¦ 'right' ¦ {number}xpx // x 'center' ¦ 'left' ¦ 'right' ¦ {number}xpx
x: 'center', x: 'center',

20
src/views/modules/board/shopOrderBoard.vue

@ -27,7 +27,7 @@
<el-table-column <el-table-column
prop="customerID" prop="customerID"
header-align="center" header-align="center"
align="left"
align="center"
min-width="60" min-width="60"
label="客户编码"> label="客户编码">
</el-table-column> </el-table-column>
@ -41,7 +41,7 @@
<el-table-column <el-table-column
prop="partNo" prop="partNo"
header-align="center" header-align="center"
align="left"
align="center"
min-width="60" min-width="60"
label="物料编码"> label="物料编码">
</el-table-column> </el-table-column>
@ -51,6 +51,9 @@
align="right" align="right"
min-width="60" min-width="60"
label="订单数量"> label="订单数量">
<template slot-scope="scope">
{{scope.row.lotSize}}&nbsp
</template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="finishedQty" prop="finishedQty"
@ -58,6 +61,9 @@
align="right" align="right"
min-width="60" min-width="60"
label="入库数量"> label="入库数量">
<template slot-scope="scope">
{{scope.row.finishedQty}}&nbsp
</template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="percentQty" prop="percentQty"
@ -66,7 +72,7 @@
min-width="60" min-width="60"
label="完成比例"> label="完成比例">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.percentQty}}%
{{scope.row.percentQty}}%&nbsp
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
@ -79,7 +85,7 @@
</el-table> </el-table>
<el-table <el-table
cell-style="cc" cell-style="cc"
height="140"
height="99"
:data="tableData2" :data="tableData2"
ref="wt_table" ref="wt_table"
border border
@ -101,7 +107,7 @@
<el-table-column <el-table-column
prop="partNo" prop="partNo"
header-align="center" header-align="center"
align="left"
align="center"
width="100" width="100"
label="物料编码"> label="物料编码">
</el-table-column> </el-table-column>
@ -122,7 +128,7 @@
<el-table-column <el-table-column
prop="status" prop="status"
header-align="center" header-align="center"
align="left"
align="center"
width="60" width="60"
label="状态"> label="状态">
</el-table-column> </el-table-column>
@ -171,7 +177,7 @@
}, },
mounted () { mounted () {
this.$nextTick(() => { this.$nextTick(() => {
this.height = window.innerHeight - 221
this.height = window.innerHeight - 172
}) })
// this.autoRoll() // this.autoRoll()
}, },

Loading…
Cancel
Save