App.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. }
  15. }
  16. </script>
  17. <style>
  18. /*每个页面公共css */
  19. @font-face {
  20. font-family: 'iconfont'; /* Project id 2649342 */
  21. src: url('//at.alicdn.com/t/font_2649342_ejw0s9epmuw.woff2?t=1627727529329') format('woff2'),
  22. url('//at.alicdn.com/t/font_2649342_ejw0s9epmuw.woff?t=1627727529329') format('woff'),
  23. url('//at.alicdn.com/t/font_2649342_ejw0s9epmuw.ttf?t=1627727529329') format('truetype');
  24. }
  25. .iconfont {
  26. font-family: "iconfont" !important;
  27. font-size: 16px;
  28. font-style: normal;
  29. -webkit-font-smoothing: antialiased;
  30. -moz-osx-font-smoothing: grayscale;
  31. }
  32. .icon-cardid:before {
  33. content: "\e621";
  34. }
  35. .icon-shengchengmingpianicon:before {
  36. content: "\e636";
  37. }
  38. .icon-zhongzhi:before {
  39. content: "\e60a";
  40. }
  41. .icon-dayuhao:before {
  42. content: "\e60c";
  43. }
  44. .icon-shuibiao:before {
  45. content: "\e65c";
  46. }
  47. .icon-shuidi:before {
  48. content: "\ea2b";
  49. }
  50. .icon-shijian:before {
  51. content: "\e61b";
  52. }
  53. .icon-goux:before {
  54. content: "\e60b";
  55. }
  56. .icon-shuzi4:before {
  57. content: "\e6fc";
  58. }
  59. .icon-shuzi1:before {
  60. content: "\e603";
  61. }
  62. .icon-shuzi3:before {
  63. content: "\e604";
  64. }
  65. .icon-shuzi2:before {
  66. content: "\e605";
  67. }
  68. .icon-saoma:before {
  69. content: "\e74c";
  70. }
  71. .icon-zhuye:before {
  72. content: "\e62f";
  73. }
  74. .icon-arrow-down:before {
  75. content: "\e602";
  76. }
  77. .icon-qian:before {
  78. content: "\e7a9";
  79. }
  80. </style>