Merge branch 'develop' into gtz
This commit is contained in:
commit
5dda7cd772
@ -4,7 +4,7 @@
|
|||||||
* @Author: fzq
|
* @Author: fzq
|
||||||
* @Date: 2022-03-06 18:13:49
|
* @Date: 2022-03-06 18:13:49
|
||||||
* @LastEditors: fzq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2022-03-06 18:29:43
|
* @LastEditTime: 2022-03-09 10:44:04
|
||||||
*/
|
*/
|
||||||
import request from '@/utils/request'
|
import request from '@/utils/request'
|
||||||
|
|
||||||
@ -46,3 +46,27 @@ export function locaDelete(id) { // 删除工序库位信息单条数据
|
|||||||
data: { id }
|
data: { id }
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function locationList(data) { // 获取库位id列表
|
||||||
|
return request({
|
||||||
|
url: '/api/wms/processlocation/locationList',
|
||||||
|
method: 'post',
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export function portAttrList(data) { // 获取库位属性列表,关联数据字典
|
||||||
|
return request({
|
||||||
|
url: '/api/wms/processlocation/portAttrList',
|
||||||
|
method: 'post',
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export function workSequenList(data) { // 获取工序id列表
|
||||||
|
return request({
|
||||||
|
url: '/api/wms/processlocation/workSequenList',
|
||||||
|
method: 'post',
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
@ -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,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2022-01-17 14:55:09
|
* @Date: 2022-01-17 14:55:09
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-01-17 14:59:07
|
* @LastEditTime: 2022-03-10 14:13:22
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -16,6 +16,14 @@ export function ProcessInfoList(data) { // 获取工单工艺列表
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function ProcessInfoUpdata(data) { // 获取工单工艺列表
|
||||||
|
return request({
|
||||||
|
url: '/api/wms/work/order/update',
|
||||||
|
method: 'post',
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
export function ProcessInfoDetail(id) { // 获取工单工艺单条数据
|
export function ProcessInfoDetail(id) { // 获取工单工艺单条数据
|
||||||
const data = {
|
const data = {
|
||||||
'id': id
|
'id': id
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* @Date: 2021-01-04 17:34:38
|
* @Date: 2021-01-04 17:34:38
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2021-04-12 14:23:30
|
* @LastEditTime: 2022-03-10 16:42:55
|
||||||
* @FilePath: \basic-admin\src\api\org.js
|
* @FilePath: \basic-admin\src\api\org.js
|
||||||
* @Description: 框架基础模块——组织结构
|
* @Description: 框架基础模块——组织结构
|
||||||
*/
|
*/
|
||||||
@ -10,7 +10,7 @@ import request from '@/utils/request'
|
|||||||
// 获取组织结构列表
|
// 获取组织结构列表
|
||||||
export function getOrgList(data) {
|
export function getOrgList(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/org/page',
|
url: '/api/upms/org/page',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@ -18,7 +18,7 @@ export function getOrgList(data) {
|
|||||||
|
|
||||||
export function getOrgDetail(id) { // 获取组织结构单条数据
|
export function getOrgDetail(id) { // 获取组织结构单条数据
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/org/get',
|
url: '/api/upms/org/get',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data: { id }
|
data: { id }
|
||||||
})
|
})
|
||||||
@ -26,7 +26,7 @@ export function getOrgDetail(id) { // 获取组织结构单条数据
|
|||||||
|
|
||||||
// export function getOrgAllList(data) {
|
// export function getOrgAllList(data) {
|
||||||
// return request({
|
// return request({
|
||||||
// url: '/upms/org/list',
|
// url: '/api/upms/org/list',
|
||||||
// method: 'post',
|
// method: 'post',
|
||||||
// data
|
// data
|
||||||
// })
|
// })
|
||||||
@ -35,7 +35,7 @@ export function getOrgDetail(id) { // 获取组织结构单条数据
|
|||||||
// 添加组织结构
|
// 添加组织结构
|
||||||
export function addOrg(data) {
|
export function addOrg(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/org/add',
|
url: '/api/upms/org/add',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@ -44,7 +44,7 @@ export function addOrg(data) {
|
|||||||
// 修改组织
|
// 修改组织
|
||||||
export function editOrg(data) {
|
export function editOrg(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/org/update',
|
url: '/api/upms/org/update',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@ -53,7 +53,7 @@ export function editOrg(data) {
|
|||||||
// 删除组织结构
|
// 删除组织结构
|
||||||
export function delOrg(id) {
|
export function delOrg(id) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/org/delete',
|
url: '/api/upms/org/delete',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data: { id }
|
data: { id }
|
||||||
})
|
})
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: gtz
|
* @Author: gtz
|
||||||
* @Date: 2021-03-07 18:39:03
|
* @Date: 2021-03-07 18:39:03
|
||||||
* @LastEditors: fzq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2022-03-06 19:27:01
|
* @LastEditTime: 2022-03-08 15:31:13
|
||||||
* @Description: file content
|
* @Description: file content
|
||||||
*/
|
*/
|
||||||
import request from '@/utils/request'
|
import request from '@/utils/request'
|
||||||
@ -28,7 +28,8 @@ export function download(data) {
|
|||||||
url: '/api/report/report-storage-box/excel-download',
|
url: '/api/report/report-storage-box/excel-download',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data,
|
data,
|
||||||
'responseType': 'arraybuffer'
|
responseType: 'blob',
|
||||||
|
timeout: 60000
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ import request from '@/utils/request'
|
|||||||
// 获取角色详细信息
|
// 获取角色详细信息
|
||||||
export function getRoleInfo(data) {
|
export function getRoleInfo(data) {
|
||||||
return request({
|
return request({
|
||||||
url: `/upms/role/get`,
|
url: `/api/upms/role/get`,
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@ -18,7 +18,7 @@ export function getRoleInfo(data) {
|
|||||||
|
|
||||||
export function RoleCode() { // 获取code
|
export function RoleCode() { // 获取code
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/role/get-code',
|
url: '/api/upms/role/get-code',
|
||||||
method: 'post'
|
method: 'post'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -26,7 +26,7 @@ export function RoleCode() { // 获取code
|
|||||||
// 获取角色列表
|
// 获取角色列表
|
||||||
export function getRoleList(data) {
|
export function getRoleList(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/role/list',
|
url: '/api/upms/role/list',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@ -35,7 +35,7 @@ export function getRoleList(data) {
|
|||||||
// 添加角色
|
// 添加角色
|
||||||
export function addRole(data) {
|
export function addRole(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/role/add',
|
url: '/api/upms/role/add',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@ -44,7 +44,7 @@ export function addRole(data) {
|
|||||||
// 修改角色
|
// 修改角色
|
||||||
export function updateRole(data) {
|
export function updateRole(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/role/update',
|
url: '/api/upms/role/update',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@ -53,7 +53,7 @@ export function updateRole(data) {
|
|||||||
// 删除角色
|
// 删除角色
|
||||||
export function deleteRole(data) {
|
export function deleteRole(data) {
|
||||||
return request({
|
return request({
|
||||||
url: `/upms/role/delete`,
|
url: `/api/upms/role/delete`,
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@ -62,7 +62,7 @@ export function deleteRole(data) {
|
|||||||
// 启停角色
|
// 启停角色
|
||||||
export function enableRole(data) {
|
export function enableRole(data) {
|
||||||
return request({
|
return request({
|
||||||
url: `/upms/role/enabled`,
|
url: `/api/upms/role/enabled`,
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@ -71,7 +71,7 @@ export function enableRole(data) {
|
|||||||
// 用户-角色关联授权
|
// 用户-角色关联授权
|
||||||
export function saveUserRole(data) {
|
export function saveUserRole(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/role/saveUserRole',
|
url: '/api/upms/role/saveUserRole',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@ -80,7 +80,7 @@ export function saveUserRole(data) {
|
|||||||
// 用户-角色关联获取
|
// 用户-角色关联获取
|
||||||
export function listByUser(id) {
|
export function listByUser(id) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/role/listByUser',
|
url: '/api/upms/role/listByUser',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data: { id }
|
data: { id }
|
||||||
})
|
})
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* @Date: 2020-12-14 09:07:03
|
* @Date: 2020-12-14 09:07:03
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-01-11 15:45:54
|
* @LastEditTime: 2022-03-10 16:41:55
|
||||||
* @FilePath: \basic-admin\src\api\user.js
|
* @FilePath: \basic-admin\src\api\user.js
|
||||||
* @Description: 用户管理 & 登录用户的相关api接口定义
|
* @Description: 用户管理 & 登录用户的相关api接口定义
|
||||||
*/
|
*/
|
||||||
@ -38,7 +38,7 @@ export function getUserInfo(data) {
|
|||||||
// 修改当前用户密码
|
// 修改当前用户密码
|
||||||
export function editUserPW(data) {
|
export function editUserPW(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/user/modifyPassword',
|
url: '/api/upms/user/modifyPassword',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@ -47,17 +47,17 @@ export function editUserPW(data) {
|
|||||||
// 当前用户 找回密码
|
// 当前用户 找回密码
|
||||||
export function findUserPW(data) {
|
export function findUserPW(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/user/findPassword',
|
url: '/api/upms/user/findPassword',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// 下面为:用户管理列表
|
// 下面为:用户管理列表
|
||||||
// 获取用户列表 (根据需求可以考虑换成带分页的 /upms/user/page)
|
// 获取用户列表 (根据需求可以考虑换成带分页的 /api/upms/user/page)
|
||||||
export function getUserList(data) {
|
export function getUserList(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/user/page',
|
url: '/api/upms/user/page',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@ -66,7 +66,7 @@ export function getUserList(data) {
|
|||||||
// 新增用户
|
// 新增用户
|
||||||
export function addUser(data) {
|
export function addUser(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/user/add',
|
url: '/api/upms/user/add',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@ -75,7 +75,7 @@ export function addUser(data) {
|
|||||||
// 删除用户
|
// 删除用户
|
||||||
export function delUser(data) {
|
export function delUser(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/user/delete',
|
url: '/api/upms/user/delete',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@ -84,7 +84,7 @@ export function delUser(data) {
|
|||||||
// 修改用户信息
|
// 修改用户信息
|
||||||
export function editUser(data) {
|
export function editUser(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/user/update',
|
url: '/api/upms/user/update',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@ -93,7 +93,7 @@ export function editUser(data) {
|
|||||||
// 获取用户详细信息
|
// 获取用户详细信息
|
||||||
export function getUserDetail(data) {
|
export function getUserDetail(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/user/get',
|
url: '/api/upms/user/get',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@ -102,7 +102,7 @@ export function getUserDetail(data) {
|
|||||||
// 管理员重置用户的密码
|
// 管理员重置用户的密码
|
||||||
export function resetUserPW(data) {
|
export function resetUserPW(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/user/resetPassword',
|
url: '/api/upms/user/resetPassword',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@ -111,7 +111,7 @@ export function resetUserPW(data) {
|
|||||||
// 启停用户信息
|
// 启停用户信息
|
||||||
export function enableUser(data) {
|
export function enableUser(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/upms/user/enabled',
|
url: '/api/upms/user/enabled',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
|
@ -68,6 +68,10 @@ export default {
|
|||||||
zh: '返回',
|
zh: '返回',
|
||||||
en: 'Back'
|
en: 'Back'
|
||||||
},
|
},
|
||||||
|
export: {
|
||||||
|
zh: '导出',
|
||||||
|
en: 'Export'
|
||||||
|
},
|
||||||
checkLog: {
|
checkLog: {
|
||||||
zh: '查看日志',
|
zh: '查看日志',
|
||||||
en: 'Check Log'
|
en: 'Check Log'
|
||||||
@ -761,8 +765,8 @@ export default {
|
|||||||
en: 'Power Classification'
|
en: 'Power Classification'
|
||||||
},
|
},
|
||||||
ProcessInfo: {
|
ProcessInfo: {
|
||||||
zh: '工艺信息',
|
zh: '工单工艺信息',
|
||||||
en: 'Process Info'
|
en: 'Order Process Info'
|
||||||
},
|
},
|
||||||
ExecutionInfo: {
|
ExecutionInfo: {
|
||||||
zh: '执行信息',
|
zh: '执行信息',
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: gtz
|
* @Author: gtz
|
||||||
* @Date: 2021-03-04 16:19:14
|
* @Date: 2021-03-04 16:19:14
|
||||||
* @LastEditors: Please set LastEditors
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2021-07-13 20:32:02
|
* @LastEditTime: 2022-03-08 15:48:54
|
||||||
* @Description: file content
|
* @Description: file content
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -90,5 +90,9 @@ export default {
|
|||||||
download: {
|
download: {
|
||||||
zh: '下载',
|
zh: '下载',
|
||||||
en: 'download'
|
en: 'download'
|
||||||
|
},
|
||||||
|
export: {
|
||||||
|
zh: '导出',
|
||||||
|
en: 'export'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: gtz
|
* @Author: gtz
|
||||||
* @Date: 2021-03-04 16:13:51
|
* @Date: 2021-03-04 16:13:51
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-04 15:24:39
|
* @LastEditTime: 2022-03-11 08:28:27
|
||||||
* @Description: file content
|
* @Description: file content
|
||||||
*/
|
*/
|
||||||
export default {
|
export default {
|
||||||
@ -30,6 +30,7 @@ export default {
|
|||||||
cancelButtonText: 'cancel',
|
cancelButtonText: 'cancel',
|
||||||
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:',
|
||||||
Description: 'Description',
|
Description: 'Description',
|
||||||
Remarks: 'Remarks',
|
Remarks: 'Remarks',
|
||||||
Yes: 'Yes',
|
Yes: 'Yes',
|
||||||
@ -126,6 +127,20 @@ export default {
|
|||||||
AlarmTypeCode: 'Alarm Type Code',
|
AlarmTypeCode: 'Alarm Type Code',
|
||||||
LevelCode: 'Level Code'
|
LevelCode: 'Level Code'
|
||||||
},
|
},
|
||||||
|
processLocation: {
|
||||||
|
sequence: 'Sequence',
|
||||||
|
locationName: 'Location Name',
|
||||||
|
isProcess: 'Location Type',
|
||||||
|
locationId: 'Location Id',
|
||||||
|
workSequenId: 'Work Sequence Id',
|
||||||
|
equipmentMark: 'Equipment Mark',
|
||||||
|
portAttrId: 'Port Attribute Id',
|
||||||
|
goodsShelves: 'Goods Shelves',
|
||||||
|
ProcessLocation: 'Process Location',
|
||||||
|
CacheLocation: 'Cache Location',
|
||||||
|
aShelf: 'Shelf A',
|
||||||
|
bShelf: 'Shelf B'
|
||||||
|
},
|
||||||
cache: {
|
cache: {
|
||||||
CacheCode: 'Ports Code',
|
CacheCode: 'Ports Code',
|
||||||
CacheName: 'Ports Name',
|
CacheName: 'Ports Name',
|
||||||
@ -147,7 +162,10 @@ export default {
|
|||||||
LocationName: 'Location Name',
|
LocationName: 'Location Name',
|
||||||
anotherName: 'Another Name',
|
anotherName: 'Another Name',
|
||||||
place: 'Place',
|
place: 'Place',
|
||||||
addCacheArea: 'add Ports Shelf'
|
addCacheArea: 'add Ports Shelf',
|
||||||
|
warning: 'Layers and Columns must be integer!',
|
||||||
|
logisticsEquipment: 'Logistics Equipment',
|
||||||
|
processEquipment: 'Process Equipment'
|
||||||
},
|
},
|
||||||
storageBox: {
|
storageBox: {
|
||||||
name: 'Name',
|
name: 'Name',
|
||||||
@ -295,15 +313,20 @@ export default {
|
|||||||
TaskLocation: 'Task Location',
|
TaskLocation: 'Task Location',
|
||||||
TargetLocation: 'Target Location',
|
TargetLocation: 'Target Location',
|
||||||
OrderName: 'Order Name',
|
OrderName: 'Order Name',
|
||||||
|
OrderType: 'Order Type',
|
||||||
OrderCode: 'Order Code',
|
OrderCode: 'Order Code',
|
||||||
IssueOrderTime: 'Issue Order Time',
|
IssueOrderTime: 'Issue Order Time',
|
||||||
|
startProduceTime: 'Start Produce Time',
|
||||||
TotalProcessName: 'Total Process Name',
|
TotalProcessName: 'Total Process Name',
|
||||||
Priority: 'Priority',
|
Priority: 'Priority',
|
||||||
OrderStatus: 'Order Status',
|
OrderStatus: 'Order Status',
|
||||||
|
triggerOrigin: 'Trigger Origin',
|
||||||
ProcessOrNot: 'Process Or Not',
|
ProcessOrNot: 'Process Or Not',
|
||||||
Unit: 'Unit',
|
Unit: 'Unit',
|
||||||
|
scrapQuantity: 'Scrap Quantity',
|
||||||
RelateProcess: 'Relate Process',
|
RelateProcess: 'Relate Process',
|
||||||
PlanProcessQuantity: 'Plan Process Quantity',
|
PlanProcessQuantity: 'Plan Process Quantity',
|
||||||
|
actualProcessQuantity: 'Actual Process Quantity',
|
||||||
SubProcessName: 'Sub Process Name',
|
SubProcessName: 'Sub Process Name',
|
||||||
TaskBoxNumber: 'Task Box Number',
|
TaskBoxNumber: 'Task Box Number',
|
||||||
FullBoxNumber: 'Full Box Number',
|
FullBoxNumber: 'Full Box Number',
|
||||||
@ -318,6 +341,8 @@ export default {
|
|||||||
LocationName: 'Location Name',
|
LocationName: 'Location Name',
|
||||||
LocationCode: 'Location Code',
|
LocationCode: 'Location Code',
|
||||||
PerformTaskManual: 'Perform Task Manual',
|
PerformTaskManual: 'Perform Task Manual',
|
||||||
processStorageLink: 'Process Storage Link'
|
processStorageLink: 'Process Storage Link',
|
||||||
|
SelectStorageType: 'Select Storage Type',
|
||||||
|
LocationStorageSetting: 'Location Storage Setting'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: gtz
|
* @Author: gtz
|
||||||
* @Date: 2021-03-04 16:13:51
|
* @Date: 2021-03-04 16:13:51
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-07 09:14:33
|
* @LastEditTime: 2022-03-11 08:28:40
|
||||||
*/
|
*/
|
||||||
export default {
|
export default {
|
||||||
visual: {
|
visual: {
|
||||||
@ -29,6 +29,7 @@ export default {
|
|||||||
cancelButtonText: '取消',
|
cancelButtonText: '取消',
|
||||||
Tips: '提示',
|
Tips: '提示',
|
||||||
TipsBefore: '确定删除',
|
TipsBefore: '确定删除',
|
||||||
|
TipsStorageBefore: '确定添加库位:',
|
||||||
Description: '描述',
|
Description: '描述',
|
||||||
Remarks: '备注',
|
Remarks: '备注',
|
||||||
Or: '或',
|
Or: '或',
|
||||||
@ -151,7 +152,10 @@ export default {
|
|||||||
place: '位置',
|
place: '位置',
|
||||||
addCacheArea: '添加货架',
|
addCacheArea: '添加货架',
|
||||||
addLocation: '添加库位',
|
addLocation: '添加库位',
|
||||||
status: '状态'
|
status: '状态',
|
||||||
|
warning: '行列标必须为整数!',
|
||||||
|
logisticsEquipment: '物流设备',
|
||||||
|
processEquipment: '工艺设备'
|
||||||
},
|
},
|
||||||
storageBox: {
|
storageBox: {
|
||||||
name: '存储箱名称',
|
name: '存储箱名称',
|
||||||
@ -248,10 +252,16 @@ export default {
|
|||||||
processLocation: {
|
processLocation: {
|
||||||
sequence: '顺序',
|
sequence: '顺序',
|
||||||
locationName: '库位名',
|
locationName: '库位名',
|
||||||
isProcess: '是否为工序准备箱',
|
isProcess: '库位类型',
|
||||||
locationId: '库位ID',
|
locationId: '库位ID',
|
||||||
workSequenId: '工序ID',
|
workSequenId: '工序ID',
|
||||||
equipmentMark: '设备标记'
|
equipmentMark: '设备标记',
|
||||||
|
portAttrId: '库位属性ID',
|
||||||
|
goodsShelves: '货架',
|
||||||
|
CacheLocation: '缓存区库位',
|
||||||
|
ProcessLocation: '工序库位',
|
||||||
|
aShelf: 'a货架',
|
||||||
|
bShelf: 'b货架'
|
||||||
},
|
},
|
||||||
productPool: {
|
productPool: {
|
||||||
productName: '产品名称',
|
productName: '产品名称',
|
||||||
@ -309,15 +319,20 @@ export default {
|
|||||||
TaskLocation: '任务库位',
|
TaskLocation: '任务库位',
|
||||||
TargetLocation: '目标库位',
|
TargetLocation: '目标库位',
|
||||||
OrderName: '工单名',
|
OrderName: '工单名',
|
||||||
|
OrderType: '工单类型',
|
||||||
OrderCode: '工单编码',
|
OrderCode: '工单编码',
|
||||||
IssueOrderTime: '下发工单时间',
|
IssueOrderTime: '下发工单时间',
|
||||||
|
startProduceTime: '开始生产时间',
|
||||||
TotalProcessName: '总工艺名称',
|
TotalProcessName: '总工艺名称',
|
||||||
Priority: '优先级',
|
Priority: '优先级',
|
||||||
|
scrapQuantity: '废片数量',
|
||||||
OrderStatus: '工单状态',
|
OrderStatus: '工单状态',
|
||||||
|
triggerOrigin: '工单发起方',
|
||||||
ProcessOrNot: '是否关联工艺',
|
ProcessOrNot: '是否关联工艺',
|
||||||
Unit: '单位',
|
Unit: '单位',
|
||||||
RelateProcess: '关联工艺',
|
RelateProcess: '关联工艺',
|
||||||
PlanProcessQuantity: '计划加工数量',
|
PlanProcessQuantity: '计划加工数量',
|
||||||
|
actualProcessQuantity: '实际加工数量',
|
||||||
SubProcessName: '分工艺',
|
SubProcessName: '分工艺',
|
||||||
TaskBoxNumber: '任务箱号',
|
TaskBoxNumber: '任务箱号',
|
||||||
FullBoxNumber: '空箱号',
|
FullBoxNumber: '空箱号',
|
||||||
@ -332,6 +347,8 @@ export default {
|
|||||||
LocationName: '库位名',
|
LocationName: '库位名',
|
||||||
LocationCode: '库位编码',
|
LocationCode: '库位编码',
|
||||||
PerformTaskManual: '手动执行任务',
|
PerformTaskManual: '手动执行任务',
|
||||||
processStorageLink: '工序关联库位'
|
processStorageLink: '工序关联库位',
|
||||||
|
SelectStorageType: '选择库位类型',
|
||||||
|
LocationStorageSetting: '库位存储箱设置'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -34,16 +34,6 @@
|
|||||||
<!-- <i class="el-icon-caret-bottom" /> -->
|
<!-- <i class="el-icon-caret-bottom" /> -->
|
||||||
</div>
|
</div>
|
||||||
<el-dropdown-menu slot="dropdown">
|
<el-dropdown-menu slot="dropdown">
|
||||||
<router-link to="/profile/index">
|
|
||||||
<el-dropdown-item>
|
|
||||||
<svg-icon class="item-icon" icon-class="user" />
|
|
||||||
{{ 'navbar.profile' | i18nFilter }}
|
|
||||||
</el-dropdown-item>
|
|
||||||
</router-link>
|
|
||||||
<el-dropdown-item @click.native="toHome">
|
|
||||||
<svg-icon class="item-icon" icon-class="help" />
|
|
||||||
{{ 'navbar.help' | i18nFilter }}
|
|
||||||
</el-dropdown-item>
|
|
||||||
<el-dropdown-item @click.native="logout">
|
<el-dropdown-item @click.native="logout">
|
||||||
<svg-icon class="item-icon" icon-class="logout" />
|
<svg-icon class="item-icon" icon-class="logout" />
|
||||||
{{ 'navbar.logOut' | i18nFilter }}
|
{{ 'navbar.logOut' | i18nFilter }}
|
||||||
|
@ -159,6 +159,7 @@ export const constantRoutes = [
|
|||||||
path: 'processInfo',
|
path: 'processInfo',
|
||||||
component: () => import('@/views/basicData/Process/processInfo'),
|
component: () => import('@/views/basicData/Process/processInfo'),
|
||||||
name: 'processInfo',
|
name: 'processInfo',
|
||||||
|
hidden: true,
|
||||||
meta: { title: routerTitle.basicData.process.processInfo?.[language] || routerTitle.basicData.process.processInfo.en, icon: 'form', affix: true, required: true, requireToken: true }
|
meta: { title: routerTitle.basicData.process.processInfo?.[language] || routerTitle.basicData.process.processInfo.en, icon: 'form', affix: true, required: true, requireToken: true }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -313,6 +314,14 @@ export const constantRoutes = [
|
|||||||
import('@/views/basicData/Warehouse/components/ProcessStorageManagement-info'),
|
import('@/views/basicData/Warehouse/components/ProcessStorageManagement-info'),
|
||||||
name: 'ProcessStorageManagementInfo',
|
name: 'ProcessStorageManagementInfo',
|
||||||
meta: { title: routerTitle.Warehouse.ProcessStorageManagement?.[language] || routerTitle.Warehouse.ProcessStorageManagement.en, icon: 'form', affix: true, required: true, requireToken: true }
|
meta: { title: routerTitle.Warehouse.ProcessStorageManagement?.[language] || routerTitle.Warehouse.ProcessStorageManagement.en, icon: 'form', affix: true, required: true, requireToken: true }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/ProcessStorageLink',
|
||||||
|
hidden: true,
|
||||||
|
component: () =>
|
||||||
|
import('@/views/basicData/Warehouse/components/processStorageLink'),
|
||||||
|
name: 'ProcessStorageLink',
|
||||||
|
meta: { title: routerTitle.Warehouse.ProcessStorageManagement?.[language] || routerTitle.Warehouse.ProcessStorageManagement.en, icon: 'form', affix: true, required: true, requireToken: true }
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -426,6 +435,7 @@ export const constantRoutes = [
|
|||||||
path: 'currentSubstrate',
|
path: 'currentSubstrate',
|
||||||
component: () => import('@/views/report-manage/CurrentSubstrate'),
|
component: () => import('@/views/report-manage/CurrentSubstrate'),
|
||||||
name: 'currentSubstrate',
|
name: 'currentSubstrate',
|
||||||
|
hidden: true,
|
||||||
meta: { title: routerTitle.form.currentSubstrate?.[language] || routerTitle.form.currentSubstrate.en, icon: 'form', affix: true, required: true, requireToken: true }
|
meta: { title: routerTitle.form.currentSubstrate?.[language] || routerTitle.form.currentSubstrate.en, icon: 'form', affix: true, required: true, requireToken: true }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -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-04 10:39:52
|
* @LastEditTime: 2022-03-11 09:48:52
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -91,7 +91,7 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<el-form-item :label="$t('module.basicData.ScrapInfo.name')" prop="equipmentId">
|
<el-form-item :label="$t('module.basicData.ScrapInfo.name')" prop="equipmentId">
|
||||||
<el-select v-model="dataForm.equipmentId" filterable :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.ScrapInfo.name')])" clearable :style="{width: '100%'}" @change="getScrapGrade">
|
<el-select v-model="dataForm.equipmentId" filterable :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.ScrapInfo.name')])" clearable :style="{width: '100%'}">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="(item, index) in device"
|
v-for="(item, index) in device"
|
||||||
:key="index"
|
:key="index"
|
||||||
@ -101,10 +101,6 @@
|
|||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<el-form-item v-if="tag" :label="$t('module.basicData.ScrapInfo.wasteGrade')" prop="ewasteGrade">
|
|
||||||
<el-input v-model="wasteGrade" clear readonly :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.ScrapInfo.wasteGrade')])" :disabled="true" />
|
|
||||||
</el-form-item>
|
|
||||||
|
|
||||||
<el-form-item :label="$t('module.basicData.ScrapInfo.cause')" prop="scrapReasonId">
|
<el-form-item :label="$t('module.basicData.ScrapInfo.cause')" prop="scrapReasonId">
|
||||||
<!-- <el-input v-model="dataForm.registerPerson" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.ScrapInfo.RegisterPerson')])" clearable :style="{width: '100%'}" /> -->
|
<!-- <el-input v-model="dataForm.registerPerson" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.ScrapInfo.RegisterPerson')])" clearable :style="{width: '100%'}" /> -->
|
||||||
<el-select
|
<el-select
|
||||||
@ -139,8 +135,9 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import moment from 'moment'
|
||||||
import i18n from '@/lang'
|
import i18n from '@/lang'
|
||||||
import { getScrapInfo, editScrapInfo, addScrapInfo, getScrap } from '@/api/quality-manage/scrap'
|
import { getScrapInfo, editScrapInfo, addScrapInfo } from '@/api/quality-manage/scrap'
|
||||||
import { scrapReasonList } from '@/api/dict'
|
import { scrapReasonList } from '@/api/dict'
|
||||||
import { getDictWorker } from '@/api/dict'
|
import { getDictWorker } from '@/api/dict'
|
||||||
import { getEqList } from '@/api/equipment/maintain'
|
import { getEqList } from '@/api/equipment/maintain'
|
||||||
@ -168,6 +165,7 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
visible: false,
|
visible: false,
|
||||||
|
moment,
|
||||||
dataForm: {
|
dataForm: {
|
||||||
id: 0,
|
id: 0,
|
||||||
source: undefined,
|
source: undefined,
|
||||||
@ -182,19 +180,9 @@ export default {
|
|||||||
wasteGradeArr,
|
wasteGradeArr,
|
||||||
entryType,
|
entryType,
|
||||||
rules: {
|
rules: {
|
||||||
name: [{
|
|
||||||
required: true,
|
|
||||||
message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.ScrapInfo.WasteName')]),
|
|
||||||
trigger: 'blur'
|
|
||||||
}],
|
|
||||||
code: [{
|
|
||||||
required: true,
|
|
||||||
message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.ScrapInfo.WasteCode')]),
|
|
||||||
trigger: 'blur'
|
|
||||||
}],
|
|
||||||
equipmentId: [{
|
equipmentId: [{
|
||||||
required: true,
|
required: true,
|
||||||
message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.ScrapInfo.equipmentId')]),
|
message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.ScrapInfo.name')]),
|
||||||
trigger: 'change'
|
trigger: 'change'
|
||||||
}],
|
}],
|
||||||
substrateId: [{
|
substrateId: [{
|
||||||
@ -206,6 +194,11 @@ export default {
|
|||||||
required: true,
|
required: true,
|
||||||
message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.ScrapInfo.registerPerson')]),
|
message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.ScrapInfo.registerPerson')]),
|
||||||
trigger: 'change'
|
trigger: 'change'
|
||||||
|
}],
|
||||||
|
scrapReasonId: [{
|
||||||
|
required: true,
|
||||||
|
message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.ScrapInfo.cause')]),
|
||||||
|
trigger: 'change'
|
||||||
}]
|
}]
|
||||||
},
|
},
|
||||||
dict: {
|
dict: {
|
||||||
@ -214,7 +207,6 @@ export default {
|
|||||||
orderList: []
|
orderList: []
|
||||||
},
|
},
|
||||||
device: [],
|
device: [],
|
||||||
wasteGrade: '',
|
|
||||||
tag: false
|
tag: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -222,19 +214,6 @@ export default {
|
|||||||
this.getDict()
|
this.getDict()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getScrapGrade(val) {
|
|
||||||
getScrap(val).then(res => {
|
|
||||||
if (res.code === 0) {
|
|
||||||
if (res.data) {
|
|
||||||
this.tag = true
|
|
||||||
this.wasteGrade = res.data.dataName
|
|
||||||
} else {
|
|
||||||
this.tag = false
|
|
||||||
this.wasteGrade = ''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
},
|
|
||||||
onClose() {
|
onClose() {
|
||||||
this.$refs['dataForm'].resetFields()
|
this.$refs['dataForm'].resetFields()
|
||||||
},
|
},
|
||||||
@ -246,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().format('YYYY-MM-DD HH:mm:ss')
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-04-06 19:33:11
|
* @Date: 2021-04-06 19:33:11
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2021-07-09 09:42:54
|
* @LastEditTime: 2022-03-10 16:54:48
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -257,7 +257,7 @@ export default {
|
|||||||
if (res.code === 0) {
|
if (res.code === 0) {
|
||||||
this.list = res.data.records
|
this.list = res.data.records
|
||||||
this.list.forEach(item => {
|
this.list.forEach(item => {
|
||||||
item.roleName = item.stringList.toString()
|
item.roleName = item.stringList?.toString()
|
||||||
})
|
})
|
||||||
this.total = res.data.total
|
this.total = res.data.total
|
||||||
this.listLoading = false
|
this.listLoading = false
|
||||||
|
@ -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-03 16:43:26
|
* @LastEditTime: 2022-03-09 16:53:23
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -16,7 +16,7 @@
|
|||||||
</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>
|
||||||
<el-option v-for="item in eqList" :key="item.id" :value="item.id" :label="item.enName" />
|
<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>
|
||||||
<!-- <el-form-item :label="$t('module.art.processList.type')" prop="type">
|
<!-- <el-form-item :label="$t('module.art.processList.type')" prop="type">
|
||||||
@ -24,7 +24,7 @@
|
|||||||
<el-option v-for="item in typeList" :key="item.id" :value="item.id" :label="item.name" />
|
<el-option v-for="item in typeList" :key="item.id" :value="item.id" :label="item.name" />
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item> -->
|
</el-form-item> -->
|
||||||
<el-form-item :label="$t('module.art.processList.description')" prop="address">
|
<el-form-item :label="$t('module.art.processList.description')" prop="description">
|
||||||
<el-input v-model="dataForm.description" :placeholder="$i18nForm(['placeholder.input', $t('module.art.processList.description')])" clearable />
|
<el-input v-model="dataForm.description" :placeholder="$i18nForm(['placeholder.input', $t('module.art.processList.description')])" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
@ -88,10 +88,7 @@ export default {
|
|||||||
this.$refs['dataForm'].resetFields()
|
this.$refs['dataForm'].resetFields()
|
||||||
if (this.dataForm.id) {
|
if (this.dataForm.id) {
|
||||||
getInfo({ id: this.dataForm.id }).then(res => {
|
getInfo({ id: this.dataForm.id }).then(res => {
|
||||||
this.dataForm.id = res.data.id
|
this.dataForm = res.data
|
||||||
this.dataForm.name = res.data.name
|
|
||||||
this.dataForm.type = res.data.type
|
|
||||||
this.dataForm.description = res.data.description
|
|
||||||
this.dataForm.equipmentIds = res.data.equipments.map(item => {
|
this.dataForm.equipmentIds = res.data.equipments.map(item => {
|
||||||
return item.id
|
return item.id
|
||||||
})
|
})
|
||||||
@ -101,7 +98,6 @@ export default {
|
|||||||
},
|
},
|
||||||
// 表单提交
|
// 表单提交
|
||||||
dataFormSubmit() {
|
dataFormSubmit() {
|
||||||
console.log(!this.dataForm.id)
|
|
||||||
this.$refs['dataForm'].validate((valid) => {
|
this.$refs['dataForm'].validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
const data = {
|
const data = {
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: gtz
|
* @Author: gtz
|
||||||
* @Date: 2021-04-06 20:07:22
|
* @Date: 2021-04-06 20:07:22
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-03 17:00:54
|
* @LastEditTime: 2022-03-09 16:19:15
|
||||||
* @Description: file content
|
* @Description: file content
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -128,7 +128,7 @@ export default {
|
|||||||
// edit here
|
// edit here
|
||||||
const res = await equipmentlistList()
|
const res = await equipmentlistList()
|
||||||
if (res.code === 0) {
|
if (res.code === 0) {
|
||||||
this.eqList = res.data.records
|
this.eqList = res.data
|
||||||
}
|
}
|
||||||
this.getList()
|
this.getList()
|
||||||
},
|
},
|
||||||
|
@ -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-04 19:08:00
|
* @LastEditTime: 2022-03-10 21:00:58
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -17,7 +17,9 @@
|
|||||||
@getDataList="getList"
|
@getDataList="getList"
|
||||||
@add="addNew"
|
@add="addNew"
|
||||||
/>
|
/>
|
||||||
<el-button type="success" @click="goback()">{{ 'btn.back' | i18nFilter }}</el-button>
|
<div style="title">货架编码:{{ shCode }} 货架名称:{{ shName }} 库存量:{{ num }}
|
||||||
|
<el-button type="success" @click="goback()">{{ 'btn.back' | i18nFilter }}</el-button>
|
||||||
|
</div>
|
||||||
<base-table
|
<base-table
|
||||||
:page="listQuery.current"
|
:page="listQuery.current"
|
||||||
:limit="listQuery.size"
|
:limit="listQuery.size"
|
||||||
@ -106,7 +108,7 @@ const tableProps = [
|
|||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'status',
|
prop: 'statusName',
|
||||||
label: i18n.t('module.basicData.cache.status'),
|
label: i18n.t('module.basicData.cache.status'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
}
|
}
|
||||||
@ -127,13 +129,18 @@ export default {
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
shCode: '',
|
||||||
|
shName: '',
|
||||||
|
num: 0,
|
||||||
addOrUpdateVisible: false,
|
addOrUpdateVisible: false,
|
||||||
keyNameAdd: i18n.t('module.basicData.visual.keyword'),
|
keyNameAdd: i18n.t('module.basicData.visual.keyword'),
|
||||||
placeholderName: this.$t('module.basicData.cache.LocationName'),
|
placeholderName: this.$t('module.basicData.cache.LocationName'),
|
||||||
tableBtn,
|
tableBtn,
|
||||||
trueWidth: 200,
|
trueWidth: 200,
|
||||||
tableProps,
|
tableProps,
|
||||||
list: [],
|
list: [{
|
||||||
|
statusName: ''
|
||||||
|
}],
|
||||||
listLoading: true,
|
listLoading: true,
|
||||||
listQuery: {
|
listQuery: {
|
||||||
current: 1,
|
current: 1,
|
||||||
@ -145,6 +152,9 @@ export default {
|
|||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.listQuery.shelfId = this.$route.query.id
|
this.listQuery.shelfId = this.$route.query.id
|
||||||
|
this.shCode = this.$route.query.code
|
||||||
|
this.shName = this.$route.query.shelfName
|
||||||
|
this.num = this.$route.query.columnNum
|
||||||
this.getList()
|
this.getList()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@ -180,6 +190,16 @@ export default {
|
|||||||
if (response.data.records) {
|
if (response.data.records) {
|
||||||
this.list = response.data.records
|
this.list = response.data.records
|
||||||
console.log(this.list)
|
console.log(this.list)
|
||||||
|
// 1是Working Port,2是Buffer Port,3是Exception Port与status进行替换
|
||||||
|
for (var x = 0; x < this.list.length; x++) {
|
||||||
|
if (this.list[x].status === 1) {
|
||||||
|
this.list[x].statusName = 'Working Port'
|
||||||
|
} else if (this.list[x].status === 2) {
|
||||||
|
this.list[x].statusName = 'Buffer Port'
|
||||||
|
} else if (this.list[x].status === 3) {
|
||||||
|
this.list[x].statusName = 'Exception Port'
|
||||||
|
}
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
this.list.splice(0, this.list.length)
|
this.list.splice(0, this.list.length)
|
||||||
}
|
}
|
||||||
|
@ -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-04 18:59:53
|
* @LastEditTime: 2022-03-10 21:14:13
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -29,8 +29,18 @@
|
|||||||
<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 :label="$t('module.basicData.cache.status')" prop="status">
|
||||||
|
<el-select v-model="dataForm.status">
|
||||||
|
<el-option
|
||||||
|
v-for="item in options"
|
||||||
|
:key="item.value"
|
||||||
|
:label="item.label"
|
||||||
|
:value="item.value"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<span slot="footer" class="dialog-footer">
|
<span slot="footer" class="dialog-footer">
|
||||||
@ -61,11 +71,25 @@ export default {
|
|||||||
code: '',
|
code: '',
|
||||||
locationNameAlias: '',
|
locationNameAlias: '',
|
||||||
rowNum: '',
|
rowNum: '',
|
||||||
columns: '',
|
columns: 0,
|
||||||
layers: '',
|
layers: 0,
|
||||||
status: '',
|
status: null,
|
||||||
locationType: ''
|
locationType: ''
|
||||||
},
|
},
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
value: 1,
|
||||||
|
label: 'Working Port'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 2,
|
||||||
|
label: 'Buffer Port'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 3,
|
||||||
|
label: 'Exception Port'
|
||||||
|
}
|
||||||
|
],
|
||||||
dataRule: {
|
dataRule: {
|
||||||
name: [
|
name: [
|
||||||
{ required: true, message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.cache.LocationName')]), trigger: 'blur' }
|
{ required: true, message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.cache.LocationName')]), trigger: 'blur' }
|
||||||
@ -73,6 +97,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: [{
|
||||||
|
// type: 'number',
|
||||||
|
// message: this.$t('module.basicData.cache.warning'),
|
||||||
|
// trigger: "blur"
|
||||||
|
// }],
|
||||||
|
// columns: [{
|
||||||
|
// type: 'number',
|
||||||
|
// message: this.$t('module.basicData.cache.warning'),
|
||||||
|
// trigger: "blur"
|
||||||
|
// }]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -85,6 +119,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)
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
locationCode().then(res => {
|
locationCode().then(res => {
|
||||||
|
@ -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-03 18:39:03
|
* @LastEditTime: 2022-03-10 20:20:44
|
||||||
* @FilePath: \basic-admin\src\components\BaseTable\subcomponents\CheckDetail.vue
|
* @FilePath: \basic-admin\src\components\BaseTable\subcomponents\CheckDetail.vue
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
@ -24,7 +24,10 @@ export default {
|
|||||||
this.$router.push({
|
this.$router.push({
|
||||||
name: 'locationAdd',
|
name: 'locationAdd',
|
||||||
query: {
|
query: {
|
||||||
id: this.injectData.id
|
id: this.injectData.id,
|
||||||
|
code: this.injectData.code,
|
||||||
|
columnNum: this.injectData.columnNum,
|
||||||
|
shelfName: this.injectData.shelfName
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 15:41:11
|
* @Date: 2020-12-29 15:41:11
|
||||||
* @LastEditors: zwq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2021-03-11 09:22:52
|
* @LastEditTime: 2022-03-10 19:20:22
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -25,7 +25,7 @@
|
|||||||
@clickBtn="handleClick"
|
@clickBtn="handleClick"
|
||||||
/>
|
/>
|
||||||
</base-table>
|
</base-table>
|
||||||
<shelfAttr-add v-if="addOrUpdateVisible" ref="addOrUpdate" :area-id="listQuery.areaId" @refreshDataList="getList" />
|
<shelfAttr-add v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getList" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -163,7 +163,7 @@ export default {
|
|||||||
addNew(id) {
|
addNew(id) {
|
||||||
this.addOrUpdateVisible = true
|
this.addOrUpdateVisible = true
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.addOrUpdate.init(id)
|
this.$refs.addOrUpdate.init(id, true)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
goback() {
|
goback() {
|
||||||
|
@ -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-03 19:00:08
|
* @LastEditTime: 2022-03-10 19:38:31
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -47,7 +47,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { shelfList, shelfDetail, shelfUpdate, shelfAdd, shelfCode } from '@/api/basicData/Cache/shelf'
|
import { shelfDetail, shelfUpdate, shelfAdd, shelfCode } from '@/api/basicData/Cache/shelf'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
@ -86,36 +86,60 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
init(id, isPage) {
|
// init(id, isPage) {
|
||||||
this.isPage = isPage || false
|
// this.isPage = isPage || false
|
||||||
|
// this.dataForm.id = id || ''
|
||||||
|
// if (!this.isPage) {
|
||||||
|
// this.dataForm.areaId = this.areaId
|
||||||
|
// }
|
||||||
|
// this.areaArr.splice(0, this.areaArr.length)
|
||||||
|
// const params = {
|
||||||
|
// current: 1,
|
||||||
|
// size: 500
|
||||||
|
// }
|
||||||
|
// shelfList(params).then(response => {
|
||||||
|
// if (response.data.records) {
|
||||||
|
// this.areaArr = response.data.records
|
||||||
|
// }
|
||||||
|
// })
|
||||||
|
// this.visible = true
|
||||||
|
// this.$nextTick(() => {
|
||||||
|
// this.$refs['dataForm'].resetFields()
|
||||||
|
// if (this.dataForm.id) {
|
||||||
|
// shelfDetail(this.dataForm.id).then(res => {
|
||||||
|
// this.dataForm = res.data
|
||||||
|
// })
|
||||||
|
// } else {
|
||||||
|
// shelfCode().then(res => {
|
||||||
|
// this.dataForm.code = res.data
|
||||||
|
// })
|
||||||
|
// }
|
||||||
|
// })
|
||||||
|
// },
|
||||||
|
init(id) {
|
||||||
this.dataForm.id = id || ''
|
this.dataForm.id = id || ''
|
||||||
if (!this.isPage) {
|
|
||||||
this.dataForm.areaId = this.areaId
|
|
||||||
}
|
|
||||||
this.areaArr.splice(0, this.areaArr.length)
|
|
||||||
const params = {
|
|
||||||
current: 1,
|
|
||||||
size: 500
|
|
||||||
}
|
|
||||||
shelfList(params).then(response => {
|
|
||||||
if (response.data.records) {
|
|
||||||
this.areaArr = response.data.records
|
|
||||||
}
|
|
||||||
})
|
|
||||||
this.visible = true
|
this.visible = true
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs['dataForm'].resetFields()
|
this.$refs['dataForm'].resetFields()
|
||||||
if (this.dataForm.id) {
|
if (this.dataForm.id) {
|
||||||
|
// console.log(this.dataForm)
|
||||||
shelfDetail(this.dataForm.id).then(res => {
|
shelfDetail(this.dataForm.id).then(res => {
|
||||||
|
// console.log(res)
|
||||||
this.dataForm = res.data
|
this.dataForm = res.data
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
|
this.dataForm.shelfName = ''
|
||||||
shelfCode().then(res => {
|
shelfCode().then(res => {
|
||||||
this.dataForm.code = res.data
|
this.dataForm.code = res.data
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
// console.log(this.dataForm)
|
||||||
},
|
},
|
||||||
|
// getClose() {
|
||||||
|
// this.dataForm.shelfName = ''
|
||||||
|
// console.log(this.dataForm)
|
||||||
|
// },
|
||||||
// 表单提交
|
// 表单提交
|
||||||
dataFormSubmit() {
|
dataFormSubmit() {
|
||||||
this.$refs['dataForm'].validate((valid) => {
|
this.$refs['dataForm'].validate((valid) => {
|
||||||
@ -136,7 +160,7 @@ export default {
|
|||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
shelfAdd(data).then(res => {
|
shelfAdd(data).then(res => {
|
||||||
console.log(res)
|
// console.log(res)
|
||||||
this.$message({
|
this.$message({
|
||||||
message: this.$t('module.basicData.visual.success'),
|
message: this.$t('module.basicData.visual.success'),
|
||||||
type: 'success',
|
type: '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-01-11 16:45:30
|
* @LastEditTime: 2022-03-09 16:53:31
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -52,7 +52,7 @@ export default {
|
|||||||
id: 0,
|
id: 0,
|
||||||
storageBoxName: '',
|
storageBoxName: '',
|
||||||
code: '',
|
code: '',
|
||||||
status: 0,
|
status: '',
|
||||||
enName: '',
|
enName: '',
|
||||||
note: ''
|
note: ''
|
||||||
},
|
},
|
||||||
|
@ -2,17 +2,17 @@
|
|||||||
* @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-04 19:00:14
|
* @LastEditTime: 2022-03-10 20:18:52
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<!-- <head-form
|
<head-form
|
||||||
:placeholder-name="placeholderName"
|
:placeholder-name="placeholderName"
|
||||||
:key-name="keyName"
|
:key-name="keyName"
|
||||||
@getDataList="getList"
|
@getDataList="getList"
|
||||||
@add="addNew"
|
@add="addNew"
|
||||||
/> -->
|
/>
|
||||||
<base-table
|
<base-table
|
||||||
:page="listQuery.current"
|
:page="listQuery.current"
|
||||||
:limit="listQuery.size"
|
:limit="listQuery.size"
|
||||||
@ -39,7 +39,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>import i18n from '@/lang'
|
<script>import i18n from '@/lang'
|
||||||
// import HeadForm from '@/components/basicData/HeadForm'
|
import HeadForm from '@/components/basicData/HeadForm'
|
||||||
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'
|
||||||
@ -108,7 +108,7 @@ const tableProps = [
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Area',
|
name: 'Area',
|
||||||
components: { Pagination, BaseTable, MethodBtn, shelfAttrAdd },
|
components: { Pagination, BaseTable, MethodBtn, HeadForm, shelfAttrAdd },
|
||||||
filters: {
|
filters: {
|
||||||
statusFilter(status) {
|
statusFilter(status) {
|
||||||
const statusMap = {
|
const statusMap = {
|
||||||
@ -122,7 +122,7 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
addOrUpdateVisible: false,
|
addOrUpdateVisible: false,
|
||||||
keyName: i18n.t('module.basicData.visual.keyword'),
|
keyName: this.$t('module.basicData.cache.ShelfName'),
|
||||||
placeholderName: this.$t('module.basicData.cache.ShelfName'),
|
placeholderName: this.$t('module.basicData.cache.ShelfName'),
|
||||||
tableBtn,
|
tableBtn,
|
||||||
trueWidth: 200,
|
trueWidth: 200,
|
||||||
@ -178,9 +178,9 @@ export default {
|
|||||||
getList(key) {
|
getList(key) {
|
||||||
this.listLoading = true
|
this.listLoading = true
|
||||||
this.listQuery.shelfName = key
|
this.listQuery.shelfName = key
|
||||||
console.log(this.listQuery)
|
// console.log(this.listQuery)
|
||||||
shelfList(this.listQuery).then(response => {
|
shelfList(this.listQuery).then(response => {
|
||||||
// console.log(response)
|
console.log(response)
|
||||||
if (response.data.records) {
|
if (response.data.records) {
|
||||||
this.list = response.data.records
|
this.list = response.data.records
|
||||||
this.list.forEach(item => {
|
this.list.forEach(item => {
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 15:41:11
|
* @Date: 2020-12-29 15:41:11
|
||||||
* @LastEditors: zwq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2022-01-11 16:46:48
|
* @LastEditTime: 2022-03-10 10:55:34
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -81,13 +81,13 @@ const tableProps = [
|
|||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'storageBoxName',
|
prop: 'code',
|
||||||
label: i18n.t('module.basicData.storageBox.name'),
|
label: i18n.t('module.basicData.storageBox.code'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'code',
|
prop: 'storageBoxName',
|
||||||
label: i18n.t('module.basicData.storageBox.code'),
|
label: i18n.t('module.basicData.storageBox.name'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -124,8 +124,8 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
addOrUpdateVisible: false,
|
addOrUpdateVisible: false,
|
||||||
keyName: i18n.t('module.basicData.visual.keyword'),
|
keyName: this.$t('module.basicData.storageBox.name'),
|
||||||
placeholderName: this.$t('module.basicData.storageBox.name') + this.$t('module.basicData.visual.Or') + this.$t('module.basicData.storageBox.code'),
|
placeholderName: this.$t('module.basicData.storageBox.name'),
|
||||||
tableBtn,
|
tableBtn,
|
||||||
trueWidth: 200,
|
trueWidth: 200,
|
||||||
tableProps,
|
tableProps,
|
||||||
|
@ -54,8 +54,18 @@
|
|||||||
/>
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
</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-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 :label="$t('module.basicData.equipment.EquipmentType')" prop="EquipmentType">
|
||||||
|
<el-select v-model="dataForm.equipmentType" :placeholder="dataForm.equipmentType">
|
||||||
|
<el-option
|
||||||
|
v-for="item in options"
|
||||||
|
:key="item.value"
|
||||||
|
:label="item.label"
|
||||||
|
:value="item.value"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
@ -412,6 +422,16 @@ export default {
|
|||||||
maintenanceTime: '',
|
maintenanceTime: '',
|
||||||
maintenanceCycle: ''
|
maintenanceCycle: ''
|
||||||
},
|
},
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
value: '1',
|
||||||
|
label: this.$t('module.basicData.cache.logisticsEquipment')
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: '2',
|
||||||
|
label: this.$t('module.basicData.cache.processEquipment')
|
||||||
|
}
|
||||||
|
],
|
||||||
rules: {
|
rules: {
|
||||||
name: [{
|
name: [{
|
||||||
required: true,
|
required: true,
|
||||||
@ -422,11 +442,6 @@ 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.input', this.$t('module.basicData.equipment.EquipmentType')]),
|
|
||||||
trigger: 'change'
|
|
||||||
}]
|
}]
|
||||||
// maintenanceCycle: [{
|
// maintenanceCycle: [{
|
||||||
// required: true,
|
// required: true,
|
||||||
@ -496,6 +511,7 @@ export default {
|
|||||||
this.listLoading = true
|
this.listLoading = true
|
||||||
equipmentInfoDetail(this.listQuery.equipmentId).then(res => {
|
equipmentInfoDetail(this.listQuery.equipmentId).then(res => {
|
||||||
this.dataForm = res.data
|
this.dataForm = res.data
|
||||||
|
console.log(this.dataForm)
|
||||||
})
|
})
|
||||||
equipmentInfoAttrList(this.listQuery).then(response => {
|
equipmentInfoAttrList(this.listQuery).then(response => {
|
||||||
if (response.data.records) {
|
if (response.data.records) {
|
||||||
@ -514,9 +530,9 @@ export default {
|
|||||||
},
|
},
|
||||||
getList() {
|
getList() {
|
||||||
this.listLoading = true
|
this.listLoading = true
|
||||||
console.log(this.listQuery)
|
// console.log(this.listQuery)
|
||||||
equipmentInfoAttrList(this.listQuery).then(response => {
|
equipmentInfoAttrList(this.listQuery).then(response => {
|
||||||
console.log(response)
|
// console.log(response)
|
||||||
if (response.data.records) {
|
if (response.data.records) {
|
||||||
this.list = response.data.records
|
this.list = response.data.records
|
||||||
} else {
|
} else {
|
||||||
@ -549,13 +565,14 @@ export default {
|
|||||||
},
|
},
|
||||||
// 表单提交
|
// 表单提交
|
||||||
dataFormSubmit() {
|
dataFormSubmit() {
|
||||||
console.log(this.dataForm)
|
// console.log(this.dataForm)
|
||||||
console.log(this.dataForm.eInfo)
|
// console.log(this.dataForm.eInfo)
|
||||||
this.$refs['dataForm'].validate((valid) => {
|
this.$refs['dataForm'].validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
const data = this.dataForm
|
const data = this.dataForm
|
||||||
data.id = this.listQuery.equipmentId
|
data.id = this.listQuery.equipmentId
|
||||||
if (this.listQuery.equipmentId) {
|
if (this.listQuery.equipmentId) {
|
||||||
|
// console.log(data)
|
||||||
equipmentInfoUpdate(data).then(res => {
|
equipmentInfoUpdate(data).then(res => {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: this.$t('module.basicData.visual.success'),
|
message: this.$t('module.basicData.visual.success'),
|
||||||
@ -621,9 +638,9 @@ export default {
|
|||||||
'fileUrl': res.data[0].fileUrl,
|
'fileUrl': res.data[0].fileUrl,
|
||||||
'typeCode': this.typeCode.typeCode
|
'typeCode': this.typeCode.typeCode
|
||||||
}
|
}
|
||||||
console.log(data)
|
// console.log(data)
|
||||||
equipmentInfoFileAdd(data).then(res => {
|
equipmentInfoFileAdd(data).then(res => {
|
||||||
console.log(res)
|
// console.log(res)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
downloadFile(id) {
|
downloadFile(id) {
|
||||||
|
@ -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-05 11:01:57
|
* @LastEditTime: 2022-03-10 15:09:41
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -93,7 +93,7 @@ const tableProps = [
|
|||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'equipmentType',
|
prop: 'typeName',
|
||||||
label: i18n.t('module.basicData.equipment.EquipmentType'),
|
label: i18n.t('module.basicData.equipment.EquipmentType'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
@ -130,12 +130,14 @@ export default {
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
keyName: i18n.t('module.basicData.visual.keyword'),
|
keyName: this.$t('module.basicData.equipment.EquipmentCode'),
|
||||||
placeholderName: this.$t('module.basicData.equipment.EquipmentName') + this.$t('module.basicData.visual.Or') + this.$t('module.basicData.equipment.EquipmentCode'),
|
placeholderName: this.$t('module.basicData.equipment.EquipmentCode'),
|
||||||
tableBtn,
|
tableBtn,
|
||||||
trueWidth: 240,
|
trueWidth: 240,
|
||||||
tableProps,
|
tableProps,
|
||||||
list: [],
|
list: [{
|
||||||
|
typeName: ''
|
||||||
|
}],
|
||||||
total: 0,
|
total: 0,
|
||||||
listLoading: true,
|
listLoading: true,
|
||||||
listQuery: {
|
listQuery: {
|
||||||
@ -180,11 +182,20 @@ export default {
|
|||||||
console.log(response)
|
console.log(response)
|
||||||
if (response.data.records) {
|
if (response.data.records) {
|
||||||
this.list = response.data.records
|
this.list = response.data.records
|
||||||
|
// 1是物流设备,2是工艺设备,与equipmentType进行替换
|
||||||
|
for (var x = 0; x < this.list.length; x++) {
|
||||||
|
if (this.list[x].equipmentType === '1') {
|
||||||
|
this.list[x].typeName = this.$t('module.basicData.cache.logisticsEquipment')
|
||||||
|
} else if (this.list[x].equipmentType === '2') {
|
||||||
|
this.list[x].typeName = this.$t('module.basicData.cache.processEquipment')
|
||||||
|
}
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
this.list.splice(0, this.list.length)
|
this.list.splice(0, this.list.length)
|
||||||
}
|
}
|
||||||
this.total = response.data.total
|
this.total = response.data.total
|
||||||
this.listLoading = false
|
this.listLoading = false
|
||||||
|
console.log(this.list)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
// 新增 / 修改
|
// 新增 / 修改
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 15:41:11
|
* @Date: 2020-12-29 15:41:11
|
||||||
* @LastEditors: zwq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2021-05-21 14:41:36
|
* @LastEditTime: 2022-03-10 13:43:01
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -127,11 +127,6 @@ const tableProps = [
|
|||||||
label: i18n.t('module.basicData.staff.Wechat'),
|
label: i18n.t('module.basicData.staff.Wechat'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
|
||||||
prop: 'majorArr',
|
|
||||||
label: i18n.t('module.basicData.staff.Profession'),
|
|
||||||
align: 'center'
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
prop: 'workshop',
|
prop: 'workshop',
|
||||||
label: i18n.t('module.basicData.staff.Workshop'),
|
label: i18n.t('module.basicData.staff.Workshop'),
|
||||||
|
@ -4,32 +4,65 @@
|
|||||||
* @Author: fzq
|
* @Author: fzq
|
||||||
* @Date: 2022-03-04 11:12:42
|
* @Date: 2022-03-04 11:12:42
|
||||||
* @LastEditors: fzq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2022-03-06 19:17:36
|
* @LastEditTime: 2022-03-09 16:12:04
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<el-dialog
|
<el-dialog
|
||||||
:title="!dataForm.locationId ? '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" label-width="130px" @keyup.enter.native="dataFormSubmit()">
|
<el-form ref="dataForm" :model="dataForm" label-width="130px" @keyup.enter.native="dataFormSubmit()">
|
||||||
<el-form-item :label="$t('module.basicData.processLocation.sequence')" prop="sequence">
|
|
||||||
<el-input v-model="dataForm.sequence" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.processLocation.sequence')])" clearable />
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item :label="$t('module.basicData.processLocation.workSequenId')" prop="workSequenId">
|
<el-form-item :label="$t('module.basicData.processLocation.workSequenId')" prop="workSequenId">
|
||||||
<el-input v-model="dataForm.workSequenId" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.processLocation.workSequenId')])" clearable />
|
<el-input v-model="dataForm.workSequenId" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.processLocation.workSequenId')])" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<!-- <el-form-item :label="$t('module.basicData.processLocation.locationName')" prop="locationName">
|
||||||
|
<el-input v-model="dataForm.locationId" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.processLocation.locationName')])" clearable />
|
||||||
|
</el-form-item> -->
|
||||||
<el-form-item :label="$t('module.basicData.processLocation.locationName')" prop="locationName">
|
<el-form-item :label="$t('module.basicData.processLocation.locationName')" prop="locationName">
|
||||||
<el-input v-model="dataForm.locationName" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.processLocation.locationName')])" clearable />
|
<el-select v-model="dataForm.locationName" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.processLocation.locationName')])">
|
||||||
|
<el-option
|
||||||
|
v-for="item in dataForm"
|
||||||
|
:key="item.locationName"
|
||||||
|
:label="item.locationName"
|
||||||
|
:value="item.locationName"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :label="$t('module.basicData.processLocation.locationId')" prop="locationId">
|
<el-form-item :label="$t('module.basicData.processLocation.portAttrId')" prop="portAttrId">
|
||||||
<el-input v-model="dataForm.locationId" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.processLocation.locationId')])" clearable />
|
<el-input v-model="dataForm.portAttrId" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.processLocation.portAttrId')])" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :label="$t('module.basicData.processLocation.isProcess')" prop="isProcess">
|
<!-- <el-form-item :label="$t('module.basicData.processLocation.isProcess')" prop="isProcess">
|
||||||
<el-input v-model="dataForm.isProcess" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.processLocation.isProcess')])" clearable />
|
<el-input v-model="dataForm.isProcess" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.processLocation.isProcess')])" clearable />
|
||||||
|
</el-form-item> -->
|
||||||
|
<el-form-item :label="$t('module.basicData.processLocation.isProcess')" prop="isProcess">
|
||||||
|
<el-select v-model="dataForm.isProcess" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.processLocation.isProcess')])">
|
||||||
|
<el-option
|
||||||
|
v-for="item in options"
|
||||||
|
:key="item.value"
|
||||||
|
:label="item.label"
|
||||||
|
:value="item.value"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :label="$t('module.basicData.processLocation.equipmentMark')" prop="equipmentMark">
|
<el-form-item :label="$t('module.basicData.processLocation.equipmentMark')" prop="equipmentMark">
|
||||||
<el-input v-model="dataForm.equipmentMark" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.processLocation.equipmentMark')])" clearable />
|
<el-input v-model="dataForm.equipmentMark" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.processLocation.equipmentMark')])" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item :label="$t('module.basicData.processLocation.sequence')" prop="sequence">
|
||||||
|
<el-input v-model="dataForm.sequence" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.processLocation.sequence')])" clearable />
|
||||||
|
</el-form-item>
|
||||||
|
<!-- <el-form-item :label="$t('module.basicData.processLocation.goodsShelves')" prop="goodsShelves">
|
||||||
|
<el-input v-model="dataForm.goodsShelves" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.processLocation.goodsShelves')])" clearable />
|
||||||
|
</el-form-item> -->
|
||||||
|
<el-form-item :label="$t('module.basicData.processLocation.goodsShelves')" prop="goodsShelves">
|
||||||
|
<el-select v-model="dataForm.goodsShelves" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.processLocation.goodsShelves')])">
|
||||||
|
<el-option
|
||||||
|
v-for="item in options2"
|
||||||
|
:key="item.value"
|
||||||
|
:label="item.label"
|
||||||
|
:value="item.value"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<span slot="footer" class="dialog-footer">
|
<span slot="footer" class="dialog-footer">
|
||||||
<el-button @click="visible = false">{{ 'btn.cancel' | i18nFilter }}</el-button>
|
<el-button @click="visible = false">{{ 'btn.cancel' | i18nFilter }}</el-button>
|
||||||
@ -39,40 +72,88 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { detail, update, add } from '@/api/basicData/Cache/processLocation'
|
import { detail, update, add, locationList } from '@/api/basicData/Cache/processLocation'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
visible: false,
|
visible: false,
|
||||||
dataForm: {
|
dataForm: {
|
||||||
id: 0,
|
|
||||||
sequence: '',
|
|
||||||
locationName: '',
|
|
||||||
isProcess: '',
|
|
||||||
equipmentMark: ''
|
|
||||||
},
|
|
||||||
listQuery: {
|
|
||||||
current: 1,
|
|
||||||
size: 10,
|
|
||||||
locationId: '',
|
|
||||||
workSequenId: '',
|
workSequenId: '',
|
||||||
|
locationId: '',
|
||||||
|
portAttrId: '',
|
||||||
|
isProcess: '',
|
||||||
|
equipmentMark: '',
|
||||||
|
sequence: '',
|
||||||
|
goodsShelves: '',
|
||||||
locationName: ''
|
locationName: ''
|
||||||
|
},
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
value: 0,
|
||||||
|
label: this.$t('module.basicData.processLocation.CacheLocation')
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 1,
|
||||||
|
label: this.$t('module.basicData.processLocation.ProcessLocation')
|
||||||
|
}
|
||||||
|
],
|
||||||
|
options2: [
|
||||||
|
{
|
||||||
|
value: 0,
|
||||||
|
label: this.$t('module.basicData.processLocation.aShelf')
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 1,
|
||||||
|
label: this.$t('module.basicData.processLocation.bShelf')
|
||||||
|
}
|
||||||
|
],
|
||||||
|
// options3: [
|
||||||
|
// {
|
||||||
|
// value: this.dataForm.locationId,
|
||||||
|
// label: this.dataForm.locationName
|
||||||
|
// }
|
||||||
|
// ],
|
||||||
|
listQuery: {
|
||||||
|
id: ''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
init(LocationId) {
|
init(id) {
|
||||||
this.listQuery.LocationId = LocationId || ''
|
this.listQuery.id = id || ''
|
||||||
this.visible = true
|
this.visible = true
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs['dataForm'].resetFields()
|
this.$refs['dataForm'].resetFields()
|
||||||
if (this.listQuery.LocationId) {
|
locationList().then(res => {
|
||||||
|
// console.log(res)
|
||||||
|
// this.dataForm.locationId = res.data.id'
|
||||||
|
for (var i = 0; i < res.data.length; i++) {
|
||||||
|
this.dataForm.locationId = res.data[i].id
|
||||||
|
this.dataForm.locationName = res.data[i].locationName
|
||||||
|
}
|
||||||
|
// console.log(this.dataForm)
|
||||||
|
})
|
||||||
|
// portAttrList().then(res => {
|
||||||
|
// console.log(res)
|
||||||
|
// })
|
||||||
|
// workSequenList().then(res => {
|
||||||
|
// console.log(res)
|
||||||
|
// })
|
||||||
|
// console.log(this.listQuery)
|
||||||
|
if (this.listQuery.id) {
|
||||||
// list(this.listQuery).then(res =>{
|
// list(this.listQuery).then(res =>{
|
||||||
// this.list = response.data.records
|
// this.list = response.data.records
|
||||||
// })
|
// })
|
||||||
detail(this.dataForm.id).then(res => {
|
detail(this.listQuery.id).then(res => {
|
||||||
this.dataForm = res.data
|
this.dataForm.equipmentMark = res.data.equipmentMark
|
||||||
|
this.dataForm.goodsShelves = res.data.goodsShelves
|
||||||
|
this.dataForm.id = res.data.id
|
||||||
|
this.dataForm.isProcess = res.data.isProcess
|
||||||
|
this.dataForm.portAttrId = res.data.portAttrId
|
||||||
|
this.dataForm.sequence = res.data.sequence
|
||||||
|
this.dataForm.workSequenId = res.data.workSequenId
|
||||||
|
console.log(this.dataForm)
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
// storageBoxCode().then(res => {
|
// storageBoxCode().then(res => {
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* @Author: fzq
|
* @Author: fzq
|
||||||
* @Date: 2022-03-03 09:51:25
|
* @Date: 2022-03-03 09:51:25
|
||||||
* @LastEditors: fzq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2022-03-06 19:15:25
|
* @LastEditTime: 2022-03-08 16:56:40
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
@ -35,7 +35,7 @@
|
|||||||
:limit.sync="listQuery.size"
|
:limit.sync="listQuery.size"
|
||||||
@pagination="getList()"
|
@pagination="getList()"
|
||||||
/>
|
/>
|
||||||
<processInfo-add v-if="addOrUpdateVisible" ref="addOrUpdate" :cache-id="listQuery.cacheId" @refreshDataList="getList" />
|
<processInfo-add v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getList" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -46,7 +46,6 @@ import processInfoAdd from './components/processInfo-add'
|
|||||||
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 { list, locaDelete } from '@/api/basicData/Cache/processLocation'
|
import { list, locaDelete } from '@/api/basicData/Cache/processLocation'
|
||||||
import { timeFormatter } from '@/filters'
|
|
||||||
/**
|
/**
|
||||||
* 表格表头配置项 TypeScript接口注释
|
* 表格表头配置项 TypeScript接口注释
|
||||||
* tableConfig<ConfigItem> = []
|
* tableConfig<ConfigItem> = []
|
||||||
@ -75,24 +74,8 @@ const tableBtn = [
|
|||||||
]
|
]
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'createTime',
|
prop: 'workSequenId',
|
||||||
label: i18n.t('module.basicData.factory.createTime'),
|
label: i18n.t('module.basicData.processLocation.workSequenId'),
|
||||||
filter: timeFormatter,
|
|
||||||
align: 'center'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'sequence',
|
|
||||||
label: i18n.t('module.basicData.processLocation.sequence'),
|
|
||||||
align: 'center'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'locationName',
|
|
||||||
label: i18n.t('module.basicData.processLocation.locationName'),
|
|
||||||
align: 'center'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'isProcess',
|
|
||||||
label: i18n.t('module.basicData.processLocation.isProcess'),
|
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -101,14 +84,34 @@ const tableProps = [
|
|||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'workSequenId',
|
prop: 'portAttrId',
|
||||||
label: i18n.t('module.basicData.processLocation.workSequenId'),
|
label: i18n.t('module.basicData.processLocation.portAttrId'),
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'isProcess',
|
||||||
|
label: i18n.t('module.basicData.processLocation.isProcess'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'equipmentMark',
|
prop: 'equipmentMark',
|
||||||
label: i18n.t('module.basicData.processLocation.equipmentMark'),
|
label: i18n.t('module.basicData.processLocation.equipmentMark'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'sequence',
|
||||||
|
label: i18n.t('module.basicData.processLocation.sequence'),
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'goodsShelves',
|
||||||
|
label: i18n.t('module.basicData.processLocation.goodsShelves'),
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'locationName',
|
||||||
|
label: i18n.t('module.basicData.processLocation.locationName'),
|
||||||
|
align: 'center'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
@ -152,12 +155,11 @@ export default {
|
|||||||
methods: {
|
methods: {
|
||||||
handleClick(raw) {
|
handleClick(raw) {
|
||||||
if (raw.type === 'delete') {
|
if (raw.type === 'delete') {
|
||||||
this.$confirm(`${this.$t('module.basicData.visual.TipsBefore')}[${raw.data.locationName}]?`, this.$t('module.basicData.visual.Tips'), {
|
this.$confirm(`${this.$t('module.basicData.visual.TipsBefore')}[${raw.data.id}]?`, this.$t('module.basicData.visual.Tips'), {
|
||||||
confirmButtonText: this.$t('module.basicData.visual.confirmButtonText'),
|
confirmButtonText: this.$t('module.basicData.visual.confirmButtonText'),
|
||||||
cancelButtonText: this.$t('module.basicData.visual.cancelButtonText'),
|
cancelButtonText: this.$t('module.basicData.visual.cancelButtonText'),
|
||||||
type: 'warning'
|
type: 'warning'
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
console.log(raw.data)
|
|
||||||
locaDelete(raw.data.id).then(response => {
|
locaDelete(raw.data.id).then(response => {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: this.$t('module.basicData.visual.success'),
|
message: this.$t('module.basicData.visual.success'),
|
||||||
@ -170,9 +172,9 @@ export default {
|
|||||||
})
|
})
|
||||||
}).catch(() => {})
|
}).catch(() => {})
|
||||||
} else if (raw.type === 'edit') {
|
} else if (raw.type === 'edit') {
|
||||||
this.addNew(raw.data.locationId)
|
this.addNew(raw.data.id)
|
||||||
} else {
|
} else {
|
||||||
this.addNew(raw.data.locationId, true)
|
this.addNew(raw.data.id, true)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
getList(key) {
|
getList(key) {
|
||||||
@ -185,7 +187,7 @@ export default {
|
|||||||
this.list.splice(0, this.list.length)
|
this.list.splice(0, this.list.length)
|
||||||
}
|
}
|
||||||
this.total = response.data.total
|
this.total = response.data.total
|
||||||
console.log(response)
|
// console.log(response)
|
||||||
this.listLoading = false
|
this.listLoading = false
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
@ -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 16:01:28
|
* @LastEditTime: 2022-03-09 09:57:41
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -25,13 +25,11 @@
|
|||||||
@clickBtn="handleClick"
|
@clickBtn="handleClick"
|
||||||
/>
|
/>
|
||||||
</base-table>
|
</base-table>
|
||||||
<processStorage-link v-if="addOrUpdateVisible" ref="addOrUpdate" :area-id="listQuery.areaId" @refreshDataList="getList" />
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import i18n from '@/lang'
|
import i18n from '@/lang'
|
||||||
import processStorageLink from './processStorageLink.vue'
|
|
||||||
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'
|
import { timeFormatter } from '@/filters'
|
||||||
@ -78,7 +76,7 @@ const tableProps = [
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Shelf',
|
name: 'Shelf',
|
||||||
components: { BaseTable, MethodBtn, processStorageLink },
|
components: { BaseTable, MethodBtn },
|
||||||
filters: {
|
filters: {
|
||||||
statusFilter(status) {
|
statusFilter(status) {
|
||||||
const statusMap = {
|
const statusMap = {
|
||||||
@ -91,7 +89,6 @@ export default {
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
addOrUpdateVisible: false,
|
|
||||||
tableBtn,
|
tableBtn,
|
||||||
trueWidth: 200,
|
trueWidth: 200,
|
||||||
tableProps,
|
tableProps,
|
||||||
@ -142,9 +139,11 @@ export default {
|
|||||||
},
|
},
|
||||||
// 新增 / 修改
|
// 新增 / 修改
|
||||||
addNew(id) {
|
addNew(id) {
|
||||||
this.addOrUpdateVisible = true
|
this.$router.push({
|
||||||
this.$nextTick(() => {
|
name: 'ProcessStorageLink',
|
||||||
this.$refs.addOrUpdate.init(id)
|
query: {
|
||||||
|
dictTypeId: id
|
||||||
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
goback() {
|
goback() {
|
||||||
|
@ -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-01-17 11:21:26
|
* @LastEditTime: 2022-03-10 18:44:36
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
|
@ -1,175 +1,477 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zwq
|
* @Author: gtz
|
||||||
* @Date: 2020-12-29 16:37:56
|
* @Date: 2022-03-03 09:16:10
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-04 16:54:51
|
* @LastEditTime: 2022-03-09 15:17:46
|
||||||
* @Description:
|
* @Description: file content
|
||||||
|
* @FilePath: \mt-ck-wms-ui\src\views\dashboard\index.vue
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<el-dialog
|
<div class="dashboard-container">
|
||||||
:title="$t('module.basicData.visual.stock') | i18nFilter"
|
<el-card class="dashboard-main">
|
||||||
:visible.sync="visible"
|
<el-row class="dashboard-title">
|
||||||
top="5vh"
|
<div class="dashboard-header-line" />
|
||||||
>
|
<div class="dashboard-header-title">WMS库存信息</div>
|
||||||
<div>
|
</el-row>
|
||||||
<div class="mainDiv" style="margin:10px 0 100px">
|
<el-row class="dashboard-legend">
|
||||||
<div class="title">货架一</div>
|
<div
|
||||||
<div class="flexDiv">
|
v-for="item in cassetteStatusList"
|
||||||
|
:key="'cassette' + item.id"
|
||||||
|
class="dashboard-legend-cassette"
|
||||||
|
>
|
||||||
<div
|
<div
|
||||||
v-for="count in 5"
|
class="dashboard-legend-cassette-cricle"
|
||||||
:key="count"
|
:style="{ background: item.color }"
|
||||||
class="wareBox"
|
/>
|
||||||
:class="[
|
{{ item.name }}
|
||||||
count > Math.round(Math.random() * 10) ? 'enableBox' : 'disableBox',
|
|
||||||
{ active: count === isActive }
|
|
||||||
]"
|
|
||||||
@click="selectBox(count)"
|
|
||||||
>
|
|
||||||
<div class="plat">库位{{ count }}</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="flexDiv">
|
|
|
||||||
<div
|
<div
|
||||||
v-for="count in 5"
|
v-for="item in portAttributeList"
|
||||||
:key="count"
|
:key="'port' + item.id"
|
||||||
class="wareBox"
|
class="dashboard-legend-port"
|
||||||
:class="[
|
:style="{ background: item.color }"
|
||||||
count > Math.round(Math.random() * 10) ? 'enableBox' : 'disableBox',
|
>
|
||||||
{ active: count + 5 === isActive }
|
{{ item.name }}
|
||||||
]"
|
|
||||||
@click="selectBox(count + 5)"
|
|
||||||
>
|
|
||||||
<div class="plat">库位{{ count + 5 }}</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div class="dashboard-legend-btn">
|
||||||
<div class="line" />
|
<el-button type="primary" size="mini" @click="submitLinkList">{{
|
||||||
<div class="mainDiv" style="margin:100px 0 10px">
|
"btn.submit" | i18nFilter
|
||||||
<div class="title">货架二</div>
|
}}</el-button>
|
||||||
<div class="flexDiv">
|
|
||||||
<div
|
|
||||||
v-for="count in 5"
|
|
||||||
:key="count"
|
|
||||||
class="wareBox"
|
|
||||||
:class="[
|
|
||||||
count > Math.round(Math.random() * 10) ? 'enableBox' : 'disableBox',
|
|
||||||
{ active: count+10 === isActive }
|
|
||||||
]"
|
|
||||||
@click="selectBox(count+10)"
|
|
||||||
>
|
|
||||||
<div class="plat">库位{{ count+10 }}</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="flexDiv">
|
<div class="dashboard-legend-search">
|
||||||
<div
|
<el-select
|
||||||
v-for="count in 5"
|
v-model="current"
|
||||||
:key="count"
|
size="mini"
|
||||||
class="wareBox"
|
placeholder="请选择库存范围"
|
||||||
:class="[
|
@change="handleChange"
|
||||||
count > Math.round(Math.random() * 10) ? 'enableBox' : 'disableBox',
|
|
||||||
{ active: count+15 === isActive }
|
|
||||||
]"
|
|
||||||
@click="selectBox(count+15)"
|
|
||||||
>
|
>
|
||||||
<div class="plat">库位{{ count+15 }}</div>
|
<el-option
|
||||||
</div>
|
v-for="item in totalPage"
|
||||||
|
:key="'select' + item"
|
||||||
|
:label="'第' + item + '页'"
|
||||||
|
:value="item"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</el-row>
|
||||||
</div>
|
<el-row
|
||||||
<span slot="footer" class="dialog-footer">
|
v-if="current * 80 < shelfList[0].rowList[0].portList.length"
|
||||||
<el-button @click="visible = false">{{ 'btn.cancel' | i18nFilter }}</el-button>
|
class="dashboard-layout"
|
||||||
<el-button type="primary" @click="dataFormSubmit()">{{ 'btn.confirm' | i18nFilter }}</el-button>
|
:gutter="12"
|
||||||
</span>
|
>
|
||||||
</el-dialog>
|
<el-col
|
||||||
|
v-for="item in 4"
|
||||||
|
:key="'shelfbox' + item"
|
||||||
|
class="dashboard-layout-shelf-box"
|
||||||
|
:span="6"
|
||||||
|
>
|
||||||
|
<el-row>
|
||||||
|
<el-col
|
||||||
|
v-for="(i, index) in shelfList"
|
||||||
|
:key="item + 'shelf' + i.id"
|
||||||
|
:span="12"
|
||||||
|
class="dashboard-layout-shelf"
|
||||||
|
>
|
||||||
|
<el-row>
|
||||||
|
<el-col
|
||||||
|
v-for="z in i.rowList"
|
||||||
|
: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'
|
||||||
|
: '',
|
||||||
|
border:
|
||||||
|
selectStorageList.some(StorageItem=>StorageItem.id===z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].id)
|
||||||
|
? '1px solid red' : ''
|
||||||
|
}"
|
||||||
|
@click="
|
||||||
|
setType(
|
||||||
|
z.portList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
]
|
||||||
|
)
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<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
|
||||||
|
]
|
||||||
|
}"
|
||||||
|
/>
|
||||||
|
{{
|
||||||
|
z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)]
|
||||||
|
.name
|
||||||
|
}}
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<div class="dashboard-layout-footer">
|
||||||
|
{{
|
||||||
|
"第" + (index + 1) + "排(" + ((current - 1) * 4 + item) + ")"
|
||||||
|
}}
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<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-row>
|
||||||
|
<el-col
|
||||||
|
v-for="(i, index) in shelfList"
|
||||||
|
: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-col
|
||||||
|
v-for="z in i.rowList"
|
||||||
|
: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'
|
||||||
|
: '',
|
||||||
|
border:
|
||||||
|
selectStorageList.some(StorageItem=>StorageItem.id===z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].id)
|
||||||
|
? '1px solid red' : ''
|
||||||
|
}"
|
||||||
|
@click="
|
||||||
|
setType(
|
||||||
|
z.portList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
]
|
||||||
|
)
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<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
|
||||||
|
]
|
||||||
|
}"
|
||||||
|
/>
|
||||||
|
{{
|
||||||
|
z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)]
|
||||||
|
.name
|
||||||
|
}}
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<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"
|
||||||
|
>
|
||||||
|
<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'
|
||||||
|
: '',
|
||||||
|
border:
|
||||||
|
selectStorageList.some(StorageItem=>StorageItem.id===z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].id)
|
||||||
|
? '1px solid red' : ''
|
||||||
|
}"
|
||||||
|
@click="
|
||||||
|
setType(
|
||||||
|
z.portList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
]
|
||||||
|
)
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<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
|
||||||
|
]
|
||||||
|
}"
|
||||||
|
/>
|
||||||
|
{{
|
||||||
|
z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)]
|
||||||
|
.name
|
||||||
|
}}
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<div class="dashboard-layout-footer">
|
||||||
|
{{
|
||||||
|
"第" + (index + 1) + "排(" + ((current - 1) * 4 + item) + ")"
|
||||||
|
}}
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-card>
|
||||||
|
<process-storage-type
|
||||||
|
v-if="typeVisible"
|
||||||
|
ref="typeRef"
|
||||||
|
@refreshDataList="setStorageList"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import testdata from './testdata'
|
||||||
|
import processStorageType from './processStorageType'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
name: 'Dashboard',
|
||||||
|
components: { processStorageType },
|
||||||
data() {
|
data() {
|
||||||
return {
|
return testdata
|
||||||
visible: false,
|
},
|
||||||
isActiveArr: []
|
created() {
|
||||||
}
|
console.log(this.shelfList)
|
||||||
|
this.totalPage = Math.ceil(
|
||||||
|
this.shelfList[0].rowList[0].portList.length / 80
|
||||||
|
)
|
||||||
|
this.init()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
init() {
|
init() {
|
||||||
this.visible = true
|
this.selectStorageList.splice(0, this.selectStorageList.length)
|
||||||
},
|
},
|
||||||
selectBox(count) {
|
setType(item) {
|
||||||
this.isActive.push(count)
|
if (item.attribute !== 3) {
|
||||||
|
if (this.selectStorageList.findIndex(StorageItem => StorageItem.id === item.id) + 1) {
|
||||||
|
this.selectStorageList.splice(this.selectStorageList.findIndex(StorageItem => StorageItem.id === item.id), 1)
|
||||||
|
} else {
|
||||||
|
this.typeVisible = true
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.typeRef.init(item.id)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
// 表单提交
|
setStorageList(id, dataForm) {
|
||||||
dataFormSubmit() {
|
const obj = Object.assign({ id }, dataForm)
|
||||||
this.visible = false
|
this.selectStorageList.push(obj)
|
||||||
|
},
|
||||||
|
handleChange(v) {
|
||||||
|
console.log(v)
|
||||||
|
},
|
||||||
|
submitLinkList() {
|
||||||
|
const tipArr = this.selectStorageList.map(item => {
|
||||||
|
return item.id
|
||||||
|
})
|
||||||
|
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(() => {
|
||||||
|
}).catch(() => {})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style lang="scss" scoped>
|
||||||
.mainDiv {
|
.dashboard-container {
|
||||||
border: 2px solid rgb(145, 174, 255);
|
background: #f2f4f9;
|
||||||
padding: 20px 0;
|
min-height: calc(100vh - 134px);
|
||||||
}
|
overflow-x: scroll;
|
||||||
.flexDiv {
|
padding: 0 16px;
|
||||||
display: -webkit-flex;
|
padding-top: 24px;
|
||||||
display: flex;
|
font-size: 14px;
|
||||||
-webkit-justify-content: space-around;
|
.dashboard-main {
|
||||||
justify-content: space-around;
|
width: 100%;
|
||||||
}
|
min-width: 1380px;
|
||||||
.title {
|
background-color: #fff;
|
||||||
float: left;
|
border-radius: 8px;
|
||||||
width: 50px;
|
min-height: calc(100vh - 186px);
|
||||||
font-size: 40px;
|
.dashboard-title {
|
||||||
line-height: 45px;
|
.dashboard-header-line {
|
||||||
}
|
display: inline-block;
|
||||||
/* 边框特效 */
|
width: 4px;
|
||||||
.wareBox:hover {
|
height: 16px;
|
||||||
background: linear-gradient(to left, deepskyblue, deepskyblue) left top
|
background: #0b58ff;
|
||||||
no-repeat,
|
border-radius: 1px;
|
||||||
linear-gradient(to bottom, deepskyblue, deepskyblue) left top no-repeat,
|
position: relative;
|
||||||
linear-gradient(to left, deepskyblue, deepskyblue) right top no-repeat,
|
top: 2px;
|
||||||
linear-gradient(to bottom, deepskyblue, deepskyblue) right top no-repeat,
|
margin-right: 4px;
|
||||||
linear-gradient(to left, deepskyblue, deepskyblue) left bottom no-repeat,
|
}
|
||||||
linear-gradient(to bottom, deepskyblue, deepskyblue) left bottom no-repeat,
|
.dashboard-header-title {
|
||||||
linear-gradient(to left, deepskyblue, deepskyblue) right bottom no-repeat,
|
display: inline-block;
|
||||||
linear-gradient(to left, deepskyblue, deepskyblue) right bottom no-repeat;
|
font-size: 16px;
|
||||||
background-size: 5px 30px, 30px 5px;
|
font-family: PingFangSC-Regular, PingFang SC;
|
||||||
color: black;
|
font-weight: 400;
|
||||||
border-radius: 5px;
|
color: #000000;
|
||||||
background-color: rgb(190, 224, 241);
|
line-height: 16px;
|
||||||
}
|
}
|
||||||
.wareBox {
|
}
|
||||||
cursor: pointer;
|
.dashboard-legend {
|
||||||
margin: 10px;
|
margin-top: 20px;
|
||||||
height: 80px;
|
.dashboard-legend-cassette {
|
||||||
line-height: 70px;
|
display: inline-block;
|
||||||
text-align: center;
|
margin-right: 24px;
|
||||||
border: 2px solid #cdcdc5;
|
.dashboard-legend-cassette-cricle {
|
||||||
border-radius: 5px;
|
display: inline-block;
|
||||||
}
|
width: 12px;
|
||||||
.plat {
|
height: 12px;
|
||||||
min-width: 80px;
|
border-radius: 6px;
|
||||||
}
|
}
|
||||||
.line {
|
}
|
||||||
margin: 20px 0;
|
.dashboard-legend-port {
|
||||||
height: 2px;
|
display: inline-block;
|
||||||
background-color: gray;
|
height: 24px;
|
||||||
border-left: 200px solid #ddd;
|
line-height: 24px;
|
||||||
border-right: 200px solid #ddd;
|
border-radius: 4px;
|
||||||
}
|
padding: 0 16px;
|
||||||
.enableBox {
|
margin-left: 24px;
|
||||||
background: rgb(0, 189, 16);
|
}
|
||||||
}
|
.dashboard-legend-btn {
|
||||||
.disableBox {
|
margin: 0 20px;
|
||||||
background: #ddd;
|
float: right;
|
||||||
cursor: not-allowed;
|
}
|
||||||
}
|
.dashboard-legend-search {
|
||||||
.end-plat {
|
float: right;
|
||||||
background-color: rgb(195, 246, 255);
|
}
|
||||||
}
|
}
|
||||||
.active {
|
.dashboard-layout {
|
||||||
border: 2px solid red;
|
margin: 20px 0;
|
||||||
|
.dashboard-layout-shelf-box {
|
||||||
|
.dashboard-layout-footer {
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 12px;
|
||||||
|
}
|
||||||
|
.dashboard-layout-shelf {
|
||||||
|
padding: 0 8px;
|
||||||
|
.dashboard-layout-row {
|
||||||
|
padding: 0 1px;
|
||||||
|
.dashboard-layout-item {
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
height: 32px;
|
||||||
|
box-shadow: 0px 3px 6px 0px rgba(166, 174, 190, 0.8);
|
||||||
|
border-radius: 2px 4px 4px 2px;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
.dashboard-layout-item-cricle {
|
||||||
|
display: inline-block;
|
||||||
|
width: 12px;
|
||||||
|
height: 12px;
|
||||||
|
border-radius: 6px;
|
||||||
|
margin-right: 6px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -0,0 +1,94 @@
|
|||||||
|
<!--
|
||||||
|
* @Author: zwq
|
||||||
|
* @Date: 2020-12-29 16:37:56
|
||||||
|
* @LastEditors: zwq
|
||||||
|
* @LastEditTime: 2022-03-10 14:27:47
|
||||||
|
* @Description:
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<el-dialog
|
||||||
|
:title="$t('module.basicData.Warehouse.LocationStorageSetting') | i18nFilter"
|
||||||
|
:visible.sync="visible"
|
||||||
|
>
|
||||||
|
<el-form
|
||||||
|
ref="dataForm"
|
||||||
|
:model="dataForm"
|
||||||
|
size="medium"
|
||||||
|
:rules="dataRule"
|
||||||
|
label-width="110px"
|
||||||
|
label-position="left"
|
||||||
|
>
|
||||||
|
<el-form-item :label="$t('module.basicData.Warehouse.SelectStorageType')" prop="storageType">
|
||||||
|
<el-radio v-model="dataForm.storageType" :label="1">Working Port</el-radio>
|
||||||
|
<el-radio v-model="dataForm.storageType" :label="2">Buffer Port</el-radio>
|
||||||
|
<el-radio v-model="dataForm.storageType" :label="3">Exception Port</el-radio>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item :label="$t('module.basicData.storageBox.name')" prop="storageBoxName">
|
||||||
|
<el-select v-model="dataForm.storageBoxName" filterable :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.storageBox.name')])" clearable>
|
||||||
|
<el-option
|
||||||
|
v-for="item in storageBoxArr"
|
||||||
|
:key="item.id"
|
||||||
|
:label="item.storageBoxName"
|
||||||
|
:value="item.id"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<span slot="footer" class="dialog-footer">
|
||||||
|
<el-button @click="visible = false">{{ 'btn.cancel' | i18nFilter }}</el-button>
|
||||||
|
<el-button type="primary" @click="dataFormSubmit()">{{ 'btn.confirm' | i18nFilter }}</el-button>
|
||||||
|
</span>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { storageBoxList } from '@/api/basicData/Cache/storageBox'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
visible: false,
|
||||||
|
storageId: '',
|
||||||
|
dataForm: {
|
||||||
|
storageType: 1,
|
||||||
|
storageBoxName: ''
|
||||||
|
},
|
||||||
|
dataRule: {
|
||||||
|
storageBoxName: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.storageBox.name')]),
|
||||||
|
trigger: 'change' }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
storageBoxArr: []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
init(id) {
|
||||||
|
this.storageId = id
|
||||||
|
const listQuery = {
|
||||||
|
current: 1,
|
||||||
|
size: 999
|
||||||
|
}
|
||||||
|
storageBoxList(listQuery).then(response => {
|
||||||
|
if (response.data.records) {
|
||||||
|
this.storageBoxArr = response.data.records
|
||||||
|
} else {
|
||||||
|
this.storageBoxArr.splice(0, this.list.length)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
this.visible = true
|
||||||
|
},
|
||||||
|
// 表单提交
|
||||||
|
dataFormSubmit() {
|
||||||
|
this.$refs['dataForm'].validate((valid) => {
|
||||||
|
if (valid) {
|
||||||
|
this.visible = false
|
||||||
|
this.$emit('refreshDataList', this.storageId, this.dataForm)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
2955
src/views/basicData/Warehouse/components/testdata.js
Normal file
2955
src/views/basicData/Warehouse/components/testdata.js
Normal file
File diff suppressed because it is too large
Load Diff
@ -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-17 15:26:35
|
* @LastEditTime: 2022-03-09 14:46:12
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -143,7 +143,7 @@ export default {
|
|||||||
},
|
},
|
||||||
getList(key) {
|
getList(key) {
|
||||||
this.listLoading = true
|
this.listLoading = true
|
||||||
this.listQuery.code = key
|
this.listQuery.name = key
|
||||||
ExecutionInfoList(this.listQuery).then(response => {
|
ExecutionInfoList(this.listQuery).then(response => {
|
||||||
if (response.data.records) {
|
if (response.data.records) {
|
||||||
this.list = response.data.records
|
this.list = 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-01-17 15:32:00
|
* @LastEditTime: 2022-03-09 14:44:58
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -150,7 +150,7 @@ export default {
|
|||||||
},
|
},
|
||||||
getList(key) {
|
getList(key) {
|
||||||
this.listLoading = true
|
this.listLoading = true
|
||||||
this.listQuery.code = key
|
this.listQuery.name = key
|
||||||
ProcessInfoList(this.listQuery).then(response => {
|
ProcessInfoList(this.listQuery).then(response => {
|
||||||
if (response.data.records) {
|
if (response.data.records) {
|
||||||
this.list = response.data.records
|
this.list = 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: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-01-17 15:21:50
|
* @LastEditTime: 2022-03-11 09:05:38
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -26,8 +26,8 @@
|
|||||||
</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.IssueOrderTime')" prop="createTime">
|
<el-form-item :label="$t('module.basicData.Warehouse.OrderStatus')" prop="status">
|
||||||
<el-input v-model="dataForm.createTime" :placeholder="$t('module.basicData.Warehouse.IssueOrderTime')" readonly :style="{width: '100%'}" />
|
<el-input v-model="dataForm.status" :placeholder="$t('module.basicData.Warehouse.OrderStatus')" readonly :style="{width: '100%'}" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
@ -35,18 +35,43 @@
|
|||||||
<el-input v-model="dataForm.planQuantity" :placeholder="$t('module.basicData.Warehouse.PlanProcessQuantity')" readonly :style="{width: '100%'}" />
|
<el-input v-model="dataForm.planQuantity" :placeholder="$t('module.basicData.Warehouse.PlanProcessQuantity')" 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.Priority')" prop="priority">
|
||||||
|
<el-input v-model="dataForm.priority" :placeholder="$t('module.basicData.Warehouse.Priority')" readonly :style="{width: '100%'}" />
|
||||||
|
</el-form-item>
|
||||||
|
</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">
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item :label="$t('module.basicData.Warehouse.OrderCode')" prop="taskCode">
|
<el-form-item :label="$t('module.basicData.Warehouse.OrderCode')" prop="code">
|
||||||
<el-input v-model="dataForm.taskCode" :placeholder="$t('module.basicData.Warehouse.OrderCode')" readonly :style="{width: '100%'}" />
|
<el-input v-model="dataForm.code" :placeholder="$t('module.basicData.Warehouse.OrderCode')" readonly :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.OrderStatus')" prop="taskType">
|
<el-form-item :label="$t('module.basicData.Warehouse.startProduceTime')" prop="startProduceTime">
|
||||||
<el-input v-model="dataForm.taskType" :placeholder="$t('module.basicData.Warehouse.OrderStatus')" readonly :style="{width: '100%'}" />
|
<el-input v-model="dataForm.startProduceTime" :placeholder="$t('module.basicData.Warehouse.startProduceTime')" readonly :style="{width: '100%'}" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item :label="$t('module.basicData.Warehouse.actualProcessQuantity')" prop="actualQuantity">
|
||||||
|
<el-input v-model="dataForm.actualQuantity" :placeholder="$t('module.basicData.Warehouse.actualProcessQuantity')" readonly :style="{width: '100%'}" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item :label="$t('module.basicData.Warehouse.triggerOrigin')" prop="triggerOrigin">
|
||||||
|
<el-input v-model="dataForm.triggerOrigin" :placeholder="$t('module.basicData.Warehouse.triggerOrigin')" readonly :style="{width: '100%'}" />
|
||||||
|
</el-form-item>
|
||||||
|
</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-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
@ -68,6 +93,16 @@
|
|||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item :label="$t('module.basicData.Warehouse.scrapQuantity')" prop="scrapQuantity">
|
||||||
|
<el-input v-model="dataForm.scrapQuantity" :placeholder="$t('module.basicData.Warehouse.scrapQuantity')" readonly :style="{width: '100%'}" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item :label="$t('module.basicData.Warehouse.OrderType')" prop="type">
|
||||||
|
<el-input v-model="dataForm.type" :placeholder="$t('module.basicData.Warehouse.OrderType')" readonly :style="{width: '100%'}" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-form>
|
</el-form>
|
||||||
@ -79,7 +114,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { ExecutionInfoDetail } from '@/api/orderManage/00A'
|
import { ProcessInfoDetail } from '@/api/orderManage/00A'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
@ -89,8 +124,15 @@ export default {
|
|||||||
id: 0,
|
id: 0,
|
||||||
name: undefined,
|
name: undefined,
|
||||||
createTime: undefined,
|
createTime: undefined,
|
||||||
taskCode: undefined,
|
priority: '',
|
||||||
taskType: undefined,
|
actualQuantity: '',
|
||||||
|
startProduceTime: '',
|
||||||
|
finishProduceTime: '',
|
||||||
|
scrapQuantity: '',
|
||||||
|
triggerOrigin: '',
|
||||||
|
type: '',
|
||||||
|
code: undefined,
|
||||||
|
status: undefined,
|
||||||
craftName: undefined,
|
craftName: undefined,
|
||||||
planQuantity: undefined,
|
planQuantity: undefined,
|
||||||
subProccessName: undefined
|
subProccessName: undefined
|
||||||
@ -104,11 +146,45 @@ export default {
|
|||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs['dataForm'].resetFields()
|
this.$refs['dataForm'].resetFields()
|
||||||
if (this.dataForm.id) {
|
if (this.dataForm.id) {
|
||||||
ExecutionInfoDetail(this.dataForm.id).then(res => {
|
ProcessInfoDetail(this.dataForm.id).then(res => {
|
||||||
|
res.data.status = this.statusfilter('orderStatus', res.data.status)
|
||||||
|
res.data.type = this.statusfilter('orderType', res.data.type)
|
||||||
|
res.data.priority = this.statusfilter('priority', res.data.priority)
|
||||||
|
res.data.triggerOrigin = this.statusfilter('triggerOrigin', res.data.triggerOrigin)
|
||||||
|
res.data.ProcessOrNot = res.data.processId ? '是' : '否'
|
||||||
this.dataForm = res.data
|
this.dataForm = res.data
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
statusfilter(type, val) {
|
||||||
|
const filterObj = {
|
||||||
|
orderStatus: {
|
||||||
|
'1': '未激活',
|
||||||
|
'2': '等待',
|
||||||
|
'3': '激活',
|
||||||
|
'4': '暂停',
|
||||||
|
'9': '完成'
|
||||||
|
},
|
||||||
|
priority: {
|
||||||
|
'1': '低',
|
||||||
|
'2': '正常',
|
||||||
|
'3': '高'
|
||||||
|
},
|
||||||
|
orderType: {
|
||||||
|
'1': '生产工单',
|
||||||
|
'2': '重工工单',
|
||||||
|
'3': '测试工单'
|
||||||
|
},
|
||||||
|
triggerOrigin: {
|
||||||
|
'1': 'MES',
|
||||||
|
'2': 'ERP',
|
||||||
|
'3': 'PID1',
|
||||||
|
'4': '00A',
|
||||||
|
'5': '00C'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return filterObj?.[type]?.[val]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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-17 15:22:08
|
* @LastEditTime: 2022-03-09 16:40:11
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -26,8 +26,8 @@
|
|||||||
</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.IssueOrderTime')" prop="createTime">
|
<el-form-item :label="$t('module.basicData.Warehouse.OrderStatus')" prop="status">
|
||||||
<el-input v-model="dataForm.createTime" :placeholder="$t('module.basicData.Warehouse.IssueOrderTime')" readonly :style="{width: '100%'}" />
|
<el-input v-model="dataForm.status" :placeholder="$t('module.basicData.Warehouse.OrderStatus')" readonly :style="{width: '100%'}" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
@ -35,18 +35,33 @@
|
|||||||
<el-input v-model="dataForm.planQuantity" :placeholder="$t('module.basicData.Warehouse.PlanProcessQuantity')" readonly :style="{width: '100%'}" />
|
<el-input v-model="dataForm.planQuantity" :placeholder="$t('module.basicData.Warehouse.PlanProcessQuantity')" 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.Priority')" prop="priority">
|
||||||
|
<el-input v-model="dataForm.priority" :placeholder="$t('module.basicData.Warehouse.Priority')" 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">
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item :label="$t('module.basicData.Warehouse.OrderCode')" prop="taskCode">
|
<el-form-item :label="$t('module.basicData.Warehouse.OrderCode')" prop="code">
|
||||||
<el-input v-model="dataForm.taskCode" :placeholder="$t('module.basicData.Warehouse.OrderCode')" readonly :style="{width: '100%'}" />
|
<el-input v-model="dataForm.code" :placeholder="$t('module.basicData.Warehouse.OrderCode')" readonly :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.OrderStatus')" prop="taskType">
|
<el-form-item :label="$t('module.basicData.Warehouse.startProduceTime')" prop="startProduceTime">
|
||||||
<el-input v-model="dataForm.taskType" :placeholder="$t('module.basicData.Warehouse.OrderStatus')" readonly :style="{width: '100%'}" />
|
<el-input v-model="dataForm.startProduceTime" :placeholder="$t('module.basicData.Warehouse.startProduceTime')" readonly :style="{width: '100%'}" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item :label="$t('module.basicData.Warehouse.actualProcessQuantity')" prop="actualQuantity">
|
||||||
|
<el-input v-model="dataForm.actualQuantity" :placeholder="$t('module.basicData.Warehouse.actualProcessQuantity')" readonly :style="{width: '100%'}" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item :label="$t('module.basicData.Warehouse.triggerOrigin')" prop="triggerOrigin">
|
||||||
|
<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-row>
|
</el-row>
|
||||||
@ -68,6 +83,16 @@
|
|||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item :label="$t('module.basicData.Warehouse.scrapQuantity')" prop="scrapQuantity">
|
||||||
|
<el-input v-model="dataForm.scrapQuantity" :placeholder="$t('module.basicData.Warehouse.scrapQuantity')" readonly :style="{width: '100%'}" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item :label="$t('module.basicData.Warehouse.OrderType')" prop="type">
|
||||||
|
<el-input v-model="dataForm.type" :placeholder="$t('module.basicData.Warehouse.OrderType')" readonly :style="{width: '100%'}" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-form>
|
</el-form>
|
||||||
@ -89,8 +114,14 @@ export default {
|
|||||||
id: 0,
|
id: 0,
|
||||||
name: undefined,
|
name: undefined,
|
||||||
createTime: undefined,
|
createTime: undefined,
|
||||||
taskCode: undefined,
|
priority: '',
|
||||||
taskType: undefined,
|
actualQuantity: '',
|
||||||
|
startProduceTime: '',
|
||||||
|
scrapQuantity: '',
|
||||||
|
triggerOrigin: '',
|
||||||
|
type: '',
|
||||||
|
code: undefined,
|
||||||
|
status: undefined,
|
||||||
craftName: undefined,
|
craftName: undefined,
|
||||||
planQuantity: undefined,
|
planQuantity: undefined,
|
||||||
subProccessName: undefined
|
subProccessName: undefined
|
||||||
@ -105,10 +136,43 @@ export default {
|
|||||||
this.$refs['dataForm'].resetFields()
|
this.$refs['dataForm'].resetFields()
|
||||||
if (this.dataForm.id) {
|
if (this.dataForm.id) {
|
||||||
ProcessInfoDetail(this.dataForm.id).then(res => {
|
ProcessInfoDetail(this.dataForm.id).then(res => {
|
||||||
|
res.data.status = this.statusfilter('orderStatus', res.data.status)
|
||||||
|
res.data.type = this.statusfilter('orderType', res.data.type)
|
||||||
|
res.data.priority = this.statusfilter('priority', res.data.priority)
|
||||||
|
res.data.triggerOrigin = this.statusfilter('triggerOrigin', res.data.triggerOrigin)
|
||||||
this.dataForm = res.data
|
this.dataForm = res.data
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
statusfilter(type, val) {
|
||||||
|
const filterObj = {
|
||||||
|
orderStatus: {
|
||||||
|
'1': '未激活',
|
||||||
|
'2': '等待',
|
||||||
|
'3': '激活',
|
||||||
|
'4': '暂停',
|
||||||
|
'9': '完成'
|
||||||
|
},
|
||||||
|
priority: {
|
||||||
|
'1': '低',
|
||||||
|
'2': '正常',
|
||||||
|
'3': '高'
|
||||||
|
},
|
||||||
|
orderType: {
|
||||||
|
'1': '生产工单',
|
||||||
|
'2': '重工工单',
|
||||||
|
'3': '测试工单'
|
||||||
|
},
|
||||||
|
triggerOrigin: {
|
||||||
|
'1': 'MES',
|
||||||
|
'2': 'ERP',
|
||||||
|
'3': 'PID1',
|
||||||
|
'4': '00A',
|
||||||
|
'5': '00C'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return filterObj?.[type]?.[val]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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-07 09:25:31
|
* @LastEditTime: 2022-03-10 14:25:50
|
||||||
* @FilePath: \basic-admin\src\components\BaseTable\subcomponents\CheckDetail.vue
|
* @FilePath: \basic-admin\src\components\BaseTable\subcomponents\CheckDetail.vue
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
@ -16,9 +16,9 @@
|
|||||||
<el-select v-model="value" placeholder="请选择">
|
<el-select v-model="value" placeholder="请选择">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in options"
|
v-for="item in options"
|
||||||
:key="item.value"
|
:key="item.id"
|
||||||
:label="item.label"
|
:label="item.name"
|
||||||
:value="item.value"
|
:value="item.id"
|
||||||
/>
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
</div>
|
</div>
|
||||||
@ -32,6 +32,8 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { list } from '@/api/art-manage/art.js'
|
||||||
|
import { ProcessInfoUpdata } from '@/api/orderManage/00A'
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
injectData: {
|
injectData: {
|
||||||
@ -42,22 +44,37 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
visible: false,
|
visible: false,
|
||||||
options: [{
|
options: [],
|
||||||
value: '选项1',
|
|
||||||
label: '工艺1'
|
|
||||||
}, {
|
|
||||||
value: '选项2',
|
|
||||||
label: '工艺2'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
value: ''
|
value: ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
created() {
|
||||||
|
this.init()
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
init() {
|
||||||
|
list({
|
||||||
|
current: 1,
|
||||||
|
size: 999
|
||||||
|
}).then(response => {
|
||||||
|
this.options = response.data.records
|
||||||
|
})
|
||||||
|
},
|
||||||
emitClick() {
|
emitClick() {
|
||||||
console.log(this.injectData)
|
const data = {
|
||||||
console.log(this.value)
|
id: this.injectData.id,
|
||||||
this.visible = false
|
subProcessId: this.value
|
||||||
|
}
|
||||||
|
ProcessInfoUpdata(data).then(res => {
|
||||||
|
this.$message({
|
||||||
|
message: this.$t('module.basicData.visual.success'),
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.visible = false
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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-06 19:32:34
|
* @LastEditTime: 2022-03-07 09:46:36
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
@ -195,7 +195,22 @@ export default {
|
|||||||
this.listQuery.code = key
|
this.listQuery.code = key
|
||||||
// console.log(this.listQuery)
|
// console.log(this.listQuery)
|
||||||
download(this.listQuery).then(res => {
|
download(this.listQuery).then(res => {
|
||||||
console.log(res)
|
let fileName = ''
|
||||||
|
const contentDisposition = res.headers['content-disposition']
|
||||||
|
if (contentDisposition) {
|
||||||
|
fileName = contentDisposition.slice(contentDisposition.indexOf('filename=') + 9)
|
||||||
|
}
|
||||||
|
const blob = new Blob([res.data])
|
||||||
|
const reader = new FileReader()
|
||||||
|
reader.readAsDataURL(blob)
|
||||||
|
reader.onload = (e) => {
|
||||||
|
const a = document.createElement('a')
|
||||||
|
a.download = fileName
|
||||||
|
a.href = e.target.result
|
||||||
|
document.body.appendChild(a)
|
||||||
|
a.click()
|
||||||
|
document.body.removeChild(a)
|
||||||
|
}
|
||||||
// const fileName = `${+new Date()}.xlsx`
|
// const fileName = `${+new Date()}.xlsx`
|
||||||
// const blob = new Blob([res], { type: 'application/vnd.ms-excel;charset=utf-8' })
|
// const blob = new Blob([res], { type: 'application/vnd.ms-excel;charset=utf-8' })
|
||||||
// if (navigator.msSaveBlob) {
|
// if (navigator.msSaveBlob) {
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* @Author: fzq
|
* @Author: fzq
|
||||||
* @Date: 2022-03-06 17:06:51
|
* @Date: 2022-03-06 17:06:51
|
||||||
* @LastEditors: fzq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2022-03-06 17:10:16
|
* @LastEditTime: 2022-03-07 10:35:29
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<el-form :inline="true" @keyup.enter.native="getDataList()">
|
<el-form :inline="true" @keyup.enter.native="getDataList()">
|
||||||
@ -14,7 +14,7 @@
|
|||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" @click="getDataList()">{{ 'btn.search' | i18nFilter }}</el-button>
|
<el-button type="primary" @click="getDataList()">{{ 'btn.search' | i18nFilter }}</el-button>
|
||||||
<el-button v-if="showAdd" type="primary" @click="add()">{{ 'btn.add' | i18nFilter }}</el-button>
|
<el-button v-if="showAdd" type="primary" @click="add()">{{ 'btn.add' | i18nFilter }}</el-button>
|
||||||
<el-button type="success" @click="downl()">{{ '导出' | i18nFilter }}</el-button>
|
<el-button type="success" @click="downl()">{{ 'btn.export' | i18nFilter }}</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
</template>
|
</template>
|
||||||
|
@ -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-06 16:46:54
|
* @LastEditTime: 2022-03-07 09:19:34
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<!-- <el-dialog
|
<!-- <el-dialog
|
||||||
@ -112,6 +112,7 @@ export default {
|
|||||||
this.dataForm.storageBoxId = this.$route.query.id
|
this.dataForm.storageBoxId = this.$route.query.id
|
||||||
this.dataForm.storageCode = this.$route.query.code
|
this.dataForm.storageCode = this.$route.query.code
|
||||||
this.visible = true
|
this.visible = true
|
||||||
|
// console.log(this.dataForm)
|
||||||
listSubstrate(this.dataForm).then(res => {
|
listSubstrate(this.dataForm).then(res => {
|
||||||
console.log(res.data[0])
|
console.log(res.data[0])
|
||||||
this.dataForm.id = res.data[0].id
|
this.dataForm.id = res.data[0].id
|
||||||
|
@ -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-05 19:44:47
|
* @LastEditTime: 2022-03-07 09:28:21
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
@ -112,12 +112,14 @@ export default {
|
|||||||
listQuery: {
|
listQuery: {
|
||||||
current: 1,
|
current: 1,
|
||||||
size: 10,
|
size: 10,
|
||||||
substrateCode: ''
|
storageBoxCode: '',
|
||||||
|
storageBoxId: ''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.listQuery.substrateCode = this.$route.query.code
|
this.listQuery.storageBoxCode = this.$route.query.code
|
||||||
|
this.listQuery.storageBoxId = this.$route.query.id
|
||||||
this.getList()
|
this.getList()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@ -150,6 +152,7 @@ export default {
|
|||||||
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)
|
||||||
if (response.data) {
|
if (response.data) {
|
||||||
this.list = response.data
|
this.list = response.data
|
||||||
console.log(this.list)
|
console.log(this.list)
|
||||||
|
Loading…
Reference in New Issue
Block a user