notice.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <template>
  2. <view class="container">
  3. <tui-list-view >
  4. <tui-list-cell :hover="false" :lineLeft="false">
  5. <view class="tui-goods-title">
  6. <view>申请加入家族通知</view>
  7. <view class="tui-order-status"><switch style="" color="#19be6b" class="tui-switch" ></switch></view>
  8. </view>
  9. </tui-list-cell>
  10. </tui-list-view>
  11. </view>
  12. </template>
  13. <script>
  14. import tuiButton from "@/components/thorui/tui-button/tui-button"
  15. import tuiListView from '@/components/thorui/tui-list-view/tui-list-view';
  16. import tuiListCell from '@/components/thorui/tui-list-cell/tui-list-cell';
  17. import tuiIcon from '@/components/thorui/tui-icon/tui-icon';
  18. import tuiTag from '@/components/thorui/tui-tag/tui-tag';
  19. import tuiBadge from '@/components/thorui/tui-badge/tui-badge';
  20. export default {
  21. components: {
  22. tuiListView,
  23. tuiListCell,
  24. tuiIcon,
  25. tuiTag,
  26. tuiButton,
  27. tuiBadge
  28. },
  29. data() {
  30. return {
  31. };
  32. },
  33. methods: {
  34. }
  35. };
  36. </script>
  37. <style>
  38. .container {
  39. padding-bottom: 120rpx;
  40. width: 100%;
  41. }
  42. .tui-goods-title {
  43. width: 100%;
  44. font-size: 28rpx;
  45. display: flex;
  46. align-items: center;
  47. justify-content: space-between;
  48. }
  49. .header {
  50. padding: 80rpx 90rpx 60rpx 90rpx;
  51. box-sizing: border-box;
  52. }
  53. .title {
  54. font-size: 34rpx;
  55. color: #333;
  56. font-weight: 500;
  57. }
  58. .sub-title {
  59. font-size: 24rpx;
  60. color: #7a7a7a;
  61. padding-top: 18rpx;
  62. }
  63. .tui-list-item {
  64. padding: 40rpx 30rpx;
  65. display: flex;
  66. align-items: item;
  67. }
  68. .tui-title {
  69. width: 100%;
  70. padding: 50rpx 30rpx 30rpx;
  71. box-sizing: border-box;
  72. font-size: 32rpx;
  73. font-weight: bold;
  74. display: flex;
  75. align-items: center;
  76. justify-content: space-between;
  77. }
  78. .tui-switch {
  79. transform: scale(0.8);
  80. transform-origin: 100% center;
  81. }
  82. .tui-custom-btn_box {
  83. width: 140px;
  84. height: 100%;
  85. padding: 0 20rpx;
  86. box-sizing: border-box;
  87. display: flex;
  88. align-items: center;
  89. justify-content: center;
  90. background-color: #fafafa;
  91. }
  92. .tui-custom-btn {
  93. width: 100rpx;
  94. height: 100rpx;
  95. border-radius: 50%;
  96. background-color: #fff;
  97. color: #333;
  98. display: flex;
  99. align-items: center;
  100. justify-content: center;
  101. flex-shrink: 0;
  102. }
  103. .tui-custom-mr {
  104. margin-right: 20rpx;
  105. }
  106. </style>