|
|
@@ -1,6 +1,27 @@
|
|
|
<template>
|
|
|
- <ele-modal :visible.sync="visible" title="入库详情" width="1200px" >
|
|
|
- <ele-pro-table :columns="columns" :datasource="tableList" cache-key="tgDetails" height="calc(100vh - 350px)" :need-page="false">
|
|
|
+ <ele-modal :visible.sync="visible" title="入库详情" width="1200px">
|
|
|
+ <ele-pro-table :columns="columns" :datasource="tableList" cache-key="tgDetails" height="calc(100vh - 350px)"
|
|
|
+ :need-page="false">
|
|
|
+
|
|
|
+
|
|
|
+ <template v-slot:materielCode="{ row }">
|
|
|
+ {{ row.extInfo.materielCode }}
|
|
|
+ </template>
|
|
|
+
|
|
|
+
|
|
|
+ <template v-slot:clientCode="{ row }">
|
|
|
+ {{ row.extInfo.clientCode }}
|
|
|
+ </template>
|
|
|
+
|
|
|
+
|
|
|
+ <template v-slot:engrave="{ row }">
|
|
|
+ {{ row.extInfo.engrave }}
|
|
|
+ </template>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
</ele-pro-table>
|
|
|
</ele-modal>
|
|
|
</template>
|
|
|
@@ -8,7 +29,7 @@
|
|
|
<script>
|
|
|
|
|
|
export default {
|
|
|
-
|
|
|
+
|
|
|
data() {
|
|
|
return {
|
|
|
visible: false,
|
|
|
@@ -20,12 +41,14 @@ export default {
|
|
|
width: 55,
|
|
|
align: 'center'
|
|
|
},
|
|
|
-
|
|
|
+
|
|
|
{
|
|
|
label: '入库申请单id',
|
|
|
prop: 'applyStorageId'
|
|
|
},
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
{
|
|
|
label: '物品名称',
|
|
|
prop: 'categoryName'
|
|
|
@@ -62,15 +85,36 @@ export default {
|
|
|
|
|
|
{
|
|
|
label: '包装内总数量',
|
|
|
- prop: 'quantity '
|
|
|
+ prop: 'quantity'
|
|
|
},
|
|
|
|
|
|
-
|
|
|
+
|
|
|
+ {
|
|
|
+ label: '物料代号',
|
|
|
+ slot: 'materielCode'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '客户代号',
|
|
|
+ slot: 'clientCode'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '刻码',
|
|
|
+ slot: 'engrave'
|
|
|
+ },
|
|
|
+
|
|
|
+ {
|
|
|
+ label: '发货码',
|
|
|
+ prop: 'sendCode'
|
|
|
+ },
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
+
|
|
|
+
|
|
|
]
|
|
|
|
|
|
-
|
|
|
+
|
|
|
};
|
|
|
},
|
|
|
created() {
|