Compare commits
2 Commits
e3a8a829f1
...
b1b0aa91a0
Author | SHA1 | Date |
---|---|---|
zhangguoping | b1b0aa91a0 | |
zhangguoping | ceb00eefe5 |
|
@ -0,0 +1,38 @@
|
||||||
|
.base-dialog {
|
||||||
|
|
||||||
|
overflow: initial;
|
||||||
|
|
||||||
|
.dialog-img {
|
||||||
|
margin-top: -38px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dialog-title {
|
||||||
|
height: 30px;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 23px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: rgb(23, 23, 23);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dialog-text {
|
||||||
|
height: 55px;
|
||||||
|
line-height: 55px;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 15px;
|
||||||
|
color: rgb(82, 77, 77);
|
||||||
|
margin: 10px 0px;
|
||||||
|
padding: 0px 10px;
|
||||||
|
}
|
||||||
|
.dialog-btn {
|
||||||
|
width: 199px;
|
||||||
|
height: 46px;
|
||||||
|
text-align: center;
|
||||||
|
background: rgb(254, 99, 68);
|
||||||
|
border-radius: 23px;
|
||||||
|
font-size: 19px;
|
||||||
|
color: rgb(255, 255, 255);
|
||||||
|
line-height: 45px;
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,74 @@
|
||||||
|
<template>
|
||||||
|
<van-dialog
|
||||||
|
class="base-dialog"
|
||||||
|
v-model:show="model"
|
||||||
|
:width="width"
|
||||||
|
:height="height"
|
||||||
|
:style="{ height: height }"
|
||||||
|
:showConfirmButton="false"
|
||||||
|
>
|
||||||
|
<img class="dialog-img" :src="imgUrl" />
|
||||||
|
<p class="dialog-title">{{ title }}</p>
|
||||||
|
<p class="dialog-text">{{ text }}</p>
|
||||||
|
<div class="dialog-btn">{{ confirmTxt }}</div>
|
||||||
|
</van-dialog>
|
||||||
|
</template>
|
||||||
|
<script lang="ts">
|
||||||
|
export default {
|
||||||
|
name: "base-dialog",
|
||||||
|
props: {
|
||||||
|
// 弹窗显示
|
||||||
|
modelValue: {
|
||||||
|
type: Boolean,
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
|
// 自定义图片
|
||||||
|
imgUrl: {
|
||||||
|
type: String,
|
||||||
|
// https://lsxdmgoss.oss-cn-chengdu.aliyuncs.com/MarketingSystem/image/front/popErr.png
|
||||||
|
default:
|
||||||
|
"https://lsxdmgoss.oss-cn-chengdu.aliyuncs.com/MarketingSystem/image/front/popNotes.png",
|
||||||
|
},
|
||||||
|
// 弹窗title
|
||||||
|
title: {
|
||||||
|
type: String,
|
||||||
|
default: "温馨提示",
|
||||||
|
},
|
||||||
|
// 提示文案
|
||||||
|
text: {
|
||||||
|
type: String,
|
||||||
|
default: "请重新进入",
|
||||||
|
},
|
||||||
|
// 关闭文案
|
||||||
|
confirmTxt: {
|
||||||
|
type: String,
|
||||||
|
default: "我知道了",
|
||||||
|
},
|
||||||
|
cancleTxt: {
|
||||||
|
type: String,
|
||||||
|
default: "",
|
||||||
|
},
|
||||||
|
// 弹窗宽度
|
||||||
|
width: {
|
||||||
|
type: String,
|
||||||
|
default: "274px",
|
||||||
|
},
|
||||||
|
// 弹窗高度
|
||||||
|
height: {
|
||||||
|
type: String,
|
||||||
|
default: "266px",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
model: this.modelValue,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
console.log("zgpppppp");
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<style lang="scss">
|
||||||
|
@use "./index.scss";
|
||||||
|
</style>
|
|
@ -381,7 +381,6 @@ export default {
|
||||||
.then(() => {
|
.then(() => {
|
||||||
this.copyFn(url);
|
this.copyFn(url);
|
||||||
})
|
})
|
||||||
.catch(() => {})
|
|
||||||
} else {
|
} else {
|
||||||
// 唤起支付宝
|
// 唤起支付宝
|
||||||
location.replace(url);
|
location.replace(url);
|
||||||
|
@ -398,7 +397,6 @@ export default {
|
||||||
.then(() => {
|
.then(() => {
|
||||||
this.copyFn(url);
|
this.copyFn(url);
|
||||||
})
|
})
|
||||||
.catch(() => {})
|
|
||||||
} else { // 小程序 + 通用领取
|
} else { // 小程序 + 通用领取
|
||||||
// 唤起小程序 todo
|
// 唤起小程序 todo
|
||||||
location.replace('https://www.baidu.com/')
|
location.replace('https://www.baidu.com/')
|
||||||
|
|
Loading…
Reference in New Issue