diff --git a/src/api/Inventory/Inboundscanning.js b/src/api/Inventory/Inboundscanning.js index 92e8ae6c..37d46d37 100644 --- a/src/api/Inventory/Inboundscanning.js +++ b/src/api/Inventory/Inboundscanning.js @@ -45,14 +45,13 @@ export function getinventory() { }) } // 货位查询 -export function getlocate(housenumber) { +export function getlocate() { return request({ url: '', method: 'post', data: { type: '1', - name: '库存管理_货位主文件_查询数据', - param: '仓库流水号=' + housenumber + '=int' + name: '库存管理_货位主文件_查询数据_查询全部' } }) } diff --git a/src/api/Inventory/StockInquiry.js b/src/api/Inventory/StockInquiry.js index 70438de1..c2843cb8 100644 --- a/src/api/Inventory/StockInquiry.js +++ b/src/api/Inventory/StockInquiry.js @@ -37,3 +37,15 @@ export function getTable(num1, num2, num3, num4, num5, num6, pageCurrent, pageSi } }) } +export function getTable1(num1, num2, num3, num4, num5, num6, pageCurrent, pageSize) { + return request({ + url: '', + method: 'post', + data: { + type: '1', + name: '车间生产管理工艺_库存管理_基本件出库记录查询', + param: '机床流水号_check=' + num1 + '&机床流水号=' + num2 + '&组件流水号_check=' + num3 + '&组件流水号=' + num4 + '&零件图号_check=' + num5 + '&零件图号=' + num6, + Pagination: pageCurrent + '&' + pageSize + } + }) +} diff --git a/src/views/Assembly/DeliveryConfirmation/index.vue b/src/views/Assembly/DeliveryConfirmation/index.vue index 9a9aacf0..760ba1bd 100644 --- a/src/views/Assembly/DeliveryConfirmation/index.vue +++ b/src/views/Assembly/DeliveryConfirmation/index.vue @@ -215,17 +215,17 @@ - {{ scope.row.操作日期 }} + {{ scope.row.操作日期 ? scope.row.操作日期.split(' ')[0] : '-' }} - {{ scope.row.审核日期 }} + {{ scope.row.审核日期 ? scope.row.审核日期.split(' ')[0] : '-' }} - {{ scope.row.发出时间 }} + {{ scope.row.发出时间 ? scope.row.发出时间.split(' ')[0] : '-' }} diff --git a/src/views/Assembly/MakeAssemblyPlan/index.vue b/src/views/Assembly/MakeAssemblyPlan/index.vue index b64f6ed0..bafe54b1 100644 --- a/src/views/Assembly/MakeAssemblyPlan/index.vue +++ b/src/views/Assembly/MakeAssemblyPlan/index.vue @@ -1,7 +1,7 @@ - + 机床编号: {{ item.name }} + 增加装配计划 + 删除 @@ -31,9 +33,8 @@ - - 机床信息 - + + {{ scope.row.项目名称 }} @@ -56,9 +57,8 @@ - - 增加装配计划 - + + @@ -100,7 +100,6 @@ 确定 编辑 取消 - 删除 @@ -120,10 +119,12 @@ export default { groupNum: [], tableData1: [], tableData2: [], - hadFile: [] + hadFile: [], + plan: '' } }, created() { + this.searchTable1() }, mounted() { this.initProject() @@ -155,6 +156,9 @@ export default { }) } }, + changeState(row) { + row.edit = !row.edit + }, initProject() { initProject().then(response => { for (let i = 0; i < response.data.length; i++) { @@ -166,24 +170,23 @@ export default { } }) }, - machineChange() { - this.groupNumberValue = '' - this.groupNum = [] - searchgroup(this.machineNumberValue).then(response => { - for (let i = 0; i < response.data.length; i++) { - this.groupNum.push({ - label: response.data[i].组号, - value: response.data[i].组件流水号 - }) - } - }) - this.getFileData(this.machineNumberValue) - }, confirmEdit(row) { editData(row.计划流水号, row.组件流水号, this.groupNumberValue, row.任务名称, row.计划工时).then(response => { if (response.data[0].result === '1') { row.edit = false - this.searchTable2() + this.tableData2 = [] + searchTable2(this.machineNumberValue, 1).then(response => { + for (let i = 0; i < response.data.length; i++) { + this.tableData2.push({ + 计划流水号: response.data[i].计划流水号, + 组件流水号: response.data[i].组件流水号, + 组号: response.data[i].组号, + 任务名称: response.data[i].任务名称, + 计划工时: response.data[i].计划工时, + edit: false + }) + } + }) this.$message.success('编辑成功') } else { this.$message.error('编辑失败') @@ -192,45 +195,13 @@ export default { }, cancel(row) { row.edit = !row.edit - this.searchTable2() }, - deleteData(row) { - console.log(row.计划流水号) - this.deleteRow(deletedata, row.计划流水号, function() { this.searchTable2() }) + deleteData1(row) { + this.plan = row.计划流水号 }, - addTable() { - if (this.machineNumberValue !== '') { - addData(this.machineNumberValue, 1).then(response => { - console.log(response) - if (response.data[0].result === '1') { - this.searchTable2() - this.$message.success('增加成功') - } else { - this.$message.error('增加失败') - } - }) - } else { - this.$message.warning('请选择机床') - } - }, - searchTable1() { - this.tableData1 = [] - if (this.machineNumberValue !== '' && this.machineNumberValue !== null) { this.check2 = 1 } else { this.check2 = 0 } - if (this.check2 === 0) { - this.tableData1 = [] + deleteData() { + this.deleteRow(deletedata, this.plan, function() { this.tableData2 = [] - } else { - searchTable1(this.machineNumberValue, this.check2).then(response => { - this.tableData1 = response.data - }).then(() => { - this.searchTable2() - }) - } - }, - searchTable2() { - this.tableData2 = [] - if (this.machineNumberValue !== '' && this.machineNumberValue !== null) { - this.check2 = 1 searchTable2(this.machineNumberValue, 1).then(response => { for (let i = 0; i < response.data.length; i++) { this.tableData2.push({ @@ -243,8 +214,69 @@ export default { }) } }) - console.log(this.tableData2, 222222) - } else { this.check2 = 0 } + }) + }, + addTable() { + if (this.machineNumberValue !== '') { + addData(this.machineNumberValue, 1).then(response => { + console.log(response) + if (response.data[0].result === '1') { + this.tableData2 = [] + searchTable2(this.machineNumberValue, 1).then(response => { + for (let i = 0; i < response.data.length; i++) { + this.tableData2.push({ + 计划流水号: response.data[i].计划流水号, + 组件流水号: response.data[i].组件流水号, + 组号: response.data[i].组号, + 任务名称: response.data[i].任务名称, + 计划工时: response.data[i].计划工时, + edit: false + }) + } + }) + this.$message.success('增加成功') + } else { + this.$message.error('增加失败') + } + }) + } else { + this.$message.warning('请选择机床') + } + }, + searchTable1() { + this.tableData1 = [] + this.tableData2 = [] + if (this.machineNumberValue !== '' && this.machineNumberValue !== null) { this.check2 = 1 } else { this.check2 = 0 } + searchTable1(this.machineNumberValue, this.check2).then(response => { + this.tableData1 = response.data + }) + }, + searchTable2(row) { + this.tableData2 = [] + this.machineNumberValue = row.机床流水号 + searchTable2(this.machineNumberValue, 1).then(response => { + for (let i = 0; i < response.data.length; i++) { + this.tableData2.push({ + 计划流水号: response.data[i].计划流水号, + 组件流水号: response.data[i].组件流水号, + 组号: response.data[i].组号, + 任务名称: response.data[i].任务名称, + 计划工时: response.data[i].计划工时, + edit: false + }) + } + }) + this.groupNumberValue = '' + this.groupNum = [] + searchgroup(this.machineNumberValue).then(response => { + for (let i = 0; i < response.data.length; i++) { + this.groupNum.push({ + label: response.data[i].组号, + value: response.data[i].组件流水号 + }) + } + }) + this.getFileData(this.machineNumberValue) } } } diff --git a/src/views/Assembly/MakeColdWorkPlan/index.vue b/src/views/Assembly/MakeColdWorkPlan/index.vue index 5545911a..100f78cb 100644 --- a/src/views/Assembly/MakeColdWorkPlan/index.vue +++ b/src/views/Assembly/MakeColdWorkPlan/index.vue @@ -1,7 +1,7 @@ - + 机床编号: {{ item.name }} + 增加装配计划 + 删除 @@ -31,9 +33,8 @@ - - 机床信息 - + + {{ scope.row.项目名称 }} @@ -56,9 +57,8 @@ - - 增加冷作计划 - + + @@ -98,9 +98,8 @@ 确定 - 编辑 - 取消 - 删除 + 编辑 + 取消 @@ -120,10 +119,12 @@ export default { groupNum: [], tableData1: [], tableData2: [], - hadFile: [] + hadFile: [], + plan: '' } }, created() { + this.searchTable1() }, mounted() { this.initProject() @@ -155,6 +156,9 @@ export default { }) } }, + changeState(row) { + row.edit = !row.edit + }, initProject() { initProject().then(response => { for (let i = 0; i < response.data.length; i++) { @@ -166,24 +170,23 @@ export default { } }) }, - machineChange() { - this.groupNumberValue = '' - this.groupNum = [] - searchgroup(this.machineNumberValue).then(response => { - for (let i = 0; i < response.data.length; i++) { - this.groupNum.push({ - label: response.data[i].组号, - value: response.data[i].组件流水号 - }) - } - }) - this.getFileData(this.machineNumberValue) - }, confirmEdit(row) { editData(row.计划流水号, row.组件流水号, this.groupNumberValue, row.任务名称, row.计划工时).then(response => { if (response.data[0].result === '1') { row.edit = false - this.searchTable2() + this.tableData2 = [] + searchTable2(this.machineNumberValue, 3).then(response => { + for (let i = 0; i < response.data.length; i++) { + this.tableData2.push({ + 计划流水号: response.data[i].计划流水号, + 组件流水号: response.data[i].组件流水号, + 组号: response.data[i].组号, + 任务名称: response.data[i].任务名称, + 计划工时: response.data[i].计划工时, + edit: false + }) + } + }) this.$message.success('编辑成功') } else { this.$message.error('编辑失败') @@ -192,45 +195,13 @@ export default { }, cancel(row) { row.edit = !row.edit - this.searchTable2() }, - deleteData(row) { - console.log(row.计划流水号) - this.deleteRow(deletedata, row.计划流水号, function() { this.searchTable2() }) + deleteData1(row) { + this.plan = row.计划流水号 }, - addTable() { - if (this.machineNumberValue !== '') { - addData(this.machineNumberValue, 3).then(response => { - console.log(response) - if (response.data[0].result === '1') { - this.searchTable2() - this.$message.success('增加成功') - } else { - this.$message.error('增加失败') - } - }) - } else { - this.$message.warning('请选择机床') - } - }, - searchTable1() { - this.tableData1 = [] - if (this.machineNumberValue !== '' && this.machineNumberValue !== null) { this.check2 = 1 } else { this.check2 = 0 } - if (this.check2 === 0) { - this.tableData1 = [] + deleteData() { + this.deleteRow(deletedata, this.plan, function() { this.tableData2 = [] - } else { - searchTable1(this.machineNumberValue, this.check2).then(response => { - this.tableData1 = response.data - }).then(() => { - this.searchTable2() - }) - } - }, - searchTable2() { - this.tableData2 = [] - if (this.machineNumberValue !== '' && this.machineNumberValue !== null) { - this.check2 = 1 searchTable2(this.machineNumberValue, 3).then(response => { for (let i = 0; i < response.data.length; i++) { this.tableData2.push({ @@ -243,8 +214,69 @@ export default { }) } }) - console.log(this.tableData2, 222222) - } else { this.check2 = 0 } + }) + }, + addTable() { + if (this.machineNumberValue !== '') { + addData(this.machineNumberValue, 3).then(response => { + console.log(response) + if (response.data[0].result === '1') { + this.tableData2 = [] + searchTable2(this.machineNumberValue, 3).then(response => { + for (let i = 0; i < response.data.length; i++) { + this.tableData2.push({ + 计划流水号: response.data[i].计划流水号, + 组件流水号: response.data[i].组件流水号, + 组号: response.data[i].组号, + 任务名称: response.data[i].任务名称, + 计划工时: response.data[i].计划工时, + edit: false + }) + } + }) + this.$message.success('增加成功') + } else { + this.$message.error('增加失败') + } + }) + } else { + this.$message.warning('请选择机床') + } + }, + searchTable1() { + this.tableData1 = [] + this.tableData2 = [] + if (this.machineNumberValue !== '' && this.machineNumberValue !== null) { this.check2 = 1 } else { this.check2 = 0 } + searchTable1(this.machineNumberValue, this.check2).then(response => { + this.tableData1 = response.data + }) + }, + searchTable2(row) { + this.tableData2 = [] + this.machineNumberValue = row.机床流水号 + searchTable2(this.machineNumberValue, 3).then(response => { + for (let i = 0; i < response.data.length; i++) { + this.tableData2.push({ + 计划流水号: response.data[i].计划流水号, + 组件流水号: response.data[i].组件流水号, + 组号: response.data[i].组号, + 任务名称: response.data[i].任务名称, + 计划工时: response.data[i].计划工时, + edit: false + }) + } + }) + this.groupNumberValue = '' + this.groupNum = [] + searchgroup(this.machineNumberValue).then(response => { + for (let i = 0; i < response.data.length; i++) { + this.groupNum.push({ + label: response.data[i].组号, + value: response.data[i].组件流水号 + }) + } + }) + this.getFileData(this.machineNumberValue) } } } diff --git a/src/views/Assembly/MakeElectricalAssembly/index.vue b/src/views/Assembly/MakeElectricalAssembly/index.vue index 7c947448..24ac4fe2 100644 --- a/src/views/Assembly/MakeElectricalAssembly/index.vue +++ b/src/views/Assembly/MakeElectricalAssembly/index.vue @@ -1,7 +1,7 @@ - + 机床编号: {{ item.name }} + 增加装配计划 + 删除 @@ -31,9 +33,8 @@ - - 机床信息 - + + {{ scope.row.项目名称 }} @@ -56,9 +57,8 @@ - - 新增电气计划 - + + @@ -98,9 +98,8 @@ 确定 - 编辑 - 取消 - 删除 + 编辑 + 取消 @@ -120,10 +119,12 @@ export default { groupNum: [], tableData1: [], tableData2: [], - hadFile: [] + hadFile: [], + plan: '' } }, created() { + this.searchTable1() }, mounted() { this.initProject() @@ -155,6 +156,9 @@ export default { }) } }, + changeState(row) { + row.edit = !row.edit + }, initProject() { initProject().then(response => { for (let i = 0; i < response.data.length; i++) { @@ -166,24 +170,23 @@ export default { } }) }, - machineChange() { - this.groupNumberValue = '' - this.groupNum = [] - searchgroup(this.machineNumberValue).then(response => { - for (let i = 0; i < response.data.length; i++) { - this.groupNum.push({ - label: response.data[i].组号, - value: response.data[i].组件流水号 - }) - } - }) - this.getFileData(this.machineNumberValue) - }, confirmEdit(row) { editData(row.计划流水号, row.组件流水号, this.groupNumberValue, row.任务名称, row.计划工时).then(response => { if (response.data[0].result === '1') { row.edit = false - this.searchTable2() + this.tableData2 = [] + searchTable2(this.machineNumberValue, 2).then(response => { + for (let i = 0; i < response.data.length; i++) { + this.tableData2.push({ + 计划流水号: response.data[i].计划流水号, + 组件流水号: response.data[i].组件流水号, + 组号: response.data[i].组号, + 任务名称: response.data[i].任务名称, + 计划工时: response.data[i].计划工时, + edit: false + }) + } + }) this.$message.success('编辑成功') } else { this.$message.error('编辑失败') @@ -192,45 +195,13 @@ export default { }, cancel(row) { row.edit = !row.edit - this.searchTable2() }, - deleteData(row) { - console.log(row.计划流水号) - this.deleteRow(deletedata, row.计划流水号, function() { this.searchTable2() }) + deleteData1(row) { + this.plan = row.计划流水号 }, - addTable() { - if (this.machineNumberValue !== '') { - addData(this.machineNumberValue, 2).then(response => { - console.log(response) - if (response.data[0].result === '1') { - this.searchTable2() - this.$message.success('增加成功') - } else { - this.$message.error('增加失败') - } - }) - } else { - this.$message.warning('请选择机床') - } - }, - searchTable1() { - this.tableData1 = [] - if (this.machineNumberValue !== '' && this.machineNumberValue !== null) { this.check2 = 1 } else { this.check2 = 0 } - if (this.check2 === 0) { - this.tableData1 = [] + deleteData() { + this.deleteRow(deletedata, this.plan, function() { this.tableData2 = [] - } else { - searchTable1(this.machineNumberValue, this.check2).then(response => { - this.tableData1 = response.data - }).then(() => { - this.searchTable2() - }) - } - }, - searchTable2() { - this.tableData2 = [] - if (this.machineNumberValue !== '' && this.machineNumberValue !== null) { - this.check2 = 1 searchTable2(this.machineNumberValue, 2).then(response => { for (let i = 0; i < response.data.length; i++) { this.tableData2.push({ @@ -243,8 +214,69 @@ export default { }) } }) - console.log(this.tableData2, 222222) - } else { this.check2 = 0 } + }) + }, + addTable() { + if (this.machineNumberValue !== '') { + addData(this.machineNumberValue, 2).then(response => { + console.log(response) + if (response.data[0].result === '1') { + this.tableData2 = [] + searchTable2(this.machineNumberValue, 2).then(response => { + for (let i = 0; i < response.data.length; i++) { + this.tableData2.push({ + 计划流水号: response.data[i].计划流水号, + 组件流水号: response.data[i].组件流水号, + 组号: response.data[i].组号, + 任务名称: response.data[i].任务名称, + 计划工时: response.data[i].计划工时, + edit: false + }) + } + }) + this.$message.success('增加成功') + } else { + this.$message.error('增加失败') + } + }) + } else { + this.$message.warning('请选择机床') + } + }, + searchTable1() { + this.tableData1 = [] + this.tableData2 = [] + if (this.machineNumberValue !== '' && this.machineNumberValue !== null) { this.check2 = 1 } else { this.check2 = 0 } + searchTable1(this.machineNumberValue, this.check2).then(response => { + this.tableData1 = response.data + }) + }, + searchTable2(row) { + this.tableData2 = [] + this.machineNumberValue = row.机床流水号 + searchTable2(this.machineNumberValue, 2).then(response => { + for (let i = 0; i < response.data.length; i++) { + this.tableData2.push({ + 计划流水号: response.data[i].计划流水号, + 组件流水号: response.data[i].组件流水号, + 组号: response.data[i].组号, + 任务名称: response.data[i].任务名称, + 计划工时: response.data[i].计划工时, + edit: false + }) + } + }) + this.groupNumberValue = '' + this.groupNum = [] + searchgroup(this.machineNumberValue).then(response => { + for (let i = 0; i < response.data.length; i++) { + this.groupNum.push({ + label: response.data[i].组号, + value: response.data[i].组件流水号 + }) + } + }) + this.getFileData(this.machineNumberValue) } } } diff --git a/src/views/Assembly/MakePaintPlan/index.vue b/src/views/Assembly/MakePaintPlan/index.vue index fc6bfb7e..1c0bd113 100644 --- a/src/views/Assembly/MakePaintPlan/index.vue +++ b/src/views/Assembly/MakePaintPlan/index.vue @@ -1,7 +1,7 @@ - + 机床编号: {{ item.name }} + 增加装配计划 + 删除 @@ -31,9 +33,8 @@ - - 机床信息 - + + {{ scope.row.项目名称 }} @@ -56,9 +57,8 @@ - - 增加油漆计划 - + + @@ -100,7 +100,6 @@ 确定 编辑 取消 - 删除 @@ -120,10 +119,12 @@ export default { groupNum: [], tableData1: [], tableData2: [], - hadFile: [] + hadFile: [], + plan: '' } }, created() { + this.searchTable1() }, mounted() { this.initProject() @@ -155,6 +156,9 @@ export default { }) } }, + changeState(row) { + row.edit = !row.edit + }, initProject() { initProject().then(response => { for (let i = 0; i < response.data.length; i++) { @@ -166,24 +170,23 @@ export default { } }) }, - machineChange() { - this.groupNumberValue = '' - this.groupNum = [] - searchgroup(this.machineNumberValue).then(response => { - for (let i = 0; i < response.data.length; i++) { - this.groupNum.push({ - label: response.data[i].组号, - value: response.data[i].组件流水号 - }) - } - }) - this.getFileData(this.machineNumberValue) - }, confirmEdit(row) { editData(row.计划流水号, row.组件流水号, this.groupNumberValue, row.任务名称, row.计划工时).then(response => { if (response.data[0].result === '1') { row.edit = false - this.searchTable2() + this.tableData2 = [] + searchTable2(this.machineNumberValue, 4).then(response => { + for (let i = 0; i < response.data.length; i++) { + this.tableData2.push({ + 计划流水号: response.data[i].计划流水号, + 组件流水号: response.data[i].组件流水号, + 组号: response.data[i].组号, + 任务名称: response.data[i].任务名称, + 计划工时: response.data[i].计划工时, + edit: false + }) + } + }) this.$message.success('编辑成功') } else { this.$message.error('编辑失败') @@ -192,45 +195,13 @@ export default { }, cancel(row) { row.edit = !row.edit - this.searchTable2() }, - deleteData(row) { - console.log(row.计划流水号) - this.deleteRow(deletedata, row.计划流水号, function() { this.searchTable2() }) + deleteData1(row) { + this.plan = row.计划流水号 }, - addTable() { - if (this.machineNumberValue !== '') { - addData(this.machineNumberValue, 4).then(response => { - console.log(response) - if (response.data[0].result === '1') { - this.searchTable2() - this.$message.success('增加成功') - } else { - this.$message.error('增加失败') - } - }) - } else { - this.$message.warning('请选择机床') - } - }, - searchTable1() { - this.tableData1 = [] - if (this.machineNumberValue !== '' && this.machineNumberValue !== null) { this.check2 = 1 } else { this.check2 = 0 } - if (this.check2 === 0) { - this.tableData1 = [] + deleteData() { + this.deleteRow(deletedata, this.plan, function() { this.tableData2 = [] - } else { - searchTable1(this.machineNumberValue, this.check2).then(response => { - this.tableData1 = response.data - }).then(() => { - this.searchTable2() - }) - } - }, - searchTable2() { - this.tableData2 = [] - if (this.machineNumberValue !== '' && this.machineNumberValue !== null) { - this.check2 = 1 searchTable2(this.machineNumberValue, 4).then(response => { for (let i = 0; i < response.data.length; i++) { this.tableData2.push({ @@ -243,8 +214,69 @@ export default { }) } }) - console.log(this.tableData2, 222222) - } else { this.check2 = 0 } + }) + }, + addTable() { + if (this.machineNumberValue !== '') { + addData(this.machineNumberValue, 4).then(response => { + console.log(response) + if (response.data[0].result === '1') { + this.tableData2 = [] + searchTable2(this.machineNumberValue, 4).then(response => { + for (let i = 0; i < response.data.length; i++) { + this.tableData2.push({ + 计划流水号: response.data[i].计划流水号, + 组件流水号: response.data[i].组件流水号, + 组号: response.data[i].组号, + 任务名称: response.data[i].任务名称, + 计划工时: response.data[i].计划工时, + edit: false + }) + } + }) + this.$message.success('增加成功') + } else { + this.$message.error('增加失败') + } + }) + } else { + this.$message.warning('请选择机床') + } + }, + searchTable1() { + this.tableData1 = [] + this.tableData2 = [] + if (this.machineNumberValue !== '' && this.machineNumberValue !== null) { this.check2 = 1 } else { this.check2 = 0 } + searchTable1(this.machineNumberValue, this.check2).then(response => { + this.tableData1 = response.data + }) + }, + searchTable2(row) { + this.tableData2 = [] + this.machineNumberValue = row.机床流水号 + searchTable2(this.machineNumberValue, 4).then(response => { + for (let i = 0; i < response.data.length; i++) { + this.tableData2.push({ + 计划流水号: response.data[i].计划流水号, + 组件流水号: response.data[i].组件流水号, + 组号: response.data[i].组号, + 任务名称: response.data[i].任务名称, + 计划工时: response.data[i].计划工时, + edit: false + }) + } + }) + this.groupNumberValue = '' + this.groupNum = [] + searchgroup(this.machineNumberValue).then(response => { + for (let i = 0; i < response.data.length; i++) { + this.groupNum.push({ + label: response.data[i].组号, + value: response.data[i].组件流水号 + }) + } + }) + this.getFileData(this.machineNumberValue) } } } diff --git a/src/views/Inventory/Inboundscanning/index.vue b/src/views/Inventory/Inboundscanning/index.vue index c272bd0a..29201e24 100644 --- a/src/views/Inventory/Inboundscanning/index.vue +++ b/src/views/Inventory/Inboundscanning/index.vue @@ -1,6 +1,6 @@ - + 零件图号 @@ -11,19 +11,29 @@ 入库 + + 移除 + - + + height="750px"> - + {{ scope.row.零件图号 }} - + {{ tableDataNum[scope.$index].plannumber }} - + - - - - - - - - + - - - - 移除 - - -