This commit is contained in:
linfso 2024-12-27 15:54:10 +08:00
parent 67dc3f208a
commit ec4d3fb8ce
4 changed files with 8 additions and 7 deletions

View File

@ -46,6 +46,7 @@
"codemirror": "^6.0.1",
"coordtransform": "^2.1.2",
"core-js": "^3.32.1",
"custom-event-polyfill": "^1.0.7",
"dayjs": "^1.11.10",
"default-passive-events": "^2.0.0",
"echarts": "4.9.0",

View File

@ -223,9 +223,9 @@
<el-table-column :label="$t('确认时间')" align="center" prop="confirmDate" min-width="100" :show-overflow-tooltip="true"/>
<el-table-column :label="$t('进仓状态')" align="center" prop="status" min-width="100" >
<template slot-scope="scope">
<el-tag v-if="scope.row.status=='0'" type="info">未入库</el-tag>
<el-tag v-if="scope.row.status=='1'" type="success">已入仓</el-tag>
<el-tag v-if="scope.row.status=='2'" type="warning">部分入仓</el-tag>
<el-tag v-if="scope.row.stockInFlag=='0'" type="info">未入仓</el-tag>
<el-tag v-if="scope.row.stockInFlag=='1'" type="success">已入仓</el-tag>
<el-tag v-if="scope.row.stockInFlag=='2'" type="warning">部分入仓</el-tag>
</template>
</el-table-column>