*时间是一把杀猪刀,每当我再一次开发小程序的时候又忘得一干二净 ,每次把这些东西记混淆了,于是还是写简书吧! *
类似
.linearlayout-horizontal-{
padding: 0 30rpx;
box-sizing:border-box;
align-items: center;
display: flex;
flex-direction:column;
}
垂直布局 内容水平居中的实现
父容器设置
display:flex;
flex-direction:column;/* 垂直方向布局 */
align-items: center;/* 异轴对齐 也就是说是交叉轴, 这里代表 水平对齐*/
垂直布局 上下 对齐实现
同轴对齐也就是同一个方向比如是垂直方向排列,那么 是上下居中对齐则用下面这个
display:flex;
flex-direction:column;
justify-content: center;
坑
console.debug("")新版本需要 勾选Levels ,另外不支持拼接了.
undefined!= null 因此判断类型的时候还需要判断一下是否等于null
getUserId: function () {
// return 1;
// console.warn("inffffffffffffffo:", typeof (this.globalData.userInfo) == "undefined", " shit" + typeof (this.globalData.userInfo) );
return typeof (this.globalData.userInfo) == "undefined" || this.globalData.userInfo==null ? 0 : this.globalData.userInfo.userid;
return 0;
},
isLogin: function (userInfo) {
if (typeof (userInfo) == "undefined") {//没传递参数
userInfo = this.globalData.userInfo;
}
var result = userInfo != null && typeof (userInfo) != "undefined" && Number(userInfo.userid) > 0;
return result;
},