Commit de85b9322f2171f25725a87c1727e571dca5d866
Merge branch 'develop' of http://www.huahengrobot.com:90/wms/wms4 into develop
Showing
26 changed files
with
35 additions
and
36 deletions
ant-design-vue-jeecg/public/index.html
... | ... | @@ -6,7 +6,7 @@ |
6 | 6 | <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
7 | 7 | <meta name="viewport" content="width=device-width,initial-scale=1.0"> |
8 | 8 | <title>华恒仓储管理系统</title> |
9 | - <link rel="icon" href="<%= BASE_URL %>logo.png"> | |
9 | + <link rel="icon" href="<%= BASE_URL %>logo.ico"> | |
10 | 10 | <script src="<%= BASE_URL %>cdn/babel-polyfill/polyfill_7_2_5.js"></script> |
11 | 11 | <style> |
12 | 12 | html, |
... | ... |
ant-design-vue-jeecg/public/logo.ico
0 → 100644
No preview for this file type
ant-design-vue-jeecg/public/logo.png renamed to ant-design-vue-jeecg/public/logo2.png
8.72 KB
ant-design-vue-jeecg/src/assets/logo.ico
0 → 100644
No preview for this file type
ant-design-vue-jeecg/src/views/system/DictList.vue
... | ... | @@ -47,14 +47,13 @@ |
47 | 47 | @change="handleTableChange"> |
48 | 48 | <span slot="action" slot-scope="text, record"> |
49 | 49 | <a @click="handleEdit(record)" v-has="'dict:edit'"> |
50 | - <a-icon type="edit"/> | |
51 | - 编辑 | |
50 | + <a-button icon="edit" type="default">编辑</a-button> | |
52 | 51 | </a> |
53 | 52 | <a-divider type="vertical"/> |
54 | - <a v-has="'dict:config'" @click="editDictItem(record)"><a-icon type="setting"/> 字典配置</a> | |
53 | + <a v-has="'dict:config'" @click="editDictItem(record)"><a-button type="primary" icon="setting">字典配置</a-button> </a> | |
55 | 54 | <a-divider type="vertical"/> |
56 | 55 | <a-popconfirm title="确定删除吗?" @confirm="() =>handleDelete(record.id)"> |
57 | - <a v-has="'dict:delete'">删除</a> | |
56 | + <a v-has="'dict:delete'"><a-button type="danger">删除</a-button></a> | |
58 | 57 | </a-popconfirm> |
59 | 58 | </span> |
60 | 59 | </a-table> |
... | ... |
ant-design-vue-jeecg/src/views/system/config/ContainerList.vue
ant-design-vue-jeecg/src/views/system/config/LocationList.vue
ant-design-vue-jeecg/src/views/system/config/PortList.vue
ant-design-vue-jeecg/src/views/system/inventory/InventoryDetailList.vue
ant-design-vue-jeecg/src/views/system/inventory/InventoryHeaderList.vue
ant-design-vue-jeecg/src/views/system/inventory/InventoryTransactionList.vue
ant-design-vue-jeecg/src/views/system/inventory/SimpleInventoryDetailList.vue
ant-design-vue-jeecg/src/views/system/inventory/subTables/InventoryDetailSubTable.vue
ant-design-vue-jeecg/src/views/system/receipt/ReceiptContainerHeaderList.vue
... | ... | @@ -274,9 +274,9 @@ export default { |
274 | 274 | getStatusColor(status) { |
275 | 275 | const colors = { |
276 | 276 | '新建': 'green', |
277 | - '生成任务': 'purple', | |
277 | + '生成任务': 'blue', | |
278 | 278 | '上架完成': 'gray', |
279 | - default: 'default' | |
279 | + default: 'blue' | |
280 | 280 | }; |
281 | 281 | return colors[status] || colors.default; |
282 | 282 | }, |
... | ... |
ant-design-vue-jeecg/src/views/system/receipt/ReceiptDetailList.vue
ant-design-vue-jeecg/src/views/system/receipt/ReceiptHeaderHistoryList.vue
... | ... | @@ -344,13 +344,13 @@ export default { |
344 | 344 | getStatusColor(status) { |
345 | 345 | const colors = { |
346 | 346 | '新建': 'green', |
347 | - '收货': 'yellow', | |
347 | + '收货': 'Skyblue', | |
348 | 348 | '等待上架': 'blue', |
349 | - '上架': 'orange', | |
349 | + '上架': 'darkorange', | |
350 | 350 | '过账': 'purple', |
351 | 351 | '回传': 'grey', |
352 | 352 | '回传失败': 'red', |
353 | - default: 'default' | |
353 | + default: 'blue' | |
354 | 354 | }; |
355 | 355 | return colors[status] || colors.default; |
356 | 356 | }, |
... | ... |
ant-design-vue-jeecg/src/views/system/receipt/ReceiptHeaderList.vue
... | ... | @@ -377,13 +377,13 @@ export default { |
377 | 377 | getStatusColor(status) { |
378 | 378 | const colors = { |
379 | 379 | '新建': 'green', |
380 | - '收货': 'yellow', | |
380 | + '收货': 'Skyblue', | |
381 | 381 | '等待上架': 'blue', |
382 | - '上架': 'orange', | |
382 | + '上架': 'darkorange', | |
383 | 383 | '过账': 'purple', |
384 | 384 | '回传': 'grey', |
385 | 385 | '回传失败': 'red', |
386 | - default: 'default' | |
386 | + default: 'blue' | |
387 | 387 | }; |
388 | 388 | return colors[status] || colors.default; |
389 | 389 | }, |
... | ... |
ant-design-vue-jeecg/src/views/system/shipment/ShipmentContainerHeaderList.vue
... | ... | @@ -272,9 +272,9 @@ export default { |
272 | 272 | getStatusColor(status) { |
273 | 273 | const colors = { |
274 | 274 | '新建': 'green', |
275 | - '生成任务': 'purple', | |
275 | + '生成任务': 'blue', | |
276 | 276 | '下架完成': 'gray', |
277 | - default: 'default' | |
277 | + default: 'blue' | |
278 | 278 | }; |
279 | 279 | return colors[status] || colors.default; |
280 | 280 | }, |
... | ... |
ant-design-vue-jeecg/src/views/system/shipment/ShipmentDetailList.vue
ant-design-vue-jeecg/src/views/system/shipment/ShipmentHeaderHistoryList.vue
... | ... | @@ -373,13 +373,13 @@ export default { |
373 | 373 | getStatusColor(status) { |
374 | 374 | const colors = { |
375 | 375 | '新建': 'green', |
376 | - '出库组盘': 'yellow', | |
376 | + '出库组盘': 'Skyblue', | |
377 | 377 | '等待下架': 'blue', |
378 | - '下架': 'orange', | |
378 | + '下架': 'darkorange', | |
379 | 379 | '过账': 'purple', |
380 | 380 | '回传': 'grey', |
381 | 381 | '回传失败': 'red', |
382 | - default: 'default' | |
382 | + default: 'blue' | |
383 | 383 | }; |
384 | 384 | return colors[status] || colors.default; |
385 | 385 | }, |
... | ... |
ant-design-vue-jeecg/src/views/system/shipment/ShipmentHeaderList.vue
... | ... | @@ -384,13 +384,13 @@ export default { |
384 | 384 | getStatusColor(status) { |
385 | 385 | const colors = { |
386 | 386 | '新建': 'green', |
387 | - '出库组盘': 'yellow', | |
387 | + '出库组盘': 'Skyblue', | |
388 | 388 | '等待下架': 'blue', |
389 | - '下架': 'orange', | |
389 | + '下架': 'darkorange', | |
390 | 390 | '过账': 'purple', |
391 | 391 | '回传': 'grey', |
392 | 392 | '回传失败': 'red', |
393 | - default: 'default' | |
393 | + default: 'blue' | |
394 | 394 | }; |
395 | 395 | return colors[status] || colors.default; |
396 | 396 | }, |
... | ... |
ant-design-vue-jeecg/src/views/system/task/AgvTaskList.vue
ant-design-vue-jeecg/src/views/system/task/CircleTaskHeaderList.vue
ant-design-vue-jeecg/src/views/system/task/ReceiptTaskHeaderList.vue
ant-design-vue-jeecg/src/views/system/task/ShipmentTaskHeaderList.vue
ant-design-vue-jeecg/src/views/system/task/TransferTaskHeaderList.vue