zoukankan      html  css  js  c++  java
  • vue-底部导航栏

    <template>
        <div class="bottom">
            <div class="bottom_button iconfont icon-iconset0281" @click="upKeyboard"><label class="lb iconfont icon-010yiwen"></label></div>
             <div class="bottom_counter">Couter:{{couter}}</div>
             <div class="bottom_cashier">Cashier:PeterChan</div>
             <div class="bottom_blank"></div>
             <div class="bottom_caps">Caps</div>
             <div class="bottom_num">Num</div>
             <div class="bottom_date">2018/11/01 12:41</div>
             <div class="bottom_line">{{onLine}}</div>
        </div>
    </template>
    
    <script>
    export default {
        props:{
             couter:{
               type:String,
               default:"001"
             },
             cashier:{
              type:String,
              default:""
             },
             caps:{
                type:String,
                default:""
             },
             num:{
                 type:Number,
                 default:"",
             },
             date:{
                 type:String,
                 default:""
             },
            onLine:{
                type:String,
                default:"On Line"
            }
        },
        data(){
            return{
             ifshow: false,
            }
        },
        methods:{
            upKeyboard(){
                this.ifshow = !this.ifshow;
            }
        }
    };
    </script>
    
    <style lang='scss'>
    .bottom {
       100%;
      height: 37px;
      font-size: 16px;
      font-weight: 700;
      position: fixed;
      bottom: 0;
      display: flex;
      flex-direction: row;
      align-items: center;
      align-items: center;
      background-color: #dfd5d6;
      .bottom_button {
        font-size: 25px;
         7%;
        text-align: center;
        .lb{
            color: #43aae4;
        }
      }
      .bottom_counter {
        10%;
        border-left: 1px solid #ada7a7;
        line-height: 30px;
        text-align: center;
      }
      .bottom_cashier {
         13%;
        border-left: 1px solid #9e9898;
        border-right: 1px solid #9e9898;
        line-height: 30px;
        text-align: center;
      }
      .bottom_blank{
         20%;
      }
      .bottom_caps {
         10%;
        line-height: 30px;
         border-left: 1px solid #9e9898;
        border-right: 1px solid #9e9898;
          text-align: center;
      }
      .bottom_num {
         10%;
        border-right: 1px solid #9e9898;
        line-height: 30px;
        text-align: center;
          
      }
      .bottom_date{
            17%;
           text-align: center;
      }
      .bottom_line{
        text-align: center;
         13%;
        height: 37px;
        line-height: 35px;
        background-color: #21c85e;
        color: #ffffff;
      }
    }
    </style>

  • 相关阅读:
    CodeForces 288A Polo the Penguin and Strings (水题)
    CodeForces 289B Polo the Penguin and Matrix (数学,中位数)
    CodeForces 289A Polo the Penguin and Segments (水题)
    CodeForces 540C Ice Cave (BFS)
    网站后台模板
    雅图CAD
    mbps
    WCF学习-协议绑定
    数据库建表经验总结
    资源位置
  • 原文地址:https://www.cnblogs.com/huanhuan55/p/9993151.html
Copyright © 2011-2022 走看看