index.vue 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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 @click="xinjian">新建收获地址</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. xinjian(){
  63. uni.navigateTo({
  64. url: "/pages/shouhuodi/index",
  65. })
  66. }
  67. },
  68. }
  69. </script>
  70. <style lang="scss">
  71. /deep/ .tm-menubars .body{
  72. background-color: #1b1b1b !important;
  73. }
  74. /deep/ .zhuti{padding: 10px 10px;}
  75. /deep/ .kuang{margin:0 !important;padding: 0px !important;}
  76. .sao{width: 88%;margin:0 auto;margin-top: 30px;}
  77. .dizhi{background: #1B1B1B;}
  78. .xiugai{width: 18px;height:18px;}
  79. .contdz{width: 90%;margin:0 auto;border-bottom: 1px solid #303030;padding-bottom: 15px;}
  80. </style>