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>

  • 相关阅读:
    JavaScript.convertArray
    JavaScript.InjectedScriptHost
    linux基础之ssh
    linux基础之常见的文件查看命令
    linux基础之ls命令
    windows安装zabbix客户端及加入监控
    centons7编译安装zabbix3.4
    gitlab备份、还原及迁移
    gitlab在centons环境下的安装及使用
    Python操作sqlserver
  • 原文地址:https://www.cnblogs.com/huanhuan55/p/9993151.html
Copyright © 2011-2022 走看看