|
@@ -1,6 +1,12 @@
|
|
|
<template>
|
|
|
<!-- 【单证】 订单数据 详情 -->
|
|
|
- <a-drawer title="详情" width="89%" placement="right" :closable="true" :visible="visible" @close="onClose">
|
|
|
+ <a-drawer
|
|
|
+ title="详情"
|
|
|
+ width="89%"
|
|
|
+ placement="right"
|
|
|
+ :closable="true"
|
|
|
+ :visible="visible"
|
|
|
+ @close="onClose">
|
|
|
<!--主表信息 -->
|
|
|
<a-card :bordered="true">
|
|
|
<div class="table-page-search-wrapper">
|
|
@@ -195,7 +201,7 @@ export default {
|
|
|
{ title: '存货名称', width: 320, dataIndex: 'inventoryName', align: 'left', className: 'replacecolor' },
|
|
|
{ title: '规格型号', width: 100, dataIndex: 'specificationAndModel', className: 'replacecolor' },
|
|
|
{ title: '颜色', width: 160, dataIndex: 'colour', className: 'replacecolor' },
|
|
|
- { title: '尺码', width: 100, dataIndex: 'size', className: 'replacecolor' },
|
|
|
+ // { title: '尺码', width: 100, dataIndex: 'size', className: 'replacecolor' },
|
|
|
{ title: '配码规则', width: 160, dataIndex: 'codingRules', className: 'replacecolor' },
|
|
|
{ title: '光坯毛门幅CM', width: 140, dataIndex: 'guangpeiGateWidth', className: 'replacecolor' },
|
|
|
{ title: '箱数', width: 100, dataIndex: 'boxNumber', className: 'replacecolor' },
|
|
@@ -225,7 +231,7 @@ export default {
|
|
|
},
|
|
|
visible: false, // 抽屉
|
|
|
dateFormat: 'YYYY-MM-DD',
|
|
|
- record: {} //点击的订单对象
|
|
|
+ record: {} // 点击的订单对象
|
|
|
}
|
|
|
},
|
|
|
|