要搞直接登录

This commit is contained in:
xk_guohonglei
2020-09-04 09:20:45 +08:00
parent 39d433998a
commit 395ebd432d
28 changed files with 7367 additions and 44 deletions

22
common/checker.js Normal file
View File

@@ -0,0 +1,22 @@
module.exports = {
error:'',
isJSON : function (str){
if (typeof str == 'string') {
try {
var obj=JSON.parse(str);
if(typeof obj == 'object' && obj ){
return true;
}else{
return false;
}
} catch(e) {
console.log('error'+str+'!!!'+e);
return false;
}
}
},
isNumber : function (checkVal){
var reg = /^-?[1-9][0-9]?.?[0-9]*$/;
return reg.test(checkVal);
}
}

View File

@@ -26,12 +26,13 @@ page {
}
.my-bg {
background-color: #f1f2f7 !important;
background-color: #f1f2f7 !important;
}
.oil-main-color {
color: #FE0505 !important;
}
.bg-main-oil {
background-color: #FE0505 !important;
}
@@ -129,12 +130,23 @@ page {
.margin-0 {
margin: 0;
}
.w100{
.w100 {
min-width: 100%;
}
.padding-bottom-0{
.padding-bottom-0 {
padding-bottom: 0;
}
.page-content{
.page-content {
min-height: 100%;
}
position: relative;
}
/* 客服热线 */
.bottom-part {
min-width: 100%;
position: absolute;
bottom: 50rpx;
}