|
|
@@ -7,8 +7,8 @@
|
|
|
<view class="tip-title">{{title}}</view>
|
|
|
<view class="tip-content">{{content}}</view>
|
|
|
<view class="tip-btn-box">
|
|
|
- <ezyActiveVue class="ezy-btn-active not-confirm-btn" @aclick="handleClose">取消</ezyActiveVue>
|
|
|
- <ezyActiveVue class="ezy-btn-active confirm-btn" @aclick="confirmBtn">确认</ezyActiveVue>
|
|
|
+ <ezyActiveVue class="ezy-btn-active not-confirm-btn" @aclick="handleClose">{{qxBtnName}}</ezyActiveVue>
|
|
|
+ <ezyActiveVue class="ezy-btn-active confirm-btn" @aclick="confirmBtn">{{qrBtnName}}</ezyActiveVue>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
@@ -28,6 +28,14 @@
|
|
|
require: true,
|
|
|
default: ''
|
|
|
},
|
|
|
+ qxBtnName: {
|
|
|
+ type: String,
|
|
|
+ default: '取消'
|
|
|
+ },
|
|
|
+ qrBtnName: {
|
|
|
+ type: String,
|
|
|
+ default: '确认'
|
|
|
+ },
|
|
|
});
|
|
|
const tipSmallPopup = ref(null); // 索引
|
|
|
const $emit = defineEmits(['confirm-btn'])
|