
<el-table
v-loading="listLoading"
:data="list"
element-loading-text="Loading"
fit
border
show-summary
highlight-current-row
@row-click="rowClick"
>
<el-table-column label="入库单号" show-overflow-tooltip>
<template slot-scope="scope">
<span>{{ scope.row.pushNo }}</span>
</template>
</el-table-column>
<el-table-column label="序号" width="90">
<template slot-scope="scope">
<span>{{ scope.row.serialNumber }}</span>
</template>
</el-table-column>
<el-table-column label="入库类型">
<template slot-scope="scope">
<template v-for="(item, index) in codeList.inboundTypeList">
<span
v-if="item.value.toString() === scope.row.pushType && item.predId != ''"
:key="index"
>{{ item.text }}</span>
</template>
</template>
</el-table-column>
<el-table-column label="品名" show-overflow-tooltip>
<template slot-scope="scope">
<span>{{ scope.row.goodsName }}</span>
</template>
</el-table-column>
<el-table-column label="仓位" show-overflow-tooltip>
<template slot-scope="scope">
<span>{{ scope.row.shippingNo }}</span>
</template>
</el-table-column>
<el-table-column label="存匹数">
<template slot-scope="scope">
<span>{{ scope.row.pushPieces }}</span>
</template>
</el-table-column>
<el-table-column label="存数量">
<template slot-scope="scope">
<span>{{ scope.row.pushCount }}</span>
</template>
</el-table-column>
<el-table-column label="客户编号">
<template slot-scope="scope">
<span>{{ scope.row.customerNo }}</span>
</template>
</el-table-column>
<el-table-column label="客户名称">
<template slot-scope="scope">
<span>{{ scope.row.customerName }}</span>
</template>
</el-table-column>
<el-table-column label="订单号" show-overflow-tooltip>
<template slot-scope="scope">
<span>{{ scope.row.orderNo }}</span>
</template>
</el-table-column>
el-table-column上要绑定prop