Compare commits
13 Commits
dy
...
81e92cdb3f
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
81e92cdb3f | ||
|
|
aec5bcaf85 | ||
|
|
581ca3d60b | ||
|
|
cb7718c340 | ||
| 7501849be6 | |||
|
|
2a4fdeef04 | ||
| 33a27dd810 | |||
|
|
8801c44b98 | ||
|
|
04cc50f504 | ||
| 878c9b22f7 | |||
|
|
ffdcbf6fa7 | ||
|
|
f655b4d718 | ||
|
|
a0adee8ce5 |
@@ -1,15 +1,15 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 16:00:14
|
* @Date: 2020-12-29 16:00:14
|
||||||
* @LastEditors: zwq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2021-01-28 09:38:31
|
* @LastEditTime: 2022-03-03 14:29:17
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
import request from '@/utils/request'
|
import request from '@/utils/request'
|
||||||
|
|
||||||
export function locationList(data) { // 获取库位信息列表
|
export function locationList(data) { // 获取库位信息列表
|
||||||
return request({
|
return request({
|
||||||
url: '/basic/stock/page',
|
url: '/api/wms/area/locationByShelf',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@@ -17,7 +17,7 @@ export function locationList(data) { // 获取库位信息列表
|
|||||||
|
|
||||||
export function locationDetail(id) { // 获取库位信息单条数据
|
export function locationDetail(id) { // 获取库位信息单条数据
|
||||||
return request({
|
return request({
|
||||||
url: '/basic/stock/get',
|
url: '/api/wms/area/locationById',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data: { id }
|
data: { id }
|
||||||
})
|
})
|
||||||
@@ -25,7 +25,7 @@ export function locationDetail(id) { // 获取库位信息单条数据
|
|||||||
|
|
||||||
export function locationUpdate(data) { // 更新库位信息单条数据
|
export function locationUpdate(data) { // 更新库位信息单条数据
|
||||||
return request({
|
return request({
|
||||||
url: '/basic/stock/update',
|
url: '/api/wms/area/updatelocation',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@@ -33,7 +33,7 @@ export function locationUpdate(data) { // 更新库位信息单条数据
|
|||||||
|
|
||||||
export function locationAdd(data) { // 新增库位信息单条数据
|
export function locationAdd(data) { // 新增库位信息单条数据
|
||||||
return request({
|
return request({
|
||||||
url: '/basic/stock/add',
|
url: '/api/wms/area/addlocation',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@@ -41,14 +41,14 @@ export function locationAdd(data) { // 新增库位信息单条数据
|
|||||||
|
|
||||||
export function locationCode() { // 获取库位信息code
|
export function locationCode() { // 获取库位信息code
|
||||||
return request({
|
return request({
|
||||||
url: '/basic/stock/get-code',
|
url: '/api/wms/area/getCode',
|
||||||
method: 'post'
|
method: 'post'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
export function locationDelete(id) { // 删除库位信息单条数据
|
export function locationDelete(id) { // 删除库位信息单条数据
|
||||||
return request({
|
return request({
|
||||||
url: '/basic/stock/delete',
|
url: '/api/wms/area/deletelocation',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data: { id }
|
data: { id }
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 16:00:14
|
* @Date: 2020-12-29 16:00:14
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-01-10 17:00:16
|
* @LastEditTime: 2022-03-04 09:06:58
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
import request from '@/utils/request'
|
import request from '@/utils/request'
|
||||||
@@ -15,6 +15,14 @@ export function equipmentInfoList(data) { // 获取设备信息列表
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function equipmentlistList(data) { // 获取设备信息列表
|
||||||
|
return request({
|
||||||
|
url: '/api/process/work-sequence/equipmentlistList',
|
||||||
|
method: 'post',
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
export function equipmentInfoDetail(id) { // 获取设备信息单条数据
|
export function equipmentInfoDetail(id) { // 获取设备信息单条数据
|
||||||
return request({
|
return request({
|
||||||
url: '/api/wms/equipment/get',
|
url: '/api/wms/equipment/get',
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 16:00:14
|
* @Date: 2020-12-29 16:00:14
|
||||||
* @LastEditors: zwq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2021-01-20 12:00:52
|
* @LastEditTime: 2022-03-03 20:09:43
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
import request from '@/utils/request'
|
import request from '@/utils/request'
|
||||||
@@ -27,7 +27,7 @@ export function equipmentInfoAttrDetail(id) { // 获取设备属性单条数据
|
|||||||
|
|
||||||
export function equipmentInfoAttrUpdate(data) { // 更新设备属性单条数据
|
export function equipmentInfoAttrUpdate(data) { // 更新设备属性单条数据
|
||||||
return request({
|
return request({
|
||||||
url: '/basic/equipment-attr/update',
|
url: '/api/wms/equipment/updateattr',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@@ -35,7 +35,7 @@ export function equipmentInfoAttrUpdate(data) { // 更新设备属性单条数
|
|||||||
|
|
||||||
export function equipmentInfoAttrAdd(data) { // 新增设备属性单条数据
|
export function equipmentInfoAttrAdd(data) { // 新增设备属性单条数据
|
||||||
return request({
|
return request({
|
||||||
url: '/basic/equipment-attr/add',
|
url: '/api/wms/equipment/addattr',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@@ -43,14 +43,14 @@ export function equipmentInfoAttrAdd(data) { // 新增设备属性单条数据
|
|||||||
|
|
||||||
export function equipmentInfoAttrCode() { // 获取设备属性code
|
export function equipmentInfoAttrCode() { // 获取设备属性code
|
||||||
return request({
|
return request({
|
||||||
url: '/basic/equipment-attr/get-code',
|
url: '/api/wms/equipment/getCode',
|
||||||
method: 'post'
|
method: 'post'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
export function equipmentInfoAttrDelete(id) { // 删除设备属性单条数据
|
export function equipmentInfoAttrDelete(id) { // 删除设备属性单条数据
|
||||||
return request({
|
return request({
|
||||||
url: '/basic/equipment-attr/delete',
|
url: '/api/wms/equipment/deleteattr',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data: { id }
|
data: { id }
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -2,14 +2,14 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 16:00:14
|
* @Date: 2020-12-29 16:00:14
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-03 15:10:05
|
* @LastEditTime: 2022-03-04 10:05:02
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
import request from '@/utils/request'
|
import request from '@/utils/request'
|
||||||
|
|
||||||
export function staffList(data) { // 获取员工列表
|
export function staffList(data) { // 获取员工列表
|
||||||
return request({
|
return request({
|
||||||
url: '/basic/worker/page',
|
url: '/api/wms/worker/page',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@@ -17,7 +17,7 @@ export function staffList(data) { // 获取员工列表
|
|||||||
|
|
||||||
export function staffDetail(id) { // 获取员工单条数据
|
export function staffDetail(id) { // 获取员工单条数据
|
||||||
return request({
|
return request({
|
||||||
url: '/basic/worker/get',
|
url: '/api/wms/worker/get',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data: { id }
|
data: { id }
|
||||||
})
|
})
|
||||||
@@ -25,7 +25,7 @@ export function staffDetail(id) { // 获取员工单条数据
|
|||||||
|
|
||||||
export function staffUpdate(data) { // 更新员工单条数据
|
export function staffUpdate(data) { // 更新员工单条数据
|
||||||
return request({
|
return request({
|
||||||
url: '/basic/worker/update',
|
url: '/api/wms/worker/update',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@@ -33,7 +33,7 @@ export function staffUpdate(data) { // 更新员工单条数据
|
|||||||
|
|
||||||
export function staffAdd(data) { // 新增员工单条数据
|
export function staffAdd(data) { // 新增员工单条数据
|
||||||
return request({
|
return request({
|
||||||
url: '/basic/worker/add',
|
url: '/api/wms/worker/add',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
@@ -41,14 +41,14 @@ export function staffAdd(data) { // 新增员工单条数据
|
|||||||
|
|
||||||
export function staffCode() { // 获取员工code
|
export function staffCode() { // 获取员工code
|
||||||
return request({
|
return request({
|
||||||
url: '/basic/worker/get-code',
|
url: '/api/wms/worker/get-code',
|
||||||
method: 'post'
|
method: 'post'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
export function staffDelete(id) { // 删除员工单条数据
|
export function staffDelete(id) { // 删除员工单条数据
|
||||||
return request({
|
return request({
|
||||||
url: '/basic/worker/delete',
|
url: '/api/wms/worker/delete',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data: { id }
|
data: { id }
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 16:00:14
|
* @Date: 2020-12-29 16:00:14
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-03 13:57:00
|
* @LastEditTime: 2022-03-04 09:35:14
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
import request from '@/utils/request'
|
import request from '@/utils/request'
|
||||||
@@ -15,6 +15,14 @@ export function workOrderList(data) { // 获取工单列表
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function workOrderListList(data) { // 00A获取工单列表
|
||||||
|
return request({
|
||||||
|
url: '/api/wms/work/order/page',
|
||||||
|
method: 'post',
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
export function workOrderDetail(id) { // 获取工单单条数据
|
export function workOrderDetail(id) { // 获取工单单条数据
|
||||||
const data = {
|
const data = {
|
||||||
'id': id
|
'id': id
|
||||||
|
|||||||
@@ -571,10 +571,18 @@ export default {
|
|||||||
zh: '货架信息',
|
zh: '货架信息',
|
||||||
en: 'Shelf Add'
|
en: 'Shelf Add'
|
||||||
},
|
},
|
||||||
|
shelfInfo: {
|
||||||
|
zh: '货位管理',
|
||||||
|
en: 'Shelf Info'
|
||||||
|
},
|
||||||
locationAdd: {
|
locationAdd: {
|
||||||
zh: '库位信息',
|
zh: '库位信息',
|
||||||
en: 'Location Add'
|
en: 'Location Add'
|
||||||
},
|
},
|
||||||
|
location: {
|
||||||
|
zh: '添加库位',
|
||||||
|
en: 'Location Management'
|
||||||
|
},
|
||||||
storageBox: {
|
storageBox: {
|
||||||
zh: '存储箱',
|
zh: '存储箱',
|
||||||
en: 'Storage Box'
|
en: 'Storage Box'
|
||||||
@@ -584,6 +592,18 @@ export default {
|
|||||||
en: 'Position Detail Info'
|
en: 'Position Detail Info'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
process: {
|
||||||
|
zh: '工序信息',
|
||||||
|
en: 'Process Info',
|
||||||
|
processInfo: {
|
||||||
|
zh: '工序信息',
|
||||||
|
en: 'Process Info'
|
||||||
|
},
|
||||||
|
processInfoAdd: {
|
||||||
|
zh: '工序信息管理',
|
||||||
|
en: 'Process Manage'
|
||||||
|
}
|
||||||
|
},
|
||||||
equipment: {
|
equipment: {
|
||||||
zh: '设备信息',
|
zh: '设备信息',
|
||||||
en: 'Equipment Info',
|
en: 'Equipment Info',
|
||||||
|
|||||||
@@ -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-01-17 15:12:18
|
* @LastEditTime: 2022-03-04 10:13:58
|
||||||
* @Description: file content
|
* @Description: file content
|
||||||
*/
|
*/
|
||||||
export default {
|
export default {
|
||||||
@@ -225,6 +225,7 @@ export default {
|
|||||||
wasteGrade: 'Waste Grade',
|
wasteGrade: 'Waste Grade',
|
||||||
RegisterPerson: 'Register Person',
|
RegisterPerson: 'Register Person',
|
||||||
updateTime: 'Update Time',
|
updateTime: 'Update Time',
|
||||||
|
registrationPlace: 'Registration Place',
|
||||||
cause: 'Cause',
|
cause: 'Cause',
|
||||||
causeCode: 'Cause Code',
|
causeCode: 'Cause Code',
|
||||||
WasteName: 'Waste Name',
|
WasteName: 'Waste Name',
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* @Date: 2021-03-13 13:49:16
|
* @Date: 2021-03-13 13:49:16
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2021-04-15 09:59:15
|
* @LastEditTime: 2022-03-04 09:21:36
|
||||||
* @FilePath: \basic-admin\src\lang\i18n\en\module\quality.js
|
* @FilePath: \basic-admin\src\lang\i18n\en\module\quality.js
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
@@ -90,5 +90,10 @@ export default {
|
|||||||
subTitle: 'Scrap Category Statistics',
|
subTitle: 'Scrap Category Statistics',
|
||||||
completeWaste: 'Complete Waste',
|
completeWaste: 'Complete Waste',
|
||||||
CanBeUsedAfterProcessing: 'Can be used after processing'
|
CanBeUsedAfterProcessing: 'Can be used after processing'
|
||||||
|
},
|
||||||
|
QCPplan: {
|
||||||
|
QCPcode: 'QCP Code',
|
||||||
|
getTime: 'Get Time',
|
||||||
|
detail: 'Detail'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,13 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: gtz
|
* @Author: gtz
|
||||||
* @Date: 2021-03-04 16:13:51
|
* @Date: 2021-03-04 16:13:51
|
||||||
|
<<<<<<< HEAD
|
||||||
|
* @LastEditors: fzq
|
||||||
|
* @LastEditTime: 2022-03-03 19:52:51
|
||||||
|
=======
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-01-17 15:12:12
|
* @LastEditTime: 2022-03-04 10:13:41
|
||||||
|
>>>>>>> develop
|
||||||
* @Description: file content
|
* @Description: file content
|
||||||
*/
|
*/
|
||||||
export default {
|
export default {
|
||||||
@@ -135,6 +140,8 @@ export default {
|
|||||||
AreaName: '货架名称',
|
AreaName: '货架名称',
|
||||||
rowNum: '行数',
|
rowNum: '行数',
|
||||||
columnNum: '列数',
|
columnNum: '列数',
|
||||||
|
rowMark: '行标',
|
||||||
|
columnMark: '列标',
|
||||||
Shelf: '货架',
|
Shelf: '货架',
|
||||||
ManageShelves: '管理货架',
|
ManageShelves: '管理货架',
|
||||||
ShelfCode: '货架编码',
|
ShelfCode: '货架编码',
|
||||||
@@ -145,9 +152,12 @@ export default {
|
|||||||
ManageLocation: '管理货位',
|
ManageLocation: '管理货位',
|
||||||
LocationCode: '库位编码',
|
LocationCode: '库位编码',
|
||||||
LocationName: '库位名称',
|
LocationName: '库位名称',
|
||||||
anotherName: '别名',
|
locationType: '库位类型',
|
||||||
|
anotherName: '库位别名',
|
||||||
place: '位置',
|
place: '位置',
|
||||||
addCacheArea: '添加货架'
|
addCacheArea: '添加货架',
|
||||||
|
addLocation: '添加库位',
|
||||||
|
status: '状态'
|
||||||
},
|
},
|
||||||
storageBox: {
|
storageBox: {
|
||||||
name: '名称',
|
name: '名称',
|
||||||
@@ -162,6 +172,8 @@ export default {
|
|||||||
PositionCodeAlias: '位置编码别名'
|
PositionCodeAlias: '位置编码别名'
|
||||||
},
|
},
|
||||||
equipment: {
|
equipment: {
|
||||||
|
shortName: '名称缩写',
|
||||||
|
enName: '英文名称',
|
||||||
EquipmentName: '设备名称',
|
EquipmentName: '设备名称',
|
||||||
EquipmentCode: '设备编码',
|
EquipmentCode: '设备编码',
|
||||||
EquipmentType: '设备类型',
|
EquipmentType: '设备类型',
|
||||||
@@ -225,6 +237,7 @@ export default {
|
|||||||
wasteGrade: '废品等级',
|
wasteGrade: '废品等级',
|
||||||
RegisterPerson: '登记人',
|
RegisterPerson: '登记人',
|
||||||
updateTime: '登记时间',
|
updateTime: '登记时间',
|
||||||
|
registrationPlace: '登记地点',
|
||||||
cause: '报废原因',
|
cause: '报废原因',
|
||||||
causeCode: '报废原因编码',
|
causeCode: '报废原因编码',
|
||||||
WasteName: '废品报废名称',
|
WasteName: '废品报废名称',
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* @Date: 2021-03-13 13:49:07
|
* @Date: 2021-03-13 13:49:07
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2021-04-15 09:58:18
|
* @LastEditTime: 2022-03-04 09:21:04
|
||||||
* @FilePath: \basic-admin\src\lang\i18n\zh\module\quality.js
|
* @FilePath: \basic-admin\src\lang\i18n\zh\module\quality.js
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
@@ -90,5 +90,10 @@ export default {
|
|||||||
subTitle: '废品分类统计',
|
subTitle: '废品分类统计',
|
||||||
completeWaste: '完全废品',
|
completeWaste: '完全废品',
|
||||||
CanBeUsedAfterProcessing: '加工可用'
|
CanBeUsedAfterProcessing: '加工可用'
|
||||||
|
},
|
||||||
|
QCPplan: {
|
||||||
|
QCPcode: 'QCP项目编码',
|
||||||
|
getTime: '获取时间',
|
||||||
|
detail: '详情'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -98,11 +98,19 @@ export const constantRoutes = [
|
|||||||
name: 'basicData',
|
name: 'basicData',
|
||||||
meta: { title: routerTitle.basicData?.[language] || routerTitle.basicData.en, icon: 'form', iconPart: 'basicData', affix: true, required: true, requireToken: true },
|
meta: { title: routerTitle.basicData?.[language] || routerTitle.basicData.en, icon: 'form', iconPart: 'basicData', affix: true, required: true, requireToken: true },
|
||||||
children: [
|
children: [
|
||||||
|
// 缓存区信息
|
||||||
|
{
|
||||||
|
path: 'cache',
|
||||||
|
component: () => import('@/views/basicData/Cache/cache'),
|
||||||
|
name: 'cache',
|
||||||
|
hidden: true,
|
||||||
|
meta: { title: routerTitle.basicData.ports.ports?.[language] || routerTitle.basicData.ports.ports.en, icon: 'form', affix: true }
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: 'ports',
|
path: 'ports',
|
||||||
component: () => import('@/views/basicData/Cache/cache'),
|
component: () => import('@/views/basicData/Cache/shelf'),
|
||||||
name: 'ports',
|
name: 'ports',
|
||||||
meta: { title: routerTitle.basicData.ports.ports?.[language] || routerTitle.basicData.ports.ports.en, icon: 'form', affix: true }
|
meta: { title: routerTitle.basicData.ports.shelfInfo?.[language] || routerTitle.basicData.ports.shelfInfo.en, icon: 'form', affix: true }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'area',
|
path: 'area',
|
||||||
@@ -147,6 +155,19 @@ export const constantRoutes = [
|
|||||||
hidden: true,
|
hidden: true,
|
||||||
meta: { title: routerTitle.basicData.ports.PositionDetailInfo?.[language] || routerTitle.basicData.ports.PositionDetailInfo.en, icon: 'form', affix: true }
|
meta: { title: routerTitle.basicData.ports.PositionDetailInfo?.[language] || routerTitle.basicData.ports.PositionDetailInfo.en, icon: 'form', affix: true }
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: 'processInfo',
|
||||||
|
component: () => import('@/views/basicData/Process/processInfo'),
|
||||||
|
name: 'processInfo',
|
||||||
|
meta: { title: routerTitle.basicData.process.processInfo?.[language] || routerTitle.basicData.process.processInfo.en, icon: 'form', affix: true, required: true, requireToken: true }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'processInfoAdd',
|
||||||
|
component: () => import('@/views/basicData/Process/components/processInfo-add'),
|
||||||
|
name: 'processInfoAdd',
|
||||||
|
hidden: true,
|
||||||
|
meta: { title: routerTitle.basicData.process.processInfoAdd?.[language] || routerTitle.basicData.process.processInfoAdd.en, icon: 'form', affix: true, required: true, requireToken: true }
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: 'equipmentInfo',
|
path: 'equipmentInfo',
|
||||||
component: () => import('@/views/basicData/Equipment/equipmentInfo'),
|
component: () => import('@/views/basicData/Equipment/equipmentInfo'),
|
||||||
@@ -188,6 +209,12 @@ export const constantRoutes = [
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: 'staff',
|
||||||
|
component: () => import('@/views/basicData/GroupModule/staff'),
|
||||||
|
name: 'staff',
|
||||||
|
meta: { title: routerTitle.basicData.teamManage.staff?.[language] || routerTitle.basicData.teamManage.staff.en, icon: 'form', affix: true, required: true, requireToken: true }
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/dataDictionary',
|
path: '/dataDictionary',
|
||||||
component: () => import('@/views/basicData/index'),
|
component: () => import('@/views/basicData/index'),
|
||||||
@@ -296,6 +323,45 @@ export const constantRoutes = [
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/form',
|
||||||
|
component: Layout,
|
||||||
|
redirect: '/form',
|
||||||
|
name: 'formManage',
|
||||||
|
meta: { title: routerTitle.form?.[language] || routerTitle.form.en, icon: 'form', iconPart: 'formManage', affix: true, required: true, requireToken: true, unuse: false },
|
||||||
|
children: [{
|
||||||
|
path: 'report',
|
||||||
|
component: () => import('@/views/report-manage/ReportSortChoise'),
|
||||||
|
name: 'Report',
|
||||||
|
meta: { title: routerTitle.form.report?.[language] || routerTitle.form.report.en, icon: 'form', affix: true, required: true, requireToken: true }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'report-sort-list',
|
||||||
|
component: () => import('@/views/report-manage/Report'),
|
||||||
|
name: 'ReportSortList',
|
||||||
|
hidden: true,
|
||||||
|
meta: { title: routerTitle.form.reportSortList?.[language] || routerTitle.form.reportSortList.en, icon: 'form', affix: true, required: true, requireToken: true }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'report-view',
|
||||||
|
component: () => import('@/views/report-manage/ReportView'),
|
||||||
|
name: 'ReportDesign',
|
||||||
|
meta: { title: routerTitle.form.reportView?.[language] || routerTitle.form.reportView.en, icon: 'form', affix: true, required: true, requireToken: true },
|
||||||
|
hidden: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'report-design',
|
||||||
|
component: () => import('@/views/report-manage/ReportDesign'),
|
||||||
|
name: 'ReportDesign',
|
||||||
|
meta: { title: routerTitle.form.reportDesign?.[language] || routerTitle.form.reportDesign.en, icon: 'form', affix: true, required: true, requireToken: true }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'report-sort',
|
||||||
|
component: () => import('@/views/report-manage/ReportSort/index'),
|
||||||
|
name: 'ReportSort',
|
||||||
|
meta: { title: routerTitle.form.reportSort?.[language] || routerTitle.form.reportSort.en, icon: 'form', affix: true, required: true, requireToken: true }
|
||||||
|
}]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/interface',
|
path: '/interface',
|
||||||
component: Layout,
|
component: Layout,
|
||||||
@@ -345,12 +411,12 @@ export const constantRoutes = [
|
|||||||
name: 'ScrapType',
|
name: 'ScrapType',
|
||||||
meta: { title: routerTitle.basicData.scrap.scrapType?.[language] || routerTitle.basicData.scrap.scrapType.en, icon: 'form', affix: true, required: true, requireToken: true }
|
meta: { title: routerTitle.basicData.scrap.scrapType?.[language] || routerTitle.basicData.scrap.scrapType.en, icon: 'form', affix: true, required: true, requireToken: true }
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
path: 'EquipmentScrapGrade',
|
// path: 'EquipmentScrapGrade',
|
||||||
component: () => import('@/views/basicData/EquipmentScrapGrade'),
|
// component: () => import('@/views/basicData/EquipmentScrapGrade'),
|
||||||
name: 'EquipmentScrapGrade',
|
// name: 'EquipmentScrapGrade',
|
||||||
meta: { title: routerTitle.basicData.EquipmentScrapGrade?.[language] || routerTitle.basicData.EquipmentScrapGrade.en, icon: 'form', affix: true, required: true, requireToken: true }
|
// meta: { title: routerTitle.basicData.EquipmentScrapGrade?.[language] || routerTitle.basicData.EquipmentScrapGrade.en, icon: 'form', affix: true, required: true, requireToken: true }
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
path: 'scrap',
|
path: 'scrap',
|
||||||
component: () => import('@/views/QualityManager/scrap'),
|
component: () => import('@/views/QualityManager/scrap'),
|
||||||
|
|||||||
@@ -2,18 +2,35 @@
|
|||||||
* @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-03 14:28:58
|
* @LastEditTime: 2022-03-04 09:22:58
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<head-form
|
<el-form
|
||||||
:placeholder-name="placeholderName"
|
ref="formData"
|
||||||
:key-name="keyName"
|
:rules="rules"
|
||||||
:show-add="showAdd"
|
:model="listQuery"
|
||||||
@getDataList="getList"
|
:inline="true"
|
||||||
@add="addNew"
|
size="medium"
|
||||||
/>
|
label-width="100px"
|
||||||
|
>
|
||||||
|
<el-form-item :label="$t('module.basicData.Warehouse.TimeSlot')" prop="time">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="listQuery.timeSlot"
|
||||||
|
type="daterange"
|
||||||
|
format="yyyy-MM-dd"
|
||||||
|
value-format="yyyy-MM-dd"
|
||||||
|
:start-placeholder="$t('module.orderManage.order.StartTime')"
|
||||||
|
:end-placeholder="$t('module.orderManage.order.StartTime')"
|
||||||
|
:range-separator="$t('module.orderManage.order.To')"
|
||||||
|
clearable
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" @click="getList()"> {{ 'btn.search' | i18nFilter }} </el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
<base-table
|
<base-table
|
||||||
:page="listQuery.current"
|
:page="listQuery.current"
|
||||||
:limit="listQuery.size"
|
:limit="listQuery.size"
|
||||||
@@ -35,18 +52,17 @@
|
|||||||
:limit.sync="listQuery.size"
|
:limit.sync="listQuery.size"
|
||||||
@pagination="getList()"
|
@pagination="getList()"
|
||||||
/>
|
/>
|
||||||
|
<Factory-add v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getList" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import i18n from '@/lang'
|
import FactoryAdd from './components/ExecutionInfoDetail.vue'
|
||||||
import { StateConfigList, StateConfigDelete } from '@/api/basicData/StateConfig'
|
|
||||||
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'
|
||||||
import { timeFormatter } from '@/filters'
|
import { timeFormatter } from '@/filters'
|
||||||
import basicData from '@/filters/basicData'
|
import i18n from '@/lang'
|
||||||
/**
|
/**
|
||||||
* 表格表头配置项 TypeScript接口注释
|
* 表格表头配置项 TypeScript接口注释
|
||||||
* tableConfig<ConfigItem> = []
|
* tableConfig<ConfigItem> = []
|
||||||
@@ -65,62 +81,51 @@ import basicData from '@/filters/basicData'
|
|||||||
|
|
||||||
const tableBtn = [
|
const tableBtn = [
|
||||||
{
|
{
|
||||||
type: 'edit',
|
type: 'see',
|
||||||
btnName: 'btn.edit'
|
btnName: 'btn.see'
|
||||||
}
|
}
|
||||||
// {
|
|
||||||
// type: 'delete',
|
|
||||||
// btnName: 'btn.delete'
|
|
||||||
// }
|
|
||||||
]
|
]
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
|
{
|
||||||
|
prop: 'name',
|
||||||
|
label: i18n.t('module.quality.QCPplan.QCPcode'),
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
prop: 'createTime',
|
prop: 'createTime',
|
||||||
label: i18n.t('module.basicData.factory.createTime'),
|
label: i18n.t('module.quality.QCPplan.getTime'),
|
||||||
filter: timeFormatter,
|
filter: timeFormatter,
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'status',
|
|
||||||
label: i18n.t('module.basicData.StateConfig.status'),
|
|
||||||
align: 'center'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'twinkle',
|
|
||||||
label: i18n.t('module.basicData.StateConfig.Twinkle'),
|
|
||||||
filter: basicData('onDuty'),
|
|
||||||
align: 'center'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'colour',
|
|
||||||
label: i18n.t('module.basicData.StateConfig.DisplayColor'),
|
|
||||||
align: 'center'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'description',
|
|
||||||
label: i18n.t('module.basicData.visual.Remarks'),
|
|
||||||
align: 'center'
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'QCPplan',
|
name: 'ExecutionInfo',
|
||||||
components: { Pagination, BaseTable, MethodBtn, HeadForm },
|
components: { Pagination, BaseTable, MethodBtn, FactoryAdd },
|
||||||
|
filters: {
|
||||||
|
statusFilter(status) {
|
||||||
|
const statusMap = {
|
||||||
|
published: 'success',
|
||||||
|
draft: 'info',
|
||||||
|
deleted: 'danger'
|
||||||
|
}
|
||||||
|
return statusMap[status]
|
||||||
|
}
|
||||||
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
keyName: i18n.t('module.basicData.visual.keyword'),
|
|
||||||
placeholderName: this.$t('module.basicData.StateConfig.status'),
|
|
||||||
addOrUpdateVisible: false,
|
addOrUpdateVisible: false,
|
||||||
tableBtn,
|
tableBtn,
|
||||||
trueWidth: 150,
|
trueWidth: 200,
|
||||||
tableProps,
|
tableProps,
|
||||||
list: [],
|
list: [],
|
||||||
total: 0,
|
total: 0,
|
||||||
showAdd: false,
|
|
||||||
listLoading: true,
|
listLoading: true,
|
||||||
|
rules: {},
|
||||||
listQuery: {
|
listQuery: {
|
||||||
current: 1,
|
current: 1,
|
||||||
size: 10
|
size: 10,
|
||||||
|
timeSlot: []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -129,37 +134,32 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
handleClick(raw) {
|
handleClick(raw) {
|
||||||
console.log(raw)
|
this.addNew(raw.data.id)
|
||||||
if (raw.type === 'delete') {
|
|
||||||
this.$confirm(`${this.$t('module.basicData.visual.TipsBefore')}[${raw.data.status}]?`, this.$t('module.basicData.visual.Tips'), {
|
|
||||||
confirmButtonText: this.$t('module.basicData.visual.confirmButtonText'),
|
|
||||||
cancelButtonText: this.$t('module.basicData.visual.cancelButtonText'),
|
|
||||||
type: 'warning'
|
|
||||||
}).then(() => {
|
|
||||||
StateConfigDelete(raw.data.id).then(response => {
|
|
||||||
this.$message({
|
|
||||||
message: this.$t('module.basicData.visual.success'),
|
|
||||||
type: 'success',
|
|
||||||
duration: 1500,
|
|
||||||
onClose: () => {
|
|
||||||
this.getList()
|
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}).catch(() => {})
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
getList(key) {
|
getList() {
|
||||||
this.listLoading = true
|
// this.listLoading = true
|
||||||
this.listQuery.status = key
|
if (this.listQuery.timeSlot) {
|
||||||
StateConfigList(this.listQuery).then(response => {
|
this.listQuery.startTime = this.listQuery.timeSlot[0]
|
||||||
if (response.data.records) {
|
this.listQuery.endTime = this.listQuery.timeSlot[1]
|
||||||
this.list = response.data.records
|
} else {
|
||||||
} else {
|
this.listQuery.startTime = ''
|
||||||
this.list.splice(0, this.list.length)
|
this.listQuery.endTime = ''
|
||||||
}
|
}
|
||||||
this.total = response.data.total
|
// ExecutionInfoList(this.listQuery).then(response => {
|
||||||
this.listLoading = false
|
// if (response.data.records) {
|
||||||
|
// this.list = response.data.records
|
||||||
|
// } else {
|
||||||
|
// this.list.splice(0, this.list.length)
|
||||||
|
// }
|
||||||
|
// this.total = response.data.total
|
||||||
|
this.listLoading = false
|
||||||
|
// })
|
||||||
|
},
|
||||||
|
// 新增 / 修改
|
||||||
|
addNew(id) {
|
||||||
|
this.addOrUpdateVisible = true
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.addOrUpdate.init(id)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
115
src/views/QualityManager/components/ExecutionInfoDetail.vue
Normal file
115
src/views/QualityManager/components/ExecutionInfoDetail.vue
Normal file
@@ -0,0 +1,115 @@
|
|||||||
|
<!--
|
||||||
|
* @Author: zwq
|
||||||
|
* @Date: 2020-12-29 16:37:56
|
||||||
|
* @LastEditors: zwq
|
||||||
|
* @LastEditTime: 2022-01-17 15:21:50
|
||||||
|
* @Description:
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<el-dialog
|
||||||
|
:title="'btn.see' | i18nFilter"
|
||||||
|
:visible.sync="visible"
|
||||||
|
>
|
||||||
|
<el-row :gutter="10">
|
||||||
|
<el-form
|
||||||
|
ref="dataForm"
|
||||||
|
:model="dataForm"
|
||||||
|
size="medium"
|
||||||
|
label-width="110px"
|
||||||
|
label-position="left"
|
||||||
|
>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item :label="$t('module.basicData.Warehouse.OrderName')" prop="name">
|
||||||
|
<el-input v-model="dataForm.name" :placeholder="$t('module.basicData.Warehouse.OrderName')" readonly :style="{width: '100%'}" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item :label="$t('module.basicData.Warehouse.IssueOrderTime')" prop="createTime">
|
||||||
|
<el-input v-model="dataForm.createTime" :placeholder="$t('module.basicData.Warehouse.IssueOrderTime')" readonly :style="{width: '100%'}" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item :label="$t('module.basicData.Warehouse.PlanProcessQuantity')" prop="planQuantity">
|
||||||
|
<el-input v-model="dataForm.planQuantity" :placeholder="$t('module.basicData.Warehouse.PlanProcessQuantity')" readonly :style="{width: '100%'}" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item :label="$t('module.basicData.Warehouse.OrderCode')" prop="taskCode">
|
||||||
|
<el-input v-model="dataForm.taskCode" :placeholder="$t('module.basicData.Warehouse.OrderCode')" readonly :style="{width: '100%'}" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item :label="$t('module.basicData.Warehouse.OrderStatus')" prop="taskType">
|
||||||
|
<el-input v-model="dataForm.taskType" :placeholder="$t('module.basicData.Warehouse.OrderStatus')" readonly :style="{width: '100%'}" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item :label="$t('module.basicData.Warehouse.TotalProcessName')" prop="craftName">
|
||||||
|
<el-input v-model="dataForm.craftName" :placeholder="$t('module.basicData.Warehouse.TotalProcessName')" readonly :style="{width: '100%'}" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item :label="$t('module.basicData.Warehouse.SubProcessName')" prop="subProccessName">
|
||||||
|
<el-input
|
||||||
|
v-model="dataForm.subProccessName"
|
||||||
|
:placeholder="$t('module.basicData.Warehouse.SubProcessName')"
|
||||||
|
readonly
|
||||||
|
:style="{width: '100%'}"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-col>
|
||||||
|
</el-form>
|
||||||
|
</el-row>
|
||||||
|
<span slot="footer" class="dialog-footer">
|
||||||
|
<el-button @click="visible = false">{{ 'btn.cancel' | i18nFilter }}</el-button>
|
||||||
|
</span>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { ExecutionInfoDetail } from '@/api/orderManage/00A'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
visible: false,
|
||||||
|
dataForm: {
|
||||||
|
id: 0,
|
||||||
|
name: undefined,
|
||||||
|
createTime: undefined,
|
||||||
|
taskCode: undefined,
|
||||||
|
taskType: undefined,
|
||||||
|
craftName: undefined,
|
||||||
|
planQuantity: undefined,
|
||||||
|
subProccessName: undefined
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
init(id) {
|
||||||
|
this.dataForm.id = id || ''
|
||||||
|
this.visible = true
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs['dataForm'].resetFields()
|
||||||
|
if (this.dataForm.id) {
|
||||||
|
ExecutionInfoDetail(this.dataForm.id).then(res => {
|
||||||
|
this.dataForm = res.data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 16:37:56
|
* @Date: 2020-12-29 16:37:56
|
||||||
* @LastEditors: Please set LastEditors
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2021-07-20 11:03:09
|
* @LastEditTime: 2022-03-04 10:39:52
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -122,6 +122,9 @@
|
|||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item :label="$t('module.basicData.ScrapInfo.registrationPlace')" prop="placeOfRegis">
|
||||||
|
<el-input v-model="dataForm.placeOfRegis" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.ScrapInfo.registrationPlace')])" clearable :style="{width: '100%'}" />
|
||||||
|
</el-form-item>
|
||||||
<el-form-item :label="$t('module.basicData.ScrapInfo.remark')" prop="remark">
|
<el-form-item :label="$t('module.basicData.ScrapInfo.remark')" prop="remark">
|
||||||
<el-input v-model="dataForm.remark" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.ScrapInfo.remark')])" clearable :style="{width: '100%'}" />
|
<el-input v-model="dataForm.remark" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.ScrapInfo.remark')])" clearable :style="{width: '100%'}" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -141,7 +144,7 @@ import { getScrapInfo, editScrapInfo, addScrapInfo, getScrap } from '@/api/quali
|
|||||||
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'
|
||||||
import { workOrderList } from '@/api/orderManage/workOrder/workOrder'
|
import { workOrderListList } from '@/api/orderManage/workOrder/workOrder'
|
||||||
|
|
||||||
const wasteGradeArr = [{
|
const wasteGradeArr = [{
|
||||||
value: '加工可用',
|
value: '加工可用',
|
||||||
@@ -173,6 +176,7 @@ export default {
|
|||||||
scrapGrade: undefined,
|
scrapGrade: undefined,
|
||||||
description: undefined,
|
description: undefined,
|
||||||
substrateId: undefined,
|
substrateId: undefined,
|
||||||
|
placeOfRegis: '00A',
|
||||||
remark: undefined
|
remark: undefined
|
||||||
},
|
},
|
||||||
wasteGradeArr,
|
wasteGradeArr,
|
||||||
@@ -279,7 +283,7 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
async getDict() {
|
async getDict() {
|
||||||
const result3 = await workOrderList({
|
const result3 = await workOrderListList({
|
||||||
current: 1,
|
current: 1,
|
||||||
size: 999
|
size: 999
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 15:41:11
|
* @Date: 2020-12-29 15:41:11
|
||||||
* @LastEditors: Please set LastEditors
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2021-07-26 13:39:35
|
* @LastEditTime: 2022-03-04 10:40:51
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -11,7 +11,7 @@
|
|||||||
:model="formData"
|
:model="formData"
|
||||||
:inline="true"
|
:inline="true"
|
||||||
size="medium"
|
size="medium"
|
||||||
label-width="130px"
|
label-width="100px"
|
||||||
>
|
>
|
||||||
<el-form-item v-if="false" :label="$t('module.basicData.ScrapInfo.PlateId')" prop="basalId">
|
<el-form-item v-if="false" :label="$t('module.basicData.ScrapInfo.PlateId')" prop="basalId">
|
||||||
<el-input v-model="formData.basalId" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.ScrapInfo.PlateId')])" style="width:200px" clearable />
|
<el-input v-model="formData.basalId" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.ScrapInfo.PlateId')])" style="width:200px" clearable />
|
||||||
@@ -117,11 +117,6 @@ const tableProps = [
|
|||||||
label: i18n.t('module.basicData.ScrapInfo.source'),
|
label: i18n.t('module.basicData.ScrapInfo.source'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
|
||||||
prop: 'scrapGradeDic',
|
|
||||||
label: i18n.t('module.basicData.ScrapInfo.wasteGrade'),
|
|
||||||
align: 'center'
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
prop: 'equipmentName',
|
prop: 'equipmentName',
|
||||||
label: i18n.t('module.basicData.ScrapInfo.name'),
|
label: i18n.t('module.basicData.ScrapInfo.name'),
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 16:37:56
|
* @Date: 2020-12-29 16:37:56
|
||||||
* @LastEditors: Please set LastEditors
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2021-07-26 14:39:36
|
* @LastEditTime: 2022-03-03 16:43:26
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -16,14 +16,14 @@
|
|||||||
</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.name" />
|
<el-option v-for="item in eqList" :key="item.id" :value="item.id" :label="item.enName" />
|
||||||
</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">
|
||||||
<el-select v-model="dataForm.type" clearable filterable>
|
<el-select v-model="dataForm.type" clearable filterable>
|
||||||
<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="address">
|
||||||
<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>
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: gtz
|
* @Author: gtz
|
||||||
* @Date: 2021-04-06 20:07:22
|
* @Date: 2021-04-06 20:07:22
|
||||||
* @LastEditors: gtz
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2021-06-23 16:22:06
|
* @LastEditTime: 2022-03-03 17:00:54
|
||||||
* @Description: file content
|
* @Description: file content
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
// edit here
|
// edit here
|
||||||
import DataDict from './filters'
|
// import DataDict from './filters'
|
||||||
const tableBtn = [{
|
const tableBtn = [{
|
||||||
type: 'edit',
|
type: 'edit',
|
||||||
btnName: 'btn.edit'
|
btnName: 'btn.edit'
|
||||||
@@ -35,12 +35,14 @@ const tableProps = [{
|
|||||||
prop: 'name',
|
prop: 'name',
|
||||||
label: i18n.t('module.art.processList.processName'),
|
label: i18n.t('module.art.processList.processName'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
}, {
|
},
|
||||||
prop: 'type',
|
// {
|
||||||
label: i18n.t('module.art.processList.type'),
|
// prop: 'type',
|
||||||
align: 'center',
|
// label: i18n.t('module.art.processList.type'),
|
||||||
filter: DataDict('typeFilter')
|
// align: 'center',
|
||||||
}, {
|
// filter: DataDict('typeFilter')
|
||||||
|
// },
|
||||||
|
{
|
||||||
prop: 'description',
|
prop: 'description',
|
||||||
label: i18n.t('module.art.processList.description'),
|
label: i18n.t('module.art.processList.description'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
@@ -48,7 +50,7 @@ const tableProps = [{
|
|||||||
import BaseTable from '@/components/BaseTable'
|
import BaseTable from '@/components/BaseTable'
|
||||||
// edit here
|
// edit here
|
||||||
import { list, del } from '@/api/art-manage/process'
|
import { list, del } from '@/api/art-manage/process'
|
||||||
import { equipmentInfoList } from '@/api/basicData/Equipment/equipmentInfo'
|
import { equipmentlistList } from '@/api/basicData/Equipment/equipmentInfo'
|
||||||
import HeadForm from '@/components/basicData/HeadForm'
|
import HeadForm from '@/components/basicData/HeadForm'
|
||||||
import ProcessAdd from './components/Process-add'
|
import ProcessAdd from './components/Process-add'
|
||||||
import Pagination from '@/components/Pagination'
|
import Pagination from '@/components/Pagination'
|
||||||
@@ -124,10 +126,7 @@ export default {
|
|||||||
},
|
},
|
||||||
async getEqList(key) {
|
async getEqList(key) {
|
||||||
// edit here
|
// edit here
|
||||||
const res = await equipmentInfoList({
|
const res = await equipmentlistList()
|
||||||
current: 1,
|
|
||||||
size: 999
|
|
||||||
})
|
|
||||||
if (res.code === 0) {
|
if (res.code === 0) {
|
||||||
this.eqList = res.data.records
|
this.eqList = res.data.records
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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 15:48:58
|
* @LastEditTime: 2022-03-03 16:35:32
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -158,8 +158,9 @@ export default {
|
|||||||
},
|
},
|
||||||
getList(key) {
|
getList(key) {
|
||||||
this.listLoading = true
|
this.listLoading = true
|
||||||
this.listQuery.name = key
|
this.listQuery.tareaName = key
|
||||||
this.listQuery.code = key
|
this.listQuery.code = key
|
||||||
|
console.log(this.listQuery)
|
||||||
cacheList(this.listQuery).then(response => {
|
cacheList(this.listQuery).then(response => {
|
||||||
if (response.data.records) {
|
if (response.data.records) {
|
||||||
this.list = response.data.records
|
this.list = response.data.records
|
||||||
|
|||||||
@@ -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:26:29
|
* @LastEditTime: 2022-03-03 14:21:53
|
||||||
* @enName:
|
* @enName:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -104,11 +104,11 @@
|
|||||||
|
|
||||||
<script>import i18n from '@/lang'
|
<script>import i18n from '@/lang'
|
||||||
import { cacheDetail, cacheUpdate, cacheAdd, cacheCode } from '@/api/basicData/Cache/cache'
|
import { cacheDetail, cacheUpdate, cacheAdd, cacheCode } from '@/api/basicData/Cache/cache'
|
||||||
import { areaList, areaDelete } from '@/api/basicData/Cache/area'
|
import { shelfList, shelfDelete } from '@/api/basicData/Cache/shelf'
|
||||||
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 shelfAttrAdd from './shelfAttr-add.vue'
|
import shelfAttrAdd from './shelfAttr-add.vue'
|
||||||
import shelfBtn from './shelfBtn.vue'
|
import locationBtn from './locationBtn.vue'
|
||||||
const tableBtn = [
|
const tableBtn = [
|
||||||
{
|
{
|
||||||
type: 'edit',
|
type: 'edit',
|
||||||
@@ -121,7 +121,7 @@ const tableBtn = [
|
|||||||
]
|
]
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'name',
|
prop: 'shelfName',
|
||||||
label: i18n.t('module.basicData.cache.AreaName'),
|
label: i18n.t('module.basicData.cache.AreaName'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
@@ -131,7 +131,7 @@ const tableProps = [
|
|||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'shelfNum',
|
prop: 'total',
|
||||||
label: i18n.t('module.basicData.cache.StorageQuantity'),
|
label: i18n.t('module.basicData.cache.StorageQuantity'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
@@ -148,7 +148,7 @@ const tableProps = [
|
|||||||
{
|
{
|
||||||
prop: 'shelf',
|
prop: 'shelf',
|
||||||
label: i18n.t('module.basicData.cache.Location'),
|
label: i18n.t('module.basicData.cache.Location'),
|
||||||
subcomponent: shelfBtn,
|
subcomponent: locationBtn,
|
||||||
align: 'center'
|
align: 'center'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -219,9 +219,20 @@ export default {
|
|||||||
if (this.id) {
|
if (this.id) {
|
||||||
cacheDetail(this.id).then(res => {
|
cacheDetail(this.id).then(res => {
|
||||||
this.dataForm = res.data
|
this.dataForm = res.data
|
||||||
|
// console.log(this.dataForm)
|
||||||
})
|
})
|
||||||
this.listQuery.id = this.id
|
this.listQuery.id = this.id
|
||||||
areaList(this.listQuery).then(response => {
|
console.log(this.listQuery.id)
|
||||||
|
// shelfDetail(this.listQuery).then(response => {
|
||||||
|
// console.log(response)
|
||||||
|
// if (response.data.records) {
|
||||||
|
// this.list = response.data.records
|
||||||
|
// } else {
|
||||||
|
// this.list.splice(0, this.list.length)
|
||||||
|
// }
|
||||||
|
// })
|
||||||
|
shelfList(this.listQuery).then(response => {
|
||||||
|
console.log(response)
|
||||||
if (response.data.records) {
|
if (response.data.records) {
|
||||||
this.list = response.data.records
|
this.list = response.data.records
|
||||||
} else {
|
} else {
|
||||||
@@ -236,7 +247,7 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
getList() {
|
getList() {
|
||||||
areaList(this.listQuery).then(response => {
|
shelfList(this.listQuery).then(response => {
|
||||||
if (response.data.records) {
|
if (response.data.records) {
|
||||||
this.list = response.data.records
|
this.list = response.data.records
|
||||||
}
|
}
|
||||||
@@ -249,7 +260,7 @@ export default {
|
|||||||
cancelButtonText: this.$t('module.basicData.visual.cancelButtonText'),
|
cancelButtonText: this.$t('module.basicData.visual.cancelButtonText'),
|
||||||
type: 'warning'
|
type: 'warning'
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
areaDelete(raw.data.id).then(response => {
|
shelfDelete(raw.data.id).then(response => {
|
||||||
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 15:41:11
|
* @Date: 2020-12-29 15:41:11
|
||||||
* @LastEditors: zwq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2021-03-11 16:44:10
|
* @LastEditTime: 2022-03-03 19:37:48
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -34,7 +34,6 @@ import { locationList, locationDelete } from '@/api/basicData/Cache/location'
|
|||||||
import locationAttrAdd from './locationAttr-add.vue'
|
import locationAttrAdd from './locationAttr-add.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'
|
|
||||||
/**
|
/**
|
||||||
* 表格表头配置项 TypeScript接口注释
|
* 表格表头配置项 TypeScript接口注释
|
||||||
* tableConfig<ConfigItem> = []
|
* tableConfig<ConfigItem> = []
|
||||||
@@ -62,10 +61,15 @@ const tableBtn = [
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
|
// {
|
||||||
|
// prop: 'createTime',
|
||||||
|
// label: i18n.t('module.basicData.factory.createTime'),
|
||||||
|
// filter: timeFormatter,
|
||||||
|
// align: 'center'
|
||||||
|
// },
|
||||||
{
|
{
|
||||||
prop: 'createTime',
|
prop: 'locationName',
|
||||||
label: i18n.t('module.basicData.factory.createTime'),
|
label: i18n.t('module.basicData.cache.LocationName'),
|
||||||
filter: timeFormatter,
|
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -74,23 +78,28 @@ const tableProps = [
|
|||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'name',
|
prop: 'locationNameAlias',
|
||||||
label: i18n.t('module.basicData.cache.LocationName'),
|
|
||||||
align: 'center'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'anotherName',
|
|
||||||
label: i18n.t('module.basicData.cache.anotherName'),
|
label: i18n.t('module.basicData.cache.anotherName'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'place',
|
prop: 'rowNum',
|
||||||
label: i18n.t('module.basicData.cache.place'),
|
label: i18n.t('module.basicData.cache.rowMark'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'remark',
|
prop: 'columns',
|
||||||
label: i18n.t('module.basicData.visual.Remarks'),
|
label: i18n.t('module.basicData.cache.columnMark'),
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'locationType',
|
||||||
|
label: i18n.t('module.basicData.cache.locationType'),
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'status',
|
||||||
|
label: i18n.t('module.basicData.cache.status'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -130,7 +139,8 @@ 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.name}]?`, this.$t('module.basicData.visual.Tips'), {
|
console.log(raw.data)
|
||||||
|
this.$confirm(`${this.$t('module.basicData.visual.TipsBefore')}[${raw.data.locationName}]?`, 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'
|
||||||
@@ -156,6 +166,7 @@ export default {
|
|||||||
locationList(this.listQuery).then(response => {
|
locationList(this.listQuery).then(response => {
|
||||||
if (response.data.records) {
|
if (response.data.records) {
|
||||||
this.list = response.data.records
|
this.list = response.data.records
|
||||||
|
console.log(this.list)
|
||||||
} else {
|
} else {
|
||||||
this.list.splice(0, this.list.length)
|
this.list.splice(0, this.list.length)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,30 +1,33 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 16:37:56
|
* @Date: 2020-12-29 16:37:56
|
||||||
* @LastEditors: zwq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2021-03-25 16:23:03
|
* @LastEditTime: 2022-03-03 19:42:43
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<el-dialog
|
<el-dialog
|
||||||
:title="!dataForm.shelfId ? 'btn.add' : 'btn.edit' | i18nFilter"
|
:title="!dataForm.id ? 'btn.add' : 'btn.edit' | i18nFilter"
|
||||||
:visible.sync="visible"
|
:visible.sync="visible"
|
||||||
>
|
>
|
||||||
<el-form ref="dataForm" :model="dataForm" :rules="dataRule" label-width="130px" @keyup.enter.native="dataFormSubmit()">
|
<el-form ref="dataForm" :model="dataForm" :rules="dataRule" label-width="130px" @keyup.enter.native="dataFormSubmit()">
|
||||||
<el-form-item :label="$t('module.basicData.cache.LocationName')" prop="name">
|
<el-form-item :label="$t('module.basicData.cache.LocationName')" prop="locationName">
|
||||||
<el-input v-model="dataForm.name" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.LocationName')])" clearable />
|
<el-input v-model="dataForm.locationName" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.LocationName')])" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :label="$t('module.basicData.cache.LocationCode')" prop="code">
|
<el-form-item :label="$t('module.basicData.cache.LocationCode')" prop="code">
|
||||||
<el-input v-model="dataForm.code" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.LocationCode')])" clearable />
|
<el-input v-model="dataForm.code" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.LocationCode')])" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :label="$t('module.basicData.cache.anotherName')" prop="anotherName">
|
<el-form-item :label="$t('module.basicData.cache.anotherName')" prop="locationNameAlias">
|
||||||
<el-input v-model="dataForm.anotherName" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.anotherName')])" clearable />
|
<el-input v-model="dataForm.locationNameAlias" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.anotherName')])" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :label="$t('module.basicData.cache.place')" prop="place">
|
<el-form-item :label="$t('module.basicData.cache.rowMark')" prop="layers">
|
||||||
<el-input v-model="dataForm.place" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.place')])" clearable />
|
<el-input v-model="dataForm.layers" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.rowMark')])" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :label="$t('module.basicData.visual.Remarks')" prop="remark">
|
<el-form-item :label="$t('module.basicData.cache.columnMark')" prop="columns">
|
||||||
<el-input v-model="dataForm.remark" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.visual.Remarks')])" clearable />
|
<el-input v-model="dataForm.columns" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.columnMark')])" clearable />
|
||||||
|
</el-form-item>
|
||||||
|
<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-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<span slot="footer" class="dialog-footer">
|
<span slot="footer" class="dialog-footer">
|
||||||
@@ -51,11 +54,14 @@ export default {
|
|||||||
visible: false,
|
visible: false,
|
||||||
dataForm: {
|
dataForm: {
|
||||||
id: 0,
|
id: 0,
|
||||||
name: '',
|
locationName: '',
|
||||||
code: '',
|
code: '',
|
||||||
anotherName: '',
|
locationNameAlias: '',
|
||||||
place: '',
|
rowNum: '',
|
||||||
remark: ''
|
columns: '',
|
||||||
|
layers: '',
|
||||||
|
status: '',
|
||||||
|
locationType: ''
|
||||||
},
|
},
|
||||||
dataRule: {
|
dataRule: {
|
||||||
name: [
|
name: [
|
||||||
@@ -89,13 +95,15 @@ export default {
|
|||||||
this.$refs['dataForm'].validate((valid) => {
|
this.$refs['dataForm'].validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
const data = {
|
const data = {
|
||||||
'name': this.dataForm.name,
|
'locationName': this.dataForm.locationName,
|
||||||
'code': this.dataForm.code,
|
'code': this.dataForm.code,
|
||||||
'anotherName': this.dataForm.anotherName,
|
'locationNameAlias': this.dataForm.locationNameAlias,
|
||||||
'place': this.dataForm.place,
|
'columns': this.dataForm.columns,
|
||||||
'remark': this.dataForm.remark,
|
'layers': this.dataForm.layers,
|
||||||
'shelfId': this.shelfId,
|
'shelfId': this.shelfId,
|
||||||
'id': this.dataForm.id
|
'id': this.dataForm.id,
|
||||||
|
'status': this.dataForm.status,
|
||||||
|
'locationType': this.dataForm.locationType
|
||||||
}
|
}
|
||||||
if (this.dataForm.id) {
|
if (this.dataForm.id) {
|
||||||
locationUpdate(data).then(res => {
|
locationUpdate(data).then(res => {
|
||||||
@@ -111,6 +119,7 @@ export default {
|
|||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
locationAdd(data).then(res => {
|
locationAdd(data).then(res => {
|
||||||
|
// console.log(data)
|
||||||
this.$message({
|
this.$message({
|
||||||
message: this.$t('module.basicData.visual.success'),
|
message: this.$t('module.basicData.visual.success'),
|
||||||
type: 'success',
|
type: 'success',
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Date: 2021-01-07 20:09:37
|
* @Date: 2021-01-07 20:09:37
|
||||||
* @LastEditors: zwq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2021-03-06 13:12:47
|
* @LastEditTime: 2022-03-03 18:39:03
|
||||||
* @FilePath: \basic-admin\src\components\BaseTable\subcomponents\CheckDetail.vue
|
* @FilePath: \basic-admin\src\components\BaseTable\subcomponents\CheckDetail.vue
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<span>
|
<span>
|
||||||
<el-button type="text" size="small" @click="emitClick">{{ $t('module.basicData.cache.ManageLocation') }}</el-button>
|
<el-button type="text" size="small" @click="emitClick">{{ $t('module.basicData.cache.addLocation') }}</el-button>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
@@ -1,13 +1,14 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 16:37:56
|
* @Date: 2020-12-29 16:37:56
|
||||||
* @LastEditors: gtz
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2021-04-16 15:01:45
|
* @LastEditTime: 2022-03-03 19:00:08
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
|
<!-- 新增/编辑识别 :title="!dataForm.areaId ? 'btn.add' : 'btn.edit' | i18nFilter" -->
|
||||||
<el-dialog
|
<el-dialog
|
||||||
:title="!dataForm.areaId ? 'btn.add' : 'btn.edit' | i18nFilter"
|
:title="!dataForm.id ? 'btn.add' : 'btn.edit' | i18nFilter"
|
||||||
:visible.sync="visible"
|
:visible.sync="visible"
|
||||||
>
|
>
|
||||||
<el-form ref="dataForm" :model="dataForm" :rules="dataRule" label-width="130px" @keyup.enter.native="dataFormSubmit()">
|
<el-form ref="dataForm" :model="dataForm" :rules="dataRule" label-width="130px" @keyup.enter.native="dataFormSubmit()">
|
||||||
@@ -17,6 +18,7 @@
|
|||||||
<el-form-item :label="$t('module.basicData.cache.ShelfCode')" prop="code">
|
<el-form-item :label="$t('module.basicData.cache.ShelfCode')" prop="code">
|
||||||
<el-input v-model="dataForm.code" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.ShelfCode')])" clearable />
|
<el-input v-model="dataForm.code" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.ShelfCode')])" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<!-- 选择货架code的下拉框
|
||||||
<el-form-item v-if="isPage" :label="$t('module.basicData.cache.AreaName')" prop="areaId">
|
<el-form-item v-if="isPage" :label="$t('module.basicData.cache.AreaName')" prop="areaId">
|
||||||
<el-select v-model="dataForm.areaId" filterable :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.AreaName')])" clearable>
|
<el-select v-model="dataForm.areaId" filterable :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.AreaName')])" clearable>
|
||||||
<el-option
|
<el-option
|
||||||
@@ -26,9 +28,15 @@
|
|||||||
:value="item.id"
|
:value="item.id"
|
||||||
/>
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
|
</el-form-item> -->
|
||||||
|
<el-form-item :label="$t('module.basicData.cache.StorageQuantity')" prop="total">
|
||||||
|
<el-input-number v-model="dataForm.total" :step="1" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.StorageQuantity')])" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :label="$t('module.basicData.cache.StorageQuantity')" prop="shelfNumber">
|
<el-form-item :label="$t('module.basicData.cache.rowNum')" prop="rowNum">
|
||||||
<el-input-number v-model="dataForm.shelfNumber" :step="1" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.StorageQuantity')])" clearable />
|
<el-input-number v-model="dataForm.rowNum" :step="1" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.rowNum')])" clearable />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item :label="$t('module.basicData.cache.columnNum')" prop="columnNum">
|
||||||
|
<el-input-number v-model="dataForm.columnNum" :step="1" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.columnNum')])" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<span slot="footer" class="dialog-footer">
|
<span slot="footer" class="dialog-footer">
|
||||||
@@ -39,8 +47,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { shelfDetail, shelfUpdate, shelfAdd, shelfCode } from '@/api/basicData/Cache/shelf'
|
import { shelfList, shelfDetail, shelfUpdate, shelfAdd, shelfCode } from '@/api/basicData/Cache/shelf'
|
||||||
import { areaList } from '@/api/basicData/Cache/area'
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
@@ -90,7 +97,7 @@ export default {
|
|||||||
current: 1,
|
current: 1,
|
||||||
size: 500
|
size: 500
|
||||||
}
|
}
|
||||||
areaList(params).then(response => {
|
shelfList(params).then(response => {
|
||||||
if (response.data.records) {
|
if (response.data.records) {
|
||||||
this.areaArr = response.data.records
|
this.areaArr = response.data.records
|
||||||
}
|
}
|
||||||
@@ -114,7 +121,7 @@ export default {
|
|||||||
this.$refs['dataForm'].validate((valid) => {
|
this.$refs['dataForm'].validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
const data = this.dataForm
|
const data = this.dataForm
|
||||||
console.log(data)
|
// console.log(data)
|
||||||
if (this.dataForm.id) {
|
if (this.dataForm.id) {
|
||||||
shelfUpdate(data).then(res => {
|
shelfUpdate(data).then(res => {
|
||||||
this.$message({
|
this.$message({
|
||||||
@@ -129,6 +136,7 @@ export default {
|
|||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
shelfAdd(data).then(res => {
|
shelfAdd(data).then(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,13 +1,13 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Date: 2021-01-07 20:09:37
|
* @Date: 2021-01-07 20:09:37
|
||||||
* @LastEditors: zwq
|
* @LastEditors: fzq
|
||||||
* @LastEditTime: 2021-03-06 13:03:40
|
* @LastEditTime: 2022-03-02 19:00:47
|
||||||
* @FilePath: \basic-admin\src\components\BaseTable\subcomponents\CheckDetail.vue
|
* @FilePath: \basic-admin\src\components\BaseTable\subcomponents\CheckDetail.vue
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<span>
|
<span>
|
||||||
<el-button type="text" size="small" @click="emitClick">{{ $t('module.basicData.cache.ManageShelves') }}</el-button>
|
<el-button type="text" size="small" @click="emitClick">{{ $t('module.basicData.cache.addLocation') }}</el-button>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
@@ -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-25 16:13:19
|
* @LastEditTime: 2022-03-03 20:47:18
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -44,10 +44,8 @@ import BaseTable from '@/components/BaseTable'
|
|||||||
import Pagination from '@/components/Pagination' // Secondary package based on el-pagination
|
import Pagination from '@/components/Pagination' // Secondary package based on el-pagination
|
||||||
import MethodBtn from '@/components/BaseTable/subcomponents/MethodBtn'
|
import MethodBtn from '@/components/BaseTable/subcomponents/MethodBtn'
|
||||||
import { shelfList, shelfDelete } from '@/api/basicData/Cache/shelf'
|
import { shelfList, shelfDelete } from '@/api/basicData/Cache/shelf'
|
||||||
import { areaList } from '@/api/basicData/Cache/area'
|
|
||||||
import shelfAttrAdd from './components/shelfAttr-add.vue'
|
import shelfAttrAdd from './components/shelfAttr-add.vue'
|
||||||
import locationBtn from './components/locationBtn.vue'
|
import locationBtn from './components/locationBtn.vue'
|
||||||
import { timeFormatter } from '@/filters'
|
|
||||||
/**
|
/**
|
||||||
* 表格表头配置项 TypeScript接口注释
|
* 表格表头配置项 TypeScript接口注释
|
||||||
* tableConfig<ConfigItem> = []
|
* tableConfig<ConfigItem> = []
|
||||||
@@ -76,34 +74,33 @@ const tableBtn = [
|
|||||||
]
|
]
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'createTime',
|
prop: 'shelfName',
|
||||||
label: i18n.t('module.basicData.factory.createTime'),
|
|
||||||
filter: timeFormatter,
|
|
||||||
align: 'center'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'name',
|
|
||||||
label: i18n.t('module.basicData.cache.ShelfName'),
|
|
||||||
align: 'center'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'code',
|
|
||||||
label: i18n.t('module.basicData.cache.ShelfCode'),
|
|
||||||
align: 'center'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'areaName',
|
|
||||||
label: i18n.t('module.basicData.cache.AreaName'),
|
label: i18n.t('module.basicData.cache.AreaName'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'shelfNumber',
|
prop: 'code',
|
||||||
|
label: i18n.t('module.basicData.cache.AreaCode'),
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'total',
|
||||||
label: i18n.t('module.basicData.cache.StorageQuantity'),
|
label: i18n.t('module.basicData.cache.StorageQuantity'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'location',
|
prop: 'rowNum',
|
||||||
label: i18n.t('module.basicData.cache.Location'),
|
label: i18n.t('module.basicData.cache.rowNum'),
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'columnNum',
|
||||||
|
label: i18n.t('module.basicData.cache.columnNum'),
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'shelf',
|
||||||
|
label: i18n.t('module.basicData.visual.location'),
|
||||||
subcomponent: locationBtn,
|
subcomponent: locationBtn,
|
||||||
align: 'center'
|
align: 'center'
|
||||||
}
|
}
|
||||||
@@ -141,21 +138,22 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
const params = {
|
// const params = {
|
||||||
current: 1,
|
// current: 1,
|
||||||
size: 500
|
// size: 500
|
||||||
}
|
// }
|
||||||
areaList(params).then(response => {
|
// shelfList(params).then(response => {
|
||||||
if (response.data.records) {
|
// if (response.data.records) {
|
||||||
this.areaList = response.data.records
|
// this.areaList = response.data.records
|
||||||
}
|
// }
|
||||||
this.getList()
|
// this.getList()
|
||||||
})
|
// })
|
||||||
|
this.getList()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
handleClick(raw) {
|
handleClick(raw) {
|
||||||
if (raw.type === 'delete') {
|
if (raw.type === 'delete') {
|
||||||
this.$confirm(`${this.$t('module.basicData.visual.TipsBefore')}[${raw.data.name}]?`, this.$t('module.basicData.visual.Tips'), {
|
this.$confirm(`${this.$t('module.basicData.visual.TipsBefore')}[${raw.data.shelfName}]?`, 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'
|
||||||
@@ -179,9 +177,10 @@ export default {
|
|||||||
},
|
},
|
||||||
getList(key) {
|
getList(key) {
|
||||||
this.listLoading = true
|
this.listLoading = true
|
||||||
this.listQuery.name = key
|
this.listQuery.shelfName = key
|
||||||
|
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 => {
|
||||||
|
|||||||
@@ -82,9 +82,9 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
<el-form-item :label="$t('module.basicData.visual.productionTime')" prop="productionTime">
|
<el-form-item :label="$t('module.basicData.visual.productionTime')" prop="createTime">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="dataForm.productionTime"
|
v-model="dataForm.createTime"
|
||||||
:disabled="isdetail"
|
:disabled="isdetail"
|
||||||
format="yyyy-MM-dd"
|
format="yyyy-MM-dd"
|
||||||
value-format="yyyy-MM-dd"
|
value-format="yyyy-MM-dd"
|
||||||
@@ -330,8 +330,7 @@ import {
|
|||||||
equipmentInfoUpdate,
|
equipmentInfoUpdate,
|
||||||
equipmentInfoAdd,
|
equipmentInfoAdd,
|
||||||
equipmentInfoCode,
|
equipmentInfoCode,
|
||||||
equipmentInfoFileAdd,
|
equipmentInfoFileAdd
|
||||||
getEquipmentInfoFile
|
|
||||||
} from '@/api/basicData/Equipment/equipmentInfo'
|
} from '@/api/basicData/Equipment/equipmentInfo'
|
||||||
import { equipmentGroupList } from '@/api/basicData/Equipment/equipmentGroup'
|
import { equipmentGroupList } from '@/api/basicData/Equipment/equipmentGroup'
|
||||||
import { equipmentInfoAttrList, equipmentInfoAttrDelete } from '@/api/basicData/Equipment/equipmentInfoAttr'
|
import { equipmentInfoAttrList, equipmentInfoAttrDelete } from '@/api/basicData/Equipment/equipmentInfoAttr'
|
||||||
@@ -393,7 +392,7 @@ export default {
|
|||||||
abbr: '',
|
abbr: '',
|
||||||
equipmentType: '',
|
equipmentType: '',
|
||||||
spec: '',
|
spec: '',
|
||||||
productionTime: '',
|
createTime: '',
|
||||||
enterTime: '',
|
enterTime: '',
|
||||||
debugTime: '',
|
debugTime: '',
|
||||||
debugPeriod: '',
|
debugPeriod: '',
|
||||||
@@ -467,23 +466,24 @@ export default {
|
|||||||
init() {
|
init() {
|
||||||
this.isdetail = false
|
this.isdetail = false
|
||||||
this.isdetail = Boolean(this.$route.query.isdetail)
|
this.isdetail = Boolean(this.$route.query.isdetail)
|
||||||
if (this.isdetail) {
|
// 设备信息下载接口,暂时未调用
|
||||||
const data =
|
// if (this.isdetail) {
|
||||||
{
|
// const data =
|
||||||
'equipmentId': this.listQuery.equipmentId
|
// {
|
||||||
}
|
// 'equipmentId': this.listQuery.equipmentId
|
||||||
getEquipmentInfoFile(data).then(res => {
|
// }
|
||||||
this.downloadList = res.data
|
// getEquipmentInfoFile(data).then(res => {
|
||||||
this.downloadList.forEach(item => {
|
// this.downloadList = res.data
|
||||||
if (item.typeCode === 'equipmentInfoImage') {
|
// this.downloadList.forEach(item => {
|
||||||
this.imgList.push(item)
|
// if (item.typeCode === 'equipmentInfoImage') {
|
||||||
} else {
|
// this.imgList.push(item)
|
||||||
this.fileList.push(item)
|
// } else {
|
||||||
}
|
// this.fileList.push(item)
|
||||||
})
|
// }
|
||||||
})
|
// })
|
||||||
}
|
// })
|
||||||
this.list.splice(0, this.list.length)
|
// }
|
||||||
|
// this.list.splice(0, this.list.length)
|
||||||
equipmentTypeList(this.listQuery).then(response => {
|
equipmentTypeList(this.listQuery).then(response => {
|
||||||
this.equipmentTypeOption = response.data.records
|
this.equipmentTypeOption = response.data.records
|
||||||
})
|
})
|
||||||
@@ -525,7 +525,7 @@ export default {
|
|||||||
},
|
},
|
||||||
handleClick(raw) {
|
handleClick(raw) {
|
||||||
if (raw.type === 'delete') {
|
if (raw.type === 'delete') {
|
||||||
this.$confirm(`${this.$t('module.basicData.visual.TipsBefore')}[${raw.data.attrName}]?`, this.$t('module.basicData.visual.Tips'), {
|
this.$confirm(`${this.$t('module.basicData.visual.TipsBefore')}[${raw.data.name}]?`, 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'
|
||||||
|
|||||||
@@ -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-07-08 09:46:10
|
* @LastEditTime: 2022-03-03 20:28:43
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -43,7 +43,7 @@ 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'
|
||||||
// import { timeFormatter } from '@/filters'
|
import { timeFormatter } from '@/filters'
|
||||||
// import dataDict from '@/filters/DataDict'
|
// import dataDict from '@/filters/DataDict'
|
||||||
/**
|
/**
|
||||||
* 表格表头配置项 TypeScript接口注释
|
* 表格表头配置项 TypeScript接口注释
|
||||||
@@ -76,20 +76,15 @@ const tableBtn = [
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
// {
|
|
||||||
// prop: 'createTime',
|
|
||||||
// label: i18n.t('module.basicData.factory.createTime'),
|
|
||||||
// filter: timeFormatter,
|
|
||||||
// align: 'center'
|
|
||||||
// },
|
|
||||||
{
|
{
|
||||||
prop: 'name',
|
prop: 'createTime',
|
||||||
label: i18n.t('module.basicData.equipment.EquipmentName'),
|
label: i18n.t('module.basicData.factory.createTime'),
|
||||||
|
filter: timeFormatter,
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'equipmentTypeName',
|
prop: 'name',
|
||||||
label: i18n.t('module.basicData.equipment.EquipmentType'),
|
label: i18n.t('module.basicData.equipment.EquipmentName'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -98,8 +93,8 @@ const tableProps = [
|
|||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'equipmentGroupName',
|
prop: 'equipmentType',
|
||||||
label: i18n.t('module.basicData.equipment.EquipmentGrouping'),
|
label: i18n.t('module.basicData.equipment.EquipmentType'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -108,26 +103,11 @@ const tableProps = [
|
|||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'maintenanceCycle',
|
prop: 'abbr',
|
||||||
label: i18n.t('module.basicData.equipment.maintenanceCycle'),
|
label: i18n.t('module.basicData.equipment.shortName'),
|
||||||
align: 'center'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'maintenanceTime',
|
|
||||||
label: i18n.t('module.basicData.equipment.maintenanceTime'),
|
|
||||||
align: 'center'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'description',
|
|
||||||
label: i18n.t('module.basicData.equipment.FunctionDescription'),
|
|
||||||
align: 'center'
|
align: 'center'
|
||||||
}
|
}
|
||||||
// {
|
// {
|
||||||
// prop: 'abbr',
|
|
||||||
// label: i18n.t('module.basicData.visual.Abbreviation'),
|
|
||||||
// align: 'center'
|
|
||||||
// }
|
|
||||||
// {
|
|
||||||
// prop: 'estatus',
|
// prop: 'estatus',
|
||||||
// label: i18n.t('module.basicData.visual.CurrentState'),
|
// label: i18n.t('module.basicData.visual.CurrentState'),
|
||||||
// filter: dataDict('enableState'),
|
// filter: dataDict('enableState'),
|
||||||
@@ -197,6 +177,7 @@ export default {
|
|||||||
this.listQuery.name = key
|
this.listQuery.name = key
|
||||||
this.listQuery.code = key
|
this.listQuery.code = key
|
||||||
equipmentInfoList(this.listQuery).then(response => {
|
equipmentInfoList(this.listQuery).then(response => {
|
||||||
|
console.log(response)
|
||||||
if (response.data.records) {
|
if (response.data.records) {
|
||||||
this.list = response.data.records
|
this.list = response.data.records
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2020-12-29 16:37:56
|
* @Date: 2020-12-29 16:37:56
|
||||||
* @LastEditors: gtz
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2021-04-17 16:33:37
|
* @LastEditTime: 2022-03-04 10:06:01
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -62,23 +62,8 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="20">
|
<el-col :span="20">
|
||||||
<el-form-item :label="$t('module.basicData.staff.Profession')" prop="majorId">
|
<el-form-item :label="$t('module.basicData.visual.Remarks')" prop="description">
|
||||||
<el-select
|
<el-input v-model="staffData.description" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.visual.Remarks')])" clearable :style="{width: '100%'}" />
|
||||||
v-model="staffData.majorId"
|
|
||||||
:placeholder="$i18nForm(['placeholder.input', $t('module.basicData.staff.Profession')])"
|
|
||||||
multiple
|
|
||||||
filterable
|
|
||||||
clearable
|
|
||||||
:style="{width: '100%'}"
|
|
||||||
>
|
|
||||||
<el-option
|
|
||||||
v-for="(item, index) in majorArr"
|
|
||||||
:key="index"
|
|
||||||
:label="item.name"
|
|
||||||
:value="item.id"
|
|
||||||
:disabled="item.disabled"
|
|
||||||
/>
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
@@ -122,11 +107,6 @@
|
|||||||
</el-radio-group>
|
</el-radio-group>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="20">
|
|
||||||
<el-form-item :label="$t('module.basicData.visual.Remarks')" prop="description">
|
|
||||||
<el-input v-model="staffData.description" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.visual.Remarks')])" clearable :style="{width: '100%'}" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-form>
|
</el-form>
|
||||||
@@ -140,7 +120,6 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { staffDetail, staffUpdate, staffAdd, staffCode } from '@/api/basicData/GroupModule/staff'
|
import { staffDetail, staffUpdate, staffAdd, staffCode } from '@/api/basicData/GroupModule/staff'
|
||||||
import { majorList } from '@/api/basicData/GroupModule/major'
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
@@ -152,7 +131,6 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
visible: false,
|
visible: false,
|
||||||
majorArr: [],
|
|
||||||
staffData: {
|
staffData: {
|
||||||
name: undefined,
|
name: undefined,
|
||||||
sex: '',
|
sex: '',
|
||||||
@@ -211,13 +189,6 @@ export default {
|
|||||||
staffCode().then(res => {
|
staffCode().then(res => {
|
||||||
this.staffData.code = res.data
|
this.staffData.code = res.data
|
||||||
})
|
})
|
||||||
majorList({
|
|
||||||
current: 1,
|
|
||||||
size: 999,
|
|
||||||
name: ''
|
|
||||||
}).then(response => {
|
|
||||||
this.majorArr = response.data.records
|
|
||||||
})
|
|
||||||
this.staffData.id = id || ''
|
this.staffData.id = id || ''
|
||||||
this.visible = true
|
this.visible = true
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
|
|||||||
@@ -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 16:48:22
|
* @LastEditTime: 2022-03-03 18:33:17
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -180,6 +180,7 @@ export default {
|
|||||||
this.listLoading = true
|
this.listLoading = true
|
||||||
this.listQuery.name = key
|
this.listQuery.name = key
|
||||||
this.listQuery.code = key
|
this.listQuery.code = key
|
||||||
|
console.log(this.listQuery)
|
||||||
materialList(this.listQuery).then(response => {
|
materialList(this.listQuery).then(response => {
|
||||||
if (response.data.records) {
|
if (response.data.records) {
|
||||||
this.list = response.data.records
|
this.list = response.data.records
|
||||||
|
|||||||
135
src/views/basicData/Process/components/processInfo-add.vue
Normal file
135
src/views/basicData/Process/components/processInfo-add.vue
Normal file
@@ -0,0 +1,135 @@
|
|||||||
|
<template>
|
||||||
|
<el-dialog
|
||||||
|
:title="!dataForm.id ? 'btn.add' : 'btn.edit' | i18nFilter"
|
||||||
|
:visible.sync="visible"
|
||||||
|
>
|
||||||
|
<el-form ref="dataForm" :model="dataForm" :rules="dataRule" label-width="130px" @keyup.enter.native="dataFormSubmit()">
|
||||||
|
<el-form-item :label="$t('module.basicData.storageBox.name')" prop="storageBoxName">
|
||||||
|
<el-input v-model="dataForm.storageBoxName" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.storageBox.name')])" clearable />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item :label="$t('module.basicData.storageBox.code')" prop="code">
|
||||||
|
<el-input v-model="dataForm.code" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.storageBox.code')])" clearable />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item :label="$t('module.basicData.visual.EnglishName')" prop="enName">
|
||||||
|
<el-input v-model="dataForm.enName" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.visual.EnglishName')])" clearable />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item :label="$t('module.basicData.storageBox.status')" prop="status">
|
||||||
|
<el-select v-model="dataForm.status" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.storageBox.status')])" clearable>
|
||||||
|
<el-option
|
||||||
|
v-for="item in options"
|
||||||
|
:key="item.value"
|
||||||
|
:label="item.label"
|
||||||
|
:value="item.value"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item :label="$t('module.basicData.visual.Remarks')" prop="note">
|
||||||
|
<el-input v-model="dataForm.note" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.visual.Remarks')])" clearable />
|
||||||
|
</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 { storageBoxDetail, storageBoxUpdate, storageBoxAdd, storageBoxCode } from '@/api/basicData/Cache/storageBox'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
visible: false,
|
||||||
|
dataForm: {
|
||||||
|
id: 0,
|
||||||
|
storageBoxName: '',
|
||||||
|
code: '',
|
||||||
|
status: 0,
|
||||||
|
enName: '',
|
||||||
|
note: ''
|
||||||
|
},
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
value: 0,
|
||||||
|
label: '正常'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 1,
|
||||||
|
label: '维修中'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 2,
|
||||||
|
label: '报废'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
dataRule: {
|
||||||
|
storageBoxName: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.storageBox.name')]),
|
||||||
|
trigger: 'blur' }
|
||||||
|
],
|
||||||
|
code: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.storageBox.code')]),
|
||||||
|
trigger: 'blur' }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
init(id) {
|
||||||
|
this.dataForm.id = id || ''
|
||||||
|
this.visible = true
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs['dataForm'].resetFields()
|
||||||
|
if (this.dataForm.id) {
|
||||||
|
storageBoxDetail(this.dataForm.id).then(res => {
|
||||||
|
this.dataForm = res.data
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
storageBoxCode().then(res => {
|
||||||
|
this.dataForm.code = res.data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
// 表单提交
|
||||||
|
dataFormSubmit() {
|
||||||
|
this.$refs['dataForm'].validate((valid) => {
|
||||||
|
if (valid) {
|
||||||
|
const data = this.dataForm
|
||||||
|
data.id = this.dataForm.id
|
||||||
|
if (this.dataForm.id) {
|
||||||
|
storageBoxUpdate(data).then(res => {
|
||||||
|
this.$message({
|
||||||
|
message: this.$t('module.basicData.visual.success'),
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.visible = false
|
||||||
|
this.$emit('refreshDataList')
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
storageBoxAdd(data).then(res => {
|
||||||
|
this.$message({
|
||||||
|
message: this.$t('module.basicData.visual.success'),
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.visible = false
|
||||||
|
this.$emit('refreshDataList')
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
204
src/views/basicData/Process/processInfo.vue
Normal file
204
src/views/basicData/Process/processInfo.vue
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
<!--
|
||||||
|
* @Descripttion:
|
||||||
|
* @version:
|
||||||
|
* @Author: fzq
|
||||||
|
* @Date: 2022-03-03 09:51:25
|
||||||
|
* @LastEditors: fzq
|
||||||
|
* @LastEditTime: 2022-03-03 10:06:26
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
<head-form
|
||||||
|
:placeholder-name="placeholderName"
|
||||||
|
:key-name="keyName"
|
||||||
|
@getDataList="getList"
|
||||||
|
@add="addNew"
|
||||||
|
/>
|
||||||
|
<base-table
|
||||||
|
:page="listQuery.current"
|
||||||
|
:limit="listQuery.size"
|
||||||
|
:table-config="tableProps"
|
||||||
|
:table-data="list"
|
||||||
|
:is-loading="listLoading"
|
||||||
|
>
|
||||||
|
<method-btn
|
||||||
|
slot="handleBtn"
|
||||||
|
:width="trueWidth"
|
||||||
|
:method-list="tableBtn"
|
||||||
|
@clickBtn="handleClick"
|
||||||
|
/>
|
||||||
|
</base-table>
|
||||||
|
<pagination
|
||||||
|
v-show="total > 0"
|
||||||
|
:total="total"
|
||||||
|
:page.sync="listQuery.current"
|
||||||
|
:limit.sync="listQuery.size"
|
||||||
|
@pagination="getList()"
|
||||||
|
/>
|
||||||
|
<processInfo-add v-if="addOrUpdateVisible" ref="addOrUpdate" :cache-id="listQuery.cacheId" @refreshDataList="getList" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>import i18n from '@/lang'
|
||||||
|
import HeadForm from '@/components/basicData/HeadForm'
|
||||||
|
import BaseTable from '@/components/BaseTable'
|
||||||
|
import processInfoAdd from './components/processInfo-add'
|
||||||
|
import Pagination from '@/components/Pagination' // Secondary package based on el-pagination
|
||||||
|
import MethodBtn from '@/components/BaseTable/subcomponents/MethodBtn'
|
||||||
|
import { storageBoxList, storageBoxDelete } from '@/api/basicData/Cache/storageBox'
|
||||||
|
import { timeFormatter } from '@/filters'
|
||||||
|
import basicData from '@/filters/basicData'
|
||||||
|
/**
|
||||||
|
* 表格表头配置项 TypeScript接口注释
|
||||||
|
* tableConfig<ConfigItem> = []
|
||||||
|
*
|
||||||
|
* Interface ConfigItem = {
|
||||||
|
* prop: string,
|
||||||
|
* label: string,
|
||||||
|
* width: string,
|
||||||
|
* align: string,
|
||||||
|
* subcomponent: function,
|
||||||
|
* filter: function
|
||||||
|
* }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
const tableBtn = [
|
||||||
|
{
|
||||||
|
type: 'edit',
|
||||||
|
btnName: 'btn.edit'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'delete',
|
||||||
|
btnName: 'btn.delete'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
const tableProps = [
|
||||||
|
{
|
||||||
|
prop: 'createTime',
|
||||||
|
label: i18n.t('module.basicData.factory.createTime'),
|
||||||
|
filter: timeFormatter,
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'storageBoxName',
|
||||||
|
label: i18n.t('module.basicData.storageBox.name'),
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'code',
|
||||||
|
label: i18n.t('module.basicData.storageBox.code'),
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'enName',
|
||||||
|
label: i18n.t('module.basicData.visual.EnglishName'),
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'status',
|
||||||
|
label: i18n.t('module.basicData.storageBox.status'),
|
||||||
|
filter: basicData('storage'),
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'note',
|
||||||
|
label: i18n.t('module.basicData.storageBox.remark'),
|
||||||
|
align: 'center'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'Area',
|
||||||
|
components: { Pagination, BaseTable, MethodBtn, HeadForm, processInfoAdd },
|
||||||
|
filters: {
|
||||||
|
statusFilter(status) {
|
||||||
|
const statusMap = {
|
||||||
|
published: 'success',
|
||||||
|
draft: 'info',
|
||||||
|
deleted: 'danger'
|
||||||
|
}
|
||||||
|
return statusMap[status]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
addOrUpdateVisible: false,
|
||||||
|
keyName: i18n.t('module.basicData.visual.keyword'),
|
||||||
|
placeholderName: this.$t('module.basicData.storageBox.name') + this.$t('module.basicData.visual.Or') + this.$t('module.basicData.storageBox.code'),
|
||||||
|
tableBtn,
|
||||||
|
trueWidth: 200,
|
||||||
|
tableProps,
|
||||||
|
list: [],
|
||||||
|
areaList: [],
|
||||||
|
total: 0,
|
||||||
|
listLoading: true,
|
||||||
|
listQuery: {
|
||||||
|
current: 1,
|
||||||
|
size: 10
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.getList()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleClick(raw) {
|
||||||
|
if (raw.type === 'delete') {
|
||||||
|
this.$confirm(`${this.$t('module.basicData.visual.TipsBefore')}[${raw.data.storageBoxName}]?`, this.$t('module.basicData.visual.Tips'), {
|
||||||
|
confirmButtonText: this.$t('module.basicData.visual.confirmButtonText'),
|
||||||
|
cancelButtonText: this.$t('module.basicData.visual.cancelButtonText'),
|
||||||
|
type: 'warning'
|
||||||
|
}).then(() => {
|
||||||
|
storageBoxDelete(raw.data.id).then(response => {
|
||||||
|
this.$message({
|
||||||
|
message: this.$t('module.basicData.visual.success'),
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getList()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}).catch(() => {})
|
||||||
|
} else if (raw.type === 'edit') {
|
||||||
|
this.addNew(raw.data.id)
|
||||||
|
} else {
|
||||||
|
this.addNew(raw.data.id, true)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
getList(key) {
|
||||||
|
this.listLoading = true
|
||||||
|
this.listQuery.storageBoxName = key
|
||||||
|
storageBoxList(this.listQuery).then(response => {
|
||||||
|
if (response.data.records) {
|
||||||
|
this.list = response.data.records
|
||||||
|
} else {
|
||||||
|
this.list.splice(0, this.list.length)
|
||||||
|
}
|
||||||
|
this.total = response.data.total
|
||||||
|
this.listLoading = false
|
||||||
|
})
|
||||||
|
},
|
||||||
|
// 新增 / 修改
|
||||||
|
addNew(id) {
|
||||||
|
this.addOrUpdateVisible = true
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.addOrUpdate.init(id, true)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.edit-input {
|
||||||
|
padding-right: 100px;
|
||||||
|
}
|
||||||
|
.cancel-btn {
|
||||||
|
position: absolute;
|
||||||
|
right: 15px;
|
||||||
|
top: 10px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -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: 2021-07-06 11:26:28
|
* @LastEditTime: 2022-03-03 16:49:10
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -83,7 +83,7 @@ export default {
|
|||||||
dataDictionaryDataList({
|
dataDictionaryDataList({
|
||||||
current: 1,
|
current: 1,
|
||||||
size: 999,
|
size: 999,
|
||||||
dictTypeId: '1412216979622785026'
|
dictTypeId: '2'
|
||||||
}).then(response => {
|
}).then(response => {
|
||||||
if (response.data.records) {
|
if (response.data.records) {
|
||||||
this.scrapsArr = response.data.records
|
this.scrapsArr = response.data.records
|
||||||
|
|||||||
@@ -55,7 +55,6 @@ module.exports = {
|
|||||||
// target: 'http://127.0.0.1:8080',
|
// target: 'http://127.0.0.1:8080',
|
||||||
// target: 'http://192.168.0.70:8080',
|
// target: 'http://192.168.0.70:8080',
|
||||||
// target: 'http://192.168.0.199:8080',
|
// target: 'http://192.168.0.199:8080',
|
||||||
|
|
||||||
ws: true,
|
ws: true,
|
||||||
changeOrigin: true,
|
changeOrigin: true,
|
||||||
pathRewrite: {
|
pathRewrite: {
|
||||||
@@ -188,4 +187,4 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user