u-popup弹出层使用讲解

1.控制是否显示的使用:show

 
    
      
    // 点击搜索确定
    handleSearch() {
      this.show = false;
      this.getList();
    },

样式:

 .searchColumn {
    .searchContent {
      padding: 50 * @toVw 20 * @toVw 10 * @toVw;
      .btn-box {
        padding: 10 * @toVw 0;
        background: #ffffff;
        display: flex;
        justify-content: space-around;
        /deep/ .u-button {
          width: 45%;
        }
      }
    }
  }

你可能感兴趣的:(u-popup弹出层使用讲解)