|
|
|
|
@ -235,7 +235,7 @@
|
|
|
|
|
<el-card shadow="always" style="margin-top: 12px">
|
|
|
|
|
<el-table
|
|
|
|
|
highlight-current-row
|
|
|
|
|
:data="tableData2.slice((currentPage2 - 1) * pageSize2, currentPage2 * pageSize2)"
|
|
|
|
|
:data="tableData2"
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
>
|
|
|
|
|
<!-- <el-table-column type="selection" width="55"/>-->
|
|
|
|
|
@ -1032,7 +1032,9 @@ const dialogImageUrl = ref('')
|
|
|
|
|
const imgDialog = ref(false)
|
|
|
|
|
// 删除
|
|
|
|
|
const delPoint = (e) => {
|
|
|
|
|
tableData1.value.splice((currentPage1.value - 1) * pageSize1.value + e.$index, 1);
|
|
|
|
|
let arr = JSON.parse(JSON.stringify(tableData1.value))
|
|
|
|
|
arr.splice((currentPage1.value - 1) * pageSize1.value + e.$index, 1);
|
|
|
|
|
tableData1.value = arr ||[]
|
|
|
|
|
}
|
|
|
|
|
// 当前页
|
|
|
|
|
const currentPage1 = ref(1)
|
|
|
|
|
|