Compare commits
88 Commits
44411b19cd
...
fzq
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c595794b1a | ||
|
|
72ac5b9998 | ||
| ddc3f5d49d | |||
| db0a906323 | |||
| 93a412d243 | |||
| aa85593884 | |||
| a77918c059 | |||
|
|
d8336aced0 | ||
|
|
43983bc929 | ||
| 6d3309ed2b | |||
| cae8938e22 | |||
| 03b13c77aa | |||
|
|
985ec95bc6 | ||
|
|
453f66b7b3 | ||
| 47793c38da | |||
| dcb7801d24 | |||
| f59fc1a594 | |||
| b2c50e8c56 | |||
| dd8e54f743 | |||
| 8142f16662 | |||
| 5ec45b87ca | |||
|
|
445ad7f280 | ||
|
|
15f9fb0f5b | ||
| 114bfeccf3 | |||
| 018695fe70 | |||
| 9aaffbb8b4 | |||
| 2a2bd1d726 | |||
| dd029f2055 | |||
| fe54918801 | |||
| ced191b4df | |||
| 995db83484 | |||
| 40f426f7f5 | |||
| 61270a542d | |||
| 3ecaa99a8c | |||
| 79238fca27 | |||
| 73d8951bbb | |||
| 2f19b50e20 | |||
| 6d4594b338 | |||
| d4168e6157 | |||
| dfb1f3d97b | |||
| 26772a324a | |||
|
|
aae6117db7 | ||
|
|
99f92f6891 | ||
| d8424e1752 | |||
| 598f49e378 | |||
| 982c25fa0b | |||
| 2756e75aaf | |||
| 74883db1c0 | |||
| 643277e1c7 | |||
| 4a834c3dc1 | |||
| 6b20524a5f | |||
|
|
f219b55d0c | ||
|
|
79b7fe0eec | ||
| 2329a20c4f | |||
| 7aba931c94 | |||
| 176fd99cd1 | |||
| 77fbbb630b | |||
| 18b932afa1 | |||
| 251d507db7 | |||
| 8502f5d7d1 | |||
| 9eea286c08 | |||
| d4e0384e10 | |||
| 983be7801c | |||
| d725cb7a0c | |||
| ef8a7ef497 | |||
| 6ac3fcb572 | |||
|
|
3e6389f0eb | ||
|
|
afde4d5225 | ||
| 8da50584fc | |||
| 2351e96c9e | |||
| 5277788174 | |||
| 127092be26 | |||
| 21d45adf22 | |||
| 3d3c802d01 | |||
|
|
4263eb79a0 | ||
|
|
7775d15b67 | ||
| d21c69e883 | |||
| 4921ba62ed | |||
| c58d4fb90b | |||
| f273bd32de | |||
| 7fd51b5211 | |||
| 5dda7cd772 | |||
| 60fb71791a | |||
| e7629a6ea0 | |||
| 633313c34e | |||
| 7a798d354b | |||
| ddcae6d119 | |||
| cf1e32049c |
@@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 16:00:14
|
* @Date: 2020-12-29 16:00:14
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-01-17 13:59:54
|
* @LastEditTime: 2022-03-11 16:23:43
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
import request from '@/utils/request'
|
import request from '@/utils/request'
|
||||||
@@ -84,3 +84,19 @@ export function StorageBoxRackDelete(id) { // 删除存储箱上架单条数据
|
|||||||
data: { id }
|
data: { id }
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function batchListAdd(data) { // 新增工序库位关联
|
||||||
|
return request({
|
||||||
|
url: '/api/wms/processlocation/batchList',
|
||||||
|
method: 'post',
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export function locationByProcessList(data) { // 工序库位列表获取
|
||||||
|
return request({
|
||||||
|
url: '/api/wms/processlocation/locationByProcess',
|
||||||
|
method: 'post',
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|||||||
27
src/api/dashboard.js
Normal file
27
src/api/dashboard.js
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
/*
|
||||||
|
* @Author: gtz
|
||||||
|
* @Date: 2022-03-16 16:08:06
|
||||||
|
* @LastEditors: gtz
|
||||||
|
* @LastEditTime: 2022-03-16 16:45:41
|
||||||
|
* @Description: file content
|
||||||
|
* @FilePath: \mt-ck-wms-ui\src\api\dashboard.js
|
||||||
|
*/
|
||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
// 获取菜单列表
|
||||||
|
export function getPortList(data) {
|
||||||
|
return request({
|
||||||
|
url: '/api/wms/location/shelfList',
|
||||||
|
method: 'post',
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获取菜单详情
|
||||||
|
export function getPortDetail(id) {
|
||||||
|
return request({
|
||||||
|
url: '/api/wms/storage/box/circ/info/getByLocationId',
|
||||||
|
method: 'post',
|
||||||
|
data: { id }
|
||||||
|
})
|
||||||
|
}
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* @Date: 2020-12-28 20:46:53
|
* @Date: 2020-12-28 20:46:53
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2021-04-25 14:52:11
|
* @LastEditTime: 2022-03-11 09:16:13
|
||||||
* @FilePath: \basic-admin\src\api\menu.js
|
* @FilePath: \basic-admin\src\api\menu.js
|
||||||
* @Description: 菜单api接口定义
|
* @Description: 菜单api接口定义
|
||||||
*/
|
*/
|
||||||
@@ -10,7 +10,7 @@ import request from '@/utils/request'
|
|||||||
// 获取菜单列表
|
// 获取菜单列表
|
||||||
export function getMenuList(data) {
|
export function getMenuList(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/menu/list',
|
url: '/api/upms/menu/list',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@@ -19,7 +19,7 @@ export function getMenuList(data) {
|
|||||||
// 获取菜单详情
|
// 获取菜单详情
|
||||||
export function getMenuDetail(id) {
|
export function getMenuDetail(id) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/menu/get',
|
url: '/api/upms/menu/get',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data: { id }
|
data: { id }
|
||||||
})
|
})
|
||||||
@@ -28,7 +28,7 @@ export function getMenuDetail(id) {
|
|||||||
// 新增菜单
|
// 新增菜单
|
||||||
export function addMenu(data) {
|
export function addMenu(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/menu/add',
|
url: '/api/upms/menu/add',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@@ -37,7 +37,7 @@ export function addMenu(data) {
|
|||||||
// 删除菜单
|
// 删除菜单
|
||||||
export function delMenu(id) {
|
export function delMenu(id) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/menu/delete',
|
url: '/api/upms/menu/delete',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data: { id }
|
data: { id }
|
||||||
})
|
})
|
||||||
@@ -46,7 +46,7 @@ export function delMenu(id) {
|
|||||||
// 启停菜单
|
// 启停菜单
|
||||||
export function enableMenu(data) {
|
export function enableMenu(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/menu/enabled',
|
url: '/api/upms/menu/enabled',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@@ -55,7 +55,7 @@ export function enableMenu(data) {
|
|||||||
// 修改菜单
|
// 修改菜单
|
||||||
export function editMenu(data) {
|
export function editMenu(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/menu/update',
|
url: '/api/upms/menu/update',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@@ -64,7 +64,7 @@ export function editMenu(data) {
|
|||||||
// 菜单-角色关联授权
|
// 菜单-角色关联授权
|
||||||
export function saveRoleMenu(data) {
|
export function saveRoleMenu(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/menu/saveRoleMenu',
|
url: '/api/upms/menu/saveRoleMenu',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@@ -73,7 +73,7 @@ export function saveRoleMenu(data) {
|
|||||||
// 菜单-角色关联获取
|
// 菜单-角色关联获取
|
||||||
export function listByRole(id) {
|
export function listByRole(id) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/menu/listByRole',
|
url: '/api/upms/menu/listByRole',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data: { id }
|
data: { id }
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -2,13 +2,13 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2022-01-17 14:55:09
|
* @Date: 2022-01-17 14:55:09
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-10 14:13:22
|
* @LastEditTime: 2022-03-28 13:52:12
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import request from '@/utils/request'
|
import request from '@/utils/request'
|
||||||
|
|
||||||
export function ProcessInfoList(data) { // 获取工单工艺列表
|
export function ProcessInfoList(data) { // 获取工单列表
|
||||||
return request({
|
return request({
|
||||||
url: '/api/wms/work/order/page',
|
url: '/api/wms/work/order/page',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
|
|||||||
@@ -115,6 +115,10 @@ export default {
|
|||||||
design: {
|
design: {
|
||||||
zh: '设计',
|
zh: '设计',
|
||||||
en: 'Design'
|
en: 'Design'
|
||||||
|
},
|
||||||
|
refresh: {
|
||||||
|
zh: '刷新',
|
||||||
|
en: 'Refresh'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
navbar: {
|
navbar: {
|
||||||
|
|||||||
@@ -1,13 +1,8 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: gtz
|
* @Author: gtz
|
||||||
* @Date: 2021-03-04 16:13:51
|
* @Date: 2021-03-04 16:13:51
|
||||||
<<<<<<< HEAD
|
|
||||||
* @LastEditors: fzq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2022-03-10 14:05:21
|
* @LastEditTime: 2022-03-28 11:13:15
|
||||||
=======
|
|
||||||
* @LastEditors: zwq
|
|
||||||
* @LastEditTime: 2022-03-09 16:34:56
|
|
||||||
>>>>>>> develop
|
|
||||||
* @Description: file content
|
* @Description: file content
|
||||||
*/
|
*/
|
||||||
export default {
|
export default {
|
||||||
@@ -36,6 +31,7 @@ export default {
|
|||||||
Tips: 'Tips',
|
Tips: 'Tips',
|
||||||
TipsBefore: 'Are you sure you want to delete',
|
TipsBefore: 'Are you sure you want to delete',
|
||||||
TipsStorageBefore: 'Confirm to add location:',
|
TipsStorageBefore: 'Confirm to add location:',
|
||||||
|
PleaseAddLocationFirst: 'Please Add Location First!',
|
||||||
Description: 'Description',
|
Description: 'Description',
|
||||||
Remarks: 'Remarks',
|
Remarks: 'Remarks',
|
||||||
Yes: 'Yes',
|
Yes: 'Yes',
|
||||||
@@ -59,7 +55,9 @@ export default {
|
|||||||
editLocation: 'Edit Location Point',
|
editLocation: 'Edit Location Point',
|
||||||
location: 'Location',
|
location: 'Location',
|
||||||
locationTip: 'Click the picture below to select a point. After selecting a point, select a location in the pop-up box. If you do not select a location when adding a new point, you cannot select the next point. If you want to adjust the order of the points, drag the label at the bottom of the picture to the position you want to adjust. Click to confirm the submission point information and click Reset to reset the point information to the state when the pop-up box is opened',
|
locationTip: 'Click the picture below to select a point. After selecting a point, select a location in the pop-up box. If you do not select a location when adding a new point, you cannot select the next point. If you want to adjust the order of the points, drag the label at the bottom of the picture to the position you want to adjust. Click to confirm the submission point information and click Reset to reset the point information to the state when the pop-up box is opened',
|
||||||
locationInfo: 'Location Point Info'
|
locationInfo: 'Location Point Info',
|
||||||
|
storageCode: 'storageBoxCode',
|
||||||
|
storageBoxFid: 'StorageBox FID Code'
|
||||||
},
|
},
|
||||||
factory: {
|
factory: {
|
||||||
placeholderName: 'Name Or Code',
|
placeholderName: 'Name Or Code',
|
||||||
@@ -170,7 +168,17 @@ export default {
|
|||||||
addCacheArea: 'add Ports Shelf',
|
addCacheArea: 'add Ports Shelf',
|
||||||
warning: 'Layers and Columns must be integer!',
|
warning: 'Layers and Columns must be integer!',
|
||||||
logisticsEquipment: 'Logistics Equipment',
|
logisticsEquipment: 'Logistics Equipment',
|
||||||
processEquipment: 'Process Equipment'
|
processEquipment: 'Process Equipment',
|
||||||
|
sheCode: 'Shelf Code',
|
||||||
|
sheName: 'Shelf Name',
|
||||||
|
locaNum: 'Location Number',
|
||||||
|
addLocation: 'Add Location',
|
||||||
|
columnMark: 'Column Mark',
|
||||||
|
rowMark: 'Row Mark',
|
||||||
|
status: 'Status',
|
||||||
|
man: 'Man',
|
||||||
|
woman: 'Woman',
|
||||||
|
locationNumber: 'Location Number'
|
||||||
},
|
},
|
||||||
storageBox: {
|
storageBox: {
|
||||||
name: 'Name',
|
name: 'Name',
|
||||||
@@ -182,7 +190,10 @@ export default {
|
|||||||
remark: 'Remark',
|
remark: 'Remark',
|
||||||
PositionNo: 'PositionNo',
|
PositionNo: 'PositionNo',
|
||||||
PositionCode: 'PositionCode',
|
PositionCode: 'PositionCode',
|
||||||
PositionCodeAlias: 'PositionCodeAlias'
|
PositionCodeAlias: 'PositionCodeAlias',
|
||||||
|
scrapped: 'Scrapped',
|
||||||
|
normal: 'Normal',
|
||||||
|
repairing: 'Repairing'
|
||||||
},
|
},
|
||||||
equipment: {
|
equipment: {
|
||||||
EquipmentName: 'Equipment Name',
|
EquipmentName: 'Equipment Name',
|
||||||
@@ -260,7 +271,7 @@ export default {
|
|||||||
entryType: 'Manual/Automatic',
|
entryType: 'Manual/Automatic',
|
||||||
automatic: 'automatic',
|
automatic: 'automatic',
|
||||||
manual: 'Manual',
|
manual: 'Manual',
|
||||||
workOrderId: 'workOrderId'
|
workOrderName: 'Work Order Name'
|
||||||
},
|
},
|
||||||
productPool: {
|
productPool: {
|
||||||
productName: 'Product Name',
|
productName: 'Product Name',
|
||||||
@@ -348,6 +359,15 @@ export default {
|
|||||||
PerformTaskManual: 'Perform Task Manual',
|
PerformTaskManual: 'Perform Task Manual',
|
||||||
processStorageLink: 'Process Storage Link',
|
processStorageLink: 'Process Storage Link',
|
||||||
SelectStorageType: 'Select Storage Type',
|
SelectStorageType: 'Select Storage Type',
|
||||||
LocationStorageSetting: 'Location Storage Setting'
|
LocationStorageSetting: 'Location Storage Setting',
|
||||||
|
publishTask: 'Publish The Task',
|
||||||
|
startPosition: 'Start',
|
||||||
|
endPosition: 'End',
|
||||||
|
taskType: 'Task Type',
|
||||||
|
ExWarehouse: 'Ex Warehouse',
|
||||||
|
InWarehouse: 'In Warehouse',
|
||||||
|
Circulation: 'Circulation',
|
||||||
|
Initialization: 'Initialization',
|
||||||
|
Damage: 'Damage'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
23
src/lang/i18n/en/module/dashboard.js
Normal file
23
src/lang/i18n/en/module/dashboard.js
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* @Author: gtz
|
||||||
|
* @Date: 2022-03-15 16:42:34
|
||||||
|
* @LastEditors: gtz
|
||||||
|
* @LastEditTime: 2022-03-16 20:01:32
|
||||||
|
* @Description: file content
|
||||||
|
* @FilePath: \mt-ck-wms-ui\src\lang\i18n\en\module\dashboard.js
|
||||||
|
*/
|
||||||
|
|
||||||
|
export default {
|
||||||
|
first: 'First Row',
|
||||||
|
second: 'Second Row',
|
||||||
|
title: 'WMS Inventory Information',
|
||||||
|
pageHeader: 'No.',
|
||||||
|
pageFooter: ' Page',
|
||||||
|
isEmpty: 'Is Empty',
|
||||||
|
status: 'Status',
|
||||||
|
storageBoxCode: 'Cassette Code',
|
||||||
|
name: 'Location Name',
|
||||||
|
attribute: 'Location Attribute',
|
||||||
|
cassetteStatus: 'Cassette Status',
|
||||||
|
workOrderNo: 'Work Order Number'
|
||||||
|
}
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
* @Author: gtz
|
* @Author: gtz
|
||||||
* @Date: 2021-03-04 16:12:46
|
* @Date: 2021-03-04 16:12:46
|
||||||
* @LastEditors: gtz
|
* @LastEditors: gtz
|
||||||
* @LastEditTime: 2021-04-22 19:49:39
|
* @LastEditTime: 2022-03-15 16:44:11
|
||||||
* @Description: file content
|
* @Description: file content
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -17,6 +17,7 @@ import quality from './quality'
|
|||||||
import factory from './factory'
|
import factory from './factory'
|
||||||
import formManage from './formManage'
|
import formManage from './formManage'
|
||||||
import report from './report'
|
import report from './report'
|
||||||
|
import dashboard from './dashboard'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
basicData,
|
basicData,
|
||||||
@@ -29,5 +30,6 @@ export default {
|
|||||||
quality,
|
quality,
|
||||||
factory,
|
factory,
|
||||||
formManage,
|
formManage,
|
||||||
report
|
report,
|
||||||
|
dashboard
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: gtz
|
* @Author: gtz
|
||||||
* @Date: 2021-04-22 19:48:46
|
* @Date: 2021-04-22 19:48:46
|
||||||
* @LastEditors: gtz
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2021-04-23 14:36:08
|
* @LastEditTime: 2022-03-18 14:50:00
|
||||||
* @Description: file content
|
* @Description: file content
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -11,7 +11,35 @@ export default {
|
|||||||
reportName: 'Report name',
|
reportName: 'Report name',
|
||||||
reportSort: 'Report Sort',
|
reportSort: 'Report Sort',
|
||||||
createTime: 'Create Date',
|
createTime: 'Create Date',
|
||||||
operation: 'Operation'
|
operation: 'Operation',
|
||||||
|
storageBoxNumber: 'StorageBox Number',
|
||||||
|
queryFiltering: 'Query Filtering',
|
||||||
|
storageBoxReport: 'StorageBoxReport'
|
||||||
|
},
|
||||||
|
inventory: {
|
||||||
|
code: 'Code',
|
||||||
|
status: 'Status',
|
||||||
|
inprocessCode: 'Inprocess Code',
|
||||||
|
nextprocessCode: 'Next Process Code',
|
||||||
|
currentLocation: 'Current Location',
|
||||||
|
storeTime: 'Store Time',
|
||||||
|
orderName: 'Order Name',
|
||||||
|
substrateDetails: 'Substrate Details',
|
||||||
|
viewSubstrates: 'View Substrates',
|
||||||
|
manual: 'Manual',
|
||||||
|
downl: 'Download'
|
||||||
|
},
|
||||||
|
substrate: {
|
||||||
|
substrateCode: 'SubstrateCode',
|
||||||
|
location: 'Location',
|
||||||
|
storeTime: 'Store Time',
|
||||||
|
substrateStatus: 'Substrate Status',
|
||||||
|
editSubstrate: 'Edit Substrate',
|
||||||
|
interCode: 'Inter Code',
|
||||||
|
subStorageStatus: 'Sub Storage Status',
|
||||||
|
load: 'Load',
|
||||||
|
unload: 'Unload',
|
||||||
|
machineHandID: 'Machine Hand ID'
|
||||||
},
|
},
|
||||||
reportSort: {
|
reportSort: {
|
||||||
all: 'All'
|
all: 'All'
|
||||||
|
|||||||
@@ -1,14 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: gtz
|
* @Author: gtz
|
||||||
* @Date: 2021-03-04 16:13:51
|
* @Date: 2021-03-04 16:13:51
|
||||||
<<<<<<< HEAD
|
|
||||||
* @LastEditors: fzq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2022-03-10 14:05:01
|
* @LastEditTime: 2022-03-28 11:13:13
|
||||||
* @Description: file content
|
* * @Description: file content
|
||||||
=======
|
|
||||||
* @LastEditors: zwq
|
|
||||||
* @LastEditTime: 2022-03-09 16:34:50
|
|
||||||
>>>>>>> develop
|
|
||||||
*/
|
*/
|
||||||
export default {
|
export default {
|
||||||
visual: {
|
visual: {
|
||||||
@@ -36,6 +31,7 @@ export default {
|
|||||||
Tips: '提示',
|
Tips: '提示',
|
||||||
TipsBefore: '确定删除',
|
TipsBefore: '确定删除',
|
||||||
TipsStorageBefore: '确定添加库位:',
|
TipsStorageBefore: '确定添加库位:',
|
||||||
|
PleaseAddLocationFirst: '请先添加库位!',
|
||||||
Description: '描述',
|
Description: '描述',
|
||||||
Remarks: '备注',
|
Remarks: '备注',
|
||||||
Or: '或',
|
Or: '或',
|
||||||
@@ -59,7 +55,9 @@ export default {
|
|||||||
editLocation: '编辑库位点',
|
editLocation: '编辑库位点',
|
||||||
location: '库位',
|
location: '库位',
|
||||||
locationTip: '点击下方图片选点,选点后在弹出框内选择库位,新增点位时未选择库位无法进行下一个选点,若想调整点位顺序可拖动图片下方的标签到你想调整的位置,点击确定提交点位信息,点击重置将点位信息重置到打开弹出框时的状态',
|
locationTip: '点击下方图片选点,选点后在弹出框内选择库位,新增点位时未选择库位无法进行下一个选点,若想调整点位顺序可拖动图片下方的标签到你想调整的位置,点击确定提交点位信息,点击重置将点位信息重置到打开弹出框时的状态',
|
||||||
locationInfo: '库位点信息'
|
locationInfo: '库位点信息',
|
||||||
|
storageCode: '存储箱号',
|
||||||
|
storageBoxFid: '存储箱名FID编码'
|
||||||
},
|
},
|
||||||
factory: {
|
factory: {
|
||||||
placeholderName: '名称或编码',
|
placeholderName: '名称或编码',
|
||||||
@@ -161,7 +159,13 @@ export default {
|
|||||||
status: '状态',
|
status: '状态',
|
||||||
warning: '行列标必须为整数!',
|
warning: '行列标必须为整数!',
|
||||||
logisticsEquipment: '物流设备',
|
logisticsEquipment: '物流设备',
|
||||||
processEquipment: '工艺设备'
|
processEquipment: '工艺设备',
|
||||||
|
sheCode: '货架编码',
|
||||||
|
sheName: '货架名',
|
||||||
|
locaNum: '库存数量',
|
||||||
|
man: '男',
|
||||||
|
woman: '女',
|
||||||
|
locationNumber: '库位编号'
|
||||||
},
|
},
|
||||||
storageBox: {
|
storageBox: {
|
||||||
name: '存储箱名称',
|
name: '存储箱名称',
|
||||||
@@ -173,7 +177,11 @@ export default {
|
|||||||
remark: '备注',
|
remark: '备注',
|
||||||
PositionNo: '位置序号',
|
PositionNo: '位置序号',
|
||||||
PositionCode: '位置编码',
|
PositionCode: '位置编码',
|
||||||
PositionCodeAlias: '位置编码别名'
|
PositionCodeAlias: '位置编码别名',
|
||||||
|
scrapped: '报废',
|
||||||
|
normal: '正常',
|
||||||
|
repairing: '维修中'
|
||||||
|
|
||||||
},
|
},
|
||||||
equipment: {
|
equipment: {
|
||||||
shortName: '名称缩写',
|
shortName: '名称缩写',
|
||||||
@@ -253,7 +261,7 @@ export default {
|
|||||||
entryType: '手动/自动',
|
entryType: '手动/自动',
|
||||||
automatic: '自动',
|
automatic: '自动',
|
||||||
manual: '手动',
|
manual: '手动',
|
||||||
workOrderId: '工单名称'
|
workOrderName: '工单名称'
|
||||||
},
|
},
|
||||||
processLocation: {
|
processLocation: {
|
||||||
sequence: '顺序',
|
sequence: '顺序',
|
||||||
@@ -355,6 +363,15 @@ export default {
|
|||||||
PerformTaskManual: '手动执行任务',
|
PerformTaskManual: '手动执行任务',
|
||||||
processStorageLink: '工序关联库位',
|
processStorageLink: '工序关联库位',
|
||||||
SelectStorageType: '选择库位类型',
|
SelectStorageType: '选择库位类型',
|
||||||
LocationStorageSetting: '库位存储箱设置'
|
LocationStorageSetting: '库位存储箱设置',
|
||||||
|
publishTask: '发布任务',
|
||||||
|
startPosition: '起点',
|
||||||
|
endPosition: '终点',
|
||||||
|
taskType: '任务类型',
|
||||||
|
ExWarehouse: '出库',
|
||||||
|
InWarehouse: '入库',
|
||||||
|
Circulation: '流转',
|
||||||
|
Initialization: '初始化',
|
||||||
|
Damage: '损坏'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
23
src/lang/i18n/zh/module/dashboard.js
Normal file
23
src/lang/i18n/zh/module/dashboard.js
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* @Author: gtz
|
||||||
|
* @Date: 2022-03-15 16:42:34
|
||||||
|
* @LastEditors: gtz
|
||||||
|
* @LastEditTime: 2022-03-16 20:01:27
|
||||||
|
* @Description: file content
|
||||||
|
* @FilePath: \mt-ck-wms-ui\src\lang\i18n\zh\module\dashboard.js
|
||||||
|
*/
|
||||||
|
|
||||||
|
export default {
|
||||||
|
first: '第一排',
|
||||||
|
second: '第二排',
|
||||||
|
title: 'WMS库存信息',
|
||||||
|
pageHeader: '第',
|
||||||
|
pageFooter: '页',
|
||||||
|
isEmpty: '是否为空',
|
||||||
|
status: '状态',
|
||||||
|
storageBoxCode: '存储箱编码',
|
||||||
|
name: '库位名',
|
||||||
|
attribute: '库位属性',
|
||||||
|
cassetteStatus: '存储箱状态',
|
||||||
|
workOrderNo: '工单号'
|
||||||
|
}
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
* @Author: gtz
|
* @Author: gtz
|
||||||
* @Date: 2021-03-04 16:12:46
|
* @Date: 2021-03-04 16:12:46
|
||||||
* @LastEditors: gtz
|
* @LastEditors: gtz
|
||||||
* @LastEditTime: 2021-04-22 19:49:47
|
* @LastEditTime: 2022-03-15 16:44:05
|
||||||
* @Description: file content
|
* @Description: file content
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -17,6 +17,7 @@ import quality from './quality'
|
|||||||
import factory from './factory'
|
import factory from './factory'
|
||||||
import formManage from './formManage'
|
import formManage from './formManage'
|
||||||
import report from './report'
|
import report from './report'
|
||||||
|
import dashboard from './dashboard'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
basicData,
|
basicData,
|
||||||
@@ -29,5 +30,6 @@ export default {
|
|||||||
quality,
|
quality,
|
||||||
factory,
|
factory,
|
||||||
formManage,
|
formManage,
|
||||||
report
|
report,
|
||||||
|
dashboard
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* @Author: gtz
|
* @Author: gtz
|
||||||
* @Date: 2021-04-22 19:48:46
|
* @Date: 2021-04-22 19:48:46
|
||||||
* @LastEditors: fzq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2022-03-06 16:50:50
|
* @LastEditTime: 2022-03-18 14:49:43
|
||||||
* @Description: file content
|
* @Description: file content
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -13,7 +13,8 @@ export default {
|
|||||||
createTime: '添加时间',
|
createTime: '添加时间',
|
||||||
operation: '操作',
|
operation: '操作',
|
||||||
storageBoxNumber: '存储箱号',
|
storageBoxNumber: '存储箱号',
|
||||||
queryFiltering: '查询过滤'
|
queryFiltering: '查询过滤',
|
||||||
|
storageBoxReport: '存储箱报表'
|
||||||
},
|
},
|
||||||
inventory: {
|
inventory: {
|
||||||
code: '存储箱号',
|
code: '存储箱号',
|
||||||
@@ -34,7 +35,11 @@ export default {
|
|||||||
storeTime: '入库时间',
|
storeTime: '入库时间',
|
||||||
substrateStatus: '基板状态',
|
substrateStatus: '基板状态',
|
||||||
editSubstrate: '编辑基板',
|
editSubstrate: '编辑基板',
|
||||||
interCode: '内部编码'
|
interCode: '内部编码',
|
||||||
|
subStorageStatus: '存取状态',
|
||||||
|
load: '上片',
|
||||||
|
unload: '下片',
|
||||||
|
machineHandID: '机械手ID'
|
||||||
},
|
},
|
||||||
reportSort: {
|
reportSort: {
|
||||||
all: '全部'
|
all: '全部'
|
||||||
|
|||||||
@@ -11,10 +11,10 @@
|
|||||||
|
|
||||||
<div class="right-menu">
|
<div class="right-menu">
|
||||||
|
|
||||||
<div v-if="showhome" class="right-menu-back" @click="toHome">
|
<!-- <div v-if="showhome" class="right-menu-back" @click="toHome">
|
||||||
<svg-icon class="item-icon" icon-class="home" />
|
<svg-icon class="item-icon" icon-class="home" />
|
||||||
{{ 'navbar.homepage' | i18nFilter }}
|
{{ 'navbar.homepage' | i18nFilter }}
|
||||||
</div>
|
</div> -->
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<lang-select class="right-menu-item hover-effect" />
|
<lang-select class="right-menu-item hover-effect" />
|
||||||
|
|||||||
@@ -57,19 +57,6 @@ export const constantRoutes = [
|
|||||||
component: () => import('@/views/login/index'),
|
component: () => import('@/views/login/index'),
|
||||||
hidden: true
|
hidden: true
|
||||||
},
|
},
|
||||||
{
|
|
||||||
path: '/',
|
|
||||||
component: Layout,
|
|
||||||
redirect: '/dashboard',
|
|
||||||
children: [
|
|
||||||
{
|
|
||||||
path: 'dashboard',
|
|
||||||
component: () => import('@/views/dashboard/index'),
|
|
||||||
name: 'Dashboard',
|
|
||||||
meta: { title: routerTitle.dashboard?.[language] || routerTitle.dashboard.en, icon: 'form', iconPart: 'dashboard', affix: true, required: true, requireToken: true }
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
// {
|
// {
|
||||||
// path: '/',
|
// path: '/',
|
||||||
// component: () => import('@/views/ChoicePart'),
|
// component: () => import('@/views/ChoicePart'),
|
||||||
@@ -91,6 +78,20 @@ export const constantRoutes = [
|
|||||||
component: () => import('@/views/error-page/401'),
|
component: () => import('@/views/error-page/401'),
|
||||||
hidden: true
|
hidden: true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/dashboard',
|
||||||
|
component: Layout,
|
||||||
|
redirect: '/dashboard',
|
||||||
|
name: 'Dash',
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
path: 'dashboard',
|
||||||
|
component: () => import('@/views/dashboard/index'),
|
||||||
|
name: 'Dashboard',
|
||||||
|
meta: { title: routerTitle.dashboard?.[language] || routerTitle.dashboard.en, icon: 'form', affix: true, required: true, requireToken: true, noCache: true }
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/',
|
path: '/',
|
||||||
component: Layout,
|
component: Layout,
|
||||||
@@ -215,12 +216,13 @@ export const constantRoutes = [
|
|||||||
path: 'staff',
|
path: 'staff',
|
||||||
component: () => import('@/views/basicData/GroupModule/staff'),
|
component: () => import('@/views/basicData/GroupModule/staff'),
|
||||||
name: 'staff',
|
name: 'staff',
|
||||||
|
hidden: true,
|
||||||
meta: { title: routerTitle.basicData.teamManage.staff?.[language] || routerTitle.basicData.teamManage.staff.en, icon: 'form', affix: true, required: true, requireToken: true }
|
meta: { title: routerTitle.basicData.teamManage.staff?.[language] || routerTitle.basicData.teamManage.staff.en, icon: 'form', affix: true, required: true, requireToken: true }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/dataDictionary',
|
path: '/DataDictionary',
|
||||||
component: () => import('@/views/basicData/index'),
|
component: () => import('@/views/basicData/index'),
|
||||||
name: 'dataDictionary',
|
name: 'DataDictionary',
|
||||||
meta: { title: routerTitle.basicData.dataDictionaryType.dataDictionary?.[language] || routerTitle.basicData.dataDictionaryType.dataDictionary.en, icon: 'form', affix: true, required: true, requireToken: true },
|
meta: { title: routerTitle.basicData.dataDictionaryType.dataDictionary?.[language] || routerTitle.basicData.dataDictionaryType.dataDictionary.en, icon: 'form', affix: true, required: true, requireToken: true },
|
||||||
children: [{
|
children: [{
|
||||||
path: 'dataDictionary',
|
path: 'dataDictionary',
|
||||||
@@ -260,7 +262,7 @@ export const constantRoutes = [
|
|||||||
{
|
{
|
||||||
path: 'processList',
|
path: 'processList',
|
||||||
component: () => import('@/views/art/processList'),
|
component: () => import('@/views/art/processList'),
|
||||||
name: 'Process',
|
name: 'processList',
|
||||||
meta: { title: routerTitle.technology.processList?.[language] || routerTitle.technology.processList.en, icon: 'form', affix: true, required: true, requireToken: true }
|
meta: { title: routerTitle.technology.processList?.[language] || routerTitle.technology.processList.en, icon: 'form', affix: true, required: true, requireToken: true }
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -268,7 +270,7 @@ export const constantRoutes = [
|
|||||||
{
|
{
|
||||||
path: '/Warehouse',
|
path: '/Warehouse',
|
||||||
component: Layout,
|
component: Layout,
|
||||||
redirect: '/Warehouse/workOrderManage',
|
redirect: '/Warehouse/StorageBoxInfo',
|
||||||
name: 'Warehouse',
|
name: 'Warehouse',
|
||||||
meta: { title: routerTitle.Warehouse?.[language] || routerTitle.Warehouse.en, icon: 'form', iconPart: 'orderManage', affix: true, required: true, requireToken: true },
|
meta: { title: routerTitle.Warehouse?.[language] || routerTitle.Warehouse.en, icon: 'form', iconPart: 'orderManage', affix: true, required: true, requireToken: true },
|
||||||
children: [
|
children: [
|
||||||
@@ -281,6 +283,7 @@ export const constantRoutes = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/StorageBoxRack',
|
path: '/StorageBoxRack',
|
||||||
|
hidden: true,
|
||||||
component: () =>
|
component: () =>
|
||||||
import('@/views/basicData/Warehouse/StorageBoxRack'),
|
import('@/views/basicData/Warehouse/StorageBoxRack'),
|
||||||
name: 'StorageBoxRack',
|
name: 'StorageBoxRack',
|
||||||
@@ -496,7 +499,7 @@ export const constantRoutes = [
|
|||||||
path: '/basic',
|
path: '/basic',
|
||||||
component: Layout,
|
component: Layout,
|
||||||
redirect: '/user/manager',
|
redirect: '/user/manager',
|
||||||
name: 'ArticleManager',
|
name: 'basic',
|
||||||
meta: { title: routerTitle.basic?.[language] || routerTitle.basic.en, icon: 'form', iconPart: 'ArticleManager', affix: true, required: true, requireToken: true },
|
meta: { title: routerTitle.basic?.[language] || routerTitle.basic.en, icon: 'form', iconPart: 'ArticleManager', affix: true, required: true, requireToken: true },
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
@@ -515,7 +518,6 @@ export const constantRoutes = [
|
|||||||
path: 'menumanager',
|
path: 'menumanager',
|
||||||
component: () => import('@/views/MenuManager'),
|
component: () => import('@/views/MenuManager'),
|
||||||
name: 'MenuManager',
|
name: 'MenuManager',
|
||||||
hidden: true,
|
|
||||||
meta: { title: routerTitle.basic.menumanage?.[language] || routerTitle.basic.menumanage.en, icon: 'form', affix: true, required: true, requireToken: true }
|
meta: { title: routerTitle.basic.menumanage?.[language] || routerTitle.basic.menumanage.en, icon: 'form', affix: true, required: true, requireToken: true }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: DY
|
* @Author: DY
|
||||||
* @Date: 2021-12-16 15:41:11
|
* @Date: 2021-12-16 15:41:11
|
||||||
* @LastEditors: DY
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-03 15:26:05
|
* @LastEditTime: 2022-03-04 09:04:30
|
||||||
* @Description: E10
|
* @Description: E10
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -84,18 +84,18 @@ export default {
|
|||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
// this.getEqList()
|
// this.getEqList()
|
||||||
this.getList()
|
// this.getList()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
async getEqList() {
|
// async getEqList() {
|
||||||
const res = await equipmentList({
|
// const res = await equipmentList({
|
||||||
current: 1,
|
// current: 1,
|
||||||
size: 999
|
// size: 999
|
||||||
})
|
// })
|
||||||
if (res.code === 0) {
|
// if (res.code === 0) {
|
||||||
this.eqList = res.data
|
// this.eqList = res.data
|
||||||
}
|
// }
|
||||||
},
|
// },
|
||||||
toE10() {
|
toE10() {
|
||||||
this.$router.push({
|
this.$router.push({
|
||||||
name: 'E10'
|
name: 'E10'
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: DY
|
* @Author: DY
|
||||||
* @Date: 2021-12-16 15:41:11
|
* @Date: 2021-12-16 15:41:11
|
||||||
* @LastEditors: DY
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-03 15:26:28
|
* @LastEditTime: 2022-03-04 09:04:19
|
||||||
* @Description: MCBF
|
* @Description: MCBF
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -83,18 +83,18 @@ export default {
|
|||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
// this.getEqList()
|
// this.getEqList()
|
||||||
this.getList()
|
// this.getList()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
async getEqList() {
|
// async getEqList() {
|
||||||
const res = await equipmentList({
|
// const res = await equipmentList({
|
||||||
current: 1,
|
// current: 1,
|
||||||
size: 999
|
// size: 999
|
||||||
})
|
// })
|
||||||
if (res.code === 0) {
|
// if (res.code === 0) {
|
||||||
this.eqList = res.data
|
// this.eqList = res.data
|
||||||
}
|
// }
|
||||||
},
|
// },
|
||||||
toE10() {
|
toE10() {
|
||||||
this.$router.push({
|
this.$router.push({
|
||||||
name: 'E10'
|
name: 'E10'
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: DY
|
* @Author: DY
|
||||||
* @Date: 2021-12-16 15:41:11
|
* @Date: 2021-12-16 15:41:11
|
||||||
* @LastEditors: DY
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-03 15:26:44
|
* @LastEditTime: 2022-03-04 09:04:09
|
||||||
* @Description: MTTR
|
* @Description: MTTR
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -83,18 +83,18 @@ export default {
|
|||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
// this.getEqList()
|
// this.getEqList()
|
||||||
this.getList()
|
// this.getList()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
async getEqList() {
|
// async getEqList() {
|
||||||
const res = await equipmentList({
|
// const res = await equipmentList({
|
||||||
current: 1,
|
// current: 1,
|
||||||
size: 999
|
// size: 999
|
||||||
})
|
// })
|
||||||
if (res.code === 0) {
|
// if (res.code === 0) {
|
||||||
this.eqList = res.data
|
// this.eqList = res.data
|
||||||
}
|
// }
|
||||||
},
|
// },
|
||||||
toE10() {
|
toE10() {
|
||||||
this.$router.push({
|
this.$router.push({
|
||||||
name: 'E10'
|
name: 'E10'
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: DY
|
* @Author: DY
|
||||||
* @Date: 2021-12-16 15:41:11
|
* @Date: 2021-12-16 15:41:11
|
||||||
* @LastEditors: DY
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-03 15:26:56
|
* @LastEditTime: 2022-03-04 09:03:58
|
||||||
* @Description: OEE
|
* @Description: OEE
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -83,18 +83,18 @@ export default {
|
|||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
// this.getEqList()
|
// this.getEqList()
|
||||||
this.getList()
|
// this.getList()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
async getEqList() {
|
// async getEqList() {
|
||||||
const res = await equipmentList({
|
// const res = await equipmentList({
|
||||||
current: 1,
|
// current: 1,
|
||||||
size: 999
|
// size: 999
|
||||||
})
|
// })
|
||||||
if (res.code === 0) {
|
// if (res.code === 0) {
|
||||||
this.eqList = res.data
|
// this.eqList = res.data
|
||||||
}
|
// }
|
||||||
},
|
// },
|
||||||
toE10() {
|
toE10() {
|
||||||
this.$router.push({
|
this.$router.push({
|
||||||
name: 'E10'
|
name: 'E10'
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 15:41:11
|
* @Date: 2020-12-29 15:41:11
|
||||||
* @LastEditors: DY
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-03 16:22:24
|
* @LastEditTime: 2022-03-04 09:03:35
|
||||||
* @Description: E10详情表格
|
* @Description: E10详情表格
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -108,15 +108,15 @@ export default {
|
|||||||
this.listQuery.startTime = this.time1
|
this.listQuery.startTime = this.time1
|
||||||
this.listQuery.endTime = this.time2
|
this.listQuery.endTime = this.time2
|
||||||
this.listQuery.equipmentName = this.equipmentName
|
this.listQuery.equipmentName = this.equipmentName
|
||||||
getE10StackDetail(this.listQuery).then(res => {
|
// getE10StackDetail(this.listQuery).then(res => {
|
||||||
if (res.data !== []) {
|
// if (res.data !== []) {
|
||||||
this.list = res.data.detail.records
|
// this.list = res.data.detail.records
|
||||||
this.total = res.data.detail.total
|
// this.total = res.data.detail.total
|
||||||
this.list.forEach(item => {
|
// this.list.forEach(item => {
|
||||||
item.equipmentName = this.equipmentName
|
// item.equipmentName = this.equipmentName
|
||||||
})
|
// })
|
||||||
}
|
// }
|
||||||
})
|
// })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 15:41:11
|
* @Date: 2020-12-29 15:41:11
|
||||||
* @LastEditors: DY
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-03 16:46:06
|
* @LastEditTime: 2022-03-04 09:03:23
|
||||||
* @Description: Mttr详情表格
|
* @Description: Mttr详情表格
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -109,12 +109,12 @@ export default {
|
|||||||
this.listQuery.startTime = this.time1
|
this.listQuery.startTime = this.time1
|
||||||
this.listQuery.endTime = this.time2
|
this.listQuery.endTime = this.time2
|
||||||
this.listQuery.equipmentName = this.equipmentName
|
this.listQuery.equipmentName = this.equipmentName
|
||||||
getMttrDetail(this.listQuery).then(res => {
|
// getMttrDetail(this.listQuery).then(res => {
|
||||||
if (res.data !== []) {
|
// if (res.data !== []) {
|
||||||
this.list = res.data.detail.records
|
// this.list = res.data.detail.records
|
||||||
this.total = res.data.detail.total
|
// this.total = res.data.detail.total
|
||||||
}
|
// }
|
||||||
})
|
// })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 16:37:56
|
* @Date: 2020-12-29 16:37:56
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-09 14:59:52
|
* @LastEditTime: 2022-03-16 14:11:09
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -66,10 +66,10 @@
|
|||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<el-form-item :label="$t('module.basicData.ScrapInfo.workOrderId')" prop="workOrderId">
|
<el-form-item :label="$t('module.basicData.ScrapInfo.workOrderName')" prop="workOrderId">
|
||||||
<el-select
|
<el-select
|
||||||
v-model="dataForm.workOrderId"
|
v-model="dataForm.workOrderId"
|
||||||
:placeholder="$i18nForm(['placeholder.input', $t('module.basicData.ScrapInfo.workOrderId')])"
|
:placeholder="$i18nForm(['placeholder.input', $t('module.basicData.ScrapInfo.workOrderName')])"
|
||||||
clearable
|
clearable
|
||||||
:style="{width: '100%'}"
|
:style="{width: '100%'}"
|
||||||
>
|
>
|
||||||
@@ -135,6 +135,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import moment from 'moment'
|
||||||
import i18n from '@/lang'
|
import i18n from '@/lang'
|
||||||
import { getScrapInfo, editScrapInfo, addScrapInfo } from '@/api/quality-manage/scrap'
|
import { getScrapInfo, editScrapInfo, addScrapInfo } from '@/api/quality-manage/scrap'
|
||||||
import { scrapReasonList } from '@/api/dict'
|
import { scrapReasonList } from '@/api/dict'
|
||||||
@@ -164,6 +165,7 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
visible: false,
|
visible: false,
|
||||||
|
moment,
|
||||||
dataForm: {
|
dataForm: {
|
||||||
id: 0,
|
id: 0,
|
||||||
source: undefined,
|
source: undefined,
|
||||||
@@ -223,6 +225,8 @@ export default {
|
|||||||
getScrapInfo({ id: this.dataForm.id }).then(res => {
|
getScrapInfo({ id: this.dataForm.id }).then(res => {
|
||||||
this.dataForm = res.data
|
this.dataForm = res.data
|
||||||
})
|
})
|
||||||
|
} else {
|
||||||
|
this.dataForm.registerTime = this.moment()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 15:41:11
|
* @Date: 2020-12-29 15:41:11
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-04 10:40:51
|
* @LastEditTime: 2022-03-28 13:52:30
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -11,10 +11,9 @@
|
|||||||
:model="formData"
|
:model="formData"
|
||||||
:inline="true"
|
:inline="true"
|
||||||
size="medium"
|
size="medium"
|
||||||
label-width="100px"
|
|
||||||
>
|
>
|
||||||
<el-form-item v-if="false" :label="$t('module.basicData.ScrapInfo.PlateId')" prop="basalId">
|
<el-form-item :label="$t('module.basicData.ScrapInfo.PlateId')" prop="substrateId">
|
||||||
<el-input v-model="formData.basalId" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.ScrapInfo.PlateId')])" style="width:200px" clearable />
|
<el-input v-model="formData.substrateId" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.ScrapInfo.PlateId')])" style="width:200px" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :label="$t('module.basicData.ScrapInfo.TimePeriod')" prop="time">
|
<el-form-item :label="$t('module.basicData.ScrapInfo.TimePeriod')" prop="time">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
@@ -38,6 +37,16 @@
|
|||||||
/>
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item :label="$t('module.basicData.ScrapInfo.workOrderName')" prop="workOrderId">
|
||||||
|
<el-select v-model="formData.workOrderId" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.ScrapInfo.workOrderName')])" clearable :style="{width: '100%'}" filterable>
|
||||||
|
<el-option
|
||||||
|
v-for="(item, index) in orderList"
|
||||||
|
:key="index"
|
||||||
|
:label="item.name"
|
||||||
|
:value="item.id"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" @click="getList()"> {{ 'btn.search' | i18nFilter }} </el-button>
|
<el-button type="primary" @click="getList()"> {{ 'btn.search' | i18nFilter }} </el-button>
|
||||||
<el-button type="primary" @click="addNew()"> {{ 'btn.add' | i18nFilter }} </el-button>
|
<el-button type="primary" @click="addNew()"> {{ 'btn.add' | i18nFilter }} </el-button>
|
||||||
@@ -79,6 +88,7 @@ import MethodBtn from '@/components/BaseTable/subcomponents/MethodBtn'
|
|||||||
import { timeFormatter } from '@/filters'
|
import { timeFormatter } from '@/filters'
|
||||||
import i18n from '@/lang'
|
import i18n from '@/lang'
|
||||||
import { getEqList } from '@/api/equipment/maintain'
|
import { getEqList } from '@/api/equipment/maintain'
|
||||||
|
import { ProcessInfoList } from '@/api/orderManage/00A'
|
||||||
// import DictFilter from '@/components/BaseTable/subcomponents/DataDictFilter'
|
// import DictFilter from '@/components/BaseTable/subcomponents/DataDictFilter'
|
||||||
/**
|
/**
|
||||||
* 表格表头配置项 TypeScript接口注释
|
* 表格表头配置项 TypeScript接口注释
|
||||||
@@ -113,8 +123,13 @@ const tableProps = [
|
|||||||
// filter: timeFormatter
|
// filter: timeFormatter
|
||||||
// },
|
// },
|
||||||
{
|
{
|
||||||
prop: 'source',
|
prop: 'substrateId',
|
||||||
label: i18n.t('module.basicData.ScrapInfo.source'),
|
label: i18n.t('module.basicData.ScrapInfo.PlateId'),
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'workOrderName',
|
||||||
|
label: i18n.t('module.basicData.ScrapInfo.workOrderName'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -122,11 +137,6 @@ const tableProps = [
|
|||||||
label: i18n.t('module.basicData.ScrapInfo.name'),
|
label: i18n.t('module.basicData.ScrapInfo.name'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
|
||||||
prop: 'substrateId',
|
|
||||||
label: i18n.t('module.basicData.ScrapInfo.PlateId'),
|
|
||||||
align: 'center'
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
prop: 'registerPersonName',
|
prop: 'registerPersonName',
|
||||||
label: i18n.t('module.basicData.ScrapInfo.RegisterPerson'),
|
label: i18n.t('module.basicData.ScrapInfo.RegisterPerson'),
|
||||||
@@ -138,6 +148,11 @@ const tableProps = [
|
|||||||
filter: timeFormatter,
|
filter: timeFormatter,
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
prop: 'placeOfRegis',
|
||||||
|
label: i18n.t('module.basicData.ScrapInfo.registrationPlace'),
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
prop: 'scrapReason',
|
prop: 'scrapReason',
|
||||||
label: i18n.t('module.basicData.ScrapInfo.cause'),
|
label: i18n.t('module.basicData.ScrapInfo.cause'),
|
||||||
@@ -166,7 +181,9 @@ export default {
|
|||||||
listLoading: true,
|
listLoading: true,
|
||||||
formData: {
|
formData: {
|
||||||
timeSlot: null,
|
timeSlot: null,
|
||||||
basalId: '',
|
substrateId: '',
|
||||||
|
workOrderId: '',
|
||||||
|
equipmentId: '',
|
||||||
current: 1,
|
current: 1,
|
||||||
size: 10,
|
size: 10,
|
||||||
id: ''
|
id: ''
|
||||||
@@ -178,6 +195,7 @@ export default {
|
|||||||
dict: {
|
dict: {
|
||||||
scrap: []
|
scrap: []
|
||||||
},
|
},
|
||||||
|
orderList: [],
|
||||||
device: []
|
device: []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -236,6 +254,13 @@ export default {
|
|||||||
if (result1.code === 0) {
|
if (result1.code === 0) {
|
||||||
this.device = result1.data.records
|
this.device = result1.data.records
|
||||||
}
|
}
|
||||||
|
const result2 = await ProcessInfoList({
|
||||||
|
current: 1,
|
||||||
|
size: 999
|
||||||
|
})
|
||||||
|
if (result2.code === 0) {
|
||||||
|
this.orderList = result2.data.records
|
||||||
|
}
|
||||||
const result = await scrapReasonList()
|
const result = await scrapReasonList()
|
||||||
this.dict.scrap = result
|
this.dict.scrap = result
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 16:37:56
|
* @Date: 2020-12-29 16:37:56
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-09 16:53:23
|
* @LastEditTime: 2022-03-16 14:30:59
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -15,7 +15,7 @@
|
|||||||
<el-input v-model="dataForm.name" :placeholder="$i18nForm(['placeholder.input', $t('module.art.processList.processName')])" clearable />
|
<el-input v-model="dataForm.name" :placeholder="$i18nForm(['placeholder.input', $t('module.art.processList.processName')])" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :label="$t('module.art.processList.processEq')" prop="equipmentIds">
|
<el-form-item :label="$t('module.art.processList.processEq')" prop="equipmentIds">
|
||||||
<el-select v-model="dataForm.equipmentIds" clearable filterable multiple>
|
<el-select v-model="dataForm.equipmentIds" clearable filterable multiple @change="$forceUpdate()">
|
||||||
<el-option v-for="item in eqList" :key="item.id" :value="item.id" :label="item.name" />
|
<el-option v-for="item in eqList" :key="item.id" :value="item.id" :label="item.name" />
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 15:41:11
|
* @Date: 2020-12-29 15:41:11
|
||||||
* @LastEditors: fzq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2022-03-10 21:00:58
|
* @LastEditTime: 2022-03-19 10:25:46
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -17,7 +17,7 @@
|
|||||||
@getDataList="getList"
|
@getDataList="getList"
|
||||||
@add="addNew"
|
@add="addNew"
|
||||||
/>
|
/>
|
||||||
<div style="title">货架编码:{{ shCode }} 货架名称:{{ shName }} 库存量:{{ num }}
|
<div style="title">{{ sheCode }}:{{ shCode }} {{ sheName }}:{{ shName }} {{ locaNum }}:{{ num }}
|
||||||
<el-button type="success" @click="goback()">{{ 'btn.back' | i18nFilter }}</el-button>
|
<el-button type="success" @click="goback()">{{ 'btn.back' | i18nFilter }}</el-button>
|
||||||
</div>
|
</div>
|
||||||
<base-table
|
<base-table
|
||||||
@@ -102,15 +102,20 @@ const tableProps = [
|
|||||||
label: i18n.t('module.basicData.cache.columnMark'),
|
label: i18n.t('module.basicData.cache.columnMark'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
prop: 'locationType',
|
// prop: 'locationType',
|
||||||
label: i18n.t('module.basicData.cache.locationType'),
|
// label: i18n.t('module.basicData.cache.locationType'),
|
||||||
align: 'center'
|
// align: 'center'
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
prop: 'statusName',
|
prop: 'statusName',
|
||||||
label: i18n.t('module.basicData.cache.status'),
|
label: i18n.t('module.basicData.cache.status'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'locationNumber',
|
||||||
|
label: i18n.t('module.basicData.cache.locationNumber'),
|
||||||
|
align: 'center'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -143,18 +148,22 @@ export default {
|
|||||||
}],
|
}],
|
||||||
listLoading: true,
|
listLoading: true,
|
||||||
listQuery: {
|
listQuery: {
|
||||||
|
name: '',
|
||||||
current: 1,
|
current: 1,
|
||||||
size: 990,
|
size: 20
|
||||||
shelfId: '',
|
// shelfId: '',
|
||||||
id: ''
|
// id: ''
|
||||||
}
|
},
|
||||||
|
sheCode: this.$t('module.basicData.cache.sheCode'),
|
||||||
|
sheName: this.$t('module.basicData.cache.sheName'),
|
||||||
|
locaNum: this.$t('module.basicData.cache.locaNum')
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.listQuery.shelfId = this.$route.query.id
|
this.listQuery.shelfId = this.$route.query.id
|
||||||
this.shCode = this.$route.query.code
|
this.shCode = this.$route.query.code
|
||||||
this.shName = this.$route.query.shelfName
|
this.shName = this.$route.query.shelfName
|
||||||
this.num = this.$route.query.columnNum
|
this.num = this.$route.query.total
|
||||||
this.getList()
|
this.getList()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@@ -185,6 +194,7 @@ export default {
|
|||||||
this.listLoading = true
|
this.listLoading = true
|
||||||
this.listQuery.name = key
|
this.listQuery.name = key
|
||||||
// shelfId与查询参数id关联
|
// shelfId与查询参数id关联
|
||||||
|
console.log(this.listQuery)
|
||||||
this.listQuery.id = this.listQuery.shelfId
|
this.listQuery.id = this.listQuery.shelfId
|
||||||
locationList(this.listQuery).then(response => {
|
locationList(this.listQuery).then(response => {
|
||||||
if (response.data.records) {
|
if (response.data.records) {
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 16:37:56
|
* @Date: 2020-12-29 16:37:56
|
||||||
* @LastEditors: fzq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2022-03-10 21:14:13
|
* @LastEditTime: 2022-03-23 11:03:08
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -20,19 +20,22 @@
|
|||||||
<el-form-item :label="$t('module.basicData.cache.anotherName')" prop="locationNameAlias">
|
<el-form-item :label="$t('module.basicData.cache.anotherName')" prop="locationNameAlias">
|
||||||
<el-input v-model="dataForm.locationNameAlias" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.anotherName')])" clearable />
|
<el-input v-model="dataForm.locationNameAlias" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.anotherName')])" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :label="$t('module.basicData.cache.rowMark')" prop="layers">
|
<!-- <el-form-item :label="$t('module.basicData.cache.rowMark')" prop="layers">
|
||||||
<el-input v-model="dataForm.layers" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.rowMark')])" clearable />
|
<el-input v-model="dataForm.layers" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.rowMark')])" clearable />
|
||||||
|
</el-form-item> -->
|
||||||
|
<el-form-item :label="$t('module.basicData.cache.rowMark')" prop="layers">
|
||||||
|
<el-input-number v-model="dataForm.layers" :step="1" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.rowMark')])" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :label="$t('module.basicData.cache.columnMark')" prop="columns">
|
<el-form-item :label="$t('module.basicData.cache.columnMark')" prop="columns">
|
||||||
<el-input v-model="dataForm.columns" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.columnMark')])" clearable />
|
<el-input-number v-model="dataForm.columns" :step="1" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.columnMark')])" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :label="$t('module.basicData.cache.locationType')" prop="locationType">
|
<!-- <el-form-item :label="$t('module.basicData.cache.locationType')" prop="locationType">
|
||||||
<el-input v-model="dataForm.locationType" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.locationType')])" clearable />
|
<el-input v-model="dataForm.locationType" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.locationType')])" clearable />
|
||||||
</el-form-item>
|
</el-form-item> -->
|
||||||
<!-- <el-form-item :label="$t('module.basicData.cache.status')" prop="status">
|
<!-- <el-form-item :label="$t('module.basicData.cache.status')" prop="status">
|
||||||
<el-input v-model="dataForm.status" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.status')])" clearable />
|
<el-input v-model="dataForm.status" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.status')])" clearable />
|
||||||
</el-form-item> -->
|
</el-form-item> -->
|
||||||
<el-form-item :label="$t('module.basicData.cache.status')" prop="status">
|
<!-- <el-form-item :label="$t('module.basicData.cache.status')" prop="status">
|
||||||
<el-select v-model="dataForm.status">
|
<el-select v-model="dataForm.status">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in options"
|
v-for="item in options"
|
||||||
@@ -41,6 +44,9 @@
|
|||||||
:value="item.value"
|
:value="item.value"
|
||||||
/>
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
|
</el-form-item> -->
|
||||||
|
<el-form-item :label="$t('module.basicData.cache.locationNumber')" prop="locationNumber">
|
||||||
|
<el-input v-model="dataForm.locationNumber" :step="1" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.locationNumber')])" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<span slot="footer" class="dialog-footer">
|
<span slot="footer" class="dialog-footer">
|
||||||
@@ -71,10 +77,9 @@ export default {
|
|||||||
code: '',
|
code: '',
|
||||||
locationNameAlias: '',
|
locationNameAlias: '',
|
||||||
rowNum: '',
|
rowNum: '',
|
||||||
columns: 0,
|
|
||||||
layers: 0,
|
|
||||||
status: null,
|
status: null,
|
||||||
locationType: ''
|
locationType: '',
|
||||||
|
locationNumber: 0
|
||||||
},
|
},
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
@@ -96,17 +101,16 @@ export default {
|
|||||||
],
|
],
|
||||||
code: [
|
code: [
|
||||||
{ required: true, message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.cache.LocationCode')]), trigger: 'blur' }
|
{ required: true, message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.cache.LocationCode')]), trigger: 'blur' }
|
||||||
|
],
|
||||||
|
layers: [
|
||||||
|
{ required: true, pattern: /^[1-9]\d*$/, message: this.$t('module.basicData.cache.warning'), trigger: 'blur' }
|
||||||
|
],
|
||||||
|
columns: [
|
||||||
|
{ required: true, pattern: /^[1-9]\d*$/, message: this.$t('module.basicData.cache.warning'), trigger: 'blur' }
|
||||||
|
],
|
||||||
|
locationNumber: [
|
||||||
|
{ required: true, message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.cache.locationNumber')]), trigger: 'blur' }
|
||||||
]
|
]
|
||||||
// layers: [{
|
|
||||||
// type: 'number',
|
|
||||||
// message: this.$t('module.basicData.cache.warning'),
|
|
||||||
// trigger: "blur"
|
|
||||||
// }],
|
|
||||||
// columns: [{
|
|
||||||
// type: 'number',
|
|
||||||
// message: this.$t('module.basicData.cache.warning'),
|
|
||||||
// trigger: "blur"
|
|
||||||
// }]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -119,7 +123,7 @@ export default {
|
|||||||
if (this.dataForm.id) {
|
if (this.dataForm.id) {
|
||||||
locationDetail(this.dataForm.id).then(res => {
|
locationDetail(this.dataForm.id).then(res => {
|
||||||
this.dataForm = res.data
|
this.dataForm = res.data
|
||||||
console.log(this.dataForm)
|
// console.log(this.dataForm)
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
locationCode().then(res => {
|
locationCode().then(res => {
|
||||||
@@ -141,7 +145,8 @@ export default {
|
|||||||
'shelfId': this.shelfId,
|
'shelfId': this.shelfId,
|
||||||
'id': this.dataForm.id,
|
'id': this.dataForm.id,
|
||||||
'status': this.dataForm.status,
|
'status': this.dataForm.status,
|
||||||
'locationType': this.dataForm.locationType
|
'locationType': this.dataForm.locationType,
|
||||||
|
'locationNumber': this.dataForm.locationNumber
|
||||||
}
|
}
|
||||||
if (this.dataForm.id) {
|
if (this.dataForm.id) {
|
||||||
locationUpdate(data).then(res => {
|
locationUpdate(data).then(res => {
|
||||||
@@ -173,6 +178,28 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
// isInt(value){
|
||||||
|
// for(var i = 0; i < value.length; i++) {
|
||||||
|
// if(charAt[i] == '.'){
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// isInt(value) {
|
||||||
|
// let zero = /^0+\d*$/ // 过滤以0开头的数据(不含小数点)
|
||||||
|
// let dublue = /^0{2,}\.\d+$/ // 过滤小数点前有两个以上0的数字
|
||||||
|
// let point = /^\d+\.?\d+$/ // 以数字开头,可以允许出现一次或0次小数点,以数字结尾(这里的数字必须有两个)
|
||||||
|
// let reg = /^[1-9]{1}$/ // 匹配只有一个数字的情况
|
||||||
|
// if (!value) {
|
||||||
|
// return false
|
||||||
|
// }
|
||||||
|
// if (zero.test(value) || dublue.test(value)) { // 首先过滤掉错误的数据
|
||||||
|
// return false
|
||||||
|
// } else if (point.test(value) || reg.test(value)) { // 匹配数据,如果输入的数字只有一位数时用reg匹配
|
||||||
|
// return true
|
||||||
|
// } else {
|
||||||
|
// return false
|
||||||
|
// }
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Date: 2021-01-07 20:09:37
|
* @Date: 2021-01-07 20:09:37
|
||||||
* @LastEditors: fzq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2022-03-10 20:20:44
|
* @LastEditTime: 2022-03-15 09:48:09
|
||||||
* @FilePath: \basic-admin\src\components\BaseTable\subcomponents\CheckDetail.vue
|
* @FilePath: \basic-admin\src\components\BaseTable\subcomponents\CheckDetail.vue
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
@@ -26,7 +26,7 @@ export default {
|
|||||||
query: {
|
query: {
|
||||||
id: this.injectData.id,
|
id: this.injectData.id,
|
||||||
code: this.injectData.code,
|
code: this.injectData.code,
|
||||||
columnNum: this.injectData.columnNum,
|
total: this.injectData.total,
|
||||||
shelfName: this.injectData.shelfName
|
shelfName: this.injectData.shelfName
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 16:37:56
|
* @Date: 2020-12-29 16:37:56
|
||||||
* @LastEditors: fzq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2022-03-09 16:53:31
|
* @LastEditTime: 2022-03-23 11:04:20
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -30,6 +30,9 @@
|
|||||||
/>
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item :label="$t('module.basicData.visual.storageBoxFid')" prop="storageBoxFid">
|
||||||
|
<el-input v-model="dataForm.storageBoxFid" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.visual.storageBoxFid')])" clearable />
|
||||||
|
</el-form-item>
|
||||||
<el-form-item :label="$t('module.basicData.visual.Remarks')" prop="note">
|
<el-form-item :label="$t('module.basicData.visual.Remarks')" prop="note">
|
||||||
<el-input v-model="dataForm.note" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.visual.Remarks')])" clearable />
|
<el-input v-model="dataForm.note" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.visual.Remarks')])" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -54,20 +57,21 @@ export default {
|
|||||||
code: '',
|
code: '',
|
||||||
status: '',
|
status: '',
|
||||||
enName: '',
|
enName: '',
|
||||||
note: ''
|
note: '',
|
||||||
|
storageBoxFid: ''
|
||||||
},
|
},
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
value: 0,
|
value: 0,
|
||||||
label: '正常'
|
label: this.$t('module.basicData.storageBox.normal')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: 1,
|
value: 1,
|
||||||
label: '维修中'
|
label: this.$t('module.basicData.storageBox.repairing')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: 2,
|
value: 2,
|
||||||
label: '报废'
|
label: this.$t('module.basicData.storageBox.scrapped')
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
dataRule: {
|
dataRule: {
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 15:41:11
|
* @Date: 2020-12-29 15:41:11
|
||||||
* @LastEditors: fzq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2022-03-10 10:55:34
|
* @LastEditTime: 2022-03-23 11:06:20
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -101,6 +101,11 @@ const tableProps = [
|
|||||||
filter: basicData('storage'),
|
filter: basicData('storage'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
prop: 'storageBoxFid',
|
||||||
|
label: i18n.t('module.basicData.visual.storageBoxFid'),
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
prop: 'note',
|
prop: 'note',
|
||||||
label: i18n.t('module.basicData.storageBox.remark'),
|
label: i18n.t('module.basicData.storageBox.remark'),
|
||||||
@@ -173,6 +178,7 @@ export default {
|
|||||||
storageBoxList(this.listQuery).then(response => {
|
storageBoxList(this.listQuery).then(response => {
|
||||||
if (response.data.records) {
|
if (response.data.records) {
|
||||||
this.list = response.data.records
|
this.list = response.data.records
|
||||||
|
console.log(this.list)
|
||||||
} else {
|
} else {
|
||||||
this.list.splice(0, this.list.length)
|
this.list.splice(0, this.list.length)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -57,8 +57,8 @@
|
|||||||
<!-- <el-form-item :label="$t('module.basicData.equipment.EquipmentType')" prop="equipmentType">
|
<!-- <el-form-item :label="$t('module.basicData.equipment.EquipmentType')" prop="equipmentType">
|
||||||
<el-input v-model="dataForm.equipmentType" :disabled="isdetail" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.equipment.EquipmentType')])" clearable :style="{width: '100%'}" />
|
<el-input v-model="dataForm.equipmentType" :disabled="isdetail" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.equipment.EquipmentType')])" clearable :style="{width: '100%'}" />
|
||||||
</el-form-item> -->
|
</el-form-item> -->
|
||||||
<el-form-item :label="$t('module.basicData.equipment.EquipmentType')" prop="EquipmentType">
|
<el-form-item :label="$t('module.basicData.equipment.EquipmentType')" prop="equipmentType">
|
||||||
<el-select v-model="dataForm.equipmentType" :placeholder="dataForm.equipmentType">
|
<el-select v-model="dataForm.equipmentType" :placeholder="this.$t('module.basicData.cache.logisticsEquipment')" default>
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in options"
|
v-for="item in options"
|
||||||
:key="item.value"
|
:key="item.value"
|
||||||
@@ -399,7 +399,7 @@ export default {
|
|||||||
code: '',
|
code: '',
|
||||||
enName: '',
|
enName: '',
|
||||||
abbr: '',
|
abbr: '',
|
||||||
equipmentType: '',
|
equipmentType: '1',
|
||||||
spec: '',
|
spec: '',
|
||||||
createTime: '',
|
createTime: '',
|
||||||
enterTime: '',
|
enterTime: '',
|
||||||
@@ -442,6 +442,11 @@ export default {
|
|||||||
required: true,
|
required: true,
|
||||||
message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.equipment.EquipmentCode')]),
|
message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.equipment.EquipmentCode')]),
|
||||||
trigger: 'blur'
|
trigger: 'blur'
|
||||||
|
}],
|
||||||
|
equipmentType: [{
|
||||||
|
required: true,
|
||||||
|
message: this.$i18nForm(['placeholder.select', this.$t('module.basicData.equipment.EquipmentType')]),
|
||||||
|
trigger: 'blur'
|
||||||
}]
|
}]
|
||||||
// maintenanceCycle: [{
|
// maintenanceCycle: [{
|
||||||
// required: true,
|
// required: true,
|
||||||
@@ -581,6 +586,7 @@ export default {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
|
console.log(data)
|
||||||
equipmentInfoAdd(data).then(res => {
|
equipmentInfoAdd(data).then(res => {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: this.$t('module.basicData.visual.success'),
|
message: this.$t('module.basicData.visual.success'),
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 16:37:56
|
* @Date: 2020-12-29 16:37:56
|
||||||
* @LastEditors: zwq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2022-03-04 10:06:01
|
* @LastEditTime: 2022-03-15 18:33:01
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -169,10 +169,10 @@ export default {
|
|||||||
}]
|
}]
|
||||||
},
|
},
|
||||||
sexOptions: [{
|
sexOptions: [{
|
||||||
'label': '男',
|
'label': this.$t('module.basicData.cache.man'),
|
||||||
'value': 1
|
'value': 1
|
||||||
}, {
|
}, {
|
||||||
'label': '女',
|
'label': this.$t('module.basicData.cache.woman'),
|
||||||
'value': 0
|
'value': 0
|
||||||
}],
|
}],
|
||||||
onDutyOptions: [{
|
onDutyOptions: [{
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 15:41:11
|
* @Date: 2020-12-29 15:41:11
|
||||||
* @LastEditors: fzq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2022-03-10 13:43:01
|
* @LastEditTime: 2022-03-19 10:20:40
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 15:41:11
|
* @Date: 2020-12-29 15:41:11
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-04 10:56:41
|
* @LastEditTime: 2022-03-22 10:36:05
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -12,7 +12,6 @@
|
|||||||
:model="formData"
|
:model="formData"
|
||||||
:inline="true"
|
:inline="true"
|
||||||
size="medium"
|
size="medium"
|
||||||
label-width="100px"
|
|
||||||
>
|
>
|
||||||
<el-form-item :label="$t('module.basicData.Warehouse.TaskType')" prop="taskType">
|
<el-form-item :label="$t('module.basicData.Warehouse.TaskType')" prop="taskType">
|
||||||
<el-select v-model="formData.taskType" filterable :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.Warehouse.TaskType')])" clearable>
|
<el-select v-model="formData.taskType" filterable :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.Warehouse.TaskType')])" clearable>
|
||||||
@@ -47,6 +46,7 @@
|
|||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" @click="getList()"> {{ 'btn.search' | i18nFilter }} </el-button>
|
<el-button type="primary" @click="getList()"> {{ 'btn.search' | i18nFilter }} </el-button>
|
||||||
<el-button type="primary" @click="manualTask()"> {{ $t('module.basicData.Warehouse.PerformTaskManual') | i18nFilter }} </el-button>
|
<el-button type="primary" @click="manualTask()"> {{ $t('module.basicData.Warehouse.PerformTaskManual') | i18nFilter }} </el-button>
|
||||||
|
<el-button type="primary" @click="publishTask()"> {{ $t('module.basicData.Warehouse.publishTask') | i18nFilter }} </el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<base-table
|
<base-table
|
||||||
@@ -72,6 +72,7 @@
|
|||||||
/>
|
/>
|
||||||
<current-task-info v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getList" />
|
<current-task-info v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getList" />
|
||||||
<current-task-add v-if="manualTaskVisible" ref="manualTaskRef" @refreshDataList="getList" />
|
<current-task-add v-if="manualTaskVisible" ref="manualTaskRef" @refreshDataList="getList" />
|
||||||
|
<publish-task v-if="publishTaskVisible" ref="publishTask" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -79,11 +80,12 @@
|
|||||||
import { CurrentTaskList } from '@/api/basicData/Warehouse/HistoricalTask'
|
import { CurrentTaskList } from '@/api/basicData/Warehouse/HistoricalTask'
|
||||||
import CurrentTaskInfo from './components/CurrentTaskInfo.vue'
|
import CurrentTaskInfo from './components/CurrentTaskInfo.vue'
|
||||||
import CurrentTaskAdd from './components/CurrentTask-add.vue'
|
import CurrentTaskAdd from './components/CurrentTask-add.vue'
|
||||||
|
import PublishTask from './components/PublishTask.vue'
|
||||||
import i18n from '@/lang'
|
import i18n from '@/lang'
|
||||||
import BaseTable from '@/components/BaseTable'
|
import BaseTable from '@/components/BaseTable'
|
||||||
import Pagination from '@/components/Pagination' // Secondary package based on el-pagination
|
import Pagination from '@/components/Pagination' // Secondary package based on el-pagination
|
||||||
import MethodBtn from '@/components/BaseTable/subcomponents/MethodBtn'
|
import MethodBtn from '@/components/BaseTable/subcomponents/MethodBtn'
|
||||||
// import { timeFormatter } from '@/filters'
|
import { timeFormatter } from '@/filters'
|
||||||
/**
|
/**
|
||||||
* 表格表头配置项 TypeScript接口注释
|
* 表格表头配置项 TypeScript接口注释
|
||||||
* tableConfig<ConfigItem> = []
|
* tableConfig<ConfigItem> = []
|
||||||
@@ -115,6 +117,7 @@ const tableProps = [
|
|||||||
{
|
{
|
||||||
prop: 'createTime',
|
prop: 'createTime',
|
||||||
label: i18n.t('module.basicData.Warehouse.ExecutionTime'),
|
label: i18n.t('module.basicData.Warehouse.ExecutionTime'),
|
||||||
|
filter: timeFormatter,
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -171,12 +174,13 @@ const tableProps = [
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'ScrapInfo',
|
name: 'ScrapInfo',
|
||||||
components: { Pagination, BaseTable, MethodBtn, CurrentTaskInfo, CurrentTaskAdd },
|
components: { Pagination, BaseTable, MethodBtn, CurrentTaskInfo, CurrentTaskAdd, PublishTask },
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
trueWidth: 100,
|
trueWidth: 100,
|
||||||
addOrUpdateVisible: false,
|
addOrUpdateVisible: false,
|
||||||
manualTaskVisible: false,
|
manualTaskVisible: false,
|
||||||
|
publishTaskVisible: false,
|
||||||
tableProps,
|
tableProps,
|
||||||
tableBtn,
|
tableBtn,
|
||||||
list: [],
|
list: [],
|
||||||
@@ -190,20 +194,20 @@ export default {
|
|||||||
size: 10
|
size: 10
|
||||||
},
|
},
|
||||||
taskTypeList: [{
|
taskTypeList: [{
|
||||||
'label': '出库',
|
'label': i18n.t('module.basicData.Warehouse.ExWarehouse'),
|
||||||
'value': 0
|
'value': 0
|
||||||
}, {
|
}, {
|
||||||
'label': '入库',
|
'label': i18n.t('module.basicData.Warehouse.InWarehouse'),
|
||||||
'value': 1
|
'value': 1
|
||||||
}, {
|
}, {
|
||||||
'label': '流转',
|
'label': i18n.t('module.basicData.Warehouse.Circulation'),
|
||||||
'value': 2
|
'value': 2
|
||||||
}],
|
}],
|
||||||
TaskStatusList: [{
|
TaskStatusList: [{
|
||||||
'label': '初始化',
|
'label': i18n.t('module.basicData.Warehouse.Initialization'),
|
||||||
'value': 0
|
'value': 0
|
||||||
}, {
|
}, {
|
||||||
'label': '损坏',
|
'label': i18n.t('module.basicData.Warehouse.Damage'),
|
||||||
'value': 1
|
'value': 1
|
||||||
}],
|
}],
|
||||||
VehicleNameList: [{
|
VehicleNameList: [{
|
||||||
@@ -248,6 +252,13 @@ export default {
|
|||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.manualTaskRef.init()
|
this.$refs.manualTaskRef.init()
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
// 发布任务
|
||||||
|
publishTask() {
|
||||||
|
this.publishTaskVisible = true
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.publishTask.init()
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 15:41:11
|
* @Date: 2020-12-29 15:41:11
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-01-13 15:49:01
|
* @LastEditTime: 2022-03-16 09:46:13
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -12,7 +12,6 @@
|
|||||||
:model="formData"
|
:model="formData"
|
||||||
:inline="true"
|
:inline="true"
|
||||||
size="medium"
|
size="medium"
|
||||||
label-width="100px"
|
|
||||||
>
|
>
|
||||||
<el-form-item :label="$t('module.basicData.Warehouse.TaskType')" prop="taskType">
|
<el-form-item :label="$t('module.basicData.Warehouse.TaskType')" prop="taskType">
|
||||||
<el-select v-model="formData.taskType" filterable :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.Warehouse.TaskType')])" clearable>
|
<el-select v-model="formData.taskType" filterable :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.Warehouse.TaskType')])" clearable>
|
||||||
@@ -44,7 +43,7 @@
|
|||||||
/>
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :label="$t('module.basicData.Warehouse.TimeSlot')" prop="time">
|
<!-- <el-form-item :label="$t('module.basicData.Warehouse.TimeSlot')" prop="time">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="formData.timeSlot"
|
v-model="formData.timeSlot"
|
||||||
type="daterange"
|
type="daterange"
|
||||||
@@ -55,7 +54,7 @@
|
|||||||
:range-separator="$t('module.orderManage.order.To')"
|
:range-separator="$t('module.orderManage.order.To')"
|
||||||
clearable
|
clearable
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item> -->
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" @click="getList()"> {{ 'btn.search' | i18nFilter }} </el-button>
|
<el-button type="primary" @click="getList()"> {{ 'btn.search' | i18nFilter }} </el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -92,7 +91,7 @@ import i18n from '@/lang'
|
|||||||
import BaseTable from '@/components/BaseTable'
|
import BaseTable from '@/components/BaseTable'
|
||||||
import Pagination from '@/components/Pagination' // Secondary package based on el-pagination
|
import Pagination from '@/components/Pagination' // Secondary package based on el-pagination
|
||||||
import MethodBtn from '@/components/BaseTable/subcomponents/MethodBtn'
|
import MethodBtn from '@/components/BaseTable/subcomponents/MethodBtn'
|
||||||
// import { timeFormatter } from '@/filters'
|
import { timeFormatter } from '@/filters'
|
||||||
/**
|
/**
|
||||||
* 表格表头配置项 TypeScript接口注释
|
* 表格表头配置项 TypeScript接口注释
|
||||||
* tableConfig<ConfigItem> = []
|
* tableConfig<ConfigItem> = []
|
||||||
@@ -124,31 +123,27 @@ const tableProps = [
|
|||||||
{
|
{
|
||||||
prop: 'createTime',
|
prop: 'createTime',
|
||||||
label: i18n.t('module.basicData.Warehouse.ExecutionTime'),
|
label: i18n.t('module.basicData.Warehouse.ExecutionTime'),
|
||||||
|
filter: timeFormatter,
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'status',
|
prop: 'taskSource',
|
||||||
label: i18n.t('module.basicData.Warehouse.TaskStatus'),
|
label: i18n.t('module.basicData.Warehouse.TaskSource'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
// {
|
|
||||||
// prop: 'taskType',
|
|
||||||
// label: i18n.t('module.basicData.Warehouse.TaskType'),
|
|
||||||
// align: 'center'
|
|
||||||
// },
|
|
||||||
{
|
{
|
||||||
prop: 'name',
|
prop: 'taskType',
|
||||||
label: i18n.t('module.basicData.Warehouse.VehicleName'),
|
label: i18n.t('module.basicData.Warehouse.TaskType'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
// {
|
|
||||||
// prop: 'substrateNo',
|
|
||||||
// label: i18n.t('module.basicData.Warehouse.BoxStatus'),
|
|
||||||
// align: 'center'
|
|
||||||
// },
|
|
||||||
{
|
{
|
||||||
prop: 'wcode',
|
prop: 'fullCode',
|
||||||
label: i18n.t('module.basicData.Warehouse.BoxNumber'),
|
label: i18n.t('module.basicData.Warehouse.TaskBoxNumber'),
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'emptyCode',
|
||||||
|
label: i18n.t('module.basicData.Warehouse.FullBoxNumber'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -162,19 +157,24 @@ const tableProps = [
|
|||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'updateTime',
|
prop: 'anotherCurrLocation',
|
||||||
label: i18n.t('module.basicData.Warehouse.CompletionTime'),
|
|
||||||
align: 'center'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'currLocation',
|
|
||||||
label: i18n.t('module.basicData.Warehouse.StartLocation'),
|
label: i18n.t('module.basicData.Warehouse.StartLocation'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'targetLocation',
|
prop: 'anotherTargetLocation',
|
||||||
label: i18n.t('module.basicData.Warehouse.TargetLocation'),
|
label: i18n.t('module.basicData.Warehouse.TargetLocation'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'currLocation',
|
||||||
|
label: i18n.t('module.basicData.Warehouse.FullBoxStartLocation'),
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'name',
|
||||||
|
label: i18n.t('module.basicData.Warehouse.VehicleName'),
|
||||||
|
align: 'center'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -194,9 +194,9 @@ export default {
|
|||||||
taskType: '',
|
taskType: '',
|
||||||
status: '',
|
status: '',
|
||||||
equipmentId: '',
|
equipmentId: '',
|
||||||
timeSlot: [],
|
// timeSlot: [],
|
||||||
endTime: '',
|
// endTime: '',
|
||||||
startTime: '',
|
// startTime: '',
|
||||||
current: 1,
|
current: 1,
|
||||||
size: 10
|
size: 10
|
||||||
},
|
},
|
||||||
@@ -231,13 +231,13 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getList() {
|
getList() {
|
||||||
if (this.formData.timeSlot) {
|
// if (this.formData.timeSlot) {
|
||||||
this.formData.startTime = this.formData.timeSlot[0]
|
// this.formData.startTime = this.formData.timeSlot[0]
|
||||||
this.formData.endTime = this.formData.timeSlot[1]
|
// this.formData.endTime = this.formData.timeSlot[1]
|
||||||
} else {
|
// } else {
|
||||||
this.formData.startTime = ''
|
// this.formData.startTime = ''
|
||||||
this.formData.endTime = ''
|
// this.formData.endTime = ''
|
||||||
}
|
// }
|
||||||
this.listLoading = true
|
this.listLoading = true
|
||||||
HistoricalTaskList(this.formData).then(response => {
|
HistoricalTaskList(this.formData).then(response => {
|
||||||
if (response.data.records) {
|
if (response.data.records) {
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 15:41:11
|
* @Date: 2020-12-29 15:41:11
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-04 15:45:23
|
* @LastEditTime: 2022-03-16 09:46:19
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -13,11 +13,10 @@
|
|||||||
:model="listQuery"
|
:model="listQuery"
|
||||||
:inline="true"
|
:inline="true"
|
||||||
size="medium"
|
size="medium"
|
||||||
label-width="100px"
|
|
||||||
>
|
>
|
||||||
<el-form-item :label="$t('module.art.processList.processName')" prop="processId">
|
<el-form-item :label="$t('module.art.processList.processName')" prop="key">
|
||||||
<el-select
|
<el-select
|
||||||
v-model="listQuery.processId"
|
v-model="listQuery.key"
|
||||||
:placeholder="$i18nForm(['placeholder.input', $t('module.art.processList.processName')])"
|
:placeholder="$i18nForm(['placeholder.input', $t('module.art.processList.processName')])"
|
||||||
clearable
|
clearable
|
||||||
filterable
|
filterable
|
||||||
@@ -27,7 +26,7 @@
|
|||||||
v-for="(item, index) in processArr"
|
v-for="(item, index) in processArr"
|
||||||
:key="index"
|
:key="index"
|
||||||
:label="item.name"
|
:label="item.name"
|
||||||
:value="item.id"
|
:value="item.name"
|
||||||
/>
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -64,8 +63,8 @@ import { list } from '@/api/art-manage/process'
|
|||||||
import BaseTable from '@/components/BaseTable'
|
import BaseTable from '@/components/BaseTable'
|
||||||
import Pagination from '@/components/Pagination' // Secondary package based on el-pagination
|
import Pagination from '@/components/Pagination' // Secondary package based on el-pagination
|
||||||
import MethodBtn from '@/components/BaseTable/subcomponents/MethodBtn'
|
import MethodBtn from '@/components/BaseTable/subcomponents/MethodBtn'
|
||||||
import { timeFormatter } from '@/filters'
|
|
||||||
import i18n from '@/lang'
|
import i18n from '@/lang'
|
||||||
|
import { timeFormatter } from '@/filters'
|
||||||
/**
|
/**
|
||||||
* 表格表头配置项 TypeScript接口注释
|
* 表格表头配置项 TypeScript接口注释
|
||||||
* tableConfig<ConfigItem> = []
|
* tableConfig<ConfigItem> = []
|
||||||
@@ -133,7 +132,7 @@ export default {
|
|||||||
listQuery: {
|
listQuery: {
|
||||||
current: 1,
|
current: 1,
|
||||||
size: 10,
|
size: 10,
|
||||||
processId: ''
|
key: ''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -160,29 +159,23 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
getList() {
|
getList() {
|
||||||
// this.listLoading = true
|
this.listLoading = true
|
||||||
// ExecutionInfoList(this.listQuery).then(response => {
|
list(this.listQuery).then(response => {
|
||||||
// if (response.data.records) {
|
if (response.data.records) {
|
||||||
// this.list = response.data.records
|
this.list = response.data.records
|
||||||
// } else {
|
} else {
|
||||||
// this.list.splice(0, this.list.length)
|
this.list.splice(0, this.list.length)
|
||||||
// }
|
|
||||||
// this.total = response.data.total
|
|
||||||
this.list = [
|
|
||||||
{
|
|
||||||
code: 11,
|
|
||||||
name: '11'
|
|
||||||
}
|
}
|
||||||
]
|
this.total = response.data.total
|
||||||
this.listLoading = false
|
this.listLoading = false
|
||||||
// })
|
})
|
||||||
},
|
},
|
||||||
// 新增 / 修改
|
// 新增 / 修改
|
||||||
addNew(id) {
|
addNew(id) {
|
||||||
this.$router.push({
|
this.$router.push({
|
||||||
name: 'ProcessStorageManagementInfo',
|
name: 'ProcessStorageManagementInfo',
|
||||||
query: {
|
query: {
|
||||||
dictTypeId: id
|
id
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,12 +2,12 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 15:41:11
|
* @Date: 2020-12-29 15:41:11
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-01-18 14:30:25
|
* @LastEditTime: 2022-03-16 09:45:26
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<el-form ref="listQuery" :model="listQuery" :inline="true" label-width="120px" @keyup.enter.native="getList()">
|
<el-form ref="listQuery" :model="listQuery" :inline="true" @keyup.enter.native="getList()">
|
||||||
<el-form-item :label="$t('module.basicData.Warehouse.StorageBoxNumber')" prop="code">
|
<el-form-item :label="$t('module.basicData.Warehouse.StorageBoxNumber')" prop="code">
|
||||||
<el-select
|
<el-select
|
||||||
v-model="listQuery.code"
|
v-model="listQuery.code"
|
||||||
@@ -92,7 +92,7 @@ const tableProps = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'StorageBoxInfo',
|
name: 'ScrapInfo',
|
||||||
components: { Pagination, BaseTable },
|
components: { Pagination, BaseTable },
|
||||||
filters: {
|
filters: {
|
||||||
statusFilter(status) {
|
statusFilter(status) {
|
||||||
@@ -123,15 +123,18 @@ export default {
|
|||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.getList()
|
this.getList()
|
||||||
const listQuery1 = {
|
this.init()
|
||||||
current: 1,
|
|
||||||
size: 100
|
|
||||||
}
|
|
||||||
StorageBoxRackCode(listQuery1).then(res => {
|
|
||||||
this.storageBoxList = res.data.records
|
|
||||||
})
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
init() {
|
||||||
|
const listQuery1 = {
|
||||||
|
current: 1,
|
||||||
|
size: 100
|
||||||
|
}
|
||||||
|
StorageBoxRackCode(listQuery1).then(res => {
|
||||||
|
this.storageBoxList = res.data.records
|
||||||
|
})
|
||||||
|
},
|
||||||
getList() {
|
getList() {
|
||||||
this.listLoading = true
|
this.listLoading = true
|
||||||
StorageBoxInfoList(this.listQuery).then(response => {
|
StorageBoxInfoList(this.listQuery).then(response => {
|
||||||
|
|||||||
@@ -2,12 +2,12 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 15:41:11
|
* @Date: 2020-12-29 15:41:11
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-01-17 14:06:53
|
* @LastEditTime: 2022-03-16 09:46:26
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<el-form ref="listQuery" :model="listQuery" :inline="true" label-width="120px" @keyup.enter.native="getList()">
|
<el-form ref="listQuery" :model="listQuery" :inline="true" @keyup.enter.native="getList()">
|
||||||
<el-form-item :label="$t('module.basicData.Warehouse.LocationName')" prop="currLocationId">
|
<el-form-item :label="$t('module.basicData.Warehouse.LocationName')" prop="currLocationId">
|
||||||
<el-select
|
<el-select
|
||||||
v-model="listQuery.currLocationId"
|
v-model="listQuery.currLocationId"
|
||||||
|
|||||||
@@ -2,12 +2,12 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 16:37:56
|
* @Date: 2020-12-29 16:37:56
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-04 11:05:23
|
* @LastEditTime: 2022-03-16 09:49:10
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<el-dialog
|
<el-dialog
|
||||||
:title="'btn.see' | i18nFilter"
|
:title="$t('module.basicData.Warehouse.PerformTaskManual')"
|
||||||
:visible.sync="visible"
|
:visible.sync="visible"
|
||||||
>
|
>
|
||||||
<el-row :gutter="10">
|
<el-row :gutter="10">
|
||||||
@@ -15,34 +15,73 @@
|
|||||||
ref="dataForm"
|
ref="dataForm"
|
||||||
:model="dataForm"
|
:model="dataForm"
|
||||||
size="medium"
|
size="medium"
|
||||||
label-width="110px"
|
label-width="170px"
|
||||||
label-position="left"
|
label-position="left"
|
||||||
>
|
>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item :label="$t('module.basicData.Warehouse.TaskBoxNumber')" prop="taskCode">
|
<el-form-item :label="$t('module.basicData.Warehouse.TaskBoxNumber')" prop="taskCode">
|
||||||
<el-input v-model="dataForm.taskCode" readonly :style="{width: '100%'}" />
|
<el-select
|
||||||
|
v-model="dataForm.taskCode"
|
||||||
|
:placeholder="$i18nForm(['placeholder.input', $t('module.basicData.Warehouse.StorageBoxNumber')])"
|
||||||
|
clearable
|
||||||
|
filterable
|
||||||
|
:style="{width: '100%'}"
|
||||||
|
>
|
||||||
|
<el-option
|
||||||
|
v-for="(item, index) in storageBoxList"
|
||||||
|
:key="index"
|
||||||
|
:label="item.code"
|
||||||
|
:value="item.code"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item :label="$t('module.basicData.Warehouse.FullBoxNumber')" prop="orderName">
|
<el-form-item :label="$t('module.basicData.Warehouse.FullBoxNumber')" prop="orderName">
|
||||||
<el-input v-model="dataForm.orderName" readonly :style="{width: '100%'}" />
|
<el-input v-model="dataForm.orderName" :style="{width: '100%'}" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item :label="$t('module.basicData.Warehouse.ExecutionOperation')" prop="fullCode">
|
<el-form-item :label="$t('module.basicData.Warehouse.ExecutionOperation')" prop="fullCode">
|
||||||
<el-input v-model="dataForm.fullCode" readonly :style="{width: '100%'}" />
|
<el-select
|
||||||
|
v-model="dataForm.fullCode"
|
||||||
|
:placeholder="$i18nForm(['placeholder.input', $t('module.art.processList.processName')])"
|
||||||
|
clearable
|
||||||
|
filterable
|
||||||
|
:style="{width: '100%'}"
|
||||||
|
>
|
||||||
|
<el-option
|
||||||
|
v-for="(item, index) in processArr"
|
||||||
|
:key="index"
|
||||||
|
:label="item.name"
|
||||||
|
:value="item.id"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item :label="$t('module.basicData.Warehouse.TaskStatus')" prop="name">
|
<el-form-item :label="$t('module.basicData.Warehouse.TaskStatus')" prop="TaskStatus">
|
||||||
<el-input v-model="dataForm.name" readonly :style="{width: '100%'}" />
|
<el-select
|
||||||
|
v-model="dataForm.TaskStatus"
|
||||||
|
:placeholder="$i18nForm(['placeholder.input', $t('module.basicData.Warehouse.TaskStatus')])"
|
||||||
|
clearable
|
||||||
|
filterable
|
||||||
|
:style="{width: '100%'}"
|
||||||
|
>
|
||||||
|
<el-option
|
||||||
|
v-for="(item, index) in TaskStatusArr"
|
||||||
|
:key="index"
|
||||||
|
:label="item.dataName"
|
||||||
|
:value="item.dataCode"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item :label="$t('module.basicData.ScrapInfo.remark')" prop="remark">
|
<el-form-item :label="$t('module.basicData.ScrapInfo.remark')" prop="remark">
|
||||||
<el-input v-model="dataForm.remark" readonly :style="{width: '100%'}" />
|
<el-input v-model="dataForm.remark" :style="{width: '100%'}" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
@@ -51,26 +90,35 @@
|
|||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item :label="$t('module.basicData.Warehouse.TaskLocation')" prop="createTime">
|
<el-form-item :label="$t('module.basicData.Warehouse.TaskLocation')" prop="createTime">
|
||||||
<el-input v-model="dataForm.createTime" readonly :style="{width: '100%'}" />
|
<el-input v-model="dataForm.createTime" :style="{width: '100%'}" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item :label="$t('module.basicData.Warehouse.FullBoxStartLocation')" prop="taskType">
|
<el-form-item :label="$t('module.basicData.Warehouse.FullBoxStartLocation')" prop="taskType">
|
||||||
<el-input v-model="dataForm.taskType" readonly :style="{width: '100%'}" />
|
<el-input v-model="dataForm.taskType" :style="{width: '100%'}" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item :label="$t('module.basicData.Warehouse.Priority')" prop="emptyCode">
|
<el-form-item :label="$t('module.basicData.Warehouse.Priority')" prop="emptyCode">
|
||||||
<el-input v-model="dataForm.emptyCode" readonly :style="{width: '100%'}" />
|
<el-input v-model="dataForm.emptyCode" :style="{width: '100%'}" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item :label="$t('module.basicData.Warehouse.NextOperation')" prop="anotherCurrLocation">
|
<el-form-item :label="$t('module.basicData.Warehouse.NextOperation')" prop="anotherCurrLocation">
|
||||||
<el-input
|
<el-select
|
||||||
v-model="dataForm.anotherCurrLocation"
|
v-model="dataForm.anotherCurrLocation"
|
||||||
readonly
|
:placeholder="$i18nForm(['placeholder.input', $t('module.basicData.Warehouse.NextOperation')])"
|
||||||
|
clearable
|
||||||
|
filterable
|
||||||
:style="{width: '100%'}"
|
:style="{width: '100%'}"
|
||||||
/>
|
>
|
||||||
|
<el-option
|
||||||
|
v-for="(item, index) in processArr"
|
||||||
|
:key="index"
|
||||||
|
:label="item.name"
|
||||||
|
:value="item.id"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
@@ -86,17 +134,23 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
// import { CurrentTaskDetail } from '@/api/basicData/Warehouse/HistoricalTask'
|
// import { CurrentTaskDetail } from '@/api/basicData/Warehouse/HistoricalTask'
|
||||||
|
import { list } from '@/api/art-manage/process'
|
||||||
|
import { dataDictionaryDataList } from '@/api/basicData/dataDictionary'
|
||||||
|
import { StorageBoxRackCode } from '@/api/basicData/Warehouse/StorageBoxInfo'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
visible: false,
|
visible: false,
|
||||||
|
processArr: [],
|
||||||
|
TaskStatusArr: [],
|
||||||
|
storageBoxList: [],
|
||||||
dataForm: {
|
dataForm: {
|
||||||
id: '',
|
id: '',
|
||||||
taskCode: undefined,
|
taskCode: undefined,
|
||||||
orderName: undefined,
|
orderName: undefined,
|
||||||
fullCode: undefined,
|
fullCode: undefined,
|
||||||
name: undefined,
|
TaskStatus: undefined,
|
||||||
remark: undefined,
|
remark: undefined,
|
||||||
field119: undefined,
|
field119: undefined,
|
||||||
createTime: undefined,
|
createTime: undefined,
|
||||||
@@ -116,6 +170,32 @@ export default {
|
|||||||
init(id) {
|
init(id) {
|
||||||
this.dataForm.id = id
|
this.dataForm.id = id
|
||||||
this.visible = true
|
this.visible = true
|
||||||
|
const lparams = {
|
||||||
|
current: 1,
|
||||||
|
size: 999
|
||||||
|
}
|
||||||
|
list(lparams).then(response => {
|
||||||
|
if (response.data.records) {
|
||||||
|
this.processArr = response.data.records
|
||||||
|
} else {
|
||||||
|
this.processArr.splice(0, this.list.length)
|
||||||
|
}
|
||||||
|
this.total = response.data.total
|
||||||
|
})
|
||||||
|
StorageBoxRackCode(lparams).then(res => {
|
||||||
|
this.storageBoxList = res.data.records
|
||||||
|
})
|
||||||
|
dataDictionaryDataList({
|
||||||
|
current: 1,
|
||||||
|
size: 999,
|
||||||
|
dictTypeId: '6'
|
||||||
|
}).then(response => {
|
||||||
|
if (response.data.records) {
|
||||||
|
this.TaskStatusArr = response.data.records
|
||||||
|
} else {
|
||||||
|
this.TaskStatusArr.splice(0, this.scrapsArr.length)
|
||||||
|
}
|
||||||
|
})
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs['dataForm'].resetFields()
|
this.$refs['dataForm'].resetFields()
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 16:37:56
|
* @Date: 2020-12-29 16:37:56
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-01-14 15:55:39
|
* @LastEditTime: 2022-03-16 09:50:12
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -15,7 +15,7 @@
|
|||||||
ref="dataForm"
|
ref="dataForm"
|
||||||
:model="dataForm"
|
:model="dataForm"
|
||||||
size="medium"
|
size="medium"
|
||||||
label-width="110px"
|
label-width="160px"
|
||||||
label-position="left"
|
label-position="left"
|
||||||
>
|
>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
|
|||||||
@@ -2,20 +2,21 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 16:37:56
|
* @Date: 2020-12-29 16:37:56
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-01-13 16:22:39
|
* @LastEditTime: 2022-03-16 09:50:58
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<el-dialog
|
<el-dialog
|
||||||
:title="'btn.see' | i18nFilter"
|
:title="'btn.see' | i18nFilter"
|
||||||
:visible.sync="visible"
|
:visible.sync="visible"
|
||||||
|
width="60%"
|
||||||
>
|
>
|
||||||
<el-row :gutter="10">
|
<el-row :gutter="10">
|
||||||
<el-form
|
<el-form
|
||||||
ref="dataForm"
|
ref="dataForm"
|
||||||
:model="dataForm"
|
:model="dataForm"
|
||||||
size="medium"
|
size="medium"
|
||||||
label-width="110px"
|
label-width="170px"
|
||||||
label-position="left"
|
label-position="left"
|
||||||
>
|
>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 15:41:11
|
* @Date: 2020-12-29 15:41:11
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-09 09:57:41
|
* @LastEditTime: 2022-03-17 14:50:20
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -18,21 +18,21 @@
|
|||||||
:table-data="list"
|
:table-data="list"
|
||||||
:is-loading="listLoading"
|
:is-loading="listLoading"
|
||||||
>
|
>
|
||||||
<method-btn
|
<!-- <method-btn
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
:width="trueWidth"
|
:width="trueWidth"
|
||||||
:method-list="tableBtn"
|
:method-list="tableBtn"
|
||||||
@clickBtn="handleClick"
|
@clickBtn="handleClick"
|
||||||
/>
|
/> -->
|
||||||
</base-table>
|
</base-table>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { locationByProcessList } from '@/api/basicData/Warehouse/StorageBoxInfo'
|
||||||
import i18n from '@/lang'
|
import i18n from '@/lang'
|
||||||
import BaseTable from '@/components/BaseTable'
|
import BaseTable from '@/components/BaseTable'
|
||||||
import MethodBtn from '@/components/BaseTable/subcomponents/MethodBtn'
|
// import MethodBtn from '@/components/BaseTable/subcomponents/MethodBtn'
|
||||||
import { timeFormatter } from '@/filters'
|
|
||||||
/**
|
/**
|
||||||
* 表格表头配置项 TypeScript接口注释
|
* 表格表头配置项 TypeScript接口注释
|
||||||
* tableConfig<ConfigItem> = []
|
* tableConfig<ConfigItem> = []
|
||||||
@@ -49,34 +49,28 @@ import { timeFormatter } from '@/filters'
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const tableBtn = [
|
// const tableBtn = [
|
||||||
{
|
// {
|
||||||
type: 'delete',
|
// type: 'delete',
|
||||||
btnName: 'btn.delete'
|
// btnName: 'btn.delete'
|
||||||
}
|
// }
|
||||||
]
|
// ]
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'code',
|
prop: 'code',
|
||||||
label: i18n.t('module.basicData.cache.LocationCode'),
|
label: i18n.t('module.basicData.cache.LocationCode'),
|
||||||
filter: timeFormatter,
|
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'name',
|
prop: 'locationName',
|
||||||
label: i18n.t('module.basicData.cache.LocationName'),
|
label: i18n.t('module.basicData.cache.LocationName'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'shelfName',
|
|
||||||
label: i18n.t('module.basicData.cache.locationType'),
|
|
||||||
align: 'center'
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Shelf',
|
name: 'Shelf',
|
||||||
components: { BaseTable, MethodBtn },
|
components: { BaseTable },
|
||||||
filters: {
|
filters: {
|
||||||
statusFilter(status) {
|
statusFilter(status) {
|
||||||
const statusMap = {
|
const statusMap = {
|
||||||
@@ -89,7 +83,7 @@ export default {
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
tableBtn,
|
// tableBtn,
|
||||||
trueWidth: 200,
|
trueWidth: 200,
|
||||||
tableProps,
|
tableProps,
|
||||||
list: [],
|
list: [],
|
||||||
@@ -97,12 +91,12 @@ export default {
|
|||||||
listQuery: {
|
listQuery: {
|
||||||
current: 1,
|
current: 1,
|
||||||
size: 990,
|
size: 990,
|
||||||
areaId: ''
|
workSequenId: ''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.listQuery.areaId = this.$route.query.id
|
this.listQuery.workSequenId = this.$route.query.id
|
||||||
this.getList()
|
this.getList()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@@ -126,23 +120,23 @@ export default {
|
|||||||
}).catch(() => {})
|
}).catch(() => {})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
getList(key) {
|
getList() {
|
||||||
this.listLoading = true
|
this.listLoading = true
|
||||||
// shelfList(this.listQuery).then(response => {
|
locationByProcessList(this.listQuery).then(response => {
|
||||||
// if (response.data.records) {
|
if (response.data.records) {
|
||||||
// this.list = response.data.records
|
this.list = response.data.records
|
||||||
// } else {
|
} else {
|
||||||
// this.list.splice(0, this.list.length)
|
this.list.splice(0, this.list.length)
|
||||||
// }
|
}
|
||||||
this.listLoading = false
|
this.listLoading = false
|
||||||
// })
|
})
|
||||||
},
|
},
|
||||||
// 新增 / 修改
|
// 新增 / 修改
|
||||||
addNew(id) {
|
addNew() {
|
||||||
this.$router.push({
|
this.$router.push({
|
||||||
name: 'ProcessStorageLink',
|
name: 'ProcessStorageLink',
|
||||||
query: {
|
query: {
|
||||||
dictTypeId: id
|
id: this.listQuery.workSequenId
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|||||||
75
src/views/basicData/Warehouse/components/PublishTask.vue
Normal file
75
src/views/basicData/Warehouse/components/PublishTask.vue
Normal file
@@ -0,0 +1,75 @@
|
|||||||
|
<!--
|
||||||
|
* @Author: gtz
|
||||||
|
* @Date: 2022-03-12 14:17:55
|
||||||
|
* @LastEditors: zwq
|
||||||
|
* @LastEditTime: 2022-03-16 14:18:33
|
||||||
|
* @Description: file content
|
||||||
|
* @FilePath: \mt-ck-wms-ui\src\views\basicData\Warehouse\components\PublishTask.vue
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<el-dialog
|
||||||
|
:title="'btn.see' | i18nFilter"
|
||||||
|
:visible.sync="visible"
|
||||||
|
>
|
||||||
|
<el-row :gutter="10">
|
||||||
|
<el-form
|
||||||
|
ref="dataForm"
|
||||||
|
:model="dataForm"
|
||||||
|
:rules="dataRule"
|
||||||
|
size="medium"
|
||||||
|
label-width="110px"
|
||||||
|
label-position="left"
|
||||||
|
>
|
||||||
|
<el-form-item :label="$t('module.basicData.Warehouse.startPosition')" prop="startPosition">
|
||||||
|
<el-input v-model="dataForm.startPosition" :style="{width: '100%'}" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item :label="$t('module.basicData.Warehouse.endPosition')" prop="endPosition">
|
||||||
|
<el-input v-model="dataForm.endPosition" :style="{width: '100%'}" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item :label="$t('module.basicData.Warehouse.taskType')" prop="taskType">
|
||||||
|
<el-input v-model="dataForm.taskType" :style="{width: '100%'}" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
</el-row>
|
||||||
|
<span slot="footer" class="dialog-footer">
|
||||||
|
<el-button @click="visible = false">{{ 'btn.cancel' | i18nFilter }}</el-button>
|
||||||
|
<el-button type="primary" @click="visible = false">{{ 'btn.submit' | i18nFilter }} </el-button>
|
||||||
|
</span>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
// import { CurrentTaskDetail } from '@/api/basicData/Warehouse/HistoricalTask'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
visible: false,
|
||||||
|
dataForm: {
|
||||||
|
startPosition: null,
|
||||||
|
endPosition: null,
|
||||||
|
taskType: null
|
||||||
|
},
|
||||||
|
dataRule: {
|
||||||
|
startPosition: [
|
||||||
|
{ required: true, message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.Warehouse.startPosition')]), trigger: 'blur' }
|
||||||
|
],
|
||||||
|
endPosition: [
|
||||||
|
{ required: true, message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.Warehouse.endPosition')]), trigger: 'blur' }
|
||||||
|
],
|
||||||
|
taskType: [
|
||||||
|
{ required: true, message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.Warehouse.taskType')]), trigger: 'blur' }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
init() {
|
||||||
|
this.visible = true
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs['dataForm'].resetFields()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 16:37:56
|
* @Date: 2020-12-29 16:37:56
|
||||||
* @LastEditors: fzq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-10 18:44:36
|
* @LastEditTime: 2022-03-16 09:47:25
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -10,7 +10,7 @@
|
|||||||
:title="!dataForm.id ? 'btn.add' : 'btn.edit' | i18nFilter"
|
:title="!dataForm.id ? 'btn.add' : 'btn.edit' | i18nFilter"
|
||||||
:visible.sync="visible"
|
:visible.sync="visible"
|
||||||
>
|
>
|
||||||
<el-form ref="dataForm" :model="dataForm" :rules="dataRule" label-width="120px" @keyup.enter.native="dataFormSubmit()">
|
<el-form ref="dataForm" :model="dataForm" :rules="dataRule" @keyup.enter.native="dataFormSubmit()">
|
||||||
<el-form-item :label="$t('module.basicData.Warehouse.LocationName')" prop="currLocationId">
|
<el-form-item :label="$t('module.basicData.Warehouse.LocationName')" prop="currLocationId">
|
||||||
<el-select
|
<el-select
|
||||||
v-model="dataForm.currLocationId"
|
v-model="dataForm.currLocationId"
|
||||||
|
|||||||
@@ -1,17 +1,19 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: gtz
|
* @Author: gtz
|
||||||
* @Date: 2022-03-03 09:16:10
|
* @Date: 2022-03-03 09:16:10
|
||||||
* @LastEditors: zwq
|
* @LastEditors: gtz
|
||||||
* @LastEditTime: 2022-03-09 15:17:46
|
* @LastEditTime: 2022-03-18 16:33:59
|
||||||
* @Description: file content
|
* @Description: file content
|
||||||
* @FilePath: \mt-ck-wms-ui\src\views\dashboard\index.vue
|
* @FilePath: \mt-ck-wms-ui\src\views\basicData\Warehouse\components\processStorageLink.vue
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<div class="dashboard-container">
|
<div class="dashboard-container">
|
||||||
<el-card class="dashboard-main">
|
<el-card class="dashboard-main">
|
||||||
<el-row class="dashboard-title">
|
<el-row class="dashboard-title">
|
||||||
<div class="dashboard-header-line" />
|
<div class="dashboard-header-line" />
|
||||||
<div class="dashboard-header-title">WMS库存信息</div>
|
<div class="dashboard-header-title">
|
||||||
|
{{ $t("module.dashboard.title") }}
|
||||||
|
</div>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row class="dashboard-legend">
|
<el-row class="dashboard-legend">
|
||||||
<div
|
<div
|
||||||
@@ -38,25 +40,33 @@
|
|||||||
<el-button type="primary" size="mini" @click="submitLinkList">{{
|
<el-button type="primary" size="mini" @click="submitLinkList">{{
|
||||||
"btn.submit" | i18nFilter
|
"btn.submit" | i18nFilter
|
||||||
}}</el-button>
|
}}</el-button>
|
||||||
|
<el-button type="warning" size="mini" @click="init()">{{
|
||||||
|
"btn.reset" | i18nFilter
|
||||||
|
}}</el-button>
|
||||||
|
<el-button type="success" size="mini" @click="goback()">{{
|
||||||
|
"btn.back" | i18nFilter
|
||||||
|
}}</el-button>
|
||||||
</div>
|
</div>
|
||||||
<div class="dashboard-legend-search">
|
<div class="dashboard-legend-search">
|
||||||
<el-select
|
<el-select
|
||||||
v-model="current"
|
v-model="current"
|
||||||
size="mini"
|
size="mini"
|
||||||
placeholder="请选择库存范围"
|
|
||||||
@change="handleChange"
|
@change="handleChange"
|
||||||
>
|
><el-option
|
||||||
<el-option
|
v-for="item in totalPage"
|
||||||
v-for="item in totalPage"
|
:key="'select' + item"
|
||||||
:key="'select' + item"
|
:label="
|
||||||
:label="'第' + item + '页'"
|
$t('module.dashboard.pageHeader') +
|
||||||
:value="item"
|
item +
|
||||||
/>
|
$t('module.dashboard.pageFooter')
|
||||||
|
"
|
||||||
|
:value="item"
|
||||||
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
</div>
|
</div>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row
|
<el-row
|
||||||
v-if="current * 80 < shelfList[0].rowList[0].portList.length"
|
v-if="current * 80 < shelfVoList[0].rowVoList[0].portVoList.length"
|
||||||
class="dashboard-layout"
|
class="dashboard-layout"
|
||||||
:gutter="12"
|
:gutter="12"
|
||||||
>
|
>
|
||||||
@@ -68,14 +78,14 @@
|
|||||||
>
|
>
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col
|
<el-col
|
||||||
v-for="(i, index) in shelfList"
|
v-for="(i, index) in shelfVoList"
|
||||||
:key="item + 'shelf' + i.id"
|
:key="item + 'shelf' + i.id"
|
||||||
:span="12"
|
:span="12"
|
||||||
class="dashboard-layout-shelf"
|
class="dashboard-layout-shelf"
|
||||||
>
|
>
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col
|
<el-col
|
||||||
v-for="z in i.rowList"
|
v-for="z in i.rowVoList"
|
||||||
:key="item + 'shelf' + i + 'row' + z.id"
|
:key="item + 'shelf' + i + 'row' + z.id"
|
||||||
:span="12"
|
:span="12"
|
||||||
class="dashboard-layout-row"
|
class="dashboard-layout-row"
|
||||||
@@ -87,29 +97,35 @@
|
|||||||
:style="{
|
:style="{
|
||||||
background:
|
background:
|
||||||
portAttributeObj[
|
portAttributeObj[
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
].attribute
|
].attribute
|
||||||
],
|
],
|
||||||
cursor:
|
cursor:
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
].attribute === 3
|
].attribute === '3'
|
||||||
? 'not-allowed'
|
? 'not-allowed'
|
||||||
: 'pointer',
|
: 'pointer',
|
||||||
color:
|
color:
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
].attribute === 3
|
].attribute === '3'
|
||||||
? '#A2A8B5'
|
? '#A2A8B5'
|
||||||
: '',
|
: '',
|
||||||
border:
|
border: selectStorageList.some(
|
||||||
selectStorageList.some(StorageItem=>StorageItem.id===z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].id)
|
StorageItem =>
|
||||||
? '1px solid red' : ''
|
StorageItem.locationId ===
|
||||||
|
z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].id
|
||||||
|
)
|
||||||
|
? '2px dashed red'
|
||||||
|
: ''
|
||||||
}"
|
}"
|
||||||
@click="
|
@click="
|
||||||
setType(
|
setType(
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
@@ -117,30 +133,52 @@
|
|||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
v-if="
|
v-if="
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
].attribute !== 3
|
].attribute !== '3'
|
||||||
"
|
"
|
||||||
class="dashboard-layout-item-cricle"
|
class="dashboard-layout-item-cricle"
|
||||||
:style="{
|
:style="{
|
||||||
background:
|
background: z.portVoList[
|
||||||
cassetteStatusObj[
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
z.portList[
|
].cassetteVoList[0]
|
||||||
|
? cassetteStatusObj[
|
||||||
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
].cassetteList[0].status
|
].cassetteVoList[0].status
|
||||||
]
|
]
|
||||||
|
: ''
|
||||||
}"
|
}"
|
||||||
/>
|
/>
|
||||||
|
<div
|
||||||
|
v-if="
|
||||||
|
StorageList.some(
|
||||||
|
StorageItem =>
|
||||||
|
StorageItem.id ===
|
||||||
|
z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].id
|
||||||
|
)"
|
||||||
|
class="dashboard-layout-item-horn"
|
||||||
|
/>
|
||||||
{{
|
{{
|
||||||
z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)]
|
z.portVoList[
|
||||||
.name
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].attribute !== '3'
|
||||||
|
? z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].name
|
||||||
|
: "XXXX"
|
||||||
}}
|
}}
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<div class="dashboard-layout-footer">
|
<div class="dashboard-layout-footer">
|
||||||
{{
|
{{
|
||||||
"第" + (index + 1) + "排(" + ((current - 1) * 4 + item) + ")"
|
$t(bottomIndex[index]) +
|
||||||
|
"(" +
|
||||||
|
((current - 1) * 4 + item) +
|
||||||
|
")"
|
||||||
}}
|
}}
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
@@ -150,7 +188,9 @@
|
|||||||
<el-row v-else class="dashboard-layout" :gutter="12">
|
<el-row v-else class="dashboard-layout" :gutter="12">
|
||||||
<el-col
|
<el-col
|
||||||
v-for="item in Math.ceil(
|
v-for="item in Math.ceil(
|
||||||
(shelfList[0].rowList[0].portList.length - (current - 1) * 80) / 20
|
(shelfVoList[0].rowVoList[0].portVoList.length -
|
||||||
|
(current - 1) * 80) /
|
||||||
|
20
|
||||||
)"
|
)"
|
||||||
:key="'shelfbox' + item"
|
:key="'shelfbox' + item"
|
||||||
class="dashboard-layout-shelf-box"
|
class="dashboard-layout-shelf-box"
|
||||||
@@ -158,7 +198,7 @@
|
|||||||
>
|
>
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col
|
<el-col
|
||||||
v-for="(i, index) in shelfList"
|
v-for="(i, index) in shelfVoList"
|
||||||
:key="item + 'shelf' + i.id"
|
:key="item + 'shelf' + i.id"
|
||||||
:span="12"
|
:span="12"
|
||||||
class="dashboard-layout-shelf"
|
class="dashboard-layout-shelf"
|
||||||
@@ -167,14 +207,14 @@
|
|||||||
v-if="
|
v-if="
|
||||||
item <
|
item <
|
||||||
Math.ceil(
|
Math.ceil(
|
||||||
(shelfList[0].rowList[0].portList.length -
|
(shelfVoList[0].rowVoList[0].portVoList.length -
|
||||||
(current - 1) * 80) /
|
(current - 1) * 80) /
|
||||||
20
|
20
|
||||||
)
|
)
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<el-col
|
<el-col
|
||||||
v-for="z in i.rowList"
|
v-for="z in i.rowVoList"
|
||||||
:key="item + 'shelf' + i + 'row' + z.id"
|
:key="item + 'shelf' + i + 'row' + z.id"
|
||||||
:span="12"
|
:span="12"
|
||||||
class="dashboard-layout-row"
|
class="dashboard-layout-row"
|
||||||
@@ -186,29 +226,35 @@
|
|||||||
:style="{
|
:style="{
|
||||||
background:
|
background:
|
||||||
portAttributeObj[
|
portAttributeObj[
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
].attribute
|
].attribute
|
||||||
],
|
],
|
||||||
cursor:
|
cursor:
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
].attribute === 3
|
].attribute === '3'
|
||||||
? 'not-allowed'
|
? 'not-allowed'
|
||||||
: 'pointer',
|
: 'pointer',
|
||||||
color:
|
color:
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
].attribute === 3
|
].attribute === '3'
|
||||||
? '#A2A8B5'
|
? '#A2A8B5'
|
||||||
: '',
|
: '',
|
||||||
border:
|
border: selectStorageList.some(
|
||||||
selectStorageList.some(StorageItem=>StorageItem.id===z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].id)
|
StorageItem =>
|
||||||
? '1px solid red' : ''
|
StorageItem.locationId ===
|
||||||
|
z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].id
|
||||||
|
)
|
||||||
|
? '2px dashed red'
|
||||||
|
: ''
|
||||||
}"
|
}"
|
||||||
@click="
|
@click="
|
||||||
setType(
|
setType(
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
@@ -216,36 +262,55 @@
|
|||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
v-if="
|
v-if="
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
].attribute !== 3
|
].attribute !== '3'
|
||||||
"
|
"
|
||||||
class="dashboard-layout-item-cricle"
|
class="dashboard-layout-item-cricle"
|
||||||
:style="{
|
:style="{
|
||||||
background:
|
background: z.portVoList[
|
||||||
cassetteStatusObj[
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
z.portList[
|
].cassetteVoList[0]
|
||||||
|
? cassetteStatusObj[
|
||||||
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
].cassetteList[0].status
|
].cassetteVoList[0].status
|
||||||
]
|
]
|
||||||
|
: ''
|
||||||
}"
|
}"
|
||||||
/>
|
/>
|
||||||
|
<div
|
||||||
|
v-if="
|
||||||
|
StorageList.some(
|
||||||
|
StorageItem =>
|
||||||
|
StorageItem.id ===
|
||||||
|
z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].id
|
||||||
|
)"
|
||||||
|
class="dashboard-layout-item-horn"
|
||||||
|
/>
|
||||||
{{
|
{{
|
||||||
z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)]
|
z.portVoList[
|
||||||
.name
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].attribute !== '3'
|
||||||
|
? z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].name
|
||||||
|
: "XXXX"
|
||||||
}}
|
}}
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row v-else>
|
<el-row v-else>
|
||||||
<el-col
|
<el-col
|
||||||
v-for="z in i.rowList"
|
v-for="z in i.rowVoList"
|
||||||
:key="item + 'shelf' + i + 'row' + z.id"
|
:key="item + 'shelf' + i + 'row' + z.id"
|
||||||
:span="12"
|
:span="12"
|
||||||
class="dashboard-layout-row"
|
class="dashboard-layout-row"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
v-for="x in shelfList[0].rowList[0].portList.length -
|
v-for="x in shelfVoList[0].rowVoList[0].portVoList.length -
|
||||||
(item - 1) * 20 -
|
(item - 1) * 20 -
|
||||||
(current - 1) * 80"
|
(current - 1) * 80"
|
||||||
:key="item + 'shelf' + i + 'row' + z + 'item' + x"
|
:key="item + 'shelf' + i + 'row' + z + 'item' + x"
|
||||||
@@ -253,29 +318,35 @@
|
|||||||
:style="{
|
:style="{
|
||||||
background:
|
background:
|
||||||
portAttributeObj[
|
portAttributeObj[
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
].attribute
|
].attribute
|
||||||
],
|
],
|
||||||
cursor:
|
cursor:
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
].attribute === 3
|
].attribute === '3'
|
||||||
? 'not-allowed'
|
? 'not-allowed'
|
||||||
: 'pointer',
|
: 'pointer',
|
||||||
color:
|
color:
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
].attribute === 3
|
].attribute === '3'
|
||||||
? '#A2A8B5'
|
? '#A2A8B5'
|
||||||
: '',
|
: '',
|
||||||
border:
|
border: selectStorageList.some(
|
||||||
selectStorageList.some(StorageItem=>StorageItem.id===z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].id)
|
StorageItem =>
|
||||||
? '1px solid red' : ''
|
StorageItem.locationId ===
|
||||||
|
z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].id
|
||||||
|
)
|
||||||
|
? '2px dashed red'
|
||||||
|
: ''
|
||||||
}"
|
}"
|
||||||
@click="
|
@click="
|
||||||
setType(
|
setType(
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
@@ -283,30 +354,52 @@
|
|||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
v-if="
|
v-if="
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
].attribute !== 3
|
].attribute !== '3'
|
||||||
"
|
"
|
||||||
class="dashboard-layout-item-cricle"
|
class="dashboard-layout-item-cricle"
|
||||||
:style="{
|
:style="{
|
||||||
background:
|
background: z.portVoList[
|
||||||
cassetteStatusObj[
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
z.portList[
|
].cassetteVoList[0]
|
||||||
|
? cassetteStatusObj[
|
||||||
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
].cassetteList[0].status
|
].cassetteVoList[0].status
|
||||||
]
|
]
|
||||||
|
: ''
|
||||||
}"
|
}"
|
||||||
/>
|
/>
|
||||||
|
<div
|
||||||
|
v-if="
|
||||||
|
StorageList.some(
|
||||||
|
StorageItem =>
|
||||||
|
StorageItem.id ===
|
||||||
|
z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].id
|
||||||
|
)"
|
||||||
|
class="dashboard-layout-item-horn"
|
||||||
|
/>
|
||||||
{{
|
{{
|
||||||
z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)]
|
z.portVoList[
|
||||||
.name
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].attribute !== '3'
|
||||||
|
? z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].name
|
||||||
|
: "XXXX"
|
||||||
}}
|
}}
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<div class="dashboard-layout-footer">
|
<div class="dashboard-layout-footer">
|
||||||
{{
|
{{
|
||||||
"第" + (index + 1) + "排(" + ((current - 1) * 4 + item) + ")"
|
$t(bottomIndex[index]) +
|
||||||
|
"(" +
|
||||||
|
((current - 1) * 4 + item) +
|
||||||
|
")"
|
||||||
}}
|
}}
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
@@ -323,55 +416,126 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { getPortList } from '@/api/dashboard'
|
||||||
|
import { locationByProcessList } from '@/api/basicData/Warehouse/StorageBoxInfo'
|
||||||
|
import { batchListAdd } from '@/api/basicData/Warehouse/StorageBoxInfo'
|
||||||
import testdata from './testdata'
|
import testdata from './testdata'
|
||||||
import processStorageType from './processStorageType'
|
import processStorageType from './processStorageType'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Dashboard',
|
name: 'ProcessStorageLink1',
|
||||||
components: { processStorageType },
|
components: { processStorageType },
|
||||||
data() {
|
data() {
|
||||||
return testdata
|
return testdata
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
console.log(this.shelfList)
|
this.id = this.$route.query.id
|
||||||
this.totalPage = Math.ceil(
|
this.totalPage = Math.ceil(
|
||||||
this.shelfList[0].rowList[0].portList.length / 80
|
this.shelfVoList[0].rowVoList[0].portVoList.length / 80
|
||||||
)
|
)
|
||||||
this.init()
|
this.init()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
init() {
|
init() {
|
||||||
|
getPortList().then(res => {
|
||||||
|
this.shelfVoList = res.data[0].shelfVoList
|
||||||
|
this.totalPage = Math.ceil(
|
||||||
|
this.shelfVoList[0].rowVoList[0].portVoList.length / 80
|
||||||
|
)
|
||||||
|
})
|
||||||
|
locationByProcessList({
|
||||||
|
current: 1,
|
||||||
|
size: 990,
|
||||||
|
workSequenId: this.id
|
||||||
|
}).then(response => {
|
||||||
|
if (response.data.records) {
|
||||||
|
this.StorageList = response.data.records
|
||||||
|
} else {
|
||||||
|
this.StorageList.splice(0, this.StorageList.length)
|
||||||
|
}
|
||||||
|
})
|
||||||
this.selectStorageList.splice(0, this.selectStorageList.length)
|
this.selectStorageList.splice(0, this.selectStorageList.length)
|
||||||
},
|
},
|
||||||
setType(item) {
|
setType(item) {
|
||||||
if (item.attribute !== 3) {
|
if (item.attribute !== '3') {
|
||||||
if (this.selectStorageList.findIndex(StorageItem => StorageItem.id === item.id) + 1) {
|
if (
|
||||||
this.selectStorageList.splice(this.selectStorageList.findIndex(StorageItem => StorageItem.id === item.id), 1)
|
this.selectStorageList.findIndex(
|
||||||
|
StorageItem => StorageItem.locationId === item.id
|
||||||
|
) + 1
|
||||||
|
) {
|
||||||
|
this.selectStorageList.splice(
|
||||||
|
this.selectStorageList.findIndex(
|
||||||
|
StorageItem => StorageItem.locationId === item.id
|
||||||
|
),
|
||||||
|
1
|
||||||
|
)
|
||||||
} else {
|
} else {
|
||||||
|
const isExist = this.StorageList.some(
|
||||||
|
StorageItem =>
|
||||||
|
StorageItem.id === item.id
|
||||||
|
)
|
||||||
this.typeVisible = true
|
this.typeVisible = true
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.typeRef.init(item.id)
|
this.$refs.typeRef.init(item.id, item.name, item.attribute, isExist)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
setStorageList(id, dataForm) {
|
setStorageList(locationId, locationName, dataForm) {
|
||||||
const obj = Object.assign({ id }, dataForm)
|
const obj = Object.assign({ locationId, locationName }, dataForm)
|
||||||
this.selectStorageList.push(obj)
|
this.selectStorageList.push(obj)
|
||||||
},
|
},
|
||||||
handleChange(v) {
|
handleChange(v) {
|
||||||
console.log(v)
|
console.log(v)
|
||||||
},
|
},
|
||||||
submitLinkList() {
|
submitLinkList() {
|
||||||
const tipArr = this.selectStorageList.map(item => {
|
if (this.selectStorageList.length) {
|
||||||
return item.id
|
const tipArr = this.selectStorageList.map(item => {
|
||||||
})
|
return item.locationName
|
||||||
this.$confirm(`${this.$t('module.basicData.visual.TipsStorageBefore')}[${tipArr.join(',')}]?`, this.$t('module.basicData.visual.Tips'), {
|
})
|
||||||
confirmButtonText: this.$t('module.basicData.visual.confirmButtonText'),
|
const obj = {
|
||||||
cancelButtonText: this.$t('module.basicData.visual.cancelButtonText'),
|
workSequenId: this.id,
|
||||||
type: 'warning'
|
processLocationStorageList: this.selectStorageList
|
||||||
}).then(() => {
|
}
|
||||||
}).catch(() => {})
|
this.$confirm(
|
||||||
|
`${this.$t(
|
||||||
|
'module.basicData.visual.TipsStorageBefore'
|
||||||
|
)}[${tipArr.join(',')}]?`,
|
||||||
|
this.$t('module.basicData.visual.Tips'),
|
||||||
|
{
|
||||||
|
confirmButtonText: this.$t(
|
||||||
|
'module.basicData.visual.confirmButtonText'
|
||||||
|
),
|
||||||
|
cancelButtonText: this.$t(
|
||||||
|
'module.basicData.visual.cancelButtonText'
|
||||||
|
),
|
||||||
|
type: 'warning'
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.then(() => {
|
||||||
|
batchListAdd(obj).then(res => {
|
||||||
|
this.$message({
|
||||||
|
message: this.$t('module.basicData.visual.success'),
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.init()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
.catch(() => {})
|
||||||
|
} else {
|
||||||
|
this.$message({
|
||||||
|
message: this.$t('module.basicData.visual.PleaseAddLocationFirst'),
|
||||||
|
type: 'warning',
|
||||||
|
duration: 1500
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
|
goback() {
|
||||||
|
this.selectStorageList.splice(0, this.selectStorageList.length)
|
||||||
|
this.$router.go(-1)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -460,6 +624,7 @@ export default {
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
position: relative;
|
||||||
.dashboard-layout-item-cricle {
|
.dashboard-layout-item-cricle {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 12px;
|
width: 12px;
|
||||||
@@ -467,6 +632,16 @@ export default {
|
|||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
margin-right: 6px;
|
margin-right: 6px;
|
||||||
}
|
}
|
||||||
|
.dashboard-layout-item-horn {
|
||||||
|
position: absolute;
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 14px 0px 0px 14px;
|
||||||
|
border-color: #0B58FF transparent transparent transparent;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 16:37:56
|
* @Date: 2020-12-29 16:37:56
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-10 14:27:47
|
* @LastEditTime: 2022-03-18 09:39:09
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -15,16 +15,15 @@
|
|||||||
:model="dataForm"
|
:model="dataForm"
|
||||||
size="medium"
|
size="medium"
|
||||||
:rules="dataRule"
|
:rules="dataRule"
|
||||||
label-width="110px"
|
|
||||||
label-position="left"
|
label-position="left"
|
||||||
>
|
>
|
||||||
<el-form-item :label="$t('module.basicData.Warehouse.SelectStorageType')" prop="storageType">
|
<el-form-item :label="$t('module.basicData.Warehouse.SelectStorageType')" prop="portAttrId">
|
||||||
<el-radio v-model="dataForm.storageType" :label="1">Working Port</el-radio>
|
<el-radio v-model="dataForm.portAttrId" label="1">Working Port</el-radio>
|
||||||
<el-radio v-model="dataForm.storageType" :label="2">Buffer Port</el-radio>
|
<el-radio v-model="dataForm.portAttrId" label="2">Buffer Port</el-radio>
|
||||||
<el-radio v-model="dataForm.storageType" :label="3">Exception Port</el-radio>
|
<el-radio v-model="dataForm.portAttrId" label="3">Exception Port</el-radio>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :label="$t('module.basicData.storageBox.name')" prop="storageBoxName">
|
<el-form-item :label="$t('module.basicData.storageBox.name')" prop="storageId">
|
||||||
<el-select v-model="dataForm.storageBoxName" filterable :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.storageBox.name')])" clearable>
|
<el-select v-model="dataForm.storageId" filterable :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.storageBox.name')])" clearable>
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in storageBoxArr"
|
v-for="item in storageBoxArr"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
@@ -42,19 +41,21 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { getPortDetail } from '@/api/dashboard'
|
||||||
import { storageBoxList } from '@/api/basicData/Cache/storageBox'
|
import { storageBoxList } from '@/api/basicData/Cache/storageBox'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
visible: false,
|
visible: false,
|
||||||
storageId: '',
|
locationId: '',
|
||||||
|
locationName: '',
|
||||||
dataForm: {
|
dataForm: {
|
||||||
storageType: 1,
|
portAttrId: '1',
|
||||||
storageBoxName: ''
|
storageId: ''
|
||||||
},
|
},
|
||||||
dataRule: {
|
dataRule: {
|
||||||
storageBoxName: [
|
storageId: [
|
||||||
{
|
{
|
||||||
required: true,
|
required: true,
|
||||||
message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.storageBox.name')]),
|
message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.storageBox.name')]),
|
||||||
@@ -65,8 +66,9 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
init(id) {
|
init(id, name, attribute, isExist) {
|
||||||
this.storageId = id
|
this.locationId = id
|
||||||
|
this.locationName = name
|
||||||
const listQuery = {
|
const listQuery = {
|
||||||
current: 1,
|
current: 1,
|
||||||
size: 999
|
size: 999
|
||||||
@@ -78,6 +80,19 @@ export default {
|
|||||||
this.storageBoxArr.splice(0, this.list.length)
|
this.storageBoxArr.splice(0, this.list.length)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs['dataForm'].resetFields()
|
||||||
|
if (attribute) {
|
||||||
|
this.dataForm.portAttrId = attribute
|
||||||
|
} else {
|
||||||
|
this.dataForm.portAttrId = '1'
|
||||||
|
}
|
||||||
|
if (isExist) {
|
||||||
|
getPortDetail(id).then(res => {
|
||||||
|
if (res.code === 0) { this.dataForm.storageId = res.data.storageBoxId }
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
this.visible = true
|
this.visible = true
|
||||||
},
|
},
|
||||||
// 表单提交
|
// 表单提交
|
||||||
@@ -85,7 +100,7 @@ export default {
|
|||||||
this.$refs['dataForm'].validate((valid) => {
|
this.$refs['dataForm'].validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
this.visible = false
|
this.visible = false
|
||||||
this.$emit('refreshDataList', this.storageId, this.dataForm)
|
this.$emit('refreshDataList', this.locationId, this.locationName, this.dataForm)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
157
src/views/dashboard/components/PortDetail.vue
Normal file
157
src/views/dashboard/components/PortDetail.vue
Normal file
@@ -0,0 +1,157 @@
|
|||||||
|
<!--
|
||||||
|
* @Author: zwq
|
||||||
|
* @Date: 2020-12-29 16:37:56
|
||||||
|
* @LastEditors: zwq
|
||||||
|
* @LastEditTime: 2022-04-02 15:57:14
|
||||||
|
* @Description:
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<el-dialog
|
||||||
|
:title="'btn.detail' | i18nFilter"
|
||||||
|
:visible.sync="visible"
|
||||||
|
width="70%"
|
||||||
|
>
|
||||||
|
<el-row :gutter="10">
|
||||||
|
<el-form ref="dataForm" :model="dataForm" label-width="150px">
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item :label="$t('module.dashboard.name')" prop="name">
|
||||||
|
{{ dataForm.name }}
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item :label="$t('module.dashboard.attribute')" prop="attribute">
|
||||||
|
{{ dataForm.attribute ? portAttributeObj[dataForm.attribute] : '' }}
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item :label="$t('module.dashboard.cassetteStatus')" prop="cassetteVoList">
|
||||||
|
{{ dataForm.cassetteVoList && dataForm.cassetteVoList.length && dataForm.cassetteVoList[0].status ? cassetteStatusObj[dataForm.cassetteVoList[0].status] : '' }}
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item :label="$t('module.dashboard.workOrderNo')" prop="workOrderNo">
|
||||||
|
{{ dataForm.workOrderNo }}
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item :label="$t('module.dashboard.storageBoxCode')" prop="storageBoxCode">
|
||||||
|
{{ dataForm.storageBoxCode }}
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-form>
|
||||||
|
</el-row>
|
||||||
|
<base-table
|
||||||
|
:page="listQuery.current"
|
||||||
|
:limit="listQuery.size"
|
||||||
|
:table-config="tableProps"
|
||||||
|
:table-data="list"
|
||||||
|
:is-loading="listLoading"
|
||||||
|
/>
|
||||||
|
<span slot="footer" class="dialog-footer">
|
||||||
|
<el-button @click="visible = false">{{ 'btn.cancel' | i18nFilter }}</el-button>
|
||||||
|
</span>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import i18n from '@/lang'
|
||||||
|
import { listSubstrate } from '@/api/report-manage/report'
|
||||||
|
import BaseTable from '@/components/BaseTable'
|
||||||
|
|
||||||
|
const tableProps = [
|
||||||
|
{
|
||||||
|
prop: 'substrateCode',
|
||||||
|
label: i18n.t('module.report.substrate.substrateCode'),
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'subPosition',
|
||||||
|
label: i18n.t('module.report.substrate.location'),
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'storeTime',
|
||||||
|
label: i18n.t('module.report.substrate.storeTime'),
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'status',
|
||||||
|
label: i18n.t('module.report.substrate.substrateStatus'),
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'subStorageStatusName',
|
||||||
|
label: i18n.t('module.report.substrate.subStorageStatus'),
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'machineHandID',
|
||||||
|
label: i18n.t('module.report.substrate.machineHandID'),
|
||||||
|
align: 'center'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: { BaseTable },
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
visible: false,
|
||||||
|
tableProps,
|
||||||
|
list: [],
|
||||||
|
listLoading: true,
|
||||||
|
listQuery: {
|
||||||
|
current: 1,
|
||||||
|
size: 500,
|
||||||
|
locationStorageSubID: ''
|
||||||
|
},
|
||||||
|
dataForm: {
|
||||||
|
code: null,
|
||||||
|
createTime: null,
|
||||||
|
currLocation: null,
|
||||||
|
currLocationId: null,
|
||||||
|
id: null,
|
||||||
|
isEmpty: null,
|
||||||
|
status: null,
|
||||||
|
storageBoxCode: null,
|
||||||
|
storageBoxId: null,
|
||||||
|
updateTime: null
|
||||||
|
},
|
||||||
|
cassetteStatusObj: {
|
||||||
|
'1': 'Empty Cassette',
|
||||||
|
'2': 'Dummy Cassette',
|
||||||
|
'3': 'OK Cassette',
|
||||||
|
'4': 'NOK Cassette'
|
||||||
|
},
|
||||||
|
portAttributeObj: {
|
||||||
|
1: 'Working Port',
|
||||||
|
2: 'Buffer Port',
|
||||||
|
3: 'Exception Port'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
init(data) {
|
||||||
|
console.log(data)
|
||||||
|
this.visible = true
|
||||||
|
this.dataForm = data
|
||||||
|
this.listQuery.locationStorageSubID = data.locationStorageSubId
|
||||||
|
this.listLoading = true
|
||||||
|
listSubstrate(this.listQuery).then(response => {
|
||||||
|
if (response.data) {
|
||||||
|
this.list = response.data
|
||||||
|
for (var x = 0; x < this.list.length; x++) {
|
||||||
|
if (this.list[x].subStorageStatus === 1) {
|
||||||
|
this.list[x].subStorageStatusName = this.$t('module.report.substrate.load')
|
||||||
|
} else if (this.list[x].subStorageStatus === 2) {
|
||||||
|
this.list[x].subStorageStatusName = this.$t('module.report.substrate.unload')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.list.splice(0, this.list.length)
|
||||||
|
}
|
||||||
|
this.listLoading = false
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
* @Author: gtz
|
* @Author: gtz
|
||||||
* @Date: 2022-03-03 09:16:10
|
* @Date: 2022-03-03 09:16:10
|
||||||
* @LastEditors: gtz
|
* @LastEditors: gtz
|
||||||
* @LastEditTime: 2022-03-08 14:34:24
|
* @LastEditTime: 2022-03-18 16:29:33
|
||||||
* @Description: file content
|
* @Description: file content
|
||||||
* @FilePath: \mt-ck-wms-ui\src\views\dashboard\index.vue
|
* @FilePath: \mt-ck-wms-ui\src\views\dashboard\index.vue
|
||||||
-->
|
-->
|
||||||
@@ -11,7 +11,7 @@
|
|||||||
<el-card class="dashboard-main">
|
<el-card class="dashboard-main">
|
||||||
<el-row class="dashboard-title">
|
<el-row class="dashboard-title">
|
||||||
<div class="dashboard-header-line" />
|
<div class="dashboard-header-line" />
|
||||||
<div class="dashboard-header-title">WMS库存信息</div>
|
<div class="dashboard-header-title">{{ $t('module.dashboard.title') }}</div>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row class="dashboard-legend">
|
<el-row class="dashboard-legend">
|
||||||
<div v-for="item in cassetteStatusList" :key="'cassette' + item.id" class="dashboard-legend-cassette">
|
<div v-for="item in cassetteStatusList" :key="'cassette' + item.id" class="dashboard-legend-cassette">
|
||||||
@@ -23,76 +23,98 @@
|
|||||||
{{ item.name }}
|
{{ item.name }}
|
||||||
</div>
|
</div>
|
||||||
<div class="dashboard-legend-search">
|
<div class="dashboard-legend-search">
|
||||||
<el-select v-model="current" size="mini" placeholder="请选择库存范围" @change="handleChange">
|
<el-select v-model="current" size="mini" @change="handleChange">
|
||||||
<el-option v-for="item in totalPage" :key="'select' + item" :label="'第' + item + '页'" :value="item" />
|
<el-option v-for="item in totalPage" :key="'select' + item" :label="$t('module.dashboard.pageHeader') + item + $t('module.dashboard.pageFooter')" :value="item" />
|
||||||
</el-select>
|
</el-select>
|
||||||
|
<el-button type="primary" @click="refresh">{{ 'btn.refresh' | i18nFilter }}</el-button>
|
||||||
</div>
|
</div>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row v-if="current * 80 < shelfList[0].rowList[0].portList.length" class="dashboard-layout" :gutter="12">
|
<el-row v-if="current * 80 < shelfVoList[0].rowVoList[0].portVoList.length" class="dashboard-layout" :gutter="12">
|
||||||
<el-col v-for="item in 4" :key="'shelfbox' + item" class="dashboard-layout-shelf-box" :span="6">
|
<el-col v-for="item in 4" :key="'shelfbox' + item" class="dashboard-layout-shelf-box" :span="6">
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col v-for="(i, index) in shelfList" :key="item + 'shelf' + i.id" :span="12" class="dashboard-layout-shelf">
|
<el-col v-for="(i, index) in shelfVoList" :key="item + 'shelf' + i.id" :span="12" class="dashboard-layout-shelf">
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col v-for="z in i.rowList" :key="item + 'shelf' + i + 'row' + z.id" :span="12" class="dashboard-layout-row">
|
<el-col v-for="z in i.rowVoList" :key="item + 'shelf' + i + 'row' + z.id" :span="12" class="dashboard-layout-row">
|
||||||
<div v-for="x in 20" :key="item + 'shelf' + i + 'row' + z + 'item' + x" class="dashboard-layout-item" :style="{background: portAttributeObj[z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute], cursor: z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute === 3 ? 'not-allowed' : 'pointer', color: z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute === 3 ? '#A2A8B5' : ''}">
|
<div v-for="x in 20" :key="item + 'shelf' + i + 'row' + z + 'item' + x" class="dashboard-layout-item" :style="{background: portAttributeObj[z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute], cursor: z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute === '3' ? 'not-allowed' : 'pointer', color: z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute === '3' ? '#A2A8B5' : ''}" @click="handlePort(z, x)">
|
||||||
<div v-if="z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute !== 3" class="dashboard-layout-item-cricle" :style="{background: cassetteStatusObj[z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].cassetteList[0].status]}" />
|
<div v-if="z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute !== '3'" class="dashboard-layout-item-cricle" :style="{background: z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].cassetteVoList[0] ? cassetteStatusObj[z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].cassetteVoList[0].status] : ''}" />
|
||||||
{{ z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].name }}
|
{{ z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute !== '3' ? z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].name : 'XXXX' }}
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<div class="dashboard-layout-footer">
|
<div class="dashboard-layout-footer">
|
||||||
{{ '第' + (index + 1) + '排(' + ((current - 1) * 4 + item) + ')' }}
|
{{ $t(rowIndex[index]) + '(' + ((current - 1) * 4 + item) + ')' }}
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row v-else class="dashboard-layout" :gutter="12">
|
<el-row v-else class="dashboard-layout" :gutter="12">
|
||||||
<el-col v-for="item in Math.ceil((shelfList[0].rowList[0].portList.length - (current - 1) * 80) / 20)" :key="'shelfbox' + item" class="dashboard-layout-shelf-box" :span="6">
|
<el-col v-for="item in Math.ceil((shelfVoList[0].rowVoList[0].portVoList.length - (current - 1) * 80) / 20)" :key="'shelfbox' + item" class="dashboard-layout-shelf-box" :span="6">
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col v-for="(i, index) in shelfList" :key="item + 'shelf' + i.id" :span="12" class="dashboard-layout-shelf">
|
<el-col v-for="(i, index) in shelfVoList" :key="item + 'shelf' + i.id" :span="12" class="dashboard-layout-shelf">
|
||||||
<el-row v-if="item < Math.ceil((shelfList[0].rowList[0].portList.length - (current - 1) * 80) / 20)">
|
<el-row v-if="item < Math.ceil((shelfVoList[0].rowVoList[0].portVoList.length - (current - 1) * 80) / 20)">
|
||||||
<el-col v-for="z in i.rowList" :key="item + 'shelf' + i + 'row' + z.id" :span="12" class="dashboard-layout-row">
|
<el-col v-for="z in i.rowVoList" :key="item + 'shelf' + i + 'row' + z.id" :span="12" class="dashboard-layout-row">
|
||||||
<div v-for="x in 20" :key="item + 'shelf' + i + 'row' + z + 'item' + x" class="dashboard-layout-item" :style="{background: portAttributeObj[z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute], cursor: z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute === 3 ? 'not-allowed' : 'pointer', color: z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute === 3 ? '#A2A8B5' : ''}">
|
<div v-for="x in 20" :key="item + 'shelf' + i + 'row' + z + 'item' + x" class="dashboard-layout-item" :style="{background: portAttributeObj[z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute], cursor: z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute === '3' ? 'not-allowed' : 'pointer', color: z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute === '3' ? '#A2A8B5' : ''}" @click="handlePort(z, x)">
|
||||||
<div v-if="z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute !== 3" class="dashboard-layout-item-cricle" :style="{background: cassetteStatusObj[z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].cassetteList[0].status]}" />
|
<div v-if="z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute !== '3'" class="dashboard-layout-item-cricle" :style="{background: z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].cassetteVoList[0] ? cassetteStatusObj[z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].cassetteVoList[0].status] : ''}" />
|
||||||
{{ z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].name }}
|
{{ z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute !== '3' ? z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].name : 'XXXX' }}
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row v-else>
|
<el-row v-else>
|
||||||
<el-col v-for="z in i.rowList" :key="item + 'shelf' + i + 'row' + z.id" :span="12" class="dashboard-layout-row">
|
<el-col v-for="z in i.rowVoList" :key="item + 'shelf' + i + 'row' + z.id" :span="12" class="dashboard-layout-row">
|
||||||
<div v-for="x in shelfList[0].rowList[0].portList.length - (item - 1) * 20 - (current - 1) * 80" :key="item + 'shelf' + i + 'row' + z + 'item' + x" class="dashboard-layout-item" :style="{background: portAttributeObj[z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute], cursor: z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute === 3 ? 'not-allowed' : 'pointer', color: z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute === 3 ? '#A2A8B5' : ''}">
|
<div v-for="x in shelfVoList[0].rowVoList[0].portVoList.length - (item - 1) * 20 - (current - 1) * 80" :key="item + 'shelf' + i + 'row' + z + 'item' + x" class="dashboard-layout-item" :style="{background: portAttributeObj[z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute], cursor: z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute === '3' ? 'not-allowed' : 'pointer', color: z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute === '3' ? '#A2A8B5' : ''}" @click="handlePort(z, x)">
|
||||||
<div v-if="z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute !== 3" class="dashboard-layout-item-cricle" :style="{background: cassetteStatusObj[z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].cassetteList[0].status]}" />
|
<div v-if="z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute !== '3'" class="dashboard-layout-item-cricle" :style="{background: z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].cassetteVoList[0] ? cassetteStatusObj[z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].cassetteVoList[0].status] : ''}" />
|
||||||
{{ z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].name }}
|
{{ z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute !== '3' ? z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].name : 'XXXX' }}
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<div class="dashboard-layout-footer">
|
<div class="dashboard-layout-footer">
|
||||||
{{ '第' + (index + 1) + '排(' + ((current - 1) * 4 + item) + ')' }}
|
{{ $t(rowIndex[index]) + '(' + ((current - 1) * 4 + item) + ')' }}
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-card>
|
</el-card>
|
||||||
|
<port-detail ref="addOrUpdate" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import testdata from './testdata'
|
import testdata from './testdata'
|
||||||
|
import { getPortList, getPortDetail } from '@/api/dashboard'
|
||||||
|
import portDetail from './components/PortDetail'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Dashboard',
|
name: 'Dashboard',
|
||||||
|
components: { portDetail },
|
||||||
data() {
|
data() {
|
||||||
return testdata
|
return testdata
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
console.log(this.shelfList)
|
this.totalPage = Math.ceil(this.shelfVoList[0].rowVoList[0].portVoList.length / 80)
|
||||||
this.totalPage = Math.ceil(this.shelfList[0].rowList[0].portList.length / 80)
|
this.init()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
init() {
|
||||||
|
getPortList().then(res => {
|
||||||
|
this.shelfVoList = res.data[0].shelfVoList
|
||||||
|
this.totalPage = Math.ceil(this.shelfVoList[0].rowVoList[0].portVoList.length / 80)
|
||||||
|
})
|
||||||
|
},
|
||||||
handleChange(v) {
|
handleChange(v) {
|
||||||
console.log(v)
|
console.log(v)
|
||||||
|
},
|
||||||
|
handlePort(z, x) {
|
||||||
|
getPortDetail(z.portVoList[x - 1].id).then(res => {
|
||||||
|
this.addOrUpdateVisible = true
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.addOrUpdate.init({ ...(res.data), ...z.portVoList[x - 1] })
|
||||||
|
})
|
||||||
|
})
|
||||||
|
},
|
||||||
|
refresh() {
|
||||||
|
this.init()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -2,20 +2,21 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 16:37:56
|
* @Date: 2020-12-29 16:37:56
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-09 16:43:01
|
* @LastEditTime: 2022-03-16 14:17:40
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<el-dialog
|
<el-dialog
|
||||||
:title="'btn.see' | i18nFilter"
|
:title="'btn.see' | i18nFilter"
|
||||||
:visible.sync="visible"
|
:visible.sync="visible"
|
||||||
|
width="70%"
|
||||||
>
|
>
|
||||||
<el-row :gutter="10">
|
<el-row :gutter="10">
|
||||||
<el-form
|
<el-form
|
||||||
ref="dataForm"
|
ref="dataForm"
|
||||||
:model="dataForm"
|
:model="dataForm"
|
||||||
size="medium"
|
size="medium"
|
||||||
label-width="110px"
|
label-width="180px"
|
||||||
label-position="left"
|
label-position="left"
|
||||||
>
|
>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
@@ -40,6 +41,11 @@
|
|||||||
<el-input v-model="dataForm.priority" :placeholder="$t('module.basicData.Warehouse.Priority')" readonly :style="{width: '100%'}" />
|
<el-input v-model="dataForm.priority" :placeholder="$t('module.basicData.Warehouse.Priority')" readonly :style="{width: '100%'}" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item :label="$t('module.basicData.Warehouse.CompletionTime')" prop="finishProduceTime">
|
||||||
|
<el-input v-model="dataForm.finishProduceTime" :placeholder="$t('module.basicData.Warehouse.CompletionTime')" readonly :style="{width: '100%'}" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
@@ -64,6 +70,11 @@
|
|||||||
<el-input v-model="dataForm.triggerOrigin" :placeholder="$t('module.basicData.Warehouse.triggerOrigin')" readonly :style="{width: '100%'}" />
|
<el-input v-model="dataForm.triggerOrigin" :placeholder="$t('module.basicData.Warehouse.triggerOrigin')" readonly :style="{width: '100%'}" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item :label="$t('module.basicData.Warehouse.ProcessOrNot')" prop="ProcessOrNot">
|
||||||
|
<el-input v-model="dataForm.ProcessOrNot" :placeholder="$t('module.basicData.Warehouse.ProcessOrNot')" readonly :style="{width: '100%'}" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
@@ -104,7 +115,8 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { ProcessInfoDetail } from '@/api/orderManage/00A'
|
import { ExecutionInfoDetail } from '@/api/orderManage/00A'
|
||||||
|
import { timeFormatter } from '@/filters'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
@@ -113,10 +125,10 @@ export default {
|
|||||||
dataForm: {
|
dataForm: {
|
||||||
id: 0,
|
id: 0,
|
||||||
name: undefined,
|
name: undefined,
|
||||||
createTime: undefined,
|
|
||||||
priority: '',
|
priority: '',
|
||||||
actualQuantity: '',
|
actualQuantity: '',
|
||||||
startProduceTime: '',
|
startProduceTime: '',
|
||||||
|
finishProduceTime: '',
|
||||||
scrapQuantity: '',
|
scrapQuantity: '',
|
||||||
triggerOrigin: '',
|
triggerOrigin: '',
|
||||||
type: '',
|
type: '',
|
||||||
@@ -135,11 +147,14 @@ export default {
|
|||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs['dataForm'].resetFields()
|
this.$refs['dataForm'].resetFields()
|
||||||
if (this.dataForm.id) {
|
if (this.dataForm.id) {
|
||||||
ProcessInfoDetail(this.dataForm.id).then(res => {
|
ExecutionInfoDetail(this.dataForm.id).then(res => {
|
||||||
res.data.status = this.statusfilter('orderStatus', res.data.status)
|
res.data.status = this.statusfilter('orderStatus', res.data.status)
|
||||||
res.data.type = this.statusfilter('orderType', res.data.type)
|
res.data.type = this.statusfilter('orderType', res.data.type)
|
||||||
res.data.priority = this.statusfilter('priority', res.data.priority)
|
res.data.priority = this.statusfilter('priority', res.data.priority)
|
||||||
res.data.triggerOrigin = this.statusfilter('triggerOrigin', res.data.triggerOrigin)
|
res.data.triggerOrigin = this.statusfilter('triggerOrigin', res.data.triggerOrigin)
|
||||||
|
res.data.finishProduceTime = timeFormatter(res.data.finishProduceTime)
|
||||||
|
res.data.startProduceTime = timeFormatter(res.data.startProduceTime)
|
||||||
|
res.data.ProcessOrNot = res.data.processId ? '是' : '否'
|
||||||
this.dataForm = res.data
|
this.dataForm = res.data
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,20 +2,21 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 16:37:56
|
* @Date: 2020-12-29 16:37:56
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-09 16:40:11
|
* @LastEditTime: 2022-03-16 14:17:37
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<el-dialog
|
<el-dialog
|
||||||
:title="'btn.see' | i18nFilter"
|
:title="'btn.see' | i18nFilter"
|
||||||
:visible.sync="visible"
|
:visible.sync="visible"
|
||||||
|
width="70%"
|
||||||
>
|
>
|
||||||
<el-row :gutter="10">
|
<el-row :gutter="10">
|
||||||
<el-form
|
<el-form
|
||||||
ref="dataForm"
|
ref="dataForm"
|
||||||
:model="dataForm"
|
:model="dataForm"
|
||||||
size="medium"
|
size="medium"
|
||||||
label-width="110px"
|
label-width="180px"
|
||||||
label-position="left"
|
label-position="left"
|
||||||
>
|
>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
@@ -105,6 +106,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { ProcessInfoDetail } from '@/api/orderManage/00A'
|
import { ProcessInfoDetail } from '@/api/orderManage/00A'
|
||||||
|
import { timeFormatter } from '@/filters'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
@@ -113,7 +115,6 @@ export default {
|
|||||||
dataForm: {
|
dataForm: {
|
||||||
id: 0,
|
id: 0,
|
||||||
name: undefined,
|
name: undefined,
|
||||||
createTime: undefined,
|
|
||||||
priority: '',
|
priority: '',
|
||||||
actualQuantity: '',
|
actualQuantity: '',
|
||||||
startProduceTime: '',
|
startProduceTime: '',
|
||||||
@@ -140,6 +141,7 @@ export default {
|
|||||||
res.data.type = this.statusfilter('orderType', res.data.type)
|
res.data.type = this.statusfilter('orderType', res.data.type)
|
||||||
res.data.priority = this.statusfilter('priority', res.data.priority)
|
res.data.priority = this.statusfilter('priority', res.data.priority)
|
||||||
res.data.triggerOrigin = this.statusfilter('triggerOrigin', res.data.triggerOrigin)
|
res.data.triggerOrigin = this.statusfilter('triggerOrigin', res.data.triggerOrigin)
|
||||||
|
res.data.startProduceTime = timeFormatter(res.data.startProduceTime)
|
||||||
this.dataForm = res.data
|
this.dataForm = res.data
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Date: 2021-01-07 20:09:37
|
* @Date: 2021-01-07 20:09:37
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-10 14:25:50
|
* @LastEditTime: 2022-03-19 13:47:06
|
||||||
* @FilePath: \basic-admin\src\components\BaseTable\subcomponents\CheckDetail.vue
|
* @FilePath: \basic-admin\src\components\BaseTable\subcomponents\CheckDetail.vue
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
width="160"
|
width="160"
|
||||||
>
|
>
|
||||||
<div>
|
<div>
|
||||||
<el-select v-model="value" placeholder="请选择">
|
<el-select v-model="value" :placeholder="$t('module.basicData.Warehouse.RelateProcess')">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in options"
|
v-for="item in options"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
@@ -23,8 +23,8 @@
|
|||||||
</el-select>
|
</el-select>
|
||||||
</div>
|
</div>
|
||||||
<div style="text-align: right; margin: 0">
|
<div style="text-align: right; margin: 0">
|
||||||
<el-button size="mini" type="text" @click="visible = false">取消</el-button>
|
<el-button size="mini" type="text" @click="visible = false">{{ 'btn.cancel' | i18nFilter }}</el-button>
|
||||||
<el-button type="primary" size="mini" @click="emitClick">确定</el-button>
|
<el-button type="primary" size="mini" @click="emitClick">{{ 'btn.confirm' | i18nFilter }}</el-button>
|
||||||
</div>
|
</div>
|
||||||
<el-button slot="reference" type="text">{{ $t('module.basicData.Warehouse.RelateProcess') }}</el-button>
|
<el-button slot="reference" type="text">{{ $t('module.basicData.Warehouse.RelateProcess') }}</el-button>
|
||||||
</el-popover>
|
</el-popover>
|
||||||
@@ -59,6 +59,7 @@ export default {
|
|||||||
}).then(response => {
|
}).then(response => {
|
||||||
this.options = response.data.records
|
this.options = response.data.records
|
||||||
})
|
})
|
||||||
|
this.value = this.injectData.processId
|
||||||
},
|
},
|
||||||
emitClick() {
|
emitClick() {
|
||||||
const data = {
|
const data = {
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
* @Author: fzq
|
* @Author: fzq
|
||||||
* @Date: 2022-03-04 20:54:54
|
* @Date: 2022-03-04 20:54:54
|
||||||
* @LastEditors: fzq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2022-03-07 09:46:36
|
* @LastEditTime: 2022-05-30 13:40:33
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
@@ -198,7 +198,8 @@ export default {
|
|||||||
let fileName = ''
|
let fileName = ''
|
||||||
const contentDisposition = res.headers['content-disposition']
|
const contentDisposition = res.headers['content-disposition']
|
||||||
if (contentDisposition) {
|
if (contentDisposition) {
|
||||||
fileName = contentDisposition.slice(contentDisposition.indexOf('filename=') + 9)
|
// fileName = contentDisposition.slice(contentDisposition.indexOf('filename=') + 9)
|
||||||
|
fileName = this.$t('module.report.reportList.storageBoxReport') + '.xlsx'
|
||||||
}
|
}
|
||||||
const blob = new Blob([res.data])
|
const blob = new Blob([res.data])
|
||||||
const reader = new FileReader()
|
const reader = new FileReader()
|
||||||
@@ -222,6 +223,7 @@ export default {
|
|||||||
// link.click()
|
// link.click()
|
||||||
// URL.revokeObjectURL(link.href)
|
// URL.revokeObjectURL(link.href)
|
||||||
// }
|
// }
|
||||||
|
this.getList()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
// 新增 / 修改
|
// 新增 / 修改
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
* @Author: fzq
|
* @Author: fzq
|
||||||
* @Date: 2022-03-05 17:45:46
|
* @Date: 2022-03-05 17:45:46
|
||||||
* @LastEditors: fzq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2022-03-07 09:19:34
|
* @LastEditTime: 2022-03-20 09:35:03
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<!-- <el-dialog
|
<!-- <el-dialog
|
||||||
@@ -19,17 +19,33 @@
|
|||||||
<el-form-item :label="$t('module.report.substrate.substrateCode')" prop="substrateCode">
|
<el-form-item :label="$t('module.report.substrate.substrateCode')" prop="substrateCode">
|
||||||
<el-input v-model="dataForm.substrateCode" :placeholder="$i18nForm(['placeholder.input', $t('module.report.substrate.substrateCode')])" clearable />
|
<el-input v-model="dataForm.substrateCode" :placeholder="$i18nForm(['placeholder.input', $t('module.report.substrate.substrateCode')])" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :label="$t('module.report.substrate.location')" prop="location">
|
<el-form-item :label="$t('module.report.substrate.location')" prop="subPosition">
|
||||||
<el-input v-model="dataForm.location" :placeholder="$i18nForm(['placeholder.input', $t('module.report.substrate.location')])" clearable />
|
<el-input v-model="dataForm.subPosition" :placeholder="$i18nForm(['placeholder.input', $t('module.report.substrate.location')])" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :label="$t('module.report.substrate.storeTime')" prop="storeTime">
|
<el-form-item :label="$t('module.report.substrate.storeTime')" prop="storeTime">
|
||||||
<el-input v-model="dataForm.storeTime" :placeholder="$i18nForm(['placeholder.input', $t('module.report.substrate.storeTime')])" clearable />
|
<el-input v-model="dataForm.storeTime" :placeholder="$i18nForm(['placeholder.input', $t('module.report.substrate.storeTime')])" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :label="$t('module.report.substrate.substrateStatus')" prop="substrateStatus">
|
<el-form-item :label="$t('module.report.substrate.substrateStatus')" prop="status">
|
||||||
<el-input v-model="dataForm.substrateStatus" :placeholder="$i18nForm(['placeholder.input', $t('module.report.substrate.substrateStatus')])" clearable />
|
<el-input v-model="dataForm.status" :placeholder="$i18nForm(['placeholder.input', $t('module.report.substrate.substrateStatus')])" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :label="$t('module.report.substrate.interCode')" prop="interCode">
|
<!-- <el-form-item :label="$t('module.report.substrate.interCode')" prop="interCode">
|
||||||
<el-input v-model="dataForm.interCode" :placeholder="$i18nForm(['placeholder.input', $t('module.report.substrate.interCode')])" clearable />
|
<el-input v-model="dataForm.interCode" :placeholder="$i18nForm(['placeholder.input', $t('module.report.substrate.interCode')])" clearable />
|
||||||
|
</el-form-item> -->
|
||||||
|
<!-- <el-form-item :label="$t('module.report.substrate.subStorageStatus')" prop="subStorageStatus">
|
||||||
|
<el-input v-model="dataForm.subStorageStatus" :placeholder="$i18nForm(['placeholder.input', $t('module.report.substrate.subStorageStatus')])" clearable />
|
||||||
|
</el-form-item> -->
|
||||||
|
<el-form-item :label="$t('module.report.substrate.subStorageStatus')" prop="subStorageStatus">
|
||||||
|
<el-select v-model="dataForm.subStorageStatus" :placeholder="this.$t('module.report.substrate.subStorageStatus')" default>
|
||||||
|
<el-option
|
||||||
|
v-for="item in options"
|
||||||
|
:key="item.value"
|
||||||
|
:label="item.label"
|
||||||
|
:value="item.value"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item :label="$t('module.report.substrate.machineHandID')" prop="machineHandID">
|
||||||
|
<el-input v-model="dataForm.machineHandID" :placeholder="$i18nForm(['placeholder.input', $t('module.report.substrate.machineHandID')])" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<span slot="footer" class="dialog-footer">
|
<span slot="footer" class="dialog-footer">
|
||||||
@@ -40,7 +56,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { updateSubstrate, listSubstrate } from '@/api/report-manage/report'
|
import { updateSubstrate } from '@/api/report-manage/report'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
@@ -55,19 +71,32 @@ export default {
|
|||||||
return {
|
return {
|
||||||
visible: false,
|
visible: false,
|
||||||
dataForm: {
|
dataForm: {
|
||||||
id: '',
|
// substrateCode: '',
|
||||||
substrateCode: '',
|
// locationName: '',
|
||||||
location: '',
|
// storeTime: '',
|
||||||
storeTime: '',
|
// substrateStatus: '',
|
||||||
substrateStatus: '',
|
// code: '',
|
||||||
code: '',
|
// storageBoxId: '',
|
||||||
storageBoxId: '',
|
// storageCode: '',
|
||||||
storageCode: '',
|
// interCode: '',
|
||||||
interCode: ''
|
// id: '',
|
||||||
|
// current: 1,
|
||||||
|
// size: 10,
|
||||||
|
// locationStorageSubID: ''
|
||||||
},
|
},
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
value: 1,
|
||||||
|
label: this.$t('module.report.substrate.load')
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 2,
|
||||||
|
label: this.$t('module.report.substrate.unload')
|
||||||
|
}
|
||||||
|
],
|
||||||
list: {
|
list: {
|
||||||
id: '',
|
id: '',
|
||||||
location: '',
|
locationName: '',
|
||||||
storeTime: '',
|
storeTime: '',
|
||||||
substrateCode: '',
|
substrateCode: '',
|
||||||
substrateStatus: ''
|
substrateStatus: ''
|
||||||
@@ -75,12 +104,6 @@ export default {
|
|||||||
dataRule: {
|
dataRule: {
|
||||||
substrateCode: [
|
substrateCode: [
|
||||||
{ required: true, message: this.$i18nForm(['placeholder.input', this.$t('module.report.substrate.substrateCode')]), trigger: 'blur' }
|
{ required: true, message: this.$i18nForm(['placeholder.input', this.$t('module.report.substrate.substrateCode')]), trigger: 'blur' }
|
||||||
],
|
|
||||||
code: [
|
|
||||||
{ required: true, message: this.$i18nForm(['placeholder.input', this.$t('module.report.substrate.substrateCode')]), trigger: 'blur' }
|
|
||||||
],
|
|
||||||
interCode: [
|
|
||||||
{ required: true, message: this.$i18nForm(['placeholder.input', this.$t('module.report.substrate.substrateCode')]), trigger: 'blur' }
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -107,35 +130,40 @@ export default {
|
|||||||
// })
|
// })
|
||||||
// })
|
// })
|
||||||
// },
|
// },
|
||||||
init(id) {
|
init(data) {
|
||||||
// this.dataForm.id = id || ''
|
// this.dataForm.id = id || ''
|
||||||
this.dataForm.storageBoxId = this.$route.query.id
|
// console.log(this.$route.query)
|
||||||
this.dataForm.storageCode = this.$route.query.code
|
// this.dataForm.id = this.$route.query.id
|
||||||
|
// this.dataForm.substrateCode = this.$route.query.substrateCode
|
||||||
|
// this.dataForm.locationStorageSubID = this.$route.query.locationStorageSubID
|
||||||
|
this.dataForm = data
|
||||||
this.visible = true
|
this.visible = true
|
||||||
// console.log(this.dataForm)
|
// console.log(this.dataForm)
|
||||||
listSubstrate(this.dataForm).then(res => {
|
// listSubstrate(this.dataForm).then(res => {
|
||||||
console.log(res.data[0])
|
// // console.log(res)
|
||||||
this.dataForm.id = res.data[0].id
|
// this.dataForm.id = res.data[0].id
|
||||||
this.dataForm.location = res.data[0].location
|
// this.dataForm.location = res.data[0].location
|
||||||
this.dataForm.storeTime = res.data[0].storeTime
|
// this.dataForm.storeTime = res.data[0].storeTime
|
||||||
this.dataForm.substrateCode = res.data[0].substrateCode
|
// this.dataForm.substrateCode = res.data[0].substrateCode
|
||||||
this.dataForm.substrateStatus = res.data[0].substrateStatus
|
// this.dataForm.substrateStatus = res.data[0].substrateStatus
|
||||||
this.dataForm.interCode = res.data[0].interCode
|
// this.dataForm.interCode = res.data[0].interCode
|
||||||
// console.log(this.dataForm)
|
// // console.log(this.dataForm)
|
||||||
})
|
// })
|
||||||
},
|
},
|
||||||
// 表单提交
|
// 表单提交
|
||||||
dataFormSubmit() {
|
dataFormSubmit() {
|
||||||
this.$refs['dataForm'].validate((valid) => {
|
this.$refs['dataForm'].validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
const data = {
|
const data = {
|
||||||
'substrateStatus': this.dataForm.substrateStatus,
|
'status': this.dataForm.status,
|
||||||
'storeTime': this.dataForm.storeTime,
|
'storeTime': this.dataForm.storeTime,
|
||||||
'id': this.dataForm.id,
|
'id': this.dataForm.id,
|
||||||
'substrateCode': this.dataForm.substrateCode,
|
'substrateCode': this.dataForm.substrateCode,
|
||||||
'location': this.dataForm.location,
|
'subPosition': this.dataForm.subPosition,
|
||||||
'interCode': this.dataForm.interCode,
|
// 'interCode': this.dataForm.interCode,
|
||||||
'storageBoxId': this.dataForm.storageBoxId
|
'storageBoxFid': this.dataForm.storageBoxFid,
|
||||||
|
'machineHandID': this.dataForm.machineHandID,
|
||||||
|
'subStorageStatus': this.dataForm.subStorageStatus
|
||||||
}
|
}
|
||||||
console.log(data)
|
console.log(data)
|
||||||
updateSubstrate(data).then(res => {
|
updateSubstrate(data).then(res => {
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
* @Author: fzq
|
* @Author: fzq
|
||||||
* @Date: 2022-03-05 14:35:07
|
* @Date: 2022-03-05 14:35:07
|
||||||
* @LastEditors: fzq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2022-03-05 16:44:43
|
* @LastEditTime: 2022-03-16 16:13:58
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<span>
|
<span>
|
||||||
@@ -26,7 +26,8 @@ export default {
|
|||||||
name: 'viewSubstrate',
|
name: 'viewSubstrate',
|
||||||
query: {
|
query: {
|
||||||
id: this.injectData.id,
|
id: this.injectData.id,
|
||||||
code: this.injectData.code
|
code: this.injectData.code,
|
||||||
|
locationStorageSubID: this.injectData.locationStorageSubID
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
* @Author: fzq
|
* @Author: fzq
|
||||||
* @Date: 2022-03-05 15:55:45
|
* @Date: 2022-03-05 15:55:45
|
||||||
* @LastEditors: fzq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2022-03-07 09:28:21
|
* @LastEditTime: 2022-03-20 09:35:05
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
<el-button type="success" @click="goback()">{{ 'btn.back' | i18nFilter }}</el-button>
|
<el-button type="success" @click="goback()">{{ 'btn.back' | i18nFilter }}</el-button>
|
||||||
<el-button type="primary" @click="addNew()">{{ 'btn.add' | i18nFilter }}</el-button>
|
<el-button type="primary" @click="addNew()">{{ 'btn.add' | i18nFilter }}</el-button>
|
||||||
</div> -->
|
</div> -->
|
||||||
<div style="title">存储箱号:{{ num }}
|
<div style="title">{{ storageCode }}:{{ num }}
|
||||||
<el-button type="success" style="back" @click="goback()">{{ 'btn.back' | i18nFilter }}</el-button>
|
<el-button type="success" style="back" @click="goback()">{{ 'btn.back' | i18nFilter }}</el-button>
|
||||||
</div>
|
</div>
|
||||||
<base-table
|
<base-table
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
@clickBtn="handleClick"
|
@clickBtn="handleClick"
|
||||||
/>
|
/>
|
||||||
</base-table>
|
</base-table>
|
||||||
<edit-substrate v-if="addOrUpdateVisible" :id="listQuery.id" ref="addOrUpdate" @refreshDataList="getList" />
|
<edit-substrate v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getList" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -71,7 +71,7 @@ const tableProps = [
|
|||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'location',
|
prop: 'subPosition',
|
||||||
label: i18n.t('module.report.substrate.location'),
|
label: i18n.t('module.report.substrate.location'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
@@ -81,9 +81,19 @@ const tableProps = [
|
|||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'substrateStatus',
|
prop: 'status',
|
||||||
label: i18n.t('module.report.substrate.substrateStatus'),
|
label: i18n.t('module.report.substrate.substrateStatus'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'subStorageStatusName',
|
||||||
|
label: i18n.t('module.report.substrate.subStorageStatus'),
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'machineHandID',
|
||||||
|
label: i18n.t('module.report.substrate.machineHandID'),
|
||||||
|
align: 'center'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -104,6 +114,7 @@ export default {
|
|||||||
return {
|
return {
|
||||||
addOrUpdateVisible: false,
|
addOrUpdateVisible: false,
|
||||||
num: '',
|
num: '',
|
||||||
|
storageCode: this.$t('module.basicData.visual.storageCode'),
|
||||||
tableBtn,
|
tableBtn,
|
||||||
trueWidth: 200,
|
trueWidth: 200,
|
||||||
tableProps,
|
tableProps,
|
||||||
@@ -112,14 +123,17 @@ export default {
|
|||||||
listQuery: {
|
listQuery: {
|
||||||
current: 1,
|
current: 1,
|
||||||
size: 10,
|
size: 10,
|
||||||
storageBoxCode: '',
|
locationStorageSubID: ''
|
||||||
storageBoxId: ''
|
// storageBoxCode: '',
|
||||||
}
|
// storageBoxId: ''
|
||||||
|
},
|
||||||
|
count: 0
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.listQuery.storageBoxCode = this.$route.query.code
|
this.listQuery.storageBoxCode = this.$route.query.code
|
||||||
this.listQuery.storageBoxId = this.$route.query.id
|
// this.listQuery.storageBoxId = this.$route.query.id
|
||||||
|
this.listQuery.locationStorageSubID = this.$route.query.locationStorageSubID
|
||||||
this.getList()
|
this.getList()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@@ -130,7 +144,7 @@ export default {
|
|||||||
cancelButtonText: this.$t('module.basicData.visual.cancelButtonText'),
|
cancelButtonText: this.$t('module.basicData.visual.cancelButtonText'),
|
||||||
type: 'warning'
|
type: 'warning'
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
// console.log(raw.data)
|
// console.log(raw.data)
|
||||||
deleSubstrate(raw.data).then(response => {
|
deleSubstrate(raw.data).then(response => {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: this.$t('module.basicData.visual.success'),
|
message: this.$t('module.basicData.visual.success'),
|
||||||
@@ -143,18 +157,27 @@ export default {
|
|||||||
})
|
})
|
||||||
}).catch(() => {})
|
}).catch(() => {})
|
||||||
} else {
|
} else {
|
||||||
this.addNew(raw.data.id)
|
// this.count = raw.data._pageIndex
|
||||||
|
// console.log(this.count)
|
||||||
|
this.addNew(raw.data)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
getList() {
|
getList() {
|
||||||
this.listLoading = true
|
this.listLoading = true
|
||||||
this.num = this.listQuery.substrateCode
|
this.num = this.listQuery.storageBoxCode
|
||||||
this.listQuery.code = this.$route.query.code
|
this.listQuery.code = this.$route.query.code
|
||||||
console.log(this.listQuery)
|
// console.log(this.listQuery)
|
||||||
listSubstrate(this.listQuery).then(response => {
|
listSubstrate(this.listQuery).then(response => {
|
||||||
console.log(response)
|
// console.log(response)
|
||||||
if (response.data) {
|
if (response.data) {
|
||||||
this.list = response.data
|
this.list = response.data
|
||||||
|
for (var x = 0; x < this.list.length; x++) {
|
||||||
|
if (this.list[x].subStorageStatus === 1) {
|
||||||
|
this.list[x].subStorageStatusName = this.$t('module.report.substrate.load')
|
||||||
|
} else if (this.list[x].subStorageStatus === 2) {
|
||||||
|
this.list[x].subStorageStatusName = this.$t('module.report.substrate.unload')
|
||||||
|
}
|
||||||
|
}
|
||||||
console.log(this.list)
|
console.log(this.list)
|
||||||
} else {
|
} else {
|
||||||
this.list.splice(0, this.list.length)
|
this.list.splice(0, this.list.length)
|
||||||
|
|||||||
Reference in New Issue
Block a user