dy.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <template>
  2. <view>
  3. <statusBar :item="navBarData"></statusBar>
  4. <view class="bigBox" v-for=" i in items">
  5. <view class="content">
  6. <view class="left">
  7. <image class="image" src="../../static/mine/Avatar.png" mode=""></image>
  8. <view class="text">
  9. <view class="fwb-font">橘子很橘子</view>
  10. <view class="brief fz-font">
  11. <text class="fz-font" style="margin-right: 20rpx;">订阅了您的教研室</text>
  12. <text class="fz-font">2023-04-01</text>
  13. </view>
  14. </view>
  15. </view>
  16. <view class="right">
  17. <button v-if="i.btn==1" class="btn sBtn-font" @click="btn1(i.tit)">回粉</button>
  18. <button v-else-if="i.btn==2" class="btn2 sBtn-font" @click="btn2(i.tit)">+关注</button>
  19. <button v-else class="btn3 sBtn-font" @click="btn3(i.tit)">相互关注</button>
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. export default {
  27. data() {
  28. return {
  29. navBarData: {
  30. title: '新增订阅',
  31. btn: 1
  32. },
  33. items:[ //1回粉 2关注 3相互关注
  34. {tit:'hf',btn:1},
  35. {tit:'hf2',btn:1},
  36. {tit:'gz',btn:2},
  37. {tit:'hx',btn:3},
  38. ]
  39. };
  40. },
  41. methods:{
  42. btn1(e){
  43. // console.log(e.btn==1);
  44. // console.log(e);
  45. this.items.find(i=>{
  46. if(i.tit==e) return i.btn=3
  47. })
  48. },
  49. btn2(e){
  50. this.items.find(i=>{
  51. if(i.tit==e) return i.btn=2
  52. })
  53. },
  54. btn3(e){
  55. this.items.find(i=>{
  56. if(i.tit==e) return i.btn=1
  57. })
  58. }
  59. }
  60. };
  61. </script>
  62. <style lang="scss" scoped>
  63. .bigBox{
  64. background-color: white;
  65. width: 750rpx;
  66. padding: 24rpx 30rpx 24rpx 30rpx;
  67. }
  68. .content {
  69. display: flex;
  70. justify-content: space-between;
  71. align-items: center;
  72. width: 690rpx;
  73. height: 88rpx;
  74. .left{
  75. display: flex;
  76. .image {
  77. width: 88rpx;
  78. height: 88rpx;
  79. border-radius: 50%;
  80. }
  81. .text{
  82. display: flex;
  83. flex-direction: column;
  84. justify-content: space-between;
  85. margin-left: 20rpx;
  86. .brief{
  87. color: rgba(0, 0, 0, 0.6);
  88. }
  89. }
  90. }
  91. .right{
  92. .btn {
  93. background-color: #adadad;
  94. width: 144rpx;
  95. height: 56rpx;
  96. padding: 0;
  97. // padding: 8rpx 24rpx 8rpx 24rpx ;
  98. border-radius: 32rpx;
  99. // text-align: center;
  100. line-height: 56rpx;
  101. color: white;
  102. }
  103. .btn2{
  104. background-color: #0056a9;
  105. width: 144rpx;
  106. height: 56rpx;
  107. padding: 0;
  108. // padding: 8rpx 24rpx 8rpx 24rpx ;
  109. // border-radius: 42px;
  110. border-radius: 32rpx;
  111. // text-align: center;
  112. line-height: 56rpx;
  113. color: white;
  114. }
  115. .btn3{
  116. background-color: #d1e5fe;
  117. width: 144rpx;
  118. height: 56rpx;
  119. padding: 0;
  120. // padding: 8rpx 24rpx 8rpx 24rpx;
  121. border-radius: 32rpx;
  122. // text-align: center;
  123. line-height: 56rpx;
  124. color: #105eaa;
  125. }
  126. }
  127. }
  128. </style>