FirstList.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. <!-- 商城宣传页,列表页 -->
  2. <template>
  3. <view class="page-body" style="background: #f6f6f6;">
  4. <s-empty v-if="state.pagination.total === 0" icon="/static/data-empty.png" :text="t('common.no_data')" />
  5. <view v-if="state.pagination.total > 0 && type == 'articleCard'">
  6. <view class="article ss-r-10" v-for="item in state.pagination.list" @click="sheep.$router.go('/pages/public/richtext', {title:item.title});">
  7. <view class="title" >
  8. {{item.title}}
  9. </view>
  10. <view class="content">
  11. <view class="image " v-if="item.picUrl.trim()">
  12. <image :src="item.picUrl" mode="aspectFit" class="image-content"></image>
  13. </view>
  14. <view class="desc" >
  15. {{item.introduction}}
  16. </view>
  17. </view>
  18. </view>
  19. </view>
  20. <view v-if="state.pagination.total > 0 && type == 'activityCard'">
  21. <view class="activity ss-r-10" v-for="item in state.pagination.list" :style="{ backgroundImage: `url(${item.picUrl})` }" @click="sheep.$router.go('/pages/public/richtext', {title:item.title});">
  22. <view class="activity-bottom">
  23. <text>{{item.title}}</text>
  24. <view class=""><image src="@/static/firstIndex/youjiantou.png" mode="aspectFit" /></view>
  25. </view>
  26. </view>
  27. </view>
  28. <uni-load-more v-if="state.pagination.total > 0" :status="state.loadStatus" :content-text="{ contentdown: '上拉加载更多'}" @tap="loadmore" />
  29. <s-tabbar path="/pages/index/FirstIndex" :tabbar="tabbar" />
  30. </view>
  31. </template>
  32. <script setup>
  33. import {
  34. computed,
  35. ref,
  36. reactive
  37. } from 'vue';
  38. import {
  39. onLoad,
  40. onShow,
  41. onReachBottom,
  42. onPullDownRefresh
  43. } from '@dcloudio/uni-app';
  44. import sheep from '@/sheep';
  45. import $share from '@/sheep/platform/share';
  46. import _ from 'lodash';
  47. import {
  48. isAndroid,
  49. getAndroidJiGuangId
  50. } from '@/sheep/hooks/useApp'
  51. import {
  52. showWalletModal,
  53. colseWalletModal
  54. } from '@/sheep/hooks/useModal';
  55. import { t } from '@/locale'
  56. import ArticleApi from '@/sheep/api/promotion/article';
  57. // 隐藏原生tabBar
  58. uni.hideTabBar();
  59. const appInfo = computed(() => sheep.$store('app').info);
  60. const {
  61. safeArea
  62. } = sheep.$platform.device;
  63. const pageHeight = computed(() => safeArea.height - 45);
  64. const props = defineProps({
  65. // 是否显示tabbar
  66. tabbar: {
  67. type: Boolean,
  68. default: true
  69. },
  70. // 是否显示tabbar
  71. categoryId: {
  72. type: Number,
  73. default: 0
  74. },
  75. type:{
  76. type:String,
  77. default:'articleCard'
  78. }
  79. });
  80. const tabbar = ref({
  81. "theme": "red",
  82. "style": {
  83. "bgType": "color",
  84. "bgColor": "#323b4e",
  85. "color": "#e6e6e5",
  86. "activeColor": "#1fa380"
  87. },
  88. "items": [{
  89. "text": t('common.home'),
  90. "url": "/pages/index/FirstIndex",
  91. "iconUrl": sheep.$url.static('/static/firstIndex/index.svg'),
  92. "activeIconUrl": sheep.$url.static('/static/firstIndex/index-active.svg')
  93. },
  94. {
  95. "text": t('common.activities'),
  96. "url": "/pages/index/FirstActivity",
  97. "iconUrl": sheep.$url.static('/static/firstIndex/activity.svg'),
  98. "activeIconUrl": sheep.$url.static('/static/firstIndex/activity-active.svg')
  99. },
  100. {
  101. "text": t('common.videos'),
  102. "url": "/pages/index/FirstVideo",
  103. "iconUrl": sheep.$url.static('/static/firstIndex/video.svg'),
  104. "activeIconUrl": sheep.$url.static('/static/firstIndex/video-active.svg')
  105. },
  106. {
  107. "text": t('common.mall'),
  108. "url": "/pages/index/index",
  109. "iconUrl": sheep.$url.static('/static/firstIndex/shop.svg'),
  110. "activeIconUrl": sheep.$url.static('/static/firstIndex/shop-active.svg')
  111. }
  112. ]
  113. });
  114. // 数据
  115. const state = reactive({
  116. categoryId: 0,
  117. pagination: {
  118. list: [],
  119. current_page: 1,
  120. total: 1,
  121. last_page: 1,
  122. },
  123. loadStatus: ''
  124. });
  125. async function getArticleList(page = 1, list_rows = 5) {
  126. state.loadStatus = 'loading';
  127. let { code, data } = await ArticleApi.getArticleByCategory({pageNo: page,pageSize: list_rows,categoryId: state.categoryId});
  128. if (code !== 0) {
  129. return;
  130. }
  131. let articleList = _.concat(state.pagination.list, data.list);
  132. state.pagination.list = articleList
  133. state.pagination.total = data.total;
  134. state.pagination.last_page = Math.ceil(data.total / 5)
  135. if (state.pagination.current_page < state.pagination.last_page) {
  136. state.loadStatus = 'more';
  137. } else {
  138. state.loadStatus = 'noMore';
  139. }
  140. }
  141. // 加载更多
  142. function loadMore() {
  143. if (state.loadStatus !== 'noMore') {
  144. state.pagination.current_page += 1
  145. getArticleList(state.pagination.current_page);
  146. }
  147. }
  148. onLoad(async (option) => {
  149. if(option && option.categoryId){
  150. state.categoryId = option.categoryId
  151. }else{
  152. state.categoryId = props.categoryId
  153. }
  154. await getArticleList();
  155. });
  156. // 上拉加载更多
  157. onReachBottom(() => {
  158. loadMore();
  159. });
  160. // 下拉刷新
  161. onPullDownRefresh(() => {
  162. state.pagination.list = []
  163. state.pagination.current_page = 1
  164. state.pagination.total = 1
  165. state.pagination.last_page = 1
  166. getArticleList();
  167. setTimeout(function() {
  168. uni.stopPullDownRefresh();
  169. }, 800);
  170. });
  171. </script>
  172. <style scoped>
  173. .page-body {
  174. width: 100%;
  175. position: relative;
  176. z-index: 1;
  177. flex: 1;
  178. padding-top:40rpx;
  179. box-sizing:border-box;
  180. .article {
  181. padding:16rpx;
  182. height: 170rpx;
  183. position: relative;
  184. width: 90%;
  185. margin: 0 auto;
  186. color:#000;
  187. margin-bottom: 40rpx;
  188. background-repeat: no-repeat;
  189. background-size: 100%;
  190. background-position: center;
  191. background-color: #fff;
  192. overflow: hidden;
  193. .title {
  194. font-size: 34rpx;
  195. /* font-weight: bold; */
  196. margin-bottom: 8px;
  197. }
  198. .content {
  199. display: flex;
  200. flex-direction: row;
  201. }
  202. .image {
  203. width: 200rpx;
  204. height: 113rpx;
  205. margin-right: 16rpx;
  206. }
  207. .image-content {
  208. width: 100%;
  209. height: 100%;
  210. border-radius: 8rpx;
  211. }
  212. .desc {
  213. flex: 1;
  214. font-size: 28rpx;
  215. color: #333;
  216. line-height: 1.3;
  217. overflow: hidden;
  218. display: -webkit-box;
  219. -webkit-box-orient: vertical;
  220. -webkit-line-clamp: 3;
  221. text-overflow: ellipsis;
  222. }
  223. }
  224. .activity {
  225. height: 300rpx;
  226. position: relative;
  227. width: 90%;
  228. margin: 0 auto;
  229. color:#fff;
  230. margin-bottom: 40rpx;
  231. background-repeat: no-repeat;
  232. background-size: 100%;
  233. background-position: center;
  234. background-color: #fff;
  235. overflow: hidden;
  236. .activity-bottom{
  237. position: absolute;
  238. bottom: 0;
  239. left: 0;
  240. width: 100%;
  241. height: 50rpx;
  242. background: rgba(0,0,0,0.5);
  243. padding:10rpx;
  244. box-sizing: border-box;
  245. display: flex;
  246. align-items: center;
  247. justify-content: space-between;
  248. text{
  249. white-space: nowrap;
  250. overflow: hidden;
  251. text-overflow: ellipsis;
  252. };
  253. image{
  254. width: 20rpx;
  255. height: 20rpx;
  256. }
  257. }
  258. }
  259. }
  260. </style>