App.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <template>
  2. <div id="app" v-cloak>
  3. <!-- <div class="bg-box"></div> -->
  4. <button @click="theme('light')" class="aaa">按他变色</button>
  5. <button @click="theme('dark')" class="bbb">按他变色2</button>
  6. <router-view />
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. }
  14. },
  15. mounted() {
  16. },
  17. methods: {
  18. theme(type) {
  19. // this.$store.commit('upDate', {themeType: type});
  20. window.document.documentElement.setAttribute( "data-theme", type );
  21. }
  22. },
  23. };
  24. </script>
  25. <style lang="scss">
  26. @import "./assets/css/index.css";
  27. .aaa,.bbb{
  28. position: fixed;
  29. top: 0;
  30. padding: 20px;
  31. background: red;
  32. z-index: 999;
  33. }
  34. .bbb{
  35. right: 0;
  36. }
  37. @mixin layout-dev {
  38. position: fixed;
  39. height: 100%;
  40. width: 100%;
  41. top: 0;
  42. left: 0;
  43. padding: 0;
  44. margin: 0;
  45. box-sizing: border-box;
  46. }
  47. html {
  48. @include layout-dev;
  49. body {
  50. @include layout-dev;
  51. #app {
  52. @include layout-dev;
  53. font-size: 12px;
  54. background: #fafafa;
  55. // .bg-box {
  56. // position: absolute;
  57. // z-index: 1;
  58. // width: 100%;
  59. // height: 84px;
  60. // margin: 0 0;
  61. // padding:0;
  62. // box-sizing: border-box;
  63. // background: linear-gradient(0deg, #fafafa 0% ,#f3d028 100% );
  64. // }
  65. .layout,
  66. .address,
  67. .addressView,
  68. .order,
  69. .oDetail,
  70. .aboutUs,
  71. .product,
  72. .live,
  73. .paddy,
  74. .liveD,
  75. .orderRes,
  76. .login,.reset {
  77. @include layout-dev;
  78. background: transparent;
  79. position: absolute;
  80. height: 100%;
  81. height: 100%;
  82. z-index: 2;
  83. .page-main {
  84. box-sizing: border-box;
  85. overflow-y: scroll;
  86. width: 100%;
  87. height: auto;
  88. }
  89. .van-nav-bar-my-fixed {
  90. .van-nav-bar__content {
  91. // background: linear-gradient(0deg, #fafafa 0%, #f3d028 100%);
  92. background-color: #111;
  93. }
  94. }
  95. .van-tabbar--fixed {
  96. z-index: 999999;
  97. background-color: #111111;
  98. }
  99. }
  100. }
  101. .van-dialog {
  102. padding:20px 20px 20px;
  103. .van-dialog__footer{
  104. display: block;
  105. .van-dialog__cancel{
  106. float: left;
  107. width: calc(50% - 5px);
  108. // border:1px
  109. background: #e6e6dc;
  110. border-radius: 8px;
  111. }
  112. .van-dialog__confirm{
  113. float: right;
  114. width: calc(50% - 5px);
  115. border-radius: 8px;
  116. }
  117. }
  118. }
  119. }
  120. }
  121. </style>