| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <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,
- user_id: '',
- open_id:'',
- user_status:'',
- user_name:'',
- user_phone:'',
- user_headUrl:'',
- isAuth:false,
- session_key: '',
- },
- 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>
|