|
@@ -333,7 +333,7 @@
|
|
|
</template>
|
|
|
<template v-else>
|
|
|
<a-button type="link" primary size="small" @click="onBodyReset(), bodyData = cloneDeep(record)">编辑</a-button>
|
|
|
- <a-button type="link" danger size="small" @click="onBodyDel(index)">删除</a-button>
|
|
|
+ <a-button type="link" danger size="small" @click="onBodyDel(record, index)">删除</a-button>
|
|
|
</template>
|
|
|
</template>
|
|
|
</template>
|
|
@@ -490,7 +490,7 @@
|
|
|
</template>
|
|
|
<template v-else>
|
|
|
<a-button type="link" primary size="small" @click="onProductReset(), productData = cloneDeep(record)">编辑</a-button>
|
|
|
- <a-button type="link" danger size="small" @click="onProductDel(index)">删除</a-button>
|
|
|
+ <a-button type="link" danger size="small" @click="onProductDel(record, index)">删除</a-button>
|
|
|
</template>
|
|
|
</template>
|
|
|
</template>
|
|
@@ -540,7 +540,7 @@
|
|
|
<template v-if="isView">
|
|
|
</template>
|
|
|
<template v-else>
|
|
|
- <a-button type="link" danger size="small" @click="onFileDel(index)" v-if="!isView">删除</a-button>
|
|
|
+ <a-button type="link" danger size="small" @click="onFileDel(record, index)" v-if="!isView">删除</a-button>
|
|
|
</template>
|
|
|
</template>
|
|
|
</template>
|
|
@@ -1178,7 +1178,7 @@ const onProductDel = (record, index) => {
|
|
|
Modal.confirm({
|
|
|
title: '提示',
|
|
|
icon: createVNode(ExclamationCircleOutlined),
|
|
|
- content: createVNode('div', { style: 'color:red;' }, `是否要删除${record.productName}?`),
|
|
|
+ content: createVNode('div', { style: 'color:red;' }, `是否要删除?`),
|
|
|
centered: true,
|
|
|
onOk() {
|
|
|
productList.value.splice(index, 1)
|