|
@@ -286,7 +286,7 @@
|
|
|
</a-row>
|
|
|
</a-form>
|
|
|
<template v-if="!isView">
|
|
|
- <a-button type="primary" style="margin-right: 8px;" v-if="!(bodyData.id || bodyData.__index)" @click="onBodyAdd">插入</a-button>
|
|
|
+ <a-button type="primary" style="margin-right: 8px;" v-if="!(bodyData.id)" @click="onBodyAdd">插入</a-button>
|
|
|
<a-button type="primary" style="margin-right: 8px;" v-else @click="onBodyEdit">保存</a-button>
|
|
|
<xn-batch-delete
|
|
|
:selectedRowKeys="bodySelectedRowKeys"
|
|
@@ -301,6 +301,7 @@
|
|
|
:pagination="false"
|
|
|
:scroll="{ x: 2000 }"
|
|
|
:row-selection="bodyOptions.rowSelection"
|
|
|
+ rowKey="id"
|
|
|
>
|
|
|
<template #bodyCell="{ column, record, index }">
|
|
|
<template v-if="column.dataIndex === 'recordUnit'">
|
|
@@ -457,7 +458,7 @@
|
|
|
</a-row>
|
|
|
</a-form>
|
|
|
<template v-if="!isView">
|
|
|
- <a-button type="primary" style="margin-right: 8px;" v-if="!(productData.id || productData.__index)" @click="onProductAdd">插入</a-button>
|
|
|
+ <a-button type="primary" style="margin-right: 8px;" v-if="!(productData.id)" @click="onProductAdd">插入</a-button>
|
|
|
<a-button type="primary" style="margin-right: 8px;" v-else @click="onProductEdit">保存</a-button>
|
|
|
<xn-batch-delete
|
|
|
:selectedRowKeys="productSelectedRowKeys"
|
|
@@ -472,6 +473,7 @@
|
|
|
:pagination="false"
|
|
|
:scroll="{ x: 2000 }"
|
|
|
:row-selection="productOptions.rowSelection"
|
|
|
+ rowKey="id"
|
|
|
>
|
|
|
<template #bodyCell="{ column, record, index }">
|
|
|
<template v-if="column.dataIndex === 'regionCode'">
|
|
@@ -514,6 +516,7 @@
|
|
|
:columns="fileColumns"
|
|
|
:pagination="false"
|
|
|
:row-selection="fileOptions.rowSelection"
|
|
|
+ rowKey="id"
|
|
|
>
|
|
|
<template #bodyCell="{ column, record, index, text }">
|
|
|
<template v-if="['attachmentName', 'attachmentFormat', 'attachmentContent'].includes(column.dataIndex)">
|
|
@@ -1073,7 +1076,7 @@ const onBodyAdd = () => {
|
|
|
bodyFormRef.value
|
|
|
.validate()
|
|
|
.then(() => {
|
|
|
- bodyList.value.push(Object.assign({__index: new Date().getTime()}, bodyData.value))
|
|
|
+ bodyList.value.push(Object.assign({id: new Date().getTime()}, bodyData.value))
|
|
|
onBodyReset()
|
|
|
message.success('插入料件信息成功!')
|
|
|
})
|
|
@@ -1084,12 +1087,7 @@ const onBodyEdit = () => {
|
|
|
bodyFormRef.value
|
|
|
.validate()
|
|
|
.then(() => {
|
|
|
- let k = ''
|
|
|
- if (bodyData.value.id) {
|
|
|
- k = 'id'
|
|
|
- } else if (bodyData.value.__index) {
|
|
|
- k = '__index'
|
|
|
- }
|
|
|
+ let k = 'id'
|
|
|
if (k) {
|
|
|
bodyList.value.forEach(v => {
|
|
|
if (v[k] === bodyData.value[k]) {
|
|
@@ -1120,7 +1118,7 @@ const deleteBatchBody = () => {
|
|
|
bodyList.value = bodyList.value.filter(v => {
|
|
|
let flag = true
|
|
|
bodySelectedRowKeys.value.forEach(s => {
|
|
|
- if ((v.id && (v.id === s.id)) || (v.__index && (v.__index === s.__index))) {
|
|
|
+ if ((v.id && (v.id === s.id))) {
|
|
|
flag = false
|
|
|
}
|
|
|
})
|
|
@@ -1138,7 +1136,7 @@ const onProductAdd = () => {
|
|
|
productFormRef.value
|
|
|
.validate()
|
|
|
.then(() => {
|
|
|
- productList.value.push(Object.assign({__index: new Date().getTime()}, productData.value))
|
|
|
+ productList.value.push(Object.assign({id: new Date().getTime()}, productData.value))
|
|
|
onProductReset()
|
|
|
message.success('插入产品信息成功!')
|
|
|
})
|
|
@@ -1149,12 +1147,7 @@ const onProductEdit = () => {
|
|
|
productFormRef.value
|
|
|
.validate()
|
|
|
.then(() => {
|
|
|
- let k = ''
|
|
|
- if (productData.value.id) {
|
|
|
- k = 'id'
|
|
|
- } else if (productData.value.__index) {
|
|
|
- k = '__index'
|
|
|
- }
|
|
|
+ let k = 'id'
|
|
|
if (k) {
|
|
|
productList.value.forEach(v => {
|
|
|
if (v[k] === productData.value[k]) {
|
|
@@ -1185,7 +1178,7 @@ const deleteBatchProduct = () => {
|
|
|
productList.value = productList.value.filter(v => {
|
|
|
let flag = true
|
|
|
productSelectedRowKeys.value.forEach(s => {
|
|
|
- if ((v.id && (v.id === s.id)) || (v.__index && (v.__index === s.__index))) {
|
|
|
+ if ((v.id && (v.id === s.id))) {
|
|
|
flag = false
|
|
|
}
|
|
|
})
|
|
@@ -1208,7 +1201,7 @@ const fileChange = (file) => {
|
|
|
if (file) {
|
|
|
const f = ref_upload.value.uploadFileList()[0]
|
|
|
fileList.value.push({
|
|
|
- __index: new Date().getTime(),
|
|
|
+ id: new Date().getTime(),
|
|
|
attachmentUrl: f.url,
|
|
|
attachmentName: f.name,
|
|
|
attachmentFormat: getFileExtension(f.name),
|
|
@@ -1239,7 +1232,7 @@ const deleteBatchFile = () => {
|
|
|
fileList.value = fileList.value.filter(v => {
|
|
|
let flag = true
|
|
|
fileSelectedRowKeys.value.forEach(s => {
|
|
|
- if ((v.id && (v.id === s.id)) || (v.__index && (v.__index === s.__index))) {
|
|
|
+ if ((v.id && (v.id === s.id))) {
|
|
|
flag = false
|
|
|
}
|
|
|
})
|