package config
This commit is contained in:
@@ -201,10 +201,6 @@ export default {
|
||||
Object.assign(rowData, row);
|
||||
this.selectRow = rowData;
|
||||
},
|
||||
cancel(e) {
|
||||
console.log(e);
|
||||
this.$message.error("Click on No");
|
||||
},
|
||||
closeManageProducerAuthDialog() {
|
||||
this.openManageProducerAuthDialog = false;
|
||||
getAclList(this.data, this.queryParam);
|
||||
|
||||
@@ -1,36 +0,0 @@
|
||||
<template>
|
||||
<a-popconfirm
|
||||
:title="title"
|
||||
ok-text="确认"
|
||||
cancel-text="取消"
|
||||
@confirm="confirm"
|
||||
@cancel="cancel"
|
||||
>
|
||||
</a-popconfirm>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
name: "ConfirmDialog",
|
||||
props: {
|
||||
title: {
|
||||
type: String,
|
||||
default: "",
|
||||
},
|
||||
confirmEvent: {
|
||||
default: "",
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
confirm(e) {
|
||||
console.log(e);
|
||||
this.$message.success("Click on Yes");
|
||||
},
|
||||
cancel(e) {
|
||||
console.log(e);
|
||||
this.$message.error("Click on No");
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped></style>
|
||||
Reference in New Issue
Block a user