|
@@ -403,7 +403,7 @@
|
|
|
<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>
|
|
@@ -456,7 +456,7 @@
|
|
|
<template v-if="isView">
|
|
|
</template>
|
|
|
<template v-else>
|
|
|
- <a-button type="link" danger size="small" @click="onFileDel(index)" v-if="!isView">
|
|
|
+ <a-button type="link" danger size="small" @click="onFileDel(record, index)" v-if="!isView">
|
|
|
删除
|
|
|
</a-button>
|
|
|
</template>
|
|
@@ -773,13 +773,13 @@ const bodyColumns = [
|
|
|
width: 160
|
|
|
},
|
|
|
{
|
|
|
- title: '监管年限到期日',
|
|
|
- dataIndex: 'jgnxDqr',
|
|
|
+ title: '监管年限起始日',
|
|
|
+ dataIndex: 'jgnxQsr',
|
|
|
width: 160
|
|
|
},
|
|
|
{
|
|
|
- title: '监管年限起始日',
|
|
|
- dataIndex: 'jgnxQsr',
|
|
|
+ title: '监管年限到期日',
|
|
|
+ dataIndex: 'jgnxDqr',
|
|
|
width: 160
|
|
|
},
|
|
|
{
|
|
@@ -890,7 +890,7 @@ const onBodyEdit = () => {
|
|
|
.catch(() => {
|
|
|
})
|
|
|
}
|
|
|
-const onBodyDel = (recode, index) => {
|
|
|
+const onBodyDel = (record, index) => {
|
|
|
Modal.confirm({
|
|
|
title: '提示',
|
|
|
icon: createVNode(ExclamationCircleOutlined),
|
|
@@ -979,7 +979,7 @@ const fileChange = (file) => {
|
|
|
}, 0)
|
|
|
}
|
|
|
}
|
|
|
-const onFileDel = (recode, index) => {
|
|
|
+const onFileDel = (record, index) => {
|
|
|
Modal.confirm({
|
|
|
title: '提示',
|
|
|
icon: createVNode(ExclamationCircleOutlined),
|