diff --git a/apis/interfaces/user.js b/apis/interfaces/user.js index b0895a5..262c44d 100644 --- a/apis/interfaces/user.js +++ b/apis/interfaces/user.js @@ -79,6 +79,27 @@ const eSigns = data => { }) } +// 账户信息 - 基础资料 +const userInfoBase = () => { + return request({ + url : 'user/base', + }) +} + +// 账户信息 - 机构列表 +const userInfoBanks = () => { + return request({ + url : 'user/base/banks', + }) +} + +// 账户信息 - 机构详情 +const userInfoBank = id => { + return request({ + url : 'user/base/' + id + '/bank', + }) +} + export { relations, code, @@ -88,5 +109,8 @@ export { certified, certification, identityOcr, - eSigns + eSigns, + userInfoBase, + userInfoBanks, + userInfoBank } diff --git a/manifest.json b/manifest.json index 8eaee59..0b30b47 100644 --- a/manifest.json +++ b/manifest.json @@ -31,20 +31,21 @@ /* android打包配置 */ "android" : { "permissions" : [ - "", - "", - "", - "", - "", + "", "", "", + "", + "", "", - "", - "", + "", "", - "", "", - "", + "", + "", + "", + "", + "", + "", "" ], "schemes" : "doufire" diff --git a/pages.json b/pages.json index 5cf8479..b9d4a9a 100644 --- a/pages.json +++ b/pages.json @@ -1,402 +1,450 @@ { "pages": [{ - "path": "pages/index/index", - "name": "Index", - "style": { - "navigationBarTitleText": "抖火法务咨询服务", - "navigationBarBackgroundColor": "#FFFFFF" - } - }, - { - "path": "pages/index/introduces", - "name": "Introduces", - "style": { - "navigationStyle": "custom", - "navigationBarTitleText": "介绍", - "app-plus": { - "titleNView": { - "backgroundColor": "#FFFFFF", - "type": "transparent" - } - } - } - },{ - "path": "pages/college/index", - "name": "College", - "style": { - "navigationBarTitleText": "商学院", - "navigationStyle": "custom" - } - }, { - "path": "pages/work/index", - "name": "Work", - "style": { - "navigationBarTitleText": "工作台", - "navigationStyle": "custom" - } - }, { - "path": "pages/user/index", - "name": "User", - "style": { - "navigationBarTitleText": "", - "navigationBarBackgroundColor": "#ffffff" - } - }, { - "path": "pages/auth/auth", - "name": "Auth", - "style": { - "navigationBarTitleText": "", - "disableScroll": false, - "navigationStyle": "custom", - "animationType": "slide-in-bottom" - } - }, { - "path": "pages/auth/registered", - "name": "Registered", - "style": { - "navigationBarTitleText": "注册", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#ffffff" - } - }, { - "path": "pages/auth/resetPassword", - "name": "ResetPassword", - "style": { - "navigationBarTitleText": "重置密码", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#ffffff" - } - }, { - "path": "pages/college/test", - "name": "CollegeTest", - "auth": true, - "style": { - "navigationBarTitleText": "考试", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#ffffff" - } - - }, { - "path": "pages/richText/richText", - "name": "RichText", - "style": { - "navigationBarTitleText": "-", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#ffffff" - } - }, { - "path": "pages/work/create", - "name": "OrderCreate", - "auth": true, - "style": { - "navigationBarTitleText": "", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#ffffff" - } - }, { - "path": "pages/work/orders", - "name": "Orders", - "auth": true, - "style": { - "navigationBarTitleText": "订单管理", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#ffffff" - } - }, { - "path": "pages/work/service", - "name": "OrdersService", - "auth": true, - "style": { - "navigationBarTitleText": "分配服务包", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#ffffff", - "app-plus": { - "titleNView": { - "buttons": [{ - "text": "添加", - "color": "#446EFE", - "fontSize": "32rpx", - "width": "120rpx" - }] + "path": "pages/index/index", + "name": "Index", + "style": { + "navigationBarTitleText": "抖火法务咨询服务", + "navigationBarBackgroundColor": "#FFFFFF" + } + }, + { + "path": "pages/index/introduces", + "name": "Introduces", + "style": { + "navigationStyle": "custom", + "navigationBarTitleText": "介绍", + "app-plus": { + "titleNView": { + "backgroundColor": "#FFFFFF", + "type": "transparent" + } } } - } - }, { - "path": "pages/work/available", - "name": "OrderAvailable", - "auth": true, - "style": { - "navigationBarTitleText": "搜索用户", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#ffffff" - } - }, { - "path": "pages/work/generate", - "auth": true, - "name": "WorkGenerate", - "style": { - "navigationBarTitleText": "基础信息", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#ffffff" - } - }, { - "path": "pages/user/info", - "auth": true, - "name": "UserInfo", - "style": { - "navigationBarTitleText": "编辑", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#ffffff" - } - }, { - "path": "pages/user/code", - "auth": true, - "name": "UserCode", - "style": { - "navigationBarTitleText": "邀请二维码", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#1F25AE", - "navigationBarTextStyle": "white" - } - }, { - "path": "pages/user/certification", - "auth": true, - "name": "UserCertification", - "style": { - "navigationBarTitleText": "实名认证", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#ffffff" - } - }, { - "path": "pages/user/team", - "auth": true, - "name": "UserTeam", - "style": { - "navigationBarTitleText": "我的客户", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#ffffff" - } - }, { - "path": "pages/user/set", - "auth": true, - "name": "UserSet", - "style": { - "navigationBarTitleText": "设置", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#ffffff" - } - }, { - "path": "pages/account/bonus", - "auth": true, - "name": "AccountBonus", - "style": { - "navigationBarTitleText": "奖金账户", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#926fff", - "navigationBarTextStyle": "white" - } - }, { - "path": "pages/account/cash", - "auth": true, - "name": "AccountCash", - "style": { - "navigationBarTitleText": "业绩账户", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#446EFE", - "navigationBarTextStyle": "white" - } - }, { - "path": "pages/account/integral", - "auth": true, - "name": "AccountIntegral", - "style": { - "navigationBarTitleText": "", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#ffffff", - "app-plus": { - "titleNView": { - "buttons": [{ - "text": "充值记录", - "color": "#111", - "fontSize": "32rpx", - "width": "180rpx" - }] + }, { + "path": "pages/college/index", + "name": "College", + "style": { + "navigationBarTitleText": "商学院", + "navigationStyle": "custom" + } + }, { + "path": "pages/work/index", + "name": "Work", + "style": { + "navigationBarTitleText": "工作台", + "navigationStyle": "custom" + } + }, { + "path": "pages/user/index", + "name": "User", + "style": { + "navigationBarTitleText": "", + "navigationBarBackgroundColor": "#ffffff" + } + }, { + "path": "pages/auth/auth", + "name": "Auth", + "style": { + "navigationBarTitleText": "", + "disableScroll": false, + "navigationStyle": "custom", + "animationType": "slide-in-bottom" + } + }, { + "path": "pages/auth/registered", + "name": "Registered", + "style": { + "navigationBarTitleText": "注册", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#ffffff" + } + }, { + "path": "pages/auth/resetPassword", + "name": "ResetPassword", + "style": { + "navigationBarTitleText": "重置密码", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#ffffff" + } + }, { + "path": "pages/college/test", + "name": "CollegeTest", + "auth": true, + "style": { + "navigationBarTitleText": "考试", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#ffffff" + } + + }, { + "path": "pages/richText/richText", + "name": "RichText", + "style": { + "navigationBarTitleText": "-", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#ffffff" + } + }, { + "path": "pages/work/create", + "name": "OrderCreate", + "auth": true, + "style": { + "navigationBarTitleText": "", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#ffffff" + } + }, { + "path": "pages/work/orders", + "name": "Orders", + "auth": true, + "style": { + "navigationBarTitleText": "订单管理", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#ffffff" + } + }, { + "path": "pages/work/service", + "name": "OrdersService", + "auth": true, + "style": { + "navigationBarTitleText": "分配服务包", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#ffffff", + "app-plus": { + "titleNView": { + "buttons": [{ + "text": "添加", + "color": "#446EFE", + "fontSize": "32rpx", + "width": "120rpx" + }] + } } } - } - }, { - "path": "pages/college/answer", - "auth": true, - "name": "CollegeAnswer", - "style": { - "navigationBarTitleText": "答题", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#446EFE", - "navigationBarTextStyle": "white" - } - }, { - "path": "pages/college/testResults", - "auth": true, - "name": "CollegeResults", - "style": { - "navigationBarTitleText": "考试结果", - "navigationBarBackgroundColor": "#446EFE", - "navigationBarTextStyle": "white", - "enablePullDownRefresh": false - } - }, { - "path": "pages/account/logs", - "auth": true, - "name": "AccountLogs", - "style": { - "navigationBarTitleText": "账户记录", - "enablePullDownRefresh": false - } + }, { + "path": "pages/work/available", + "name": "OrderAvailable", + "auth": true, + "style": { + "navigationBarTitleText": "搜索用户", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#ffffff" + } + }, { + "path": "pages/work/generate", + "auth": true, + "name": "WorkGenerate", + "style": { + "navigationBarTitleText": "基础信息", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#ffffff" + } + }, { + "path": "pages/user/info", + "auth": true, + "name": "UserInfo", + "style": { + "navigationBarTitleText": "编辑", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#ffffff" + } + }, { + "path": "pages/user/code", + "auth": true, + "name": "UserCode", + "style": { + "navigationBarTitleText": "邀请二维码", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#1F25AE", + "navigationBarTextStyle": "white" + } + }, { + "path": "pages/user/certification", + "auth": true, + "name": "UserCertification", + "style": { + "navigationBarTitleText": "实名认证", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#ffffff" + } + }, { + "path": "pages/user/team", + "auth": true, + "name": "UserTeam", + "style": { + "navigationBarTitleText": "我的客户", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#ffffff" + } + }, { + "path": "pages/user/set", + "auth": true, + "name": "UserSet", + "style": { + "navigationBarTitleText": "设置", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#ffffff" + } + }, { + "path": "pages/account/bonus", + "auth": true, + "name": "AccountBonus", + "style": { + "navigationBarTitleText": "奖金账户", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#926fff", + "navigationBarTextStyle": "white" + } + }, { + "path": "pages/account/cash", + "auth": true, + "name": "AccountCash", + "style": { + "navigationBarTitleText": "业绩账户", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#446EFE", + "navigationBarTextStyle": "white" + } + }, { + "path": "pages/account/integral", + "auth": true, + "name": "AccountIntegral", + "style": { + "navigationBarTitleText": "", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#ffffff", + "app-plus": { + "titleNView": { + "buttons": [{ + "text": "充值记录", + "color": "#111", + "fontSize": "32rpx", + "width": "180rpx" + }] + } + } + } + }, { + "path": "pages/college/answer", + "auth": true, + "name": "CollegeAnswer", + "style": { + "navigationBarTitleText": "答题", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#446EFE", + "navigationBarTextStyle": "white" + } + }, { + "path": "pages/college/testResults", + "auth": true, + "name": "CollegeResults", + "style": { + "navigationBarTitleText": "考试结果", + "navigationBarBackgroundColor": "#446EFE", + "navigationBarTextStyle": "white", + "enablePullDownRefresh": false + } + }, { + "path": "pages/account/logs", + "auth": true, + "name": "AccountLogs", + "style": { + "navigationBarTitleText": "账户记录", + "enablePullDownRefresh": false + } - }, { - "path": "pages/pay/pay", - "auth": true, - "name": "Pay", - "style": { - "navigationBarTitleText": "收银台", - "enablePullDownRefresh": false - } - }, { - "path": "pages/work/orderInfo", - "auth": true, - "name": "OrderInfo", - "style": { - "navigationBarTitleText": "详情", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#446EFE", - "navigationBarTextStyle": "white" - } - }, { - "path": "pages/user/eSign", - "auth": true, - "name": "ESign", - "style": { - "navigationBarTitleText": "人脸认证", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#FFFFFF" - } - }, { - "path": "pages/work/perfectChoose", - "auth": true, - "name": "WorkPerfectChoose", - "style": { - "navigationBarTitleText": "", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#446EFE", - "navigationBarTextStyle": "white" - } - }, { - "path": "pages/work/perfectInstitutions", - "auth": true, - "name": "WorkPerfectInstitutions", - "style": { - "navigationBarTitleText": "机构信息", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#446EFE", - "navigationBarTextStyle": "white" - } - }, { - "path": "pages/work/perfectBasis", - "auth": true, - "name": "WorkPerfectBasis", - "style": { - "navigationBarTitleText": "基础信息", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#446EFE", - "navigationBarTextStyle": "white" - } - }, { - "path": "pages/transfers/lists", - "auth": true, - "name": "TransfersOrders", - "style": { - "navigationBarTitleText": "转让订单", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#ffffff" - } - }, { - "path": "pages/work/modifyOrder", - "auth": true, - "name": "ModifyOrder", - "style": { - "navigationBarTitleText": "修改资料订单", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#ffffff" - } + }, { + "path": "pages/pay/pay", + "auth": true, + "name": "Pay", + "style": { + "navigationBarTitleText": "收银台", + "enablePullDownRefresh": false + } + }, { + "path": "pages/work/orderInfo", + "auth": true, + "name": "OrderInfo", + "style": { + "navigationBarTitleText": "详情", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#446EFE", + "navigationBarTextStyle": "white" + } + }, { + "path": "pages/user/eSign", + "auth": true, + "name": "ESign", + "style": { + "navigationBarTitleText": "人脸认证", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#FFFFFF" + } + }, { + "path": "pages/work/perfectChoose", + "auth": true, + "name": "WorkPerfectChoose", + "style": { + "navigationBarTitleText": "", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#446EFE", + "navigationBarTextStyle": "white" + } + }, { + "path": "pages/work/perfectInstitutions", + "auth": true, + "name": "WorkPerfectInstitutions", + "style": { + "navigationBarTitleText": "机构信息", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#446EFE", + "navigationBarTextStyle": "white", + "app-plus": { + "titleNView": { + "buttons": [{ + "text": "使用历史", + "color": "#ffffff", + "fontSize": "28rpx", + "width": "180rpx" + }] + } + } + } + }, { + "path": "pages/work/perfectBasis", + "auth": true, + "name": "WorkPerfectBasis", + "style": { + "navigationBarTitleText": "基础信息", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#446EFE", + "navigationBarTextStyle": "white", + "app-plus": { + "titleNView": { + "buttons": [{ + "text": "使用历史", + "color": "#ffffff", + "fontSize": "28rpx", + "width": "180rpx" + }] + } + } + } + }, { + "path": "pages/transfers/lists", + "auth": true, + "name": "TransfersOrders", + "style": { + "navigationBarTitleText": "转让订单", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#ffffff" + } + }, { + "path": "pages/work/modifyOrder", + "auth": true, + "name": "ModifyOrder", + "style": { + "navigationBarTitleText": "修改资料订单", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#ffffff" + } - }, { - "path": "pages/work/poorOrder", - "auth": true, - "name": "PoorOrder", - "style": { - "navigationBarTitleText": "补差价订单", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#ffffff" - } + }, { + "path": "pages/work/poorOrder", + "auth": true, + "name": "PoorOrder", + "style": { + "navigationBarTitleText": "补差价订单", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#ffffff" + } - }, { - "path": "pages/work/refundOrder", - "auth": true, - "name": "RefundOrder", - "style": { - "navigationBarTitleText": "退款订单", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#ffffff" - } + }, { + "path": "pages/work/refundOrder", + "auth": true, + "name": "RefundOrder", + "style": { + "navigationBarTitleText": "退款订单", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#ffffff" + } - }, { - "path": "pages/work/mailed", - "auth": true, - "name": "MailedOrder", - "style": { - "navigationBarTitleText": "邮寄材料", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#446EFE", - "navigationBarTextStyle": "white" - } - }, { - "path": "pages/work/mailedInfo", - "auth": true, - "name": "MailedOrderInfo", - "style": { - "navigationBarTitleText": "邮寄信息", - "enablePullDownRefresh": false - } - }, { - "path": "pages/work/schemes", - "auth": true, - "name": "OrderSchemes", - "style": { - "navigationBarTitleText": "预估方案", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#446EFE", - "navigationBarTextStyle": "white" - } - }, { - "path": "pages/work/perfectBasisInfo", - "auth": true, - "name": "OrderPerfectBasisInfo", - "style": { - "navigationBarTitleText": "基础资料信息", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#ffffff" - } + }, { + "path": "pages/work/mailed", + "auth": true, + "name": "MailedOrder", + "style": { + "navigationBarTitleText": "邮寄材料", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#446EFE", + "navigationBarTextStyle": "white" + } + }, { + "path": "pages/work/mailedInfo", + "auth": true, + "name": "MailedOrderInfo", + "style": { + "navigationBarTitleText": "邮寄信息", + "enablePullDownRefresh": false + } + }, { + "path": "pages/work/schemes", + "auth": true, + "name": "OrderSchemes", + "style": { + "navigationBarTitleText": "预估方案", + "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" + }, { + "path": "pages/work/perfectInstitutionsInfo", + "auth": true, + "name": "OrderPerfectInstitutionsInfo", + "style": { + "navigationBarTitleText": "机构资料信息", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#ffffff" + } + }, { + "path": "pages/user/userdata", + "auth": true, + "name": "UserData", + "style": { + "navigationBarTitleText": "账户信息", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#ffffff" + } + }, { + "path": "pages/user/userdataBase", + "auth": true, + "name": "UserDataBase", + "style": { + "navigationBarTitleText": "账户信息 - 基础信息", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#ffffff" + } + },{ + "path": "pages/user/userdataBanks", + "auth": true, + "name": "UserDataBank", + "style": { + "navigationBarTitleText": "账户信息 - 机构信息", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#ffffff" + } } - }], + ], "globalStyle": { "navigationBarTextStyle": "black", "navigationBarTitleText": "抖火", diff --git a/pages/auth/resetPassword.vue b/pages/auth/resetPassword.vue index 3f6a0cc..460f53b 100644 --- a/pages/auth/resetPassword.vue +++ b/pages/auth/resetPassword.vue @@ -1,6 +1,6 @@