加油站付款小程序,打印小票
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
921 B

9 months ago
  1. {
  2. "pages": [{
  3. "path": "pages/login/login",
  4. "style": {
  5. "navigationBarTitleText": "登录"
  6. }
  7. }, {
  8. "path": "pages/payment/payment",
  9. "style": {
  10. "navigationBarTitleText": "支付"
  11. }
  12. }, {
  13. "path": "pages/center/center",
  14. "style": {
  15. "navigationBarTitleText": "个人中心"
  16. }
  17. }],
  18. "globalStyle": {
  19. "navigationBarTextStyle": "black",
  20. "navigationBarTitleText": "uni-app",
  21. "navigationBarBackgroundColor": "#F8F8F8",
  22. "backgroundColor": "#F8F8F8",
  23. "navigationStyle": "custom"
  24. },
  25. "tabBar": {
  26. "backgroundColor": "white",
  27. "selectedColor": "#33a5fc",
  28. "list": [{
  29. "pagePath": "pages/payment/payment",
  30. "iconPath": "static/tabbar/1.png",
  31. "selectedIconPath": "static/tabbar/2.png",
  32. "text": "加油"
  33. }, {
  34. "pagePath": "pages/center/center",
  35. "iconPath": "static/tabbar/3.png",
  36. "selectedIconPath": "static/tabbar/4.png",
  37. "text": "个人中心"
  38. }]
  39. },
  40. "uniIdRouter": {}
  41. }