vue.js 弹层

Posted 安心牧羊人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue.js 弹层相关的知识,希望对你有一定的参考价值。

 

<div class="open-box"  v-if="SystemShow" @click="ColseShow">
            <div class="open-box-content">
                <h3>系统提示</h3>
                <p>系统检测到您是天下医家的医护人员
                    <br>可以通过APP进行点餐
                    <br>获得更多优惠</p>
                <div class="open-box-btn">
                    <div class="open-box-btn-left">
                        <button>继续使用</button>
                    </div>
                    <div class="open-box-btn-right">
                        <button>下载天下医家</button>
                    </div>
                </div>
            </div>
        </div>

<style>

.open-box {
    position: fixed;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    left: 0;   /**定位时需注意  不然ios找不到显示地方**/
    top: 0;  /**定位时需注意  不然ios找不到显示地方**/
    z-index: 100;
    color: #fff;
    text-align: center;
}

.open-box-content {
    background: #fff;
    border-radius: 3px;
    width: 305px;
    margin: 0 auto;
    margin-top: 35%;
}

.open-box-content h3 {
    width: 100%;
    color: #5089fc;
    text-align: center;
    border-bottom: solid 1px #5089fc;
    height: 55px;
    line-height: 55px;
    font-size: 21px;
}

.open-box-content p {
    width: 100%;
    text-align: center;
    line-height: 24px;
    color: #333333;
    font-size: 16px;
    margin-top: 20px;
}

.open-box-btn {
    width: 100%;
    overflow: hidden;
    padding: 25px 0 18px;
}

.open-box-btn-left {
    width: 50%;
    float: left;
}

.open-box-btn-left button {
    width: 90%;
    border-radius: 2px;
    border: none;
    background: #e6e6e6;
    color: #656565;
    height: 40px;
    line-height: 38px;
    font-size: 16px;
    outline: none;
    cursor: pointer;
}

.open-box-btn-right {
    width: 50%;
    float: right;
}

.open-box-btn-right button {
    width: 90%;
    border-radius: 2px;
    border: none;
    background: #5089fc;
    color: #ffffff;
    height: 40px;
    line-height: 38px;
    font-size: 16px;
    outline: none;
    cursor: pointer;
}

</style>

<script>
export default {
    data() {
            return {
           
                OpenAppShwo: true

            }
        },
        methods: {
          //在哪调用  就在哪@click="方法名" 
            OpenApp() {
                this.OpenAppShwo = !this.OpenAppShwo

            },
            CloseAp() {

                this.OpenAppShwo = !this.OpenAppShwo
            }
        }
}
</script>




















































































































以上是关于vue.js 弹层的主要内容,如果未能解决你的问题,请参考以下文章

(私人收藏)Vue.js手册及教程

vue.js文件有vue导出口吗

Node.js 和 Vue.js,为啥 Refresh 让 vue.js 的 store 清晰?我如何在 vue.js 中使用上传的图片?

Vue.js

Vue自学笔记(1)引入vue.js步骤

Vue.JS - 如何在 Vue.JS 中使用 localStorage