topic-detail.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <template>
  2. <view class="content">
  3. <view class="top">
  4. <view class="top-text">{{topic.title}}</view>
  5. <view class="intro">
  6. <view class="hflex acenter jbetween">
  7. <view class="title">简介</view>
  8. <view class="hflex acenter" @click="show = !show">
  9. <view class="extext">{{show ? '收起' : '展开'}}</view>
  10. <u-icon :name="show ? 'arrow-down' : 'arrow-up'"></u-icon>
  11. </view>
  12. </view>
  13. <view v-if="show" class="intro-text">{{topic.description}}</view>
  14. </view>
  15. </view>
  16. <view class="list">
  17. <listinfo type="post" :data="item" v-for="(item,index) in list" :key="index"></listinfo>
  18. </view>
  19. <view class="fixed hflex acenter jcenter" @click="toadd">
  20. <image src="/static/images/edit.png" mode="aspectFill"></image>
  21. <text>参与</text>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. import listinfo from '@/components/list-info/index.vue'
  27. import $api from '@/static/js/api.js'
  28. export default {
  29. components: {
  30. listinfo,
  31. },
  32. data() {
  33. return {
  34. id: '',
  35. list: [],
  36. topic: {},
  37. page: 1,
  38. last_page: 1,
  39. show: false
  40. }
  41. },
  42. onLoad(option) {
  43. this.id = option.id
  44. this.getdata()
  45. this.getlist()
  46. },
  47. onShow() {
  48. },
  49. onPullDownRefresh() {
  50. },
  51. onReachBottom() {
  52. },
  53. methods: {
  54. toadd() {
  55. uni.navigateTo({
  56. url: '/pageA/add-luntan?topic=' + JSON.stringify(this.topic)
  57. })
  58. },
  59. getdata() {
  60. var _this = this
  61. $api.req({
  62. url: 'topic/' + _this.id,
  63. method: 'GET',
  64. data: {
  65. id: _this.id
  66. }
  67. }, function(res) {
  68. if(res.code == 10000) {
  69. _this.topic = res.data
  70. }
  71. })
  72. },
  73. getlist() {
  74. var _this = this
  75. $api.req({
  76. url: 'post',
  77. method: 'GET',
  78. data: {
  79. page: _this.page,
  80. limit: 10,
  81. topic_id: _this.id
  82. }
  83. }, function(res) {
  84. if(res.code == 10000) {
  85. _this.list = _this.list.concat(res.data.list)
  86. _this.last_page = res.data.last_page
  87. }
  88. })
  89. },
  90. }
  91. }
  92. </script>
  93. <style lang="scss">
  94. .content {
  95. background: #f5f5f5;
  96. .fixed {
  97. width: 210rpx;
  98. height: 84rpx;
  99. background: #FFFFFF;
  100. box-shadow: 0rpx 0rpx 48rpx -12rpx rgba(0,0,0,0.2);
  101. border-radius: 42rpx;
  102. position: fixed;
  103. bottom: 65rpx;
  104. left: 270rpx;
  105. image {
  106. width: 40rpx;
  107. height: 40rpx;
  108. }
  109. text {
  110. font-size: 32rpx;
  111. font-family: PingFangSC, PingFang SC;
  112. font-weight: 500;
  113. color: #00B0B0;
  114. padding-left: 18rpx;
  115. }
  116. }
  117. .list {
  118. margin-top: 20rpx;
  119. }
  120. .top {
  121. padding: 32rpx 0 38rpx;
  122. background: #FFFFFF;
  123. .top-text {
  124. font-size: 40rpx;
  125. font-family: AppleColorEmoji;
  126. color: #333333;
  127. padding: 0 30rpx 30rpx;
  128. box-sizing: border-box;
  129. border-bottom: 1px solid #F3F3F3;
  130. }
  131. .intro {
  132. box-sizing: border-box;
  133. padding: 30rpx 30rpx 0;
  134. .title {
  135. font-size: 32rpx;
  136. font-family: PingFangSC, PingFang SC;
  137. font-weight: 500;
  138. color: #333333;
  139. }
  140. .extext {
  141. font-size: 24rpx;
  142. font-family: PingFangSC, PingFang SC;
  143. font-weight: 500;
  144. color: #999999;
  145. padding-right: 8rpx;
  146. }
  147. .intro-text {
  148. font-size: 26rpx;
  149. font-family: PingFangSC, PingFang SC;
  150. font-weight: 400;
  151. color: #333333;
  152. padding: 28rpx 0;
  153. }
  154. }
  155. }
  156. }
  157. </style>