+
-
+
工艺拷贝
-
+
工艺拷贝
-
+
{
for (let i = 0; i < response.data.length; i++) {
this.GroupNumber.push({
label: response.data[i].组号,
- value: response.data[i].组号
+ value: response.data[i].组件流水号
})
}
})
@@ -670,37 +669,55 @@ export default {
},
handleAdd() {
if (this.machineNumberValue !== '') {
- // this.title = '增加组件工艺'
- this.addForm('form2', [this.dialogFormVisible4 = true, this.title = '增加组件工艺', this.Group = ''])
+ this.addForm('form2', [this.dialogFormVisible4 = true, this.title = '增加组件工艺', this.Group = '', this.GroupNumberValue1 = ''])
} else {
this.$message.warning('请先选择机床编号')
}
},
handleEdit(row, formName) {
- console.log(this.$refs[formName])
if (this.$refs[formName] !== undefined) {
this.$refs[formName].resetFields()
}
- // this.editForm(row, 'form2', [this.title = '编辑组件工艺', this.GroupProcessNumber = row.组件工艺流水号, this.dialogFormVisible4 = true, this.Group = '', this.form2.组件 = []])
+ this.GroupProcessNumber = row.组件工艺流水号
+ this.GroupNumberValue1 = ''
this.title = '编辑组件工艺'
this.dialogFormVisible4 = true
this.form2.序号 = row.序号
this.form2.装配任务 = row.装配任务
this.Group = ''
- this.form2.组件 = []
- this.GroupProcessNumber = row.组件工艺流水号
+ console.log(row, 1111)
+ this.form2.组件 = (row.组件流水号.split(',')).map(Number)
+ console.log(this.form2.组件)
},
submitAdd() {
- for (var i = 0; i < this.form2.组件.length; i++) {
+ this.GroupNumberValue1 = this.form2.组件[0]
+ for (let h = 1; h < this.form2.组件.length; h++) {
+ this.GroupNumberValue1 += ',' + this.form2.组件[h]
+ }
+ for (let i = 0; i < this.form2.组件.length; i++) {
+ for (let j = 0; j < this.GroupNumber.length; j++) {
+ if (this.form2.组件[i] === this.GroupNumber[j].value) {
+ this.form2.组件[i] = this.GroupNumber[j].label
+ }
+ }
this.Group += this.form2.组件[i] + '组 '
}
- this.addTable(submitAdd, [this.machineNumberValue, this.form2.序号, this.Group, this.form2.装配任务], 'form2', function() { this.dialogFormVisible4 = false; this.searchDetail() })
+ this.addTable(submitAdd, [this.machineNumberValue, this.form2.序号, this.Group, this.form2.装配任务, this.GroupNumberValue1], 'form2', function() { this.dialogFormVisible4 = false; this.searchDetail() })
},
submitEdit() {
- for (var i = 0; i < this.form2.组件.length; i++) {
+ this.GroupNumberValue1 = this.form2.组件[0]
+ for (let h = 1; h < this.form2.组件.length; h++) {
+ this.GroupNumberValue1 += ',' + this.form2.组件[h]
+ }
+ for (let i = 0; i < this.form2.组件.length; i++) {
+ for (let j = 0; j < this.GroupNumber.length; j++) {
+ if (this.form2.组件[i] === this.GroupNumber[j].value) {
+ this.form2.组件[i] = this.GroupNumber[j].label
+ }
+ }
this.Group += this.form2.组件[i] + '组 '
}
- this.editTable(submitEdit, [this.GroupProcessNumber, this.form2.序号, this.Group, this.form2.装配任务], 'form2', function() { this.searchDetail(); this.dialogFormVisible4 = false })
+ this.editTable(submitEdit, [this.GroupProcessNumber, this.form2.序号, this.Group, this.form2.装配任务, this.GroupNumberValue1], 'form2', function() { this.searchDetail(); this.dialogFormVisible4 = false })
},
deleteGroup(row) {
this.$confirm('此操作将永久删除该行, 是否继续?', '提示', {
diff --git a/src/views/Assembly/PrintingAssemblyProcessCard/index.vue b/src/views/Assembly/PrintingAssemblyProcessCard/index.vue
index 08164f7a..cb92e4b8 100644
--- a/src/views/Assembly/PrintingAssemblyProcessCard/index.vue
+++ b/src/views/Assembly/PrintingAssemblyProcessCard/index.vue
@@ -99,8 +99,8 @@
| {{ list.工艺内容及装配具体要求 }} |
{{ list.质检 }} |
{{ list.工时 }} |
- {{ list.完成情况 }} |
- {{ list.检验情况 }} |
+ {{ list.装配员 }} |
+ {{ list.检验员 }} |
{{ list.备注 }} |
diff --git a/src/views/Assembly/TypicalAssemblyMaintenance/index.vue b/src/views/Assembly/TypicalAssemblyMaintenance/index.vue
new file mode 100644
index 00000000..423324e9
--- /dev/null
+++ b/src/views/Assembly/TypicalAssemblyMaintenance/index.vue
@@ -0,0 +1,477 @@
+
+
+
+
+ 机床分类:
+
+
+
+ 机床编号:
+
+
+
+ 查询
+ 增加
+ 删除
+
+
+
+
+
+
+ {{ scope.row.序号 }}
+
+
+
+
+ {{ scope.row.组号 }}
+
+
+
+
+ {{ scope.row.装配任务 }}
+
+
+
+
+ 编辑
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 确定选择
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/Inventory/DirectPart/index.vue b/src/views/Inventory/DirectPart/index.vue
index 06ac5275..22dcde9c 100644
--- a/src/views/Inventory/DirectPart/index.vue
+++ b/src/views/Inventory/DirectPart/index.vue
@@ -59,12 +59,12 @@
- {{ scope.row.机床名称 }}
+ {{ scope.row.机床图号 }}
- {{ scope.row.组件名称 }}
+ {{ scope.row.组号 }}
diff --git a/src/views/Inventory/ExchangePart/index.vue b/src/views/Inventory/ExchangePart/index.vue
index ca8adaa1..064a5477 100644
--- a/src/views/Inventory/ExchangePart/index.vue
+++ b/src/views/Inventory/ExchangePart/index.vue
@@ -46,12 +46,12 @@
- {{ scope.row.机床名称 }}
+ {{ scope.row.机床图号 }}
- {{ scope.row.组件名称 }}
+ {{ scope.row.组号 }}
diff --git a/src/views/Inventory/InventoryCheck/index.vue b/src/views/Inventory/InventoryCheck/index.vue
index ef018d8c..4cee236b 100644
--- a/src/views/Inventory/InventoryCheck/index.vue
+++ b/src/views/Inventory/InventoryCheck/index.vue
@@ -45,14 +45,14 @@
{{ scope.row.项目名称 }}
-
+
- {{ scope.row.机床名称 }}
+ {{ scope.row.机床图号 }}
-
+
- {{ scope.row.组件名称 }}
+ {{ scope.row.组号 }}
@@ -205,14 +205,14 @@
{{ scope.row.项目名称 }}
-
+
- {{ scope.row.机床名称 }}
+ {{ scope.row.机床图号 }}
-
+
- {{ scope.row.组件名称 }}
+ {{ scope.row.组号 }}
@@ -358,14 +358,14 @@
{{ scope.row.项目名称 }}
-
+
- {{ scope.row.机床名称 }}
+ {{ scope.row.机床图号 }}
-
+
- {{ scope.row.组件名称 }}
+ {{ scope.row.组号 }}
@@ -513,14 +513,14 @@
{{ scope.row.项目名称 }}
-
+
- {{ scope.row.机床名称 }}
+ {{ scope.row.机床图号 }}
-
+
- {{ scope.row.组件名称 }}
+ {{ scope.row.组号 }}
diff --git a/src/views/Inventory/OfflinePartOut/index.vue b/src/views/Inventory/OfflinePartOut/index.vue
index 972521a4..fb8e7574 100644
--- a/src/views/Inventory/OfflinePartOut/index.vue
+++ b/src/views/Inventory/OfflinePartOut/index.vue
@@ -113,14 +113,14 @@
{{ scope.row.项目名称 }}
-
+
- {{ scope.row.机床名称 }}
+ {{ scope.row.机床图号 }}
-
+
- {{ scope.row.组件名称 }}
+ {{ scope.row.组号 }}
@@ -243,6 +243,7 @@ export default {
},
// 打开表单
parOut(row) {
+ console.log(row)
this.form = []
this.MachineValue = ''
this.GroupNumValue = ''
diff --git a/src/views/Inventory/PartOut/index.vue b/src/views/Inventory/PartOut/index.vue
index b5ae6bd5..f5a151bb 100644
--- a/src/views/Inventory/PartOut/index.vue
+++ b/src/views/Inventory/PartOut/index.vue
@@ -52,14 +52,14 @@
{{ scope.row.项目名称 }}
-
+
- {{ scope.row.机床名称 }}
+ {{ scope.row.机床图号 }}
-
+
- {{ scope.row.组件名称 }}
+ {{ scope.row.组号 }}
@@ -168,7 +168,7 @@ export default {
// 出库
partOut(row) {
console.log(row)
- if (row.采购合同明细流水号 !== null) {
+ if (row.车间外购 === 1) {
WorkShopPart(row.采购合同明细流水号, this.getpicikingPeople, row.出库数量, row.货位流水号, row.备注).then(response => {
if (response.data[0].result === '1') {
this.$message.success('出库成功')
diff --git a/src/views/Inventory/PickingList/index.vue b/src/views/Inventory/PickingList/index.vue
index 2ab5ffb1..2e3d5444 100644
--- a/src/views/Inventory/PickingList/index.vue
+++ b/src/views/Inventory/PickingList/index.vue
@@ -23,8 +23,8 @@
{{ scope.row.领料单编号 }}
-
-
+
+
{{ scope.row.领料时间 }}
@@ -81,14 +81,14 @@
{{ scope.row.项目名称 }}
-
+
- {{ scope.row.机床名称 }}
+ {{ scope.row.机床图号 }}
-
+
- {{ scope.row.组件名称 }}
+ {{ scope.row.组号 }}
@@ -153,14 +153,14 @@
{{ scope.row.项目名称 }}
-
+
- {{ scope.row.机床名称 }}
+ {{ scope.row.机床图号 }}
-
+
- {{ scope.row.组件名称 }}
+ {{ scope.row.组号 }}
@@ -230,14 +230,14 @@
{{ scope.row.项目名称 }}
-
+
- {{ scope.row.机床名称 }}
+ {{ scope.row.机床图号 }}
-
+
- {{ scope.row.组件名称 }}
+ {{ scope.row.组号 }}
@@ -297,12 +297,12 @@
{{ scope.row.项目名称 }}
-
+
{{ scope.row.机床图号 }}
-
+
{{ scope.row.组号 }}
@@ -314,7 +314,7 @@
- {{ scope.row.零件类型 }}
+ {{ scope.row.类型名称 }}
@@ -336,61 +336,61 @@
-
-
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -473,6 +473,22 @@ export default {
OutNumber: [{ required: true, message: '请输入出库数量', trigger: 'blur' }],
outNote: [{ required: true, message: '请输入出库备注', trigger: 'blur' }]
},
+ form3: {
+ OutNumber: '', // 出库数量
+ outNote: '' // 出库备注
+ },
+ rules3: { // 表单验证规则
+ OutNumber: [{ required: true, message: '请输入出库数量', trigger: 'blur' }],
+ outNote: [{ required: true, message: '请输入出库备注', trigger: 'blur' }]
+ },
+ form4: {
+ OutNumber: '', // 出库数量
+ outNote: '' // 出库备注
+ },
+ rules4: { // 表单验证规则
+ OutNumber: [{ required: true, message: '请输入出库数量', trigger: 'blur' }],
+ outNote: [{ required: true, message: '请输入出库备注', trigger: 'blur' }]
+ },
partType: '', // 零件类型
craftplannumber: '', // 工艺计划流水号
receive: '', // 收件信息ID
@@ -508,7 +524,8 @@ export default {
tableDataHouse: [],
listLoadingx: '',
purchaseDetailNum: '',
- dialogFormVisibleWork: false
+ dialogFormVisibleWork: false,
+ time: []
}
},
computed: {
@@ -617,9 +634,13 @@ export default {
searchListinfor() {
this.listLoading2 = true
searchList(this.PageCurrent2, this.PageSize2, this.pickingListNumber).then(response => {
+ for (let i = 0; i < response.data.rows.length; i++) {
+ response.data.rows[i].领料时间 = response.data.rows[i].领料时间.substring(0, response.data.rows[i].领料时间.length - 8)
+ }
this.tableData1 = response.data.rows
this.listLoading2 = false
this.total2 = response.data.total
+ console.log(response)
})
},
handleSizeChange2(val) {
@@ -707,9 +728,9 @@ export default {
this.partProjectNumber = row.项目流水号
this.partProjectName = row.项目名称
this.partMachineNumber = row.机床流水号
- this.partMachineName = row.机床名称
+ this.partMachineName = row.机床图号
this.partGroupNumber = row.组件流水号
- this.partGroupName = row.组件名称
+ this.partGroupName = row.组号
this.partType = row.零件类型
this.craftplannumber = row.工艺计划流水号
this.receive = row.收件信息id
@@ -721,23 +742,26 @@ export default {
this.materialName = row.零件名称
this.materialType = row.零件类型名称
this.materialNumber = row.零件图号
- console.log(this.receive, 41645)
},
- addBasicListDetail() {
+ addBasicListDetail(formName) {
if (this.pickingListNumberx === '') {
this.$message.error('请选择领料单')
} if (this.form.OutNumber === '') {
this.$message.error('请输入领用数量')
}
- addListDetail(this.pickingListNumberx, this.partProjectNumber, this.partMachineNumber, this.partGroupNumber, this.partProjectName, this.partMachineName, this.partGroupName, this.materialName, this.materialType, this.materialNumber, this.form.OutNumber, this.partType, this.form.outNote, this.craftplannumber, this.receive, this.teamPart, this.locatenumber).then(response => {
- if (response.data[0].result === '1') {
- this.$message.success('增加成功')
- } else {
- this.$message.error('增加失败')
+ this.$refs[formName].validate((valid) => {
+ if (valid) {
+ addListDetail(this.pickingListNumberx, this.partProjectNumber, this.partMachineNumber, this.partGroupNumber, this.partProjectName, this.partMachineName, this.partGroupName, this.materialName, this.materialType, this.materialNumber, this.form.OutNumber, this.partType, this.form.outNote, this.craftplannumber, this.receive, this.teamPart, this.locatenumber, 0).then(response => {
+ if (response.data[0].result === '1') {
+ this.$message.success('增加成功')
+ } else {
+ this.$message.error('增加失败')
+ }
+ })
+ this.dialogFormVisible1 = false
+ this.searchListinfor()
}
})
- this.dialogFormVisible1 = false
- this.searchListinfor()
},
// 增加外购件领料单明细
addListDetailinfor(row) {
@@ -745,9 +769,9 @@ export default {
this.partProjectNumber = row.项目流水号
this.partProjectName = row.项目名称
this.partMachineNumber = row.机床流水号
- this.partMachineName = row.机床名称
+ this.partMachineName = row.机床图号
this.partGroupNumber = row.组件流水号
- this.partGroupName = row.组件名称
+ this.partGroupName = row.组号
this.partType = row.零件类型代码
this.craftplannumber = row.工艺计划流水号
this.receive = row.收件信息ID
@@ -759,22 +783,26 @@ export default {
this.dialogFormVisible = true
this.purchaseDetailNum = row.采购合同明细流水号
},
- execaddListDetail() {
+ execaddListDetail(formName) {
if (this.pickingListNumberx === '') {
this.$message.error('请选择领料单')
} else if (this.OutNumber === '') {
this.$message.error('请输入领用数量')
} else {
- addListDetail(this.pickingListNumberx, this.partProjectNumber, this.partMachineNumber, this.partGroupNumber, this.partProjectName, this.partMachineName, this.partGroupName, this.materialName, this.materialType, this.materialNumber, this.form.OutNumber, this.partType, this.form.outNote, this.craftplannumber, this.receive, this.teamPart, this.locatenumber).then(response => {
- if (response.data[0].result === '1') {
- this.$message.success('增加成功')
- } else {
- this.$message.error('增加失败')
+ this.$refs[formName].validate((valid) => {
+ if (valid) {
+ addListDetail(this.pickingListNumberx, this.partProjectNumber, this.partMachineNumber, this.partGroupNumber, this.partProjectName, this.partMachineName, this.partGroupName, this.materialName, this.materialType, this.materialNumber, this.form2.OutNumber, this.partType, this.form2.outNote, this.craftplannumber, this.receive, this.teamPart, this.locatenumber, 0).then(response => {
+ if (response.data[0].result === '1') {
+ this.$message.success('增加成功')
+ } else {
+ this.$message.error('增加失败')
+ }
+ })
}
})
+ this.dialogFormVisible = false
+ this.searchListinfor()
}
- this.dialogFormVisible = false
- this.searchListinfor()
},
// 增加车间采购领料单明细
addWorkshopDetailinfor(row) {
@@ -782,9 +810,9 @@ export default {
this.partProjectNumber = row.项目流水号
this.partProjectName = row.项目名称
this.partMachineNumber = row.机床流水号
- this.partMachineName = row.机床名称
+ this.partMachineName = row.机床图号
this.partGroupNumber = row.组件流水号
- this.partGroupName = row.组件名称
+ this.partGroupName = row.组号
this.partType = row.零件类型
this.receive = row.收件信息ID
this.locatenumber = row.货位流水号
@@ -794,20 +822,24 @@ export default {
this.dialogFormVisibleWork = true
this.purchaseDetailNum = row.采购合同明细流水号
},
- addWorkshopListDetail() {
- if (this.pickingListNumberx === '') {
- this.$message.error('请选择领料单')
- } else if (this.OutNumber === '') {
- this.$message.error('请输入领用数量')
- } else {
- addListDetail(this.pickingListNumberx, this.partProjectNumber, this.partMachineNumber, this.partGroupNumber, this.partProjectName, this.partMachineName, this.partGroupName, this.materialName, this.materialType, this.materialNumber, this.form.OutNumber, this.partType, this.form.outNote, this.craftplannumber, this.receive, this.teamPart, this.purchaseDetailNum, this.locatenumber).then(response => {
- if (response.data[0].result === '1') {
- this.$message.success('增加成功')
+ addWorkshopListDetail(formName) {
+ this.$refs[formName].validate((valid) => {
+ if (valid) {
+ if (this.pickingListNumberx === '') {
+ this.$message.error('请选择领料单')
+ } else if (this.OutNumber === '') {
+ this.$message.error('请输入领用数量')
} else {
- this.$message.error('增加失败')
+ addListDetail(this.pickingListNumberx, this.partProjectNumber, this.partMachineNumber, this.partGroupNumber, this.partProjectName, this.partMachineName, this.partGroupName, this.materialName, this.materialType, this.materialNumber, this.form3.OutNumber, this.partType, this.form3.outNote, this.craftplannumber, this.receive, this.teamPart, this.purchaseDetailNum, this.locatenumber, 1).then(response => {
+ if (response.data[0].result === '1') {
+ this.$message.success('增加成功')
+ } else {
+ this.$message.error('增加失败')
+ }
+ })
}
- })
- }
+ }
+ })
this.dialogFormVisibleWork = false
this.searchListinfor()
},
@@ -817,7 +849,7 @@ export default {
this.pickingListDetail = row.领料单明细流水号
},
submitChannge() {
- editListDetail(this.pickingListDetail, this.form2.OutNumber, this.form2.outNote).then(response => {
+ editListDetail(this.pickingListDetail, this.form4.OutNumber, this.form4.outNote).then(response => {
if (response.data[0].result === '1') {
this.$message.success('修改成功')
} else {
diff --git a/src/views/Inventory/SubstitutePart/index.vue b/src/views/Inventory/SubstitutePart/index.vue
index 19a44088..a3c908db 100644
--- a/src/views/Inventory/SubstitutePart/index.vue
+++ b/src/views/Inventory/SubstitutePart/index.vue
@@ -46,12 +46,12 @@
- {{ scope.row.机床名称 }}
+ {{ scope.row.机床图号 }}
- {{ scope.row.组件名称 }}
+ {{ scope.row.组号 }}
diff --git a/src/views/ManufacturingCenter/GroupMatching/index.vue b/src/views/ManufacturingCenter/GroupMatching/index.vue
index a5e4c68d..162f5595 100644
--- a/src/views/ManufacturingCenter/GroupMatching/index.vue
+++ b/src/views/ManufacturingCenter/GroupMatching/index.vue
@@ -4,13 +4,11 @@
项目名称:
机床号:
-
+
组号:
-
+
年:
@@ -105,7 +103,70 @@
@current-change="handleCurrentChange"/>
-
+
+
+
+
+
+ {{ scope.row.物料名称 }}
+
+
+
+
+ {{ scope.row.物料规格 }}
+
+
+
+
+ {{ scope.row.物料型号 }}
+
+
+
+
+ {{ scope.row.项目名称 }}
+
+
+
+
+ {{ scope.row.机床图号 }}
+
+
+
+
+ {{ scope.row.组号 }}
+
+
+
+
+ {{ scope.row.货位存量 }}
+
+
+
+
+ {{ scope.row.类型名称 }}
+
+
+
+
+
+
+
- 提交
+
@@ -202,13 +265,15 @@
@size-change="handleSizeChange3"
@current-change="handleCurrentChange3"/>
-
提交
+
diff --git a/src/views/ManufacturingCenter/ProcessTaskAssignment/index.vue b/src/views/ManufacturingCenter/ProcessTaskAssignment/index.vue
index e56ed66b..29bc3258 100644
--- a/src/views/ManufacturingCenter/ProcessTaskAssignment/index.vue
+++ b/src/views/ManufacturingCenter/ProcessTaskAssignment/index.vue
@@ -42,6 +42,7 @@
全选
保存
+
@@ -143,6 +144,8 @@ import { getProject0, getProject, getGraphNum, getGroupNum, getTable0, getGraphN
export default {
data() {
return {
+ num1: '', // 工艺员中间变量
+ num2: '', // 工艺员流水号中间变量
loading: false,
loading0: false,
projectNameValue: '',
@@ -323,8 +326,13 @@ export default {
this.dialogFormVisible = true
},
confirmPerson(row) { // 选择一行
- this.tableData[this.index].工艺员 = row.姓名
- this.tableData[this.index].人员编号 = row.人员编号
+ this.num1 = row.姓名
+ this.num2 = row.人员编号
+ },
+ tijiao() {
+ this.tableData[this.index].工艺员 = this.num1
+ this.tableData[this.index].人员编号 = this.num2
+ this.dialogFormVisible = false
},
selectAll(rows) {
if (this.tableData[0].工艺员 !== '') {
diff --git a/src/views/ManufacturingCenter/ProcessingStatus/index.vue b/src/views/ManufacturingCenter/ProcessingStatus/index.vue
index 58f6697d..33fe4419 100644
--- a/src/views/ManufacturingCenter/ProcessingStatus/index.vue
+++ b/src/views/ManufacturingCenter/ProcessingStatus/index.vue
@@ -40,11 +40,11 @@
查询
进度颜色:
-
全部
-
拖期
-
即将拖期
-
如期
-
工序外协
+
+
拖期
+
即将拖期
+
如期
+
工序外协
@@ -396,6 +396,7 @@ export default {
this.Groups = []
if (this.project !== '') {
getMachines(this.project).then(response => {
+ console.log(response.data)
for (let i = 0; i < response.data.length; i++) {
this.Machines.push({
label: response.data[i].机床图号,
@@ -539,7 +540,7 @@ export default {
background-color: transparent;
border: 0px solid white;
}
- .lightgreen{
+ .green{
background-color: lightgreen;
border: 1px solid #1f2d3d;
}
diff --git a/src/views/ManufacturingCenter/ProductionCapacityBalance/index.vue b/src/views/ManufacturingCenter/ProductionCapacityBalance/index.vue
index f21e6f59..eaac00f1 100644
--- a/src/views/ManufacturingCenter/ProductionCapacityBalance/index.vue
+++ b/src/views/ManufacturingCenter/ProductionCapacityBalance/index.vue
@@ -136,7 +136,7 @@
type="primary"
class="el-icon-edit"
@click="PlateWelding(scope.$index, scope.row, 'form1')">板焊
-
分批
+
diff --git a/src/views/ManufacturingCenter/StatusQuery/index.vue b/src/views/ManufacturingCenter/StatusQuery/index.vue
index b2ff8692..d82822f5 100644
--- a/src/views/ManufacturingCenter/StatusQuery/index.vue
+++ b/src/views/ManufacturingCenter/StatusQuery/index.vue
@@ -5,13 +5,11 @@
项目名称:
机床号:
-
+
+
+
组号:
-
+
+
+
零件号:
@@ -187,7 +189,9 @@
@size-change="handleSizeChange1"
@current-change="handleCurrentChange1"/>
-