|
|
|
@ -1624,16 +1624,6 @@ export default {
|
|
|
|
|
const cntrnoArr = []
|
|
|
|
|
let kindpkgsOld = ''
|
|
|
|
|
this.tableData = []
|
|
|
|
|
{/* for (let i = this.tableData.length - 1; i >= 0; i--) {
|
|
|
|
|
if (!this.tableData[i].cntrno) {
|
|
|
|
|
this.tableData.splice(i, 1)
|
|
|
|
|
} else {
|
|
|
|
|
cntrnoArr.push(this.tableData[i].cntrno)
|
|
|
|
|
}
|
|
|
|
|
if (this.tableData[i] && this.tableData[i].kindpkgs !== '') {
|
|
|
|
|
kindpkgsOld = this.tableData[i].kindpkgs
|
|
|
|
|
}
|
|
|
|
|
} */}
|
|
|
|
|
const lastNum = this.tableData.length > 0 ? Number(this.tableData[this.tableData.length - 1].rowKey) + 1 : 0
|
|
|
|
|
data.map((item, index) => {
|
|
|
|
|
const _data = {
|
|
|
|
@ -1773,6 +1763,7 @@ export default {
|
|
|
|
|
const data = JSON.parse(res.data)
|
|
|
|
|
const addTable = []
|
|
|
|
|
const cntrnoArr = []
|
|
|
|
|
console.log(data)
|
|
|
|
|
this.tableData.map((item, index) => {
|
|
|
|
|
if (!item.cntrno) {
|
|
|
|
|
// delete this.tableData[index]
|
|
|
|
@ -1781,6 +1772,13 @@ export default {
|
|
|
|
|
cntrnoArr.push(item.cntrno)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
for (let i = this.tableData.length - 1; i >= 0; i--) {
|
|
|
|
|
if (!this.tableData[i].cntrno) {
|
|
|
|
|
this.tableData.splice(i, 1)
|
|
|
|
|
} else {
|
|
|
|
|
cntrnoArr.push(this.tableData[i].cntrno)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
const lastNum = this.tableData.length > 0 ? Number(this.tableData[this.tableData.length - 1].rowKey) + 1 : 0
|
|
|
|
|
data.map((item, index) => {
|
|
|
|
|
if (cntrnoArr.includes(item.CNTRNO)) {
|
|
|
|
@ -1823,6 +1821,7 @@ export default {
|
|
|
|
|
addTable.push(_data)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
console.log(this.tableData,addTable)
|
|
|
|
|
this.tableData = [...this.tableData, ...addTable]
|
|
|
|
|
this.$forceUpdate()
|
|
|
|
|
} else {
|
|
|
|
|