This commit is contained in:
liushuai
2020-04-23 12:06:29 +08:00
parent e3c1eceb13
commit 6bb56595b2
6 changed files with 9 additions and 7 deletions

View File

@@ -88,7 +88,7 @@
</el-table-column>
<el-table-column label="库存" align="center" width="50">
<template slot-scope="scope">
{{ scope.row.货位存量1 }}
{{ scope.row.货位存量1 ? scope.row.货位存量1 : 0 }}
</template>
</el-table-column>
<el-table-column label="已领" align="center" width="50">
@@ -735,7 +735,8 @@ export default {
background: #D8DDE6 !important;
}
.el-table .weilingwan-row {
background: #E9F0F9 !important;
background: #4395D0 !important;
color: white;
}
</style>

View File

@@ -87,7 +87,7 @@
</el-table-column>
<el-table-column label="已领数量" align="center" min-width="70">
<template slot-scope="scope">
{{ scope.row.出库数量 }}
{{ scope.row.出库数量1 }}
</template>
</el-table-column>
<el-table-column v-if="true" label="备料确认" align="center" width="100">

View File

@@ -701,6 +701,6 @@ export default {
background: #9bd7fc !important;
}
.disCompleteColor{
background: rgb(233,240,250) !important;
background: #C6D7B3 !important;
}
</style>

View File

@@ -314,6 +314,7 @@ export default {
this.dateRange ? check1 = 1 : (check1 = 0, this.dateRange = '')
this.supplierValue ? check2 = 1 : check2 = 0
searchRequestFund(this.pageCurrent1, this.pageSize1, check1, this.dateRange[0], this.dateRange[1], check2, this.supplierValue).then(response => {
console.log(response, 111)
this.tableData1 = response.data.rows
this.total1 = response.data.total
})