Merge branch 'material-ui' of http://192.168.0.56:3000/bonus/bonus-ui into material-ui

This commit is contained in:
hongchao 2025-01-10 17:44:47 +08:00
commit a908af3824
1 changed files with 3 additions and 1 deletions

View File

@ -87,7 +87,9 @@
<el-table-column label="已入库数量" align="center" prop="inputNum" :show-overflow-tooltip="true"/>
<el-table-column label="待入库" align="center" prop="inputNum" :show-overflow-tooltip="true">
<template slot-scope="scope">
<div>{{ scope.row.checkNum-scope.row.inputNum }}</div>
<div>
{{scope.row.manageType === 0 ? scope.row.bindNum - scope.row.inputNum : scope.row.checkNum - scope.row.inputNum }}
</div>
</template>
</el-table-column>
<el-table-column label="购置单价(元含税)" align="center" prop="purchaseTaxPrice" :show-overflow-tooltip="true"/>