index.vue 572 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <view :style="{ minHeight: sys.windowHeight + 'px' }"
  3. :class="[$tm.vx.state().tmVuetify.black ? 'black' : ' ']">
  4. <tm-message ref="toast"></tm-message>
  5. <tm-menubars title="搭配" :shadow="0" :showback="false"></tm-menubars>
  6. </view>
  7. </template>
  8. <script>
  9. import{myRequest} from '@/api/request.js'
  10. export default {
  11. data() {
  12. return {
  13. };
  14. },
  15. onLoad() {
  16. },
  17. created() {
  18. this.sys = uni.getSystemInfoSync();
  19. },
  20. methods: {
  21. },
  22. }
  23. </script>
  24. <style lang="scss">
  25. /deep/ .tm-menubars .body{
  26. background-color: #1b1b1b !important;
  27. }
  28. </style>