index.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <template>
  2. <view :style="{ minHeight: sys.windowHeight + 'px' }"
  3. :class="[$tm.vx.state().tmVuetify.black ? 'black' : ' ']">
  4. <tm-menubars title="消息列表" :shadow="0" :showback="true"></tm-menubars>
  5. <div class="zhuti">
  6. <tm-sheet class="kuang" style="padding-bottom: 70px !important;">
  7. <view style="width: 94%;margin:0 auto;">
  8. <view>
  9. <text class="fl text-white">我的钱包</text>
  10. <text class="fr">规则</text>
  11. </view>
  12. </view>
  13. </tm-sheet>
  14. </div>
  15. <!-- 弹出层消息 -->
  16. <tm-message ref="toast"></tm-message>
  17. </view>
  18. </template>
  19. <script>
  20. import{myRequest} from '@/api/request.js'
  21. export default {
  22. data() {
  23. return {
  24. checked1:false,
  25. checked2:false,
  26. checked3:false,
  27. beizu:''
  28. };
  29. },
  30. onLoad() {
  31. },
  32. created() {
  33. this.sys = uni.getSystemInfoSync();
  34. },
  35. methods: {
  36. aa(num){
  37. if(num==1){
  38. this.checked1=true;
  39. this.checked2=false;
  40. this.checked3=false;
  41. }else if(num==2){
  42. this.checked1=false;
  43. this.checked2=true;
  44. this.checked3=false;
  45. }else if(num==3){
  46. this.checked1=false;
  47. this.checked2=false;
  48. this.checked3=true;
  49. }
  50. },
  51. },
  52. }
  53. </script>
  54. <style lang="scss">
  55. /deep/ .tm-menubars .body{
  56. background-color: #1b1b1b !important;
  57. }
  58. /deep/ .zhuti{padding: 10px 10px;}
  59. /deep/ .kuang{margin:0 !important;padding: 0px !important;}
  60. </style>