| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <!--
- * @Descripttion: 应用入口
- * @version: 1.0.0
- * @Author: dream
- * @Date: 2021-03-25 15:13:56
- * @LastEditors: dream
- * @LastEditTime: 2021-03-30 15:33:35
- -->
- <script>
- export default {
- onLaunch: function () {
- console.log('App Launch')
- this.$store.dispatch('systemStore/getSystemInfo')
- },
- onShow: function () {
- console.log('App Show')
- },
- onHide: function () {
- console.log('App Hide')
- }
- }
- </script>
- <style lang="scss">
- /*每个页面公共css */
- @import "uview-ui/index.scss";
- page {
- box-sizing: border-box;
- height: 100vh;
- font-size: 26px;
- line-height: 36px;
- color: $iph-base-text;
- background-color: $iph-base-bg;
- font-family: PingFangSC-Regular, PingFang SC;
- image {
- width: 100%;
- height: 100%;
- border-radius: inherit;
- }
- /deep/ .input-placeholder {
- color: $iph-placeholder-color;
- }
- /deep/ u-line {
- flex: none;
- }
- /deep/ button[disabled] {
- background: $iph-btn-disabel-bg !important;
- }
- }
- </style>
|