index.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. </tm-sheet>
  10. <tm-button :round="24" class="sao mb-40 mt-40" block>提交</tm-button>
  11. </div>
  12. <!-- 弹出层消息 -->
  13. <tm-message ref="toast"></tm-message>
  14. </view>
  15. </template>
  16. <script>
  17. import{myRequest} from '@/api/request.js'
  18. export default {
  19. data() {
  20. return {
  21. checked1:false,
  22. checked2:false,
  23. checked3:false,
  24. beizu:''
  25. };
  26. },
  27. onLoad() {
  28. },
  29. created() {
  30. this.sys = uni.getSystemInfoSync();
  31. },
  32. methods: {
  33. aa(num){
  34. if(num==1){
  35. this.checked1=true;
  36. this.checked2=false;
  37. this.checked3=false;
  38. }else if(num==2){
  39. this.checked1=false;
  40. this.checked2=true;
  41. this.checked3=false;
  42. }else if(num==3){
  43. this.checked1=false;
  44. this.checked2=false;
  45. this.checked3=true;
  46. }
  47. },
  48. },
  49. }
  50. </script>
  51. <style lang="scss">
  52. /deep/ .tm-menubars .body{
  53. background-color: #1b1b1b !important;
  54. }
  55. /deep/ .zhuti{padding: 10px 10px;}
  56. /deep/ .kuang{margin:0 !important;padding: 0px !important;}
  57. </style>