This commit is contained in:
liushuai
2020-03-21 17:10:21 +08:00
parent 3c554e5909
commit e314062d42
23 changed files with 473 additions and 793 deletions

View File

@@ -218,6 +218,7 @@
<el-table-column align="center" label="到货状态" width="90px">
<template slot-scope="scope">
<span v-if="Number(scope.row.到货数量) >= Number(scope.row.采购数量)">已到货</span>
<span v-else-if="0 < Number(scope.row.到货数量) < Number(scope.row.采购数量)">部分到货</span>
<span v-else>未到货</span>
</template>
</el-table-column>
@@ -649,6 +650,7 @@ export default {
for (let i = 0; i < response.data.result.length; i++) {
this.tableData0.push({
人员编号: response.data.result[i].人员编号,
姓名: response.data.result[i].姓名,
询价状态编号: response.data.result[i].询价状态编号,
采购状态编号: response.data.result[i].采购状态编号,
机床图号: response.data.result[i].机床图号,
@@ -720,6 +722,7 @@ export default {
for (let i = 0; i < response.data.result.length; i++) {
this.tableData1.push({
人员编号: response.data.result[i].人员编号,
姓名: response.data.result[i].姓名,
询价状态编号: response.data.result[i].询价状态编号,
采购状态编号: response.data.result[i].采购状态编号,
机床图号: response.data.result[i].机床图号,