long-list.uvue 3.8 KB
Newer Older
H
hdx 已提交
1
<template>
H
hdx 已提交
2
  <list-view class="list" @scrolltolower="loadData">
H
hdx 已提交
3 4
    <list-item class="list-item" v-for="(item, index) in dataList" :key="index">
      <view class="list-item-icon">
H
hdx 已提交
5
        <image class="list-item-icon-image" :src="item.author_avatar_link"></image>
H
hdx 已提交
6 7 8
      </view>
      <view class="list-item-fill">
        <view class="flex-row">
H
hdx 已提交
9
          <text class="title">{{item.plugin_name}}</text>
H
hdx 已提交
10 11
        </view>
        <view class="description">
H
hdx 已提交
12 13 14 15
          <text class="description-text">{{item.plugin_intro}}</text>
        </view>
        <view class="tag-list">
          <text class="tag-item" v-for="(item2, index2) in item.tags" :key="index2">{{item2}}</text>
H
hdx 已提交
16 17 18 19
        </view>
        <!-- <uts-rate></uts-rate> -->
        <view class="flex-row update-date">
          <text class="update-date-text">更新日期</text>
H
hdx 已提交
20 21
          <text class="update-date-value">{{item.update_date}}</text>
          <text class="author">{{item.author_name}}</text>
H
hdx 已提交
22 23 24 25 26 27 28
        </view>
      </view>
    </list-item>
  </list-view>
</template>

<script>
H
hdx 已提交
29
  const SERVER_URL = "https://ext.dcloud.net.cn/plugin/uniappx-plugin-list"
H
hdx 已提交
30
  const PAGE_SIZE = 10; // 最大值 10
H
hdx 已提交
31 32

  type ListItem = {
H
hdx 已提交
33 34 35 36 37 38 39 40 41 42 43 44
    plugin_id : number,
    author_avatar_link : string,
    plugin_name : string,
    plugin_intro : string,
    tags : Array<string>,
    update_date : string,
    author_name : string,
  }

  type ResponseDataType = {
    code : number,
    data : ListItem[]
H
hdx 已提交
45 46 47 48 49
  }

  export default {
    data() {
      return {
H
hdx 已提交
50 51 52 53
        loading: false,
        dataList: [] as ListItem[],
        isEnded: false,
        $currentPage: 0
H
hdx 已提交
54 55 56 57 58 59 60
      }
    },
    onLoad() {
      this.loadData()
    },
    methods: {
      loadData() {
H
hdx 已提交
61 62 63
        if (this.loading || this.isEnded) {
          return
        }
H
hdx 已提交
64

H
hdx 已提交
65
        this.loading = true;
H
hdx 已提交
66

H
hdx 已提交
67
        // TODO request data 没有拼接到 url 中,暂时手动拼接
H
hdx 已提交
68
        uni.request({
H
hdx 已提交
69
          url: `${SERVER_URL}?page=${this.$currentPage}&page_size=${PAGE_SIZE}`,
H
hdx 已提交
70 71
          data: {
            page: this.$currentPage,
H
hdx 已提交
72
            page_size: PAGE_SIZE
H
hdx 已提交
73
          },
H
hdx 已提交
74
          dataType: '',
H
hdx 已提交
75
          success: (res) => {
H
hdx 已提交
76 77 78 79
            const responseData = JSON.parse<ResponseDataType>(res.data as string)
            if (responseData == null) {
              return
            }
H
hdx 已提交
80

H
hdx 已提交
81
            responseData.data.forEach((item) => {
H
hdx 已提交
82 83 84
              this.dataList.push(item)
            })

H
hdx 已提交
85
            this.isEnded = responseData.data.length <= 0;
H
hdx 已提交
86 87 88 89 90 91 92 93 94 95

            this.$currentPage++
          },
          fail: (err) => {
            console.log(err);
          },
          complete: () => {
            this.loading = false;
          }
        })
H
hdx 已提交
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
      }
    }
  }
</script>

<style>
  .flex-row {
    flex-direction: row;
  }

  .list {
    flex: 1;
    background-color: #ffffff;
  }

  .list-item {
    flex-direction: row;
    margin-top: 10px;
    padding: 10px;
  }

  .list-item-icon {
    position: relative;
  }

  .list-item-icon-image {
    width: 80px;
    height: 80px;
  }

  .list-item-icon-index {
    font-size: 12px;
    color: #cccccc;
    position: absolute;
    left: 2px;
    bottom: 2px;
  }

  .list-item-fill {
    flex: 1;
    margin-left: 15px;
  }

  .index {
    margin-left: 10px;
  }

  .description {
H
hdx 已提交
144
    margin-top: 3px;
H
hdx 已提交
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
  }

  .description-text {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
  }

  .tag-list {
    flex-direction: row;
    margin-top: 5px;
  }

  .tag-item {
    font-size: 14px;
    font-weight: bold;
    background-color: #EFF9F0;
    color: #639069;
    border-radius: 20px;
    margin-right: 5px;
    padding: 2px 5px;
  }

  .update-date {
    margin-top: 10px;
  }

  .update-date-text {
    font-size: 12px;
    color: #888888;
  }

  .update-date-value {
    font-size: 12px;
    color: #777777;
    margin-left: 5px;
  }

  .author {
    font-size: 12px;
H
hdx 已提交
185
    color: #005000;
H
hdx 已提交
186 187 188
    margin-left: auto;
  }
</style>