App.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. // console.log('App Launch')
  5. },
  6. onShow: function() {
  7. // console.log('App Show')
  8. },
  9. onHide: function() {
  10. // console.log('App Hide')
  11. },
  12. globalData: {
  13. primaryColor: '#1296db',
  14. test: false // 控制是否是测试环境
  15. }
  16. }
  17. </script>
  18. <style>
  19. /*每个页面公共css */
  20. @font-face {
  21. font-family: "iconfont"; /* Project id 2649342 */
  22. src: url('//at.alicdn.com/t/font_2649342_4vjqgtg661.woff2?t=1625907458371') format('woff2'),
  23. url('//at.alicdn.com/t/font_2649342_4vjqgtg661.woff?t=1625907458371') format('woff'),
  24. url('//at.alicdn.com/t/font_2649342_4vjqgtg661.ttf?t=1625907458371') format('truetype');
  25. }
  26. .iconfont {
  27. font-family: "iconfont" !important;
  28. font-size: 16px;
  29. font-style: normal;
  30. -webkit-font-smoothing: antialiased;
  31. -moz-osx-font-smoothing: grayscale;
  32. }
  33. .icon-zhongzhi:before {
  34. content: "\e60a";
  35. }
  36. .icon-dayuhao:before {
  37. content: "\e60c";
  38. }
  39. .icon-shuibiao:before {
  40. content: "\e65c";
  41. }
  42. .icon-shuidi:before {
  43. content: "\ea2b";
  44. }
  45. .icon-shijian:before {
  46. content: "\e61b";
  47. }
  48. .icon-goux:before {
  49. content: "\e60b";
  50. }
  51. .icon-shuzi4:before {
  52. content: "\e6fc";
  53. }
  54. .icon-shuzi1:before {
  55. content: "\e603";
  56. }
  57. .icon-shuzi3:before {
  58. content: "\e604";
  59. }
  60. .icon-shuzi2:before {
  61. content: "\e605";
  62. }
  63. .icon-saoma:before {
  64. content: "\e74c";
  65. }
  66. .icon-zhuye:before {
  67. content: "\e62f";
  68. }
  69. .icon-arrow-down:before {
  70. content: "\e602";
  71. }
  72. .icon-qian:before {
  73. content: "\e7a9";
  74. }
  75. .icon-5_zhongzhi:before {
  76. content: "\e67a";
  77. }
  78. .icon-sanjiaoxing:before {
  79. content: "\e6e6";
  80. }
  81. .icon-jiantou:before {
  82. content: "\e624";
  83. }
  84. </style>