|
@@ -287,8 +287,8 @@
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column fixed="right" label="操作" width="100">
|
|
|
- <template :slot-scope="{ row, $index }">
|
|
|
- <el-button type="text" size="small" @click="deleteBodyRow(props.row, $index,row)">删除</el-button>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button type="text" size="small" @click="deleteBodyRow(props.row, scope.$index,scope.row)">删除</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
@@ -350,11 +350,11 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column fixed="right" label="操作" width="100">
|
|
|
- <template :slot-scope="{ row, $index }">
|
|
|
+ <template slot-scope="scope">
|
|
|
<el-button
|
|
|
type="text"
|
|
|
size="small"
|
|
|
- @click="deleteQueryRow(props.row, $index,row)"
|
|
|
+ @click="deleteQueryRow(props.row, scope.$index,scope.row)"
|
|
|
>删除</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -417,11 +417,11 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column fixed="right" label="操作" width="100">
|
|
|
- <template :slot-scope="{ row, $index }">
|
|
|
+ <template slot-scope="scope">
|
|
|
<el-button
|
|
|
type="text"
|
|
|
size="small"
|
|
|
- @click="deleteResponseRow(props.row, $index,row)"
|
|
|
+ @click="deleteResponseRow(props.row, scope.$index,scope.row)"
|
|
|
>删除</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -484,8 +484,8 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column fixed="right" label="操作" width="100">
|
|
|
- <template :slot-scope="{ row, $index }">
|
|
|
- <el-button type="text" size="small" @click="deleteDataRow(props.row, $index)">删除</el-button>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button type="text" size="small" @click="deleteDataRow(props.row, scope.$index,scope.row)">删除</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
@@ -538,7 +538,7 @@
|
|
|
import {
|
|
|
deleteUrlSun,
|
|
|
deleteDataSun
|
|
|
-} from "@/api/unified-access/access-feedback";
|
|
|
+} from "@/api/unified-access/access-feedback.js";
|
|
|
import MyForm from "@/components/MyForm";
|
|
|
export default {
|
|
|
name: "",
|
|
@@ -558,11 +558,9 @@ export default {
|
|
|
watch: {
|
|
|
thirdStep: {
|
|
|
handler(newVal) {
|
|
|
- console.log(newVal, "newVal==thirdStep");
|
|
|
this.rightTableData = newVal;
|
|
|
this.leftTableData = this.rightTableData;
|
|
|
this.pagination.total = this.leftTableData.length;
|
|
|
- console.log(rightTableData, "rightTableData==thirdStep");
|
|
|
},
|
|
|
deep: true, // 深入监听
|
|
|
immediate: true
|
|
@@ -748,17 +746,15 @@ export default {
|
|
|
row.tabEtlHeaderSuns.push(newItem);
|
|
|
},
|
|
|
deleteHeaderRow(row, index, itemRow) {
|
|
|
-
|
|
|
if (this.dialogTitle === "新增") {
|
|
|
row.tabEtlHeaderSuns.splice(index, 1);
|
|
|
} else {
|
|
|
- this.$confirm("此操作将永久删除该文件, 是否继续?", "提示", {
|
|
|
- confirmButtonText: "确定",
|
|
|
- cancelButtonText: "取消",
|
|
|
- type: "warning"
|
|
|
- })
|
|
|
- .then(() => {
|
|
|
- deleteUrlSun(itemRow.id).then(res => {
|
|
|
+ this.$confirm('此操作将永久删除该文件, 是否继续?', '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ deleteUrlSun(itemRow.id).then(res => {
|
|
|
if (+res.code === 200) {
|
|
|
row.tabEtlHeaderSuns.splice(index, 1);
|
|
|
|
|
@@ -766,16 +762,19 @@ export default {
|
|
|
type: "success",
|
|
|
message: "删除成功!"
|
|
|
});
|
|
|
+ }else{
|
|
|
+ this.$message.error(res.msg);
|
|
|
}
|
|
|
});
|
|
|
- })
|
|
|
- .catch(() => {
|
|
|
- this.$message({
|
|
|
- type: "info",
|
|
|
- message: "已取消删除"
|
|
|
- });
|
|
|
- });
|
|
|
+
|
|
|
+ }).catch(() => {
|
|
|
+ this.$message({
|
|
|
+ type: 'info',
|
|
|
+ message: '已取消删除'
|
|
|
+ });
|
|
|
+ });
|
|
|
}
|
|
|
+
|
|
|
},
|
|
|
|
|
|
// Body
|
|
@@ -795,7 +794,7 @@ export default {
|
|
|
if (this.dialogTitle === "新增") {
|
|
|
row.tabEtlBodySuns.splice(index, 1);
|
|
|
} else {
|
|
|
- this.$confirm("此操作将永久删除该文件, 是否继续?", "提示", {
|
|
|
+ this.$confirm("此操作将永久删除该项, 是否继续?", "提示", {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
|
type: "warning"
|
|
@@ -838,13 +837,12 @@ export default {
|
|
|
if (this.dialogTitle === "新增") {
|
|
|
row.tabEtlQuerySuns.splice(index, 1);
|
|
|
} else {
|
|
|
- this.$confirm("此操作将永久删除该文件, 是否继续?", "提示", {
|
|
|
- confirmButtonText: "确定",
|
|
|
- cancelButtonText: "取消",
|
|
|
- type: "warning"
|
|
|
- })
|
|
|
- .then(() => {
|
|
|
- deleteUrlSun(itemRow.id).then(res => {
|
|
|
+ this.$confirm('此操作将永久删除该文件, 是否继续?', '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ deleteUrlSun(itemRow.id).then(res => {
|
|
|
if (+res.code === 200) {
|
|
|
row.tabEtlQuerySuns.splice(index, 1);
|
|
|
|
|
@@ -852,15 +850,17 @@ export default {
|
|
|
type: "success",
|
|
|
message: "删除成功!"
|
|
|
});
|
|
|
+ }else{
|
|
|
+ this.$message.error(res.msg);
|
|
|
}
|
|
|
});
|
|
|
- })
|
|
|
- .catch(() => {
|
|
|
- this.$message({
|
|
|
- type: "info",
|
|
|
- message: "已取消删除"
|
|
|
- });
|
|
|
- });
|
|
|
+
|
|
|
+ }).catch(() => {
|
|
|
+ this.$message({
|
|
|
+ type: 'info',
|
|
|
+ message: '已取消删除'
|
|
|
+ });
|
|
|
+ });
|
|
|
}
|
|
|
},
|
|
|
// Response
|
|
@@ -879,29 +879,31 @@ export default {
|
|
|
deleteResponseRow(row, index,itemRow) {
|
|
|
if (this.dialogTitle === "新增") {
|
|
|
row.tabEtlResponseSuns.splice(index, 1);
|
|
|
- } else {
|
|
|
- this.$confirm("此操作将永久删除该文件, 是否继续?", "提示", {
|
|
|
- confirmButtonText: "确定",
|
|
|
- cancelButtonText: "取消",
|
|
|
- type: "warning"
|
|
|
- })
|
|
|
- .then(() => {
|
|
|
- deleteUrlSun(itemRow.id).then(res => {
|
|
|
+ } else {
|
|
|
+ this.$confirm('此操作将永久删除该文件, 是否继续?', '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ deleteUrlSun(itemRow.id).then(res => {
|
|
|
if (+res.code === 200) {
|
|
|
- row.tabEtlResponseSuns.splice(index, 1);
|
|
|
+ row.tabEtlResponseSuns.splice(index, 1);
|
|
|
+
|
|
|
this.$message({
|
|
|
type: "success",
|
|
|
message: "删除成功!"
|
|
|
});
|
|
|
+ }else{
|
|
|
+ this.$message.error(res.msg);
|
|
|
}
|
|
|
});
|
|
|
- })
|
|
|
- .catch(() => {
|
|
|
- this.$message({
|
|
|
- type: "info",
|
|
|
- message: "已取消删除"
|
|
|
- });
|
|
|
- });
|
|
|
+
|
|
|
+ }).catch(() => {
|
|
|
+ this.$message({
|
|
|
+ type: 'info',
|
|
|
+ message: '已取消删除'
|
|
|
+ });
|
|
|
+ });
|
|
|
}
|
|
|
},
|
|
|
// Data
|
|
@@ -920,29 +922,31 @@ export default {
|
|
|
deleteDataRow(row, index,itemRow) {
|
|
|
if (this.dialogTitle === "新增") {
|
|
|
row.tabEtlDataSuns.splice(index, 1);
|
|
|
- } else {
|
|
|
- this.$confirm("此操作将永久删除该文件, 是否继续?", "提示", {
|
|
|
- confirmButtonText: "确定",
|
|
|
- cancelButtonText: "取消",
|
|
|
- type: "warning"
|
|
|
- })
|
|
|
- .then(() => {
|
|
|
- deleteUrlSun(itemRow.id).then(res => {
|
|
|
+ } else {
|
|
|
+ this.$confirm('此操作将永久删除该文件, 是否继续?', '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ deleteUrlSun(itemRow.id).then(res => {
|
|
|
if (+res.code === 200) {
|
|
|
- row.tabEtlDataSuns.splice(index, 1);
|
|
|
+ row.tabEtlDataSuns.splice(index, 1);
|
|
|
+
|
|
|
this.$message({
|
|
|
type: "success",
|
|
|
message: "删除成功!"
|
|
|
});
|
|
|
+ }else{
|
|
|
+ this.$message.error(res.msg);
|
|
|
}
|
|
|
});
|
|
|
- })
|
|
|
- .catch(() => {
|
|
|
- this.$message({
|
|
|
- type: "info",
|
|
|
- message: "已取消删除"
|
|
|
- });
|
|
|
- });
|
|
|
+
|
|
|
+ }).catch(() => {
|
|
|
+ this.$message({
|
|
|
+ type: 'info',
|
|
|
+ message: '已取消删除'
|
|
|
+ });
|
|
|
+ });
|
|
|
}
|
|
|
}
|
|
|
},
|