Commit de85b9322f2171f25725a87c1727e571dca5d866

Authored by 肖超群
2 parents 481e8eb9 13d51366

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,7 +6,7 @@
6 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 6 <meta http-equiv="X-UA-Compatible" content="IE=edge">
7 <meta name="viewport" content="width=device-width,initial-scale=1.0"> 7 <meta name="viewport" content="width=device-width,initial-scale=1.0">
8 <title>华恒仓储管理系统</title> 8 <title>华恒仓储管理系统</title>
9 - <link rel="icon" href="<%= BASE_URL %>logo.png"> 9 + <link rel="icon" href="<%= BASE_URL %>logo.ico">
10 <script src="<%= BASE_URL %>cdn/babel-polyfill/polyfill_7_2_5.js"></script> 10 <script src="<%= BASE_URL %>cdn/babel-polyfill/polyfill_7_2_5.js"></script>
11 <style> 11 <style>
12 html, 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,14 +47,13 @@
47 @change="handleTableChange"> 47 @change="handleTableChange">
48 <span slot="action" slot-scope="text, record"> 48 <span slot="action" slot-scope="text, record">
49 <a @click="handleEdit(record)" v-has="'dict:edit'"> 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 </a> 51 </a>
53 <a-divider type="vertical"/> 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 <a-divider type="vertical"/> 54 <a-divider type="vertical"/>
56 <a-popconfirm title="确定删除吗?" @confirm="() =>handleDelete(record.id)"> 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 </a-popconfirm> 57 </a-popconfirm>
59 </span> 58 </span>
60 </a-table> 59 </a-table>
ant-design-vue-jeecg/src/views/system/config/ContainerList.vue
@@ -309,7 +309,7 @@ export default { @@ -309,7 +309,7 @@ export default {
309 '空盘': 'lightgray', 309 '空盘': 'lightgray',
310 '有货': 'purple', 310 '有货': 'purple',
311 '满盘': 'red', 311 '满盘': 'red',
312 - default: 'default' 312 + default: 'blue'
313 }; 313 };
314 return colors[status] || colors.default; 314 return colors[status] || colors.default;
315 }, 315 },
ant-design-vue-jeecg/src/views/system/config/LocationList.vue
@@ -405,7 +405,7 @@ export default { @@ -405,7 +405,7 @@ export default {
405 405
406 '高库位': 'red', 406 '高库位': 'red',
407 '低库位': 'green', 407 '低库位': 'green',
408 - default: 'default' 408 + default: 'blue'
409 }; 409 };
410 return colors[status] || colors.default; 410 return colors[status] || colors.default;
411 }, 411 },
ant-design-vue-jeecg/src/views/system/config/PortList.vue
@@ -249,7 +249,7 @@ export default { @@ -249,7 +249,7 @@ export default {
249 '入库口': 'green', 249 '入库口': 'green',
250 '出库口': 'purple', 250 '出库口': 'purple',
251 '出入口': 'red', 251 '出入口': 'red',
252 - default: 'default' 252 + default: 'blue'
253 }; 253 };
254 return colors[status] || colors.default; 254 return colors[status] || colors.default;
255 }, 255 },
ant-design-vue-jeecg/src/views/system/inventory/InventoryDetailList.vue
@@ -281,7 +281,7 @@ export default { @@ -281,7 +281,7 @@ export default {
281 '报废品': 'purple', 281 '报废品': 'purple',
282 '待确认 ': 'grey', 282 '待确认 ': 'grey',
283 '次品': 'red', 283 '次品': 'red',
284 - default: 'default' 284 + default: 'blue'
285 }; 285 };
286 return colors[status] || colors.default; 286 return colors[status] || colors.default;
287 }, 287 },
ant-design-vue-jeecg/src/views/system/inventory/InventoryHeaderList.vue
@@ -285,7 +285,7 @@ export default { @@ -285,7 +285,7 @@ export default {
285 // '空盘': 'lightgray', 285 // '空盘': 'lightgray',
286 '有货': 'purple', 286 '有货': 'purple',
287 '满盘': 'blue', 287 '满盘': 'blue',
288 - default: 'default' 288 + default: 'blue'
289 }; 289 };
290 return colors[status] || colors.default; 290 return colors[status] || colors.default;
291 }, 291 },
ant-design-vue-jeecg/src/views/system/inventory/InventoryTransactionList.vue
@@ -350,7 +350,7 @@ export default { @@ -350,7 +350,7 @@ export default {
350 '报废品': 'purple', 350 '报废品': 'purple',
351 '待确认 ': 'grey', 351 '待确认 ': 'grey',
352 '次品': 'red', 352 '次品': 'red',
353 - default: 'default' 353 + default: 'blue'
354 }; 354 };
355 return colors[status] || colors.default; 355 return colors[status] || colors.default;
356 }, 356 },
ant-design-vue-jeecg/src/views/system/inventory/SimpleInventoryDetailList.vue
@@ -374,7 +374,7 @@ export default { @@ -374,7 +374,7 @@ export default {
374 '报废品': 'purple', 374 '报废品': 'purple',
375 '待确认 ': 'grey', 375 '待确认 ': 'grey',
376 '次品': 'red', 376 '次品': 'red',
377 - default: 'default' 377 + default: 'blue'
378 }; 378 };
379 return colors[status] || colors.default; 379 return colors[status] || colors.default;
380 }, 380 },
ant-design-vue-jeecg/src/views/system/inventory/subTables/InventoryDetailSubTable.vue
@@ -262,7 +262,7 @@ export default { @@ -262,7 +262,7 @@ export default {
262 '报废品': 'purple', 262 '报废品': 'purple',
263 '待确认 ': 'grey', 263 '待确认 ': 'grey',
264 '次品': 'red', 264 '次品': 'red',
265 - default: 'default' 265 + default: 'blue'
266 }; 266 };
267 return colors[status] || colors.default; 267 return colors[status] || colors.default;
268 }, 268 },
ant-design-vue-jeecg/src/views/system/receipt/ReceiptContainerHeaderList.vue
@@ -274,9 +274,9 @@ export default { @@ -274,9 +274,9 @@ export default {
274 getStatusColor(status) { 274 getStatusColor(status) {
275 const colors = { 275 const colors = {
276 '新建': 'green', 276 '新建': 'green',
277 - '生成任务': 'purple', 277 + '生成任务': 'blue',
278 '上架完成': 'gray', 278 '上架完成': 'gray',
279 - default: 'default' 279 + default: 'blue'
280 }; 280 };
281 return colors[status] || colors.default; 281 return colors[status] || colors.default;
282 }, 282 },
ant-design-vue-jeecg/src/views/system/receipt/ReceiptDetailList.vue
@@ -235,7 +235,7 @@ export default { @@ -235,7 +235,7 @@ export default {
235 '报废品': 'purple', 235 '报废品': 'purple',
236 '待确认 ': 'grey', 236 '待确认 ': 'grey',
237 '次品': 'red', 237 '次品': 'red',
238 - default: 'default' 238 + default: 'blue'
239 }; 239 };
240 return colors[status] || colors.default; 240 return colors[status] || colors.default;
241 }, 241 },
ant-design-vue-jeecg/src/views/system/receipt/ReceiptHeaderHistoryList.vue
@@ -344,13 +344,13 @@ export default { @@ -344,13 +344,13 @@ export default {
344 getStatusColor(status) { 344 getStatusColor(status) {
345 const colors = { 345 const colors = {
346 '新建': 'green', 346 '新建': 'green',
347 - '收货': 'yellow', 347 + '收货': 'Skyblue',
348 '等待上架': 'blue', 348 '等待上架': 'blue',
349 - '上架': 'orange', 349 + '上架': 'darkorange',
350 '过账': 'purple', 350 '过账': 'purple',
351 '回传': 'grey', 351 '回传': 'grey',
352 '回传失败': 'red', 352 '回传失败': 'red',
353 - default: 'default' 353 + default: 'blue'
354 }; 354 };
355 return colors[status] || colors.default; 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,13 +377,13 @@ export default {
377 getStatusColor(status) { 377 getStatusColor(status) {
378 const colors = { 378 const colors = {
379 '新建': 'green', 379 '新建': 'green',
380 - '收货': 'yellow', 380 + '收货': 'Skyblue',
381 '等待上架': 'blue', 381 '等待上架': 'blue',
382 - '上架': 'orange', 382 + '上架': 'darkorange',
383 '过账': 'purple', 383 '过账': 'purple',
384 '回传': 'grey', 384 '回传': 'grey',
385 '回传失败': 'red', 385 '回传失败': 'red',
386 - default: 'default' 386 + default: 'blue'
387 }; 387 };
388 return colors[status] || colors.default; 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,9 +272,9 @@ export default {
272 getStatusColor(status) { 272 getStatusColor(status) {
273 const colors = { 273 const colors = {
274 '新建': 'green', 274 '新建': 'green',
275 - '生成任务': 'purple', 275 + '生成任务': 'blue',
276 '下架完成': 'gray', 276 '下架完成': 'gray',
277 - default: 'default' 277 + default: 'blue'
278 }; 278 };
279 return colors[status] || colors.default; 279 return colors[status] || colors.default;
280 }, 280 },
ant-design-vue-jeecg/src/views/system/shipment/ShipmentDetailList.vue
@@ -266,7 +266,7 @@ export default { @@ -266,7 +266,7 @@ export default {
266 '报废品': 'purple', 266 '报废品': 'purple',
267 '待确认 ': 'grey', 267 '待确认 ': 'grey',
268 '次品': 'red', 268 '次品': 'red',
269 - default: 'default' 269 + default: 'blue'
270 }; 270 };
271 return colors[status] || colors.default; 271 return colors[status] || colors.default;
272 }, 272 },
ant-design-vue-jeecg/src/views/system/shipment/ShipmentHeaderHistoryList.vue
@@ -373,13 +373,13 @@ export default { @@ -373,13 +373,13 @@ export default {
373 getStatusColor(status) { 373 getStatusColor(status) {
374 const colors = { 374 const colors = {
375 '新建': 'green', 375 '新建': 'green',
376 - '出库组盘': 'yellow', 376 + '出库组盘': 'Skyblue',
377 '等待下架': 'blue', 377 '等待下架': 'blue',
378 - '下架': 'orange', 378 + '下架': 'darkorange',
379 '过账': 'purple', 379 '过账': 'purple',
380 '回传': 'grey', 380 '回传': 'grey',
381 '回传失败': 'red', 381 '回传失败': 'red',
382 - default: 'default' 382 + default: 'blue'
383 }; 383 };
384 return colors[status] || colors.default; 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,13 +384,13 @@ export default {
384 getStatusColor(status) { 384 getStatusColor(status) {
385 const colors = { 385 const colors = {
386 '新建': 'green', 386 '新建': 'green',
387 - '出库组盘': 'yellow', 387 + '出库组盘': 'Skyblue',
388 '等待下架': 'blue', 388 '等待下架': 'blue',
389 - '下架': 'orange', 389 + '下架': 'darkorange',
390 '过账': 'purple', 390 '过账': 'purple',
391 '回传': 'grey', 391 '回传': 'grey',
392 '回传失败': 'red', 392 '回传失败': 'red',
393 - default: 'default' 393 + default: 'blue'
394 }; 394 };
395 return colors[status] || colors.default; 395 return colors[status] || colors.default;
396 }, 396 },
ant-design-vue-jeecg/src/views/system/task/AgvTaskList.vue
@@ -263,7 +263,7 @@ export default { @@ -263,7 +263,7 @@ export default {
263 '开始执行': 'orange', 263 '开始执行': 'orange',
264 '取货完成': 'purple', 264 '取货完成': 'purple',
265 '任务完成': 'grey', 265 '任务完成': 'grey',
266 - default: 'default' 266 + default: 'blue'
267 }; 267 };
268 return colors[status] || colors.default; 268 return colors[status] || colors.default;
269 }, 269 },
ant-design-vue-jeecg/src/views/system/task/CircleTaskHeaderList.vue
@@ -351,7 +351,7 @@ export default { @@ -351,7 +351,7 @@ export default {
351 '下发任务': 'blue', 351 '下发任务': 'blue',
352 '到达拣选站台': 'orange', 352 '到达拣选站台': 'orange',
353 '任务完成': 'grey', 353 '任务完成': 'grey',
354 - default: 'default' 354 + default: 'blue'
355 }; 355 };
356 return colors[status] || colors.default; 356 return colors[status] || colors.default;
357 }, 357 },
ant-design-vue-jeecg/src/views/system/task/ReceiptTaskHeaderList.vue
@@ -347,7 +347,7 @@ export default { @@ -347,7 +347,7 @@ export default {
347 '下发任务': 'blue', 347 '下发任务': 'blue',
348 '到达拣选站台': 'orange', 348 '到达拣选站台': 'orange',
349 '任务完成': 'grey', 349 '任务完成': 'grey',
350 - default: 'default' 350 + default: 'blue'
351 }; 351 };
352 return colors[status] || colors.default; 352 return colors[status] || colors.default;
353 }, 353 },
ant-design-vue-jeecg/src/views/system/task/ShipmentTaskHeaderList.vue
@@ -346,7 +346,7 @@ export default { @@ -346,7 +346,7 @@ export default {
346 '下发任务': 'blue', 346 '下发任务': 'blue',
347 '到达拣选站台': 'orange', 347 '到达拣选站台': 'orange',
348 '任务完成': 'grey', 348 '任务完成': 'grey',
349 - default: 'default' 349 + default: 'blue'
350 }; 350 };
351 return colors[status] || colors.default; 351 return colors[status] || colors.default;
352 }, 352 },
ant-design-vue-jeecg/src/views/system/task/TransferTaskHeaderList.vue
@@ -354,7 +354,7 @@ export default { @@ -354,7 +354,7 @@ export default {
354 '下发任务': 'blue', 354 '下发任务': 'blue',
355 '到达拣选站台': 'orange', 355 '到达拣选站台': 'orange',
356 '任务完成': 'grey', 356 '任务完成': 'grey',
357 - default: 'default' 357 + default: 'blue'
358 }; 358 };
359 return colors[status] || colors.default; 359 return colors[status] || colors.default;
360 }, 360 },