| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <template>
- <view class="alert-wrapper">
- <view class="alert-box">
- <image src="/static/images/success.png" mode=""></image>
- <view class="txt">{{msg}}</view>
- <view class="btn" @click="close">我知道了</view>
- </view>
- </view>
- </template>
- <script>
- export default{
- props:{
- msg:{
- type:String,
- default:''
- },
- },
- 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);
- .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:linear-gradient(-90deg,$bg-end 0%,$bg-star 100%);
- border-radius:45rpx;
- color: #fff;
- }
- }
- }
- </style>
|