|
@@ -1,51 +1,41 @@
|
|
<template>
|
|
<template>
|
|
- <view class="modal-mask">
|
|
|
|
- <transition name="confirm-fade">
|
|
|
|
- <view class="confirm-container" v-show="showFlag">
|
|
|
|
- <view class="popup-title">{{ title }}</view>
|
|
|
|
- <view class="popup-content">{{ text }}</view>
|
|
|
|
- <view class="flex-row modal-footer">
|
|
|
|
- <view class="show-btn cencel-btn-pop" v-if="showCancelButton" @tap="cancel">{{ cancelBtnText }}</view>
|
|
|
|
- <view class="show-btn ok-btn-pop" @tap="confirm">{{ confirmBtnText }}</view>
|
|
|
|
|
|
+ <view class="modal-mask" v-if="value">
|
|
|
|
+ <view class="confirm-container">
|
|
|
|
+ <view class="popup-title">{{ dialogInfo.title }}</view>
|
|
|
|
+ <view class="popup-content">{{ dialogInfo.text }}</view>
|
|
|
|
+ <view class="flex-row modal-footer">
|
|
|
|
+ <view class="show-btn cencel-btn-pop" v-if="dialogInfo.showCancelButton" @tap="cancel">
|
|
|
|
+ {{ dialogInfo.cancelBtnText }}
|
|
</view>
|
|
</view>
|
|
|
|
+ <view class="show-btn ok-btn-pop" @tap="confirm">{{ dialogInfo.confirmBtnText }}</view>
|
|
</view>
|
|
</view>
|
|
- </transition>
|
|
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
export default {
|
|
export default {
|
|
- data() {
|
|
|
|
- return {
|
|
|
|
- showFlag: false,
|
|
|
|
- title: "温馨提示",
|
|
|
|
- text: '请传入描述文本', // 描述文本
|
|
|
|
- confirmBtnText: "确定",
|
|
|
|
- cancelBtnText: "取消",
|
|
|
|
- showCancelButton: true, // 是否显示取消按钮
|
|
|
|
- };
|
|
|
|
|
|
+ props: {
|
|
|
|
+ value: {
|
|
|
|
+ type: Boolean,
|
|
|
|
+ default: false
|
|
|
|
+ },
|
|
|
|
+ dialogInfo: {
|
|
|
|
+ type: Object,
|
|
|
|
+ default: () => ({})
|
|
|
|
+ }
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
- show(cb) {
|
|
|
|
- this.showFlag = true;
|
|
|
|
- typeof cb === "function" && cb.call(this, this);
|
|
|
|
- return new Promise((resolve, reject) => {
|
|
|
|
- this.reject = reject;
|
|
|
|
- this.resolve = resolve;
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
cancel() {
|
|
cancel() {
|
|
- this.reject("cancel")
|
|
|
|
this.hide()
|
|
this.hide()
|
|
},
|
|
},
|
|
confirm() {
|
|
confirm() {
|
|
- this.resolve("confirm")
|
|
|
|
this.hide()
|
|
this.hide()
|
|
|
|
+ const { opType = null } = this.dialogInfo
|
|
|
|
+ this.$emit("confirm", opType)
|
|
},
|
|
},
|
|
hide() {
|
|
hide() {
|
|
- this.showFlag = false
|
|
|
|
- document.body.removeChild(this.$el)
|
|
|
|
- this.$destroy()
|
|
|
|
|
|
+ this.$emit("input", false)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
};
|
|
@@ -63,12 +53,13 @@ export default {
|
|
justify-content: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
align-items: center;
|
|
z-index: 9999;
|
|
z-index: 9999;
|
|
|
|
+
|
|
.confirm-container {
|
|
.confirm-container {
|
|
background-color: #fff;
|
|
background-color: #fff;
|
|
padding: 48rpx;
|
|
padding: 48rpx;
|
|
border-radius: 40rpx;
|
|
border-radius: 40rpx;
|
|
width: 75%;
|
|
width: 75%;
|
|
-
|
|
|
|
|
|
+
|
|
.popup-title {
|
|
.popup-title {
|
|
font-weight: 600;
|
|
font-weight: 600;
|
|
font-size: 36rpx;
|
|
font-size: 36rpx;
|
|
@@ -77,7 +68,7 @@ export default {
|
|
margin-bottom: 26rpx;
|
|
margin-bottom: 26rpx;
|
|
font-family: PingFangSC, PingFang SC;
|
|
font-family: PingFangSC, PingFang SC;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
.popup-content {
|
|
.popup-content {
|
|
text-align: center;
|
|
text-align: center;
|
|
font-weight: 400;
|
|
font-weight: 400;
|
|
@@ -87,18 +78,12 @@ export default {
|
|
font-family: PingFangSC, PingFang SC;
|
|
font-family: PingFangSC, PingFang SC;
|
|
line-height: 40rpx;
|
|
line-height: 40rpx;
|
|
}
|
|
}
|
|
-
|
|
|
|
- &.confirm-fade-enter-active {
|
|
|
|
- animation: confirm-fadein 0.3s;
|
|
|
|
-
|
|
|
|
- .confirm-content {
|
|
|
|
- animation: confirm-zoom 0.3s;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
}
|
|
}
|
|
|
|
+
|
|
.modal-footer {
|
|
.modal-footer {
|
|
width: 100%;
|
|
width: 100%;
|
|
align-items: center;
|
|
align-items: center;
|
|
|
|
+
|
|
.show-btn {
|
|
.show-btn {
|
|
border-radius: 40rpx;
|
|
border-radius: 40rpx;
|
|
flex: 1;
|
|
flex: 1;
|
|
@@ -108,17 +93,18 @@ export default {
|
|
border-radius: 40rpx;
|
|
border-radius: 40rpx;
|
|
height: 80rpx;
|
|
height: 80rpx;
|
|
line-height: 80rpx;
|
|
line-height: 80rpx;
|
|
|
|
+
|
|
&:active {
|
|
&:active {
|
|
opacity: 0.7;
|
|
opacity: 0.7;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
.cencel-btn-pop {
|
|
.cencel-btn-pop {
|
|
color: #060809;
|
|
color: #060809;
|
|
background: #EBECEC;
|
|
background: #EBECEC;
|
|
margin-right: 12rpx;
|
|
margin-right: 12rpx;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
.ok-btn-pop {
|
|
.ok-btn-pop {
|
|
color: #FFFFFF;
|
|
color: #FFFFFF;
|
|
background: #060809;
|
|
background: #060809;
|