index.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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="dizhi">
  6. <view class="contdz pt-20">
  7. <view>
  8. <text>薛定谔</text>
  9. <text class="ml-40 text-gray text-size-m">178****5566</text>
  10. <tm-button class="ml-50" :round="10" theme="gray" size="s">学校</tm-button>
  11. </view>
  12. <view class="text-gray text-size-s mt-15">
  13. <text>江苏省南京市江宁区 淳化街道弘景大道3666号</text>
  14. <image class="fr xiugai" src="/static/img/109.png" mode="widthFix"></image>
  15. </view>
  16. </view>
  17. <view class="contdz pt-20">
  18. <view>
  19. <text>薛定谔</text>
  20. <text class="ml-40 text-gray text-size-m">178****5566</text>
  21. <tm-button class="ml-50" :round="10" theme="gray" size="s">学校</tm-button>
  22. </view>
  23. <view class="text-gray text-size-s mt-15">
  24. <text>江苏省南京市江宁区 淳化街道弘景大道3666号</text>
  25. <image class="fr xiugai" src="/static/img/109.png" mode="widthFix"></image>
  26. </view>
  27. </view>
  28. <view class="contdz pt-20">
  29. <view>
  30. <text>薛定谔</text>
  31. <text class="ml-40 text-gray text-size-m">178****5566</text>
  32. <tm-button class="ml-50" :round="10" theme="gray" size="s">学校</tm-button>
  33. </view>
  34. <view class="text-gray text-size-s mt-15">
  35. <text>江苏省南京市江宁区 淳化街道弘景大道3666号</text>
  36. <image class="fr xiugai" src="/static/img/109.png" mode="widthFix"></image>
  37. </view>
  38. </view>
  39. </div>
  40. <tm-button :round="24" class="sao mb-40 mt-40" block>新建收获地址</tm-button>
  41. <!-- 弹出层消息 -->
  42. <tm-message ref="toast"></tm-message>
  43. </view>
  44. </template>
  45. <script>
  46. import{myRequest} from '@/api/request.js'
  47. export default {
  48. data() {
  49. return {
  50. checked1:false,
  51. checked2:false,
  52. checked3:false,
  53. beizu:''
  54. };
  55. },
  56. onLoad() {
  57. },
  58. created() {
  59. this.sys = uni.getSystemInfoSync();
  60. },
  61. methods: {
  62. aa(num){
  63. if(num==1){
  64. this.checked1=true;
  65. this.checked2=false;
  66. this.checked3=false;
  67. }else if(num==2){
  68. this.checked1=false;
  69. this.checked2=true;
  70. this.checked3=false;
  71. }else if(num==3){
  72. this.checked1=false;
  73. this.checked2=false;
  74. this.checked3=true;
  75. }
  76. },
  77. },
  78. }
  79. </script>
  80. <style lang="scss">
  81. /deep/ .tm-menubars .body{
  82. background-color: #1b1b1b !important;
  83. }
  84. /deep/ .zhuti{padding: 10px 10px;}
  85. /deep/ .kuang{margin:0 !important;padding: 0px !important;}
  86. .sao{width: 88%;margin:0 auto;margin-top: 30px;}
  87. .dizhi{background: #1B1B1B;}
  88. .xiugai{width: 18px;height:18px;}
  89. .contdz{width: 90%;margin:0 auto;border-bottom: 1px solid #303030;padding-bottom: 15px;}
  90. </style>