| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <script>
- export default {
- globalData: {
- //shareUrl: 'https://gdoctor.xazhima.com/api/v1.0/api.php', //开发环境全局接口域名 线上:https://guolu.xazhima.com/
- shareUrl: "https://kiq.xazhima.com/",
- globalTimestamp: Date.now().toString(),
- secret: "AirQK_weichat_app_zhima",
- selectedIndex:0
- },
- onLaunch: function () {
- console.log("App Launch");
- },
- onShow: function () {
- console.log("App Show");
- },
- onHide: function () {
- console.log("App Hide");
- },
- };
- </script>
- <style>
- /*每个页面公共css */
- .display-flex-start {
- display: flex;
- align-items: center;
- }
- .display-flex-end {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- }
- .display-between {
- display: flex;
- justify-content: space-between;
- }
- .display-around {
- display: flex;
- justify-content: space-around;
- }
- .display-between-column {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .display-around-column {
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- }
- .display-wrap {
- display: flex;
- flex-wrap: wrap;
- }
- .items-center {
- align-items: center;
- }
- </style>
|