浏览代码

feat: config project

wangyuan 2 年之前
父节点
当前提交
d8dcc281ab
共有 5 个文件被更改,包括 71 次插入27 次删除
  1. 6 12
      app.js
  2. 11 9
      app.json
  3. 51 4
      app.wxss
  4. 1 1
      project.config.json
  5. 2 1
      project.private.config.json

+ 6 - 12
app.js

@@ -1,19 +1,13 @@
 // app.js
 App({
   onLaunch() {
-    // 展示本地存储能力
-    const logs = wx.getStorageSync('logs') || []
-    logs.unshift(Date.now())
-    wx.setStorageSync('logs', logs)
-
-    // 登录
-    wx.login({
-      success: res => {
-        // 发送 res.code 到后台换取 openId, sessionKey, unionId
-      }
-    })
+    console.log('APP onLaunch');
   },
   globalData: {
-    userInfo: null
+    isBindWechat: false,
+    accessToken: '',
+    workerId: '',
+    userName: '',
+    headImg: ''
   }
 })

+ 11 - 9
app.json

@@ -1,14 +1,16 @@
 {
-  "pages":[
-    "pages/index/index",
-    "pages/logs/logs"
+  "entryPagePath": "pages/login/login",
+  "pages": [
+    "pages/login/login",
+    "pages/workbench/workbench",
+    "pages/permissions/permissions"
   ],
-  "window":{
-    "backgroundTextStyle":"light",
-    "navigationBarBackgroundColor": "#fff",
-    "navigationBarTitleText": "Weixin",
-    "navigationBarTextStyle":"black"
+  "window": {
+    "backgroundTextStyle": "light",
+    "navigationBarBackgroundColor": "#45A6B5",
+    "navigationBarTitleText": "ITT健康扫描",
+    "navigationBarTextStyle": "white"
   },
   "style": "v2",
   "sitemapLocation": "sitemap.json"
-}
+}

+ 51 - 4
app.wxss

@@ -1,10 +1,57 @@
 /**app.wxss**/
+page {
+  height: 100%;
+  --maincolor: #45A6B5;
+}
+.wh {
+  width: 100%;
+  height: 100%;
+}
+.placeholder-class {
+  font-size: 30rpx;
+  font-weight: 400;
+  color: #999999;
+}
 .container {
   height: 100%;
+  width: 100%;
+  box-sizing: border-box;
+}
+.ittflex {
+  display: flex;
+  justify-content: center;
+  align-items: center;
+}
+.ittflex-jcs {
+  display: flex;
+  justify-content: flex-start;
+  align-items: center;
+}
+.ittflex-jca {
   display: flex;
-  flex-direction: column;
+  justify-content: space-around;
   align-items: center;
+}
+.ittflex-jcb {
+  display: flex;
   justify-content: space-between;
-  padding: 200rpx 0;
-  box-sizing: border-box;
-} 
+  align-items: center;
+}
+.itt-btn {
+  background: var(--maincolor);
+  display: flex;
+  justify-content: center;
+  align-items: center;
+  color: #fff;
+  font-size: 26rpx;
+  font-weight: 400;
+}
+.itt-btn-disabled {
+  display: flex;
+  justify-content: center;
+  align-items: center;
+  font-size: 26rpx;
+  font-weight: 400;
+  background: #CCCCCC;
+  color: #FFFFFF;
+}

+ 1 - 1
project.config.json

@@ -41,7 +41,7 @@
   },
   "compileType": "miniprogram",
   "libVersion": "2.19.4",
-  "appid": "wx13d260503865167b",
+  "appid": "wx82e7720d9a24d4dc",
   "projectname": "miniprogram-92",
   "condition": {},
   "editorSetting": {

+ 2 - 1
project.private.config.json

@@ -2,6 +2,7 @@
   "description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html",
   "projectname": "weixinorg",
   "setting": {
-    "compileHotReLoad": true
+    "compileHotReLoad": true,
+    "urlCheck": true
   }
 }