页面字段修改

This commit is contained in:
zzyuan 2025-07-10 17:54:40 +08:00
parent 2395b0c652
commit d5848d7d61
1 changed files with 3 additions and 3 deletions

View File

@ -48,14 +48,14 @@
<el-table-column label="货品类别" align="center" prop="materialTypeName" :show-overflow-tooltip="true" /> <el-table-column label="货品类别" align="center" prop="materialTypeName" :show-overflow-tooltip="true" />
<el-table-column label="计量单位" align="center" prop="unitName" :show-overflow-tooltip="true" /> <el-table-column label="计量单位" align="center" prop="unitName" :show-overflow-tooltip="true" />
<el-table-column label="入库单号" align="center" prop="intoCode" :show-overflow-tooltip="true" /> <el-table-column label="入库单号" align="center" prop="intoCode" :show-overflow-tooltip="true" />
<el-table-column label="入库数量" align="center" prop="totalNum" :show-overflow-tooltip="true" /> <el-table-column label="入库数量" align="center" prop="purNum" :show-overflow-tooltip="true" />
<el-table-column label="供应商" align="center" prop="supplierName" :show-overflow-tooltip="true" /> <el-table-column label="供应商" align="center" prop="supplierName" :show-overflow-tooltip="true" />
<el-table-column label="货品仓库" align="center" prop="warehouseName" :show-overflow-tooltip="true" /> <el-table-column label="货品仓库" align="center" prop="warehouseName" :show-overflow-tooltip="true" />
<el-table-column label="入库时间" align="center" prop="intoDate" :show-overflow-tooltip="true" width="150"/> <el-table-column label="入库时间" align="center" prop="intoDate" :show-overflow-tooltip="true" width="150"/>
<el-table-column label="保质期" align="center" prop="expireTime" :show-overflow-tooltip="true" width="150"/> <el-table-column label="保质期" align="center" prop="expireTime" :show-overflow-tooltip="true" width="150"/>
<el-table-column label="总价(元)" align="center" prop="totalAmount" :show-overflow-tooltip="true" width="120"> <el-table-column label="总价(元)" align="center" prop="totalPrice" :show-overflow-tooltip="true" width="120">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ (scope.row.totalAmount/100).toFixed(2) }}</span> <span>{{ (scope.row.totalPrice/100).toFixed(2) }}</span>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>