diff --git a/apis/interfaces/order.js b/apis/interfaces/order.js index 3686e94..70da03d 100644 --- a/apis/interfaces/order.js +++ b/apis/interfaces/order.js @@ -74,9 +74,9 @@ const perfectBase = orderId => { } // 提交基础资料信息 -const updPerfectBase = (orderId, data) => { +const updPerfectBase = (orderUserId, data) => { return request({ - url : 'business/' + orderId + '/user/base', + url : 'business/' + orderUserId + '/user/base', method : 'POST', data }) diff --git a/apis/interfaces/user.js b/apis/interfaces/user.js index 7aef592..b0895a5 100644 --- a/apis/interfaces/user.js +++ b/apis/interfaces/user.js @@ -23,13 +23,20 @@ const code = () => { }) } -// 用户信息 +// 用户基础信息 const info = () => { return request({ url : 'app/user/info' }) } +// 获取用户信息 +const userInfo = () => { + return request({ + url : 'user' + }) +} + // 更新用户资料 const updInfo = (key, value) => { return request({ @@ -76,6 +83,7 @@ export { relations, code, info, + userInfo, updInfo, certified, certification, diff --git a/manifest.json b/manifest.json index 7cf1e2d..8eaee59 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "name" : "抖火", "appid" : "__UNI__C305C03", "description" : "", - "versionName" : "1.0.3", + "versionName" : "1.0.4", "versionCode" : "100", "transformPx" : false, /* 5+App特有相关 */ diff --git a/pages.json b/pages.json index e7bda0e..5cf8479 100644 --- a/pages.json +++ b/pages.json @@ -192,7 +192,7 @@ "style": { "navigationBarTitleText": "奖金账户", "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#926fff", + "navigationBarBackgroundColor": "#926fff", "navigationBarTextStyle": "white" } }, { @@ -368,15 +368,34 @@ "enablePullDownRefresh": false } }, { - "path": "pages/work/schemes", - "auth": true, + "path": "pages/work/schemes", + "auth": true, "name": "OrderSchemes", "style": { "navigationBarTitleText": "预估方案", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#446EFE", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#446EFE", "navigationBarTextStyle": "white" } + }, { + "path": "pages/work/perfectBasisInfo", + "auth": true, + "name": "OrderPerfectBasisInfo", + "style": { + "navigationBarTitleText": "基础资料信息", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#ffffff" + } + + }, { + "path": "pages/work/perfectInstitutionsInfo", + "auth": true, + "name": "OrderPerfectInstitutionsInfo", + "style": { + "navigationBarTitleText": "机构资料信息", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#ffffff" + } }], "globalStyle": { "navigationBarTextStyle": "black", diff --git a/pages/auth/registered.vue b/pages/auth/registered.vue index 0813644..8268ad2 100644 --- a/pages/auth/registered.vue +++ b/pages/auth/registered.vue @@ -1,7 +1,7 @@