This commit is contained in:
parent
a3ad51346e
commit
fa1ecce732
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue