This commit is contained in:
hayu 2025-10-20 17:55:04 +08:00
parent a3ad51346e
commit fa1ecce732
1 changed files with 5 additions and 0 deletions

View File

@ -286,6 +286,11 @@
<el-table-column label="出库时间" align="center" prop="outTime" :show-overflow-tooltip="true" width="180" />
<el-table-column label="班组" align="center" prop="teamName" :show-overflow-tooltip="true" />
<el-table-column label="工程名称" align="center" prop="proName" :show-overflow-tooltip="true" width="180"/>
<el-table-column label="是否直转" align="center" prop="directFlag" :show-overflow-tooltip="true" width="80">
<template slot-scope="scope">
{{ scope.row.directFlag == "0" ? '是' : scope.row.directFlag == "1" ? '否' : scope.row.directFlag }}
</template>
</el-table-column>
</el-table>
<pagination
v-show="dialogTotal > 0"