Huanyuyuehui/components/alert/index.vue

77 lines
1.4 KiB
Vue

<template>
<view class="alert-wrapper" :style="viewColor">
<view class="alert-box">
<image :src="domain+'/static/diy/success'+keyColor+'.png'" mode=""></image>
<view class="txt">{{msg}}</view>
<view class="btn" @click="close">我知道了</view>
</view>
</view>
</template>
<script>
import { mapGetters } from "vuex";
import { HTTP_REQUEST_URL } from '@/config/app';
export default{
data() {
return {
domain: HTTP_REQUEST_URL,
}
},
props:{
msg:{
type:String,
default:''
},
},
computed: mapGetters(['viewColor','keyColor']),
methods:{
close(){
this.$emit('bindClose');
}
}
}
</script>
<style lang="scss">
.alert-wrapper{
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,.5);
z-index: 10;
.alert-box{
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 500rpx;
height: 540rpx;
background-color: #fff;
border-radius: 10rpx;
font-size: 34rpx;
image{
width: 149rpx;
height: 230rpx;
}
.txt{
margin-bottom: 20rpx;
}
.btn{
width:340rpx;
height:90rpx;
line-height: 90rpx;
text-align: center;
background-image:linear-gradient(-90deg,var(--view-bntColor21) 0%,var(--view-bntColor22) 100%);
border-radius:45rpx;
color: #fff;
}
}
}
</style>