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 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
... ... @@ -309,7 +309,7 @@ export default {
309 309 '空盘': 'lightgray',
310 310 '有货': 'purple',
311 311 '满盘': 'red',
312   - default: 'default'
  312 + default: 'blue'
313 313 };
314 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 405  
406 406 '高库位': 'red',
407 407 '低库位': 'green',
408   - default: 'default'
  408 + default: 'blue'
409 409 };
410 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 249 '入库口': 'green',
250 250 '出库口': 'purple',
251 251 '出入口': 'red',
252   - default: 'default'
  252 + default: 'blue'
253 253 };
254 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 281 '报废品': 'purple',
282 282 '待确认 ': 'grey',
283 283 '次品': 'red',
284   - default: 'default'
  284 + default: 'blue'
285 285 };
286 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 285 // '空盘': 'lightgray',
286 286 '有货': 'purple',
287 287 '满盘': 'blue',
288   - default: 'default'
  288 + default: 'blue'
289 289 };
290 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 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/inventory/SimpleInventoryDetailList.vue
... ... @@ -374,7 +374,7 @@ export default {
374 374 '报废品': 'purple',
375 375 '待确认 ': 'grey',
376 376 '次品': 'red',
377   - default: 'default'
  377 + default: 'blue'
378 378 };
379 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 262 '报废品': 'purple',
263 263 '待确认 ': 'grey',
264 264 '次品': 'red',
265   - default: 'default'
  265 + default: 'blue'
266 266 };
267 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 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
... ... @@ -235,7 +235,7 @@ export default {
235 235 '报废品': 'purple',
236 236 '待确认 ': 'grey',
237 237 '次品': 'red',
238   - default: 'default'
  238 + default: 'blue'
239 239 };
240 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 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
... ... @@ -266,7 +266,7 @@ export default {
266 266 '报废品': 'purple',
267 267 '待确认 ': 'grey',
268 268 '次品': 'red',
269   - default: 'default'
  269 + default: 'blue'
270 270 };
271 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 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
... ... @@ -263,7 +263,7 @@ export default {
263 263 '开始执行': 'orange',
264 264 '取货完成': 'purple',
265 265 '任务完成': 'grey',
266   - default: 'default'
  266 + default: 'blue'
267 267 };
268 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 351 '下发任务': 'blue',
352 352 '到达拣选站台': 'orange',
353 353 '任务完成': 'grey',
354   - default: 'default'
  354 + default: 'blue'
355 355 };
356 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 347 '下发任务': 'blue',
348 348 '到达拣选站台': 'orange',
349 349 '任务完成': 'grey',
350   - default: 'default'
  350 + default: 'blue'
351 351 };
352 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 346 '下发任务': 'blue',
347 347 '到达拣选站台': 'orange',
348 348 '任务完成': 'grey',
349   - default: 'default'
  349 + default: 'blue'
350 350 };
351 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 354 '下发任务': 'blue',
355 355 '到达拣选站台': 'orange',
356 356 '任务完成': 'grey',
357   - default: 'default'
  357 + default: 'blue'
358 358 };
359 359 return colors[status] || colors.default;
360 360 },
... ...