|
@@ -152,7 +152,7 @@
|
|
|
<div slot="header">
|
|
|
<span>安装条码</span>
|
|
|
</div>
|
|
|
- <zj-table :is-drop="true" :columns="formOutbound" :table-data="instalLList" />
|
|
|
+ <zj-table :is-drop="true" :columns="formInstall" :table-data="instalLList" />
|
|
|
</el-card>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -771,8 +771,19 @@ export default {
|
|
|
return [
|
|
|
{
|
|
|
columnAttributes: {
|
|
|
+ label: '序号',
|
|
|
+ prop: '',
|
|
|
+ width: 50
|
|
|
+ },
|
|
|
+ render: (h, { row, index }) => {
|
|
|
+ return <div>{index + 1}</div>
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ columnAttributes: {
|
|
|
label: '产品类型',
|
|
|
- prop: 'specification'
|
|
|
+ prop: 'specification',
|
|
|
+ 'min-width': '300'
|
|
|
}
|
|
|
},
|
|
|
{
|
|
@@ -794,7 +805,7 @@ export default {
|
|
|
},
|
|
|
render: (h, { row }) => {
|
|
|
const { orderState } = row
|
|
|
- return <div>{orderState[orderState]}</div>
|
|
|
+ return <div>{this.orderState[orderState]}</div>
|
|
|
}
|
|
|
},
|
|
|
{
|