diff --git a/apis/interfaces/account.js b/apis/interfaces/account.js index df0db6e..fba83aa 100644 --- a/apis/interfaces/account.js +++ b/apis/interfaces/account.js @@ -95,6 +95,29 @@ const paymentpre = () => { }) } +// 我的版通账户信息 +const wbtInfo = () => { + return request({ + url: 'wallet/wbt/info' + }) +} + +// 是否绑定了文版通账户 +const wbtCheck = () => { + return request({ + url: 'wallet/wbt/check' + }) +} + +// 绑定账户版通账户 +const wbtBind = (data) => { + return request({ + url: 'wallet/wbt/bind', + data:data, + method:'POST', + }) +} + export { dt, recharge, @@ -106,6 +129,9 @@ export { getSms, submitTransfer, integral, - paymentpre + paymentpre, + wbtInfo, + wbtCheck, + wbtBind } diff --git a/apis/interfaces/news.js b/apis/interfaces/news.js new file mode 100644 index 0000000..4e49eab --- /dev/null +++ b/apis/interfaces/news.js @@ -0,0 +1,40 @@ + +/** + * Web-zdx + * moduleName: 消息中心 + */ + +import { + request +} from '../index' + + + +// 意见反馈通知列表 +const list = (type,data) => { + return request({ + url: 'notifications/'+type+'/list', + data:data, + }) +} +// 意见反馈 详情 +const detail = (notification_id) => { + return request({ + url: 'notifications/'+notification_id, + }) +} + +// 全部已读 +const readAll = (type) => { + return request({ + url: 'notifications/'+type, + method:'PUT', + }) +} + + +export { + list, + detail, + readAll, +} diff --git a/apis/interfaces/user.js b/apis/interfaces/user.js index 6ed83d7..c5e2a65 100644 --- a/apis/interfaces/user.js +++ b/apis/interfaces/user.js @@ -30,8 +30,31 @@ const invitationCode = () => { }) } +// 绑定分享关系 +const relationsBind = (invite) => { + return request({ + url: 'user/relations/bind', + data: { + invite + }, + method: 'POST' + }) +} + +// 确认绑定关系 +const relationsVerify = (invite) => { + return request({ + url: 'user/relations/verify', + data: { + invite + } + }) +} + export { info, chainSeed, - invitationCode + invitationCode, + relationsBind, + relationsVerify } diff --git a/pages.json b/pages.json index acd2cc6..deb0c6f 100644 --- a/pages.json +++ b/pages.json @@ -1,505 +1,549 @@ { - "pages": [{ - "path": "pages/auth/auth", - "name": "Auth", - "style": { - "navigationBarTitleText": "登录", - "navigationStyle": "custom" - } - }, - { - "path": "pages/auth/role", - "name": "AuthRole", - "style": { - "navigationBarTitleText": "角色创建", - "navigationBarBackgroundColor": "#FFF", - "app-plus": { - "titleNView": { - "buttons": [{ - "text": "退出登录", - "fontSize": "14", - "width": "80px", - "color": "#34CE98" - }] - } - } - } - }, { - "path": "pages/life/life", - "name": "Life", - "style": { - "navigationBarTitleText": "共力人生", - "navigationStyle": "custom", - "app-plus": { - "titleNView": { - "type": "transparent" - } - } - } - }, - { - "path": "pages/store/index", - "name": "Store", - "style": { - "navigationBarTitleText": "DT商城", - "enablePullDownRefresh": true, - "app-plus": { - "titleNView": { - "backgroundColor": "#fff", - "buttons": [{ - "float": "right", - "text": "\ue603", - "fontSrc": "/static/iconfont.ttf", - "color": "#000", - "fontSize": "20px" - }] - } - } - } - }, - { - "path": "pages/user/index", - "name": "User", - "style": { - "navigationBarTitleText": "我的", - "navigationBarTextStyle": "white", - "app-plus": { - "titleNView": { - "backgroundColor": "#34CE98", - "type": "transparent" - } - } - } - }, - { - "path": "pages/setting/setting", - "name": "Setting", - "style": { - "navigationBarTitleText": "设置中心", - "navigationBarBackgroundColor": "#34CE98", - "navigationBarTextStyle": "white" - } - }, - { - "path": "pages/store/goods", - "name": "StoreGoods", - "style": { - "navigationStyle": "custom", - "navigationBarTitleText": "详情", - "app-plus": { - "titleNView": { - "backgroundColor": "#FFFFFF", - "type": "transparent" - } - } - } - }, - { - "path": "pages/store/buy", - "name": "StoreBuy", - "style": { - "navigationBarTitleText": "确认订单", - "enablePullDownRefresh": false - } - }, - { - "path": "pages/order/index", - "name": "Order", - "style": { - "navigationBarTitleText": "我的订单", - "navigationBarBackgroundColor": "#FFFFFF", - "enablePullDownRefresh": false - } - }, { - "path": "pages/order/logistics", - "name": "OrderLogistics", - "style": { - "navigationBarTitleText": "物流进度", - "navigationBarBackgroundColor": "#FFFFFF", - "enablePullDownRefresh": false - } - }, - { - "path": "pages/order/details", - "name": "OrderDetails", - "style": { - "navigationBarTitleText": "订单详情", - "enablePullDownRefresh": false - } - }, - { - "path": "pages/address/index", - "name": "Address", - "style": { - "navigationBarTitleText": "收货地址" - } - }, - { - "path": "pages/address/edit", - "name": "AddressEdit", - "style": { - "navigationBarTitleText": "编辑", - "enablePullDownRefresh": false - } - }, - { - "path": "pages/pay/pay", - "name": "Pay", - "style": { - "navigationBarTitleText": "收银台", - "navigationBarBackgroundColor": "#FFFFFF" - } - }, - { - "path": "pages/store/list", - "name": "StoreList", - "style": { - "navigationBarTitleText": "商品", - "navigationBarBackgroundColor": "#FFFFFF", - "enablePullDownRefresh": true - } - }, - { - "path": "pages/store/meals", - "name": "StoreMeals", - "style": { - "navigationBarTitleText": "套餐", - "navigationBarBackgroundColor": "#FFFFFF", - "enablePullDownRefresh": true - } - }, - { - "path": "pages/store/search", - "name": "StoreSearch", - "style": { - "navigationBarTitleText": "搜索", - "navigationBarBackgroundColor": "#FFFFFF" - } - }, - { - "path": "pages/refund/list", - "name": "OrderRefund", - "style": { - "navigationBarTitleText": "退换货", - "navigationBarBackgroundColor": "#FFFFFF" - } - }, { - "path": "pages/refund/exchange", - "name": "Exchange", - "style": { - "navigationBarTitleText": "换货", - "navigationBarBackgroundColor": "#FFFFFF" - } - }, - - { - "path": "pages/refund/detail", - "name": "OrderRefundDetail", - "style": { - "navigationBarTitleText": "退货退款详情", - "navigationBarBackgroundColor": "#FFFFFF" - } - }, - { - "path": "pages/refund/aftersale", - "name": "AfterSale", - "style": { - "navigationBarTitleText": " 选择售后类型", - "navigationBarBackgroundColor": "#FFFFFF" - } - }, - { - "path": "pages/refund/refund_history", - "name": "RefundHistory", - "style": { - "navigationBarTitleText": "售后历史", - "navigationBarBackgroundColor": "#FFFFFF" - } - }, - { - "path": "pages/refund/deliver_form", - "name": "DeliverForm", - "style": { - "navigationBarTitleText": "填写物流信息", - "navigationBarBackgroundColor": "#FFFFFF" - } - }, - { - "path": "pages/refund/refund_or_exchange_apply", - "name": "RefundOrExchangeApply", - "style": { - "navigationBarTitleText": "退换货申请", - "navigationBarBackgroundColor": "#FFFFFF" - } - }, - { - "path": "pages/refund/refund_money", - "name": "RefundMoney", - "style": { - "navigationBarTitleText": "申请退款", - "navigationBarBackgroundColor": "#FFFFFF" - } - }, - { - "path": "pages/account/integral", - "name": "AccountIntegral", - "style": { - "navigationBarTitleText": "共力分", - "navigationBarBackgroundColor": "#34CE98", - "navigationBarTextStyle": "white" - } - }, { - "path": "pages/account/dt", - "name": "AccountDt", - "style": { - "navigationBarTitleText": "DT积分", - "navigationBarBackgroundColor": "#34CE98", - "backgroundColorTop": "#34CE98", - "navigationBarTextStyle": "white", - "app-plus": { - "titleNView": { - "buttons": [{ - "text": "收款", - "width": "60", - "fontSize": "14" - }] - } - } - } - }, { - "path": "pages/account/recharge", - "name": "AccountRecharge", - "style": { - "navigationBarTitleText": "充值", - "navigationBarBackgroundColor": "#FFFFFF", - "app-plus": { - "titleNView": { - "buttons": [{ - "text": "充值记录", - "width": "80", - "fontSize": "14" - }] - } - } - } - }, { - "path": "pages/vip/vip", - "name": "Vip", - "style": { - "navigationBarTitleText": "共力会员", - "navigationBarBackgroundColor": "#242430", - "navigationBarTextStyle": "white", - "backgroundColorTop": "#242430" - } - }, { - "path": "pages/vip/agreement", - "style": { - "navigationBarTitleText": "共力会员协议", - "navigationBarBackgroundColor": "#FFFFFF" - } - }, { - "path": "pages/team/index", - "name": "Team", - "style": { - "navigationBarTitleText": "共力团队" - } - }, - { - "path": "pages/store/shop/shopDetail", - "name": "ShopDetail", - "style": { - "navigationStyle": "custom" - } - }, - { - "path": "pages/store/shop/shopList", - "name": "ShopList", - "style": { - "navigationBarTitleText": "店铺", - "navigationBarBackgroundColor": "#FFFFFF", - "enablePullDownRefresh": true - } - }, { - "path": "pages/account/log", - "name": "AccountLog", - "style": { - "navigationBarTitleText": "充值记录", - "navigationBarBackgroundColor": "#FFFFFF" - } - }, { - "path": "pages/account/transfer", - "name": "AccountTransfer", - "style": { - "navigationBarTitleText": "转账", - "navigationBarBackgroundColor": "#F3F6FB" - } - }, { - "path": "pages/account/resetPassword", - "name": "AccountResetPassword", - "style": { - "navigationBarTitleText": "钱包密码", - "navigationBarBackgroundColor": "#F3F6FB" - } - }, { - "path": "pages/account/results", - "name": "Accountresults", - "style": { - "navigationBarTitleText": "转账结果", - "navigationBarBackgroundColor": "#FFFFFF" - } - }, { - "path": "pages/account/code", - "name": "AccountCode", - "style": { - "navigationBarTitleText": "收款码", - "navigationBarBackgroundColor": "#34CE98", - "backgroundColorTop": "#34CE98", - "navigationBarTextStyle": "white" - } - }, { - "path": "pages/invitation/invitation", - "name": "Invitation", - "style": { - "navigationStyle": "custom", - "disableScroll": true - } - }, { - "path": "pages/life/capacity", - "name": "Capacity", - "style": { - "navigationBarTitleText": "-", - "app-plus": { - "titleNView": { - "buttons": [{ - "text": "重置签到", - "fontSize": "14", - "width": "80px", - "color": "#34CE98" - }] - } + "pages": [{ + "path": "pages/auth/auth", + "name": "Auth", + "style": { + "navigationBarTitleText": "登录", + "navigationStyle": "custom" + } + }, + { + "path": "pages/auth/role", + "name": "AuthRole", + "style": { + "navigationBarTitleText": "角色创建", + "navigationBarBackgroundColor": "#FFF", + "app-plus": { + "titleNView": { + "buttons": [{ + "text": "退出登录", + "fontSize": "14", + "width": "80px", + "color": "#34CE98" + }] + } } - } - }, { - "path": "pages/feedback/feedback", - "name": "Feedback", - "style": { - "navigationBarTitleText": "意见反馈", - "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#FFFFFF", - "app-plus": { - "titleNView": { - "type": "default", - "buttons": [{ - "float": "right", - "text": "微信客服", - "width": "80px", - "fontSize": "14px", - "color": "#34CE98" - }] - } - } - } - }, { - "path": "pages/vip/growth", - "style": { - "navigationBarTitleText": "成长体系", - "navigationBarBackgroundColor": "#FFFFFF", - "enablePullDownRefresh": false - } - }, { - "path": "pages/supplier/supplier", - "name": "Supplier", - "style": { - "navigationBarTitleText": "供应商入驻", - "enablePullDownRefresh": false, - "backgroundColorTop": "#201f48", - "navigationBarBackgroundColor": "#201f48", - "navigationBarTextStyle": "white" - } - }, { - "path": "pages/board/board", - "name": "DataBoard", - "style": { - "navigationBarTitleText": "平台数据看板", - "enablePullDownRefresh": true, - "navigationBarBackgroundColor": "#FFFFFF" - } - }, + } + }, { + "path": "pages/life/life", + "name": "Life", + "style": { + "navigationBarTitleText": "共力人生", + "navigationStyle": "custom", + "app-plus": { + "titleNView": { + "type": "transparent" + } + } + } + }, + { + "path": "pages/store/index", + "name": "Store", + "style": { + "navigationBarTitleText": "DT商城", + "enablePullDownRefresh": true, + "app-plus": { + "titleNView": { + "backgroundColor": "#fff", + "buttons": [{ + "float": "right", + "text": "\ue603", + "fontSrc": "/static/iconfont.ttf", + "color": "#000", + "fontSize": "20px" + }] + } + } + } + }, + { + "path": "pages/user/index", + "name": "User", + "style": { + "navigationBarTitleText": "我的", + "navigationBarTextStyle": "white", + "app-plus": { + "titleNView": { + "backgroundColor": "#34CE98", + "type": "transparent" + } + } + } + }, + { + "path": "pages/setting/setting", + "name": "Setting", + "style": { + "navigationBarTitleText": "设置中心", + "navigationBarBackgroundColor": "#34CE98", + "navigationBarTextStyle": "white" + } + }, + { + "path": "pages/store/goods", + "name": "StoreGoods", + "style": { + "navigationStyle": "custom", + "navigationBarTitleText": "详情", + "app-plus": { + "titleNView": { + "backgroundColor": "#FFFFFF", + "type": "transparent" + } + } + } + }, + { + "path": "pages/store/buy", + "name": "StoreBuy", + "style": { + "navigationBarTitleText": "确认订单", + "enablePullDownRefresh": false + } + }, + { + "path": "pages/order/index", + "name": "Order", + "style": { + "navigationBarTitleText": "我的订单", + "navigationBarBackgroundColor": "#FFFFFF", + "enablePullDownRefresh": false + } + }, { + "path": "pages/order/logistics", + "name": "OrderLogistics", + "style": { + "navigationBarTitleText": "物流进度", + "navigationBarBackgroundColor": "#FFFFFF", + "enablePullDownRefresh": false + } + }, + { + "path": "pages/order/details", + "name": "OrderDetails", + "style": { + "navigationBarTitleText": "订单详情", + "enablePullDownRefresh": false + } + }, + { + "path": "pages/address/index", + "name": "Address", + "style": { + "navigationBarTitleText": "收货地址" + } + }, + { + "path": "pages/address/edit", + "name": "AddressEdit", + "style": { + "navigationBarTitleText": "编辑", + "enablePullDownRefresh": false + } + }, + { + "path": "pages/pay/pay", + "name": "Pay", + "style": { + "navigationBarTitleText": "收银台", + "navigationBarBackgroundColor": "#FFFFFF" + } + }, + { + "path": "pages/store/list", + "name": "StoreList", + "style": { + "navigationBarTitleText": "商品", + "navigationBarBackgroundColor": "#FFFFFF", + "enablePullDownRefresh": true + } + }, + { + "path": "pages/store/meals", + "name": "StoreMeals", + "style": { + "navigationBarTitleText": "套餐", + "navigationBarBackgroundColor": "#FFFFFF", + "enablePullDownRefresh": true + } + }, + { + "path": "pages/store/search", + "name": "StoreSearch", + "style": { + "navigationBarTitleText": "搜索", + "navigationBarBackgroundColor": "#FFFFFF" + } + }, + { + "path": "pages/refund/list", + "name": "OrderRefund", + "style": { + "navigationBarTitleText": "退换货", + "navigationBarBackgroundColor": "#FFFFFF" + } + }, { + "path": "pages/refund/exchange", + "name": "Exchange", + "style": { + "navigationBarTitleText": "换货", + "navigationBarBackgroundColor": "#FFFFFF" + } + }, + + { + "path": "pages/refund/detail", + "name": "OrderRefundDetail", + "style": { + "navigationBarTitleText": "退货退款详情", + "navigationBarBackgroundColor": "#FFFFFF" + } + }, + { + "path": "pages/refund/aftersale", + "name": "AfterSale", + "style": { + "navigationBarTitleText": " 选择售后类型", + "navigationBarBackgroundColor": "#FFFFFF" + } + }, + { + "path": "pages/refund/refund_history", + "name": "RefundHistory", + "style": { + "navigationBarTitleText": "售后历史", + "navigationBarBackgroundColor": "#FFFFFF" + } + }, + { + "path": "pages/refund/deliver_form", + "name": "DeliverForm", + "style": { + "navigationBarTitleText": "填写物流信息", + "navigationBarBackgroundColor": "#FFFFFF" + } + }, + { + "path": "pages/refund/refund_or_exchange_apply", + "name": "RefundOrExchangeApply", + "style": { + "navigationBarTitleText": "退换货申请", + "navigationBarBackgroundColor": "#FFFFFF" + } + }, + { + "path": "pages/refund/refund_money", + "name": "RefundMoney", + "style": { + "navigationBarTitleText": "申请退款", + "navigationBarBackgroundColor": "#FFFFFF" + } + }, { - "path" : "pages/chat/index", - "style" : { - "navigationBarTitleText" : "我的圈子", - "enablePullDownRefresh" : true, - "app-plus" : { - "bounce" : "none", - "titleNView" : { - "type" : "transparent", - "buttons" : [ - { - "background" : "rgba(255,255,255,0.2)", - "color" : "#696969", - "type" : "none", - "fontSrc" : "/static/fonts/iconfont1.ttf", - "text" : "\ue608" //小相机 - } - ] - } - } + "path": "pages/account/integral", + "name": "AccountIntegral", + "style": { + "navigationBarTitleText": "共力分", + "navigationBarBackgroundColor": "#34CE98", + "navigationBarTextStyle": "white" } - }, - { - "path" : "pages/chat/publish", - "style" : { - "navigationBarTitleText" : "发布" - } - } - ,{ - "path" : "pages/rank/index", - "style" : - { - "navigationBarTitleText": "会员推荐", - "enablePullDownRefresh": false, - "navigationBarTextStyle":"white", - "navigationBarBackgroundColor":"#34CE98" - } - + },{ + "path": "pages/account/wbtBind", + "name": "WbtBind", + "style": { + "navigationBarTitleText": "绑定文版通账户", + "navigationBarBackgroundColor": "#34CE98", + "navigationBarTextStyle": "white" + } + }, { + "path": "pages/account/dt", + "name": "AccountDt", + "style": { + "navigationBarTitleText": "DT积分", + "navigationBarBackgroundColor": "#34CE98", + "backgroundColorTop": "#34CE98", + "navigationBarTextStyle": "white", + "app-plus": { + "titleNView": { + "buttons": [{ + "text": "收款", + "width": "60", + "fontSize": "14" + }] + } + } + } + }, { + "path": "pages/account/recharge", + "name": "AccountRecharge", + "style": { + "navigationBarTitleText": "充值", + "navigationBarBackgroundColor": "#FFFFFF", + "app-plus": { + "titleNView": { + "buttons": [{ + "text": "充值记录", + "width": "80", + "fontSize": "14" + }] + } + } + } + }, { + "path": "pages/vip/vip", + "name": "Vip", + "style": { + "navigationBarTitleText": "共力会员", + "navigationBarBackgroundColor": "#242430", + "navigationBarTextStyle": "white", + "backgroundColorTop": "#242430" + } + }, { + "path": "pages/vip/agreement", + "style": { + "navigationBarTitleText": "共力会员协议", + "navigationBarBackgroundColor": "#FFFFFF" + } + }, { + "path": "pages/team/index", + "name": "Team", + "style": { + "navigationBarTitleText": "共力团队" + } + }, + { + "path": "pages/store/shop/shopDetail", + "name": "ShopDetail", + "style": { + "navigationStyle": "custom" + } + }, + { + "path": "pages/store/shop/shopList", + "name": "ShopList", + "style": { + "navigationBarTitleText": "店铺", + "navigationBarBackgroundColor": "#FFFFFF", + "enablePullDownRefresh": true + } + }, { + "path": "pages/account/log", + "name": "AccountLog", + "style": { + "navigationBarTitleText": "充值记录", + "navigationBarBackgroundColor": "#FFFFFF" + } + }, { + "path": "pages/account/transfer", + "name": "AccountTransfer", + "style": { + "navigationBarTitleText": "转账", + "navigationBarBackgroundColor": "#F3F6FB" + } + }, { + "path": "pages/account/resetPassword", + "name": "AccountResetPassword", + "style": { + "navigationBarTitleText": "钱包密码", + "navigationBarBackgroundColor": "#F3F6FB" + } + }, { + "path": "pages/account/results", + "name": "Accountresults", + "style": { + "navigationBarTitleText": "转账结果", + "navigationBarBackgroundColor": "#FFFFFF" + } + }, { + "path": "pages/account/code", + "name": "AccountCode", + "style": { + "navigationBarTitleText": "收款码", + "navigationBarBackgroundColor": "#34CE98", + "backgroundColorTop": "#34CE98", + "navigationBarTextStyle": "white" + } + }, { + "path": "pages/invitation/invitation", + "name": "Invitation", + "style": { + "navigationStyle": "custom", + "disableScroll": true + } + }, { + "path": "pages/life/capacity", + "name": "Capacity", + "style": { + "navigationBarTitleText": "-", + "app-plus": { + "titleNView": { + "buttons": [{ + "text": "重置签到", + "fontSize": "14", + "width": "80px", + "color": "#34CE98" + }] + } + } + } + }, { + "path": "pages/feedback/feedback", + "name": "Feedback", + "style": { + "navigationBarTitleText": "意见反馈", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#FFFFFF", + "app-plus": { + "titleNView": { + "type": "default", + "buttons": [{ + "float": "right", + "text": "微信客服", + "width": "80px", + "fontSize": "14px", + "color": "#34CE98" + }] + } + } + } + }, { + "path": "pages/vip/growth", + "style": { + "navigationBarTitleText": "成长体系", + "navigationBarBackgroundColor": "#FFFFFF", + "enablePullDownRefresh": false + } + }, { + "path": "pages/supplier/supplier", + "name": "Supplier", + "style": { + "navigationBarTitleText": "供应商入驻", + "enablePullDownRefresh": false, + "backgroundColorTop": "#201f48", + "navigationBarBackgroundColor": "#201f48", + "navigationBarTextStyle": "white" + } + }, { + "path": "pages/board/board", + "name": "DataBoard", + "style": { + "navigationBarTitleText": "平台数据看板", + "enablePullDownRefresh": true, + "navigationBarBackgroundColor": "#FFFFFF" + } + }, + { + "path": "pages/chat/index", + "style": { + "navigationBarTitleText": "我的圈子", + "enablePullDownRefresh": true, + "app-plus": { + "bounce": "none", + "titleNView": { + "type": "transparent", + "buttons": [{ + "background": "rgba(255,255,255,0.2)", + "color": "#696969", + "type": "none", + "fontSrc": "/static/fonts/iconfont1.ttf", + "text": "\ue608" //小相机 + }] + } + } + } + }, + { + "path": "pages/chat/publish", + "style": { + "navigationBarTitleText": "发布" + } + }, { + "path": "pages/rank/index", + "style": { + "navigationBarTitleText": "会员推荐", + "enablePullDownRefresh": false, + "navigationBarTextStyle": "white", + "navigationBarBackgroundColor": "#34CE98" + } + + }, { + "path": "pages/news/index", + "name": "newsIndex", + "style": { + "navigationBarTitleText": "消息中心", + "enablePullDownRefresh": false, + "app-plus": { + "titleNView": { + "type": "default", + "buttons": [{ + "float": "right", + "text": " 全部已读", + "width": "80px", + "fontSize": "14px", + "color": "#34CE98" + }] + } + } + } + }, { + "path": "pages/news/detail", + "name": "newsDetail", + "style": { + "navigationBarTitleText": "反馈详情", + "enablePullDownRefresh": false, + "app-plus": { + "titleNView": { + "type": "default", + "buttons": [{ + "float": "right", + "text": "微信客服", + "width": "80px", + "fontSize": "14px", + "color": "#34CE98" + }] + } + } + } + } ], - "tabBar": { - "borderStyle": "white", - "selectedColor": "#34CE98", - "list": [{ - "iconPath": "static/tabBar/tabBar_00.png", - "selectedIconPath": "static/tabBar/tabBar_show_00.png", - "pagePath": "pages/life/life", - "text": "共力人生" - }, { - "iconPath": "static/tabBar/tabBar_02.png", - "selectedIconPath": "static/tabBar/tabBar_show_02.png", - "pagePath": "pages/store/index", - "text": "DT商城" - }, - { - "iconPath": "static/tabBar/tabBar_05.png", - "selectedIconPath": "static/tabBar/tabBar_show_05.png", - "pagePath": "pages/rank/index", - "text": "周排行榜" - }, - { - "iconPath": "static/tabBar/tabBar_03.png", - "selectedIconPath": "static/tabBar/tabBar_show_03.png", - "pagePath": "pages/user/index", - "text": "我的" - }] - }, - "globalStyle": { - "navigationBarTextStyle": "black", - "navigationBarTitleText": "ZH健康", - "navigationBarBackgroundColor": "#F3F6FB", - "backgroundColorTop": "#F3F6FB", - "backgroundColorBottom": "#F3F6FB" - }, - "easycom": { - "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue" - } + "tabBar": { + "borderStyle": "white", + "selectedColor": "#34CE98", + "list": [{ + "iconPath": "static/tabBar/tabBar_00.png", + "selectedIconPath": "static/tabBar/tabBar_show_00.png", + "pagePath": "pages/life/life", + "text": "共力人生" + }, { + "iconPath": "static/tabBar/tabBar_02.png", + "selectedIconPath": "static/tabBar/tabBar_show_02.png", + "pagePath": "pages/store/index", + "text": "DT商城" + }, + { + "iconPath": "static/tabBar/tabBar_05.png", + "selectedIconPath": "static/tabBar/tabBar_show_05.png", + "pagePath": "pages/rank/index", + "text": "周排行榜" + }, + { + "iconPath": "static/tabBar/tabBar_03.png", + "selectedIconPath": "static/tabBar/tabBar_show_03.png", + "pagePath": "pages/user/index", + "text": "我的" + } + ] + }, + "globalStyle": { + "navigationBarTextStyle": "black", + "navigationBarTitleText": "ZH健康", + "navigationBarBackgroundColor": "#F3F6FB", + "backgroundColorTop": "#F3F6FB", + "backgroundColorBottom": "#F3F6FB" + }, + "easycom": { + "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue" + } } diff --git a/pages/account/dt.vue b/pages/account/dt.vue index bc05c01..4cb66f2 100644 --- a/pages/account/dt.vue +++ b/pages/account/dt.vue @@ -13,17 +13,17 @@ DT积分冻结 - {{frozenScore}} + {{frozenScore || '0.0000'}} - + 账户记录 - - {{item.remark}} - + + {{item.remark}} + {{item.created_at}} @@ -38,12 +38,25 @@ + + + + + + 文版通充值 + + + + 微信充值 + + + + + diff --git a/pages/news/detail.vue b/pages/news/detail.vue new file mode 100644 index 0000000..1418cf1 --- /dev/null +++ b/pages/news/detail.vue @@ -0,0 +1,316 @@ +