Commit ac2d66cc64920fa3d82eb40cd15a59db03383eda
1 parent
0fddc1b6
波次功能修改
Signed-off-by: TanYibin <5491541@qq.com>
Showing
2 changed files
with
5 additions
and
22 deletions
ant-design-vue-jeecg/src/views/system/config/WaveConfigDetailList.vue
... | ... | @@ -82,14 +82,9 @@ export default { |
82 | 82 | // 表头 |
83 | 83 | columns: [ |
84 | 84 | { |
85 | - title: '#', | |
86 | - dataIndex: '', | |
87 | - key: 'rowIndex', | |
88 | - width: 60, | |
85 | + title: '拣货顺序', | |
89 | 86 | align: 'center', |
90 | - customRender: function(t, r, index) { | |
91 | - return parseInt(index) + 1 | |
92 | - } | |
87 | + dataIndex: 'sortingPriority' | |
93 | 88 | }, |
94 | 89 | { |
95 | 90 | title: '物料编码', |
... | ... | @@ -112,11 +107,6 @@ export default { |
112 | 107 | dataIndex: 'loadingCount' |
113 | 108 | }, |
114 | 109 | { |
115 | - title: '拣货顺序', | |
116 | - align: 'center', | |
117 | - dataIndex: 'sortingPriority' | |
118 | - }, | |
119 | - { | |
120 | 110 | title: '创建人', |
121 | 111 | align: 'center', |
122 | 112 | dataIndex: 'createBy' |
... | ... |
ant-design-vue-jeecg/src/views/system/config/WaveConfigList.vue
... | ... | @@ -94,16 +94,9 @@ |
94 | 94 | <span slot="action" slot-scope="text, record"> |
95 | 95 | <a @click="handleEdit(record)">编辑</a> |
96 | 96 | <a-divider type="vertical" /> |
97 | - <a-dropdown> | |
98 | - <a class="ant-dropdown-link">更多 <a-icon type="down"/></a> | |
99 | - <a-menu slot="overlay"> | |
100 | - <a-menu-item> | |
101 | - <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)"> | |
102 | - <a>删除</a> | |
103 | - </a-popconfirm> | |
104 | - </a-menu-item> | |
105 | - </a-menu> | |
106 | - </a-dropdown> | |
97 | + <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)"> | |
98 | + <a>删除</a> | |
99 | + </a-popconfirm> | |
107 | 100 | </span> |
108 | 101 | </a-table> |
109 | 102 | </div> |
... | ... |