| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <script>
- export default {
- onLaunch: function() {
- // console.log('App Launch')
- },
- onShow: function() {
- // console.log('App Show')
- },
- onHide: function() {
- // console.log('App Hide')
- },
- globalData: {
- primaryColor: '#1296db',
- test: true // 控制是否是测试环境
- }
- }
- </script>
- <style>
- /*每个页面公共css */
- @font-face {
- font-family: "iconfont"; /* Project id 2649342 */
- src: url('//at.alicdn.com/t/font_2649342_4vjqgtg661.woff2?t=1625907458371') format('woff2'),
- url('//at.alicdn.com/t/font_2649342_4vjqgtg661.woff?t=1625907458371') format('woff'),
- url('//at.alicdn.com/t/font_2649342_4vjqgtg661.ttf?t=1625907458371') format('truetype');
- }
-
- .iconfont {
- font-family: "iconfont" !important;
- font-size: 16px;
- font-style: normal;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
-
- .icon-zhongzhi:before {
- content: "\e60a";
- }
-
- .icon-dayuhao:before {
- content: "\e60c";
- }
-
- .icon-shuibiao:before {
- content: "\e65c";
- }
-
- .icon-shuidi:before {
- content: "\ea2b";
- }
-
- .icon-shijian:before {
- content: "\e61b";
- }
-
- .icon-goux:before {
- content: "\e60b";
- }
-
- .icon-shuzi4:before {
- content: "\e6fc";
- }
-
- .icon-shuzi1:before {
- content: "\e603";
- }
-
- .icon-shuzi3:before {
- content: "\e604";
- }
-
- .icon-shuzi2:before {
- content: "\e605";
- }
-
- .icon-saoma:before {
- content: "\e74c";
- }
-
- .icon-zhuye:before {
- content: "\e62f";
- }
-
- .icon-arrow-down:before {
- content: "\e602";
- }
-
- .icon-qian:before {
- content: "\e7a9";
- }
-
- .icon-5_zhongzhi:before {
- content: "\e67a";
- }
-
- .icon-sanjiaoxing:before {
- content: "\e6e6";
- }
-
- .icon-jiantou:before {
- content: "\e624";
- }
- </style>
|