mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-23 01:36:47 +08:00
还原页面代码,添加导入逻辑
This commit is contained in:
@@ -24,10 +24,10 @@
|
||||
</div>
|
||||
<div class="del_btnbox" v-if="isCloseBtn">
|
||||
<div class="del_btn btn2" @click="close" v-if="cancel">
|
||||
<div class="btnText">取消</div>
|
||||
<div class="btnText">{{ cancelText }}</div>
|
||||
</div>
|
||||
<div class="del_btn btn2" @click="handleConfirm">
|
||||
<div class="btnText">确定</div>
|
||||
<div class="btnText">{{ okText }}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="del_btnbox" v-else>
|
||||
@@ -73,6 +73,14 @@ const props = defineProps({
|
||||
isCloseBtn: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
okText: {
|
||||
type: String,
|
||||
default: "确定"
|
||||
},
|
||||
cancelText: {
|
||||
type: String,
|
||||
default: "取消"
|
||||
}
|
||||
});
|
||||
const types = {
|
||||
|
||||
Reference in New Issue
Block a user