123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- <script>
- import { mapState, mapMutations } from 'vuex';
- export default {
- onLaunch: function() {
- console.log('App Launch');
- },
- onShow: function() {
- console.log('App Show');
- },
- onHide: function() {
- console.log('App Hide');
- }
- };
- </script>
- <style lang="scss">
- @import 'uview-ui/index.scss';
- @font-face {
- font-family: 'iconfont';
- src: url('https://at.alicdn.com/t/font_920828_nk2k2hhgl8.ttf') format('truetype');
- }
- .icon {
- font-family: iconfont;
- }
- /*每个页面公共css */
- page {
- background-color:
- }
- /* 原生组件模式下需要注意组件外部样式 */
- m-input {
- width: 100%;
- /* min-height: 100%; */
- display: flex;
- flex: 1;
- }
- .tui-swiper-item {
- .uni-scroll-view {
- position: absolute;
- }
- }
- .uni-picker-container {
- z-index: 10000;
- }
- .content {
- display: flex;
- flex: 1;
- flex-direction: column;
- background-color:
- padding: 10px;
- }
- .input-group {
- margin-top: 20px;
- position: relative;
- }
- .input-group::before {
- position: absolute;
- right: 0;
- top: 0;
- left: 0;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- background-color:
- }
- .input-group::after {
- position: absolute;
- right: 0;
- bottom: 0;
- left: 0;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- background-color:
- }
- .input-row {
- display: flex;
- flex-direction: row;
- position: relative;
- font-size: 18px;
- line-height: 40px;
- background-color:
- }
- .input-row .title {
- width: 100px;
- padding-left: 15px;
- }
- .input-row.border::after {
- position: absolute;
- right: 0;
- bottom: 0;
- left: 8px;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- background-color:
- }
- .btn-row {
- margin-top: 10px;
- padding: 10px;
- }
- button.primary {
- background-color:
- }
- </style>
|