talkLove.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <template>
  2. <view>
  3. <view class="" style="padding: 20rpx 30rpx;">
  4. <u--input
  5. placeholder="输入关键词查询"
  6. border="surround"
  7. v-model="value"
  8. @change="change"
  9. @confirm="confirm"
  10. confirm-type="search"
  11. clearable
  12. shape="circle"
  13. prefixIcon="search"
  14. prefixIconStyle="font-size: 22px;color: #909399"
  15. ></u--input>
  16. </view>
  17. <!-- <u-tabs :current='current' :scrollable='false' lineColor='#A890FE' itemStyle="width: 125px;padding-bottom:10px" :activeStyle="{
  18. color: '#303133',
  19. fontWeight: 'bold',
  20. transform: 'scale(1.05)'
  21. }" :list="list" @change="change1"></u-tabs> -->
  22. <view class="talkList">
  23. <view class="talkItem u-flex u-row-between" v-for="(item,index) in article" :key="index" @click="toinfo(item)">
  24. <image :src="item.show_image" mode=""></image>
  25. <view class="talkRight">
  26. <view class="talkTitle">
  27. {{item.subtitle}}
  28. </view>
  29. <view class="talkInfo u-flex u-row-between">
  30. <!-- <text>小小小柚子</text> -->
  31. <text>{{item.create_at}}</text>
  32. </view>
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. </template>
  38. <script>
  39. export default {
  40. data() {
  41. return {
  42. title:'',
  43. article:[],
  44. value: '',
  45. current:0,
  46. page:1,
  47. list: [{
  48. name: '全部',
  49. }, {
  50. name: '推荐',
  51. }]
  52. }
  53. },
  54. onReachBottom() {
  55. this.page++
  56. this.getList()
  57. },
  58. onLoad() {
  59. this.getList()
  60. },
  61. methods: {
  62. getList(){
  63. uni.$u.http.post('/api/Index/articlelist',{page:this.page,title:this.title}).then(res => {
  64. if(this.page==1){
  65. this.article=res.data.data
  66. }else{
  67. this.article=[...this.video,...res.data.data]
  68. }
  69. })
  70. },
  71. toinfo(item){
  72. uni.navigateTo({
  73. url:'./talkInfo?id='+item.id
  74. })
  75. },
  76. change1(e){
  77. if(this.current!=e.index){
  78. this.current=e.index
  79. }
  80. },
  81. confirm(e){
  82. this.page=1
  83. this.title=e
  84. this.getList()
  85. },
  86. change(e) {
  87. console.log('change', e);
  88. }
  89. }
  90. }
  91. </script>
  92. <style lang="scss">
  93. .talkList{
  94. box-sizing: border-box;
  95. margin: 18rpx auto 0;
  96. width: 690rpx;
  97. background: #FFFFFF;
  98. border-radius: 28rpx;
  99. padding: 0 20rpx;
  100. .talkItem{
  101. padding: 20rpx 0;
  102. border-bottom: 2rpx solid #F3F3F3;
  103. image{
  104. width: 220rpx;
  105. height: 148rpx;
  106. border-radius: 16rpx;
  107. }
  108. .talkRight{
  109. width: 402rpx;
  110. margin-left: 20rpx;
  111. .talkTitle{
  112. margin-bottom: 16rpx;
  113. color: #222222;
  114. font-size: 32rpx;
  115. }
  116. .talkInfo{
  117. overflow: hidden;
  118. white-space: nowrap;
  119. text-overflow: ellipsis;
  120. margin-top: 10rpx;
  121. color: #999999;
  122. font-size: 20rpx;
  123. }
  124. }
  125. }
  126. }
  127. </style>