| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <script>
- export default {
- onLaunch: function() {
- // console.log('App Launch')
- },
- onShow: function() {
- // console.log('App Show')
- },
- onHide: function() {
- // console.log('App Hide')
- },
- globalData: {
- primaryColor: '#1296db'
- }
- }
- </script>
- <style>
- /*每个页面公共css */
- @font-face {
- font-family: 'iconfont'; /* Project id 2649342 */
- src: url('//at.alicdn.com/t/font_2649342_ejw0s9epmuw.woff2?t=1627727529329') format('woff2'),
- url('//at.alicdn.com/t/font_2649342_ejw0s9epmuw.woff?t=1627727529329') format('woff'),
- url('//at.alicdn.com/t/font_2649342_ejw0s9epmuw.ttf?t=1627727529329') format('truetype');
- }
-
- .iconfont {
- font-family: "iconfont" !important;
- font-size: 16px;
- font-style: normal;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
-
- .icon-cardid:before {
- content: "\e621";
- }
-
- .icon-shengchengmingpianicon:before {
- content: "\e636";
- }
-
- .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";
- }
- </style>
|