FirstList.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. <!-- 商城宣传页,列表页 -->
  2. <template>
  3. <view class="page-body" style="background: #f6f6f6;">
  4. <view v-if="state.pagination.total > 0 && type == 'activityCard'">
  5. <view class="article ss-r-10" v-for="item in state.pagination.list" @click="sheep.$router.go('/pages/public/richtext', {title:item.title});">
  6. <view class="title" >
  7. {{item.title}}
  8. </view>
  9. <view class="content">
  10. <view class="image " v-if="item.picUrl.trim()">
  11. <image :src="item.picUrl" mode="aspectFit" class="image-content"></image>
  12. </view>
  13. <view class="desc" >
  14. {{item.introduction}}
  15. </view>
  16. </view>
  17. </view>
  18. </view>
  19. <view v-if="state.pagination.total > 0 && type == 'articleCard'">
  20. <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});">
  21. <view class="activity-bottom">
  22. <text>{{item.title}}</text>
  23. <view class=""><image src="@/static/firstIndex/youjiantou.png" mode="aspectFit" /></view>
  24. </view>
  25. </view>
  26. </view>
  27. <s-empty v-if="state.pagination.total === 0" icon="/static/data-empty.png" :text="t('common.no_data')" />
  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": "#ffffff",
  85. "color": "#3c3c3c",
  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.merchant'),
  102. // "url": "/pages/index/FirstMerchant",
  103. // "iconUrl": sheep.$url.static('/static/firstIndex/merchant.svg'),
  104. // "activeIconUrl": sheep.$url.static('/static/firstIndex/merchant-active.svg')
  105. // },
  106. {
  107. "text": t('common.videos'),
  108. "url": "/pages/index/FirstVideo",
  109. "iconUrl": sheep.$url.static('/static/firstIndex/video.svg'),
  110. "activeIconUrl": sheep.$url.static('/static/firstIndex/video-active.svg')
  111. },
  112. {
  113. "text": t('common.mall'),
  114. "url": "/pages/index/index",
  115. "iconUrl": sheep.$url.static('/static/firstIndex/shop.svg'),
  116. "activeIconUrl": sheep.$url.static('/static/firstIndex/shop-active.svg')
  117. }
  118. ]
  119. });
  120. // 数据
  121. const state = reactive({
  122. categoryId: 0,
  123. pagination: {
  124. list: [],
  125. current_page: 1,
  126. total: 1,
  127. last_page: 1,
  128. },
  129. loadStatus: ''
  130. });
  131. async function getArticleList(page = 1, list_rows = 5) {
  132. state.loadStatus = 'loading';
  133. let { code, data } = await ArticleApi.getArticleByCategory({pageNo: page,pageSize: list_rows,categoryId: state.categoryId});
  134. if (code !== 0) {
  135. return;
  136. }
  137. let articleList = _.concat(state.pagination.list, data.list);
  138. state.pagination.list = articleList
  139. state.pagination.total = data.total;
  140. state.pagination.last_page = Math.ceil(data.total / 5)
  141. if (state.pagination.current_page < state.pagination.last_page) {
  142. state.loadStatus = 'more';
  143. } else {
  144. state.loadStatus = 'noMore';
  145. }
  146. console.log(state.pagination.list,state.pagination.total)
  147. }
  148. // 加载更多
  149. function loadMore() {
  150. if (state.loadStatus !== 'noMore') {
  151. state.pagination.current_page += 1
  152. getArticleList(state.pagination.current_page);
  153. }
  154. }
  155. onLoad(async (option) => {
  156. if(option && option.categoryId){
  157. state.categoryId = option.categoryId
  158. }else{
  159. state.categoryId = props.categoryId
  160. }
  161. await getArticleList();
  162. });
  163. // 上拉加载更多
  164. onReachBottom(() => {
  165. loadMore();
  166. });
  167. // 下拉刷新
  168. onPullDownRefresh(() => {
  169. state.pagination.list = []
  170. state.pagination.current_page = 1
  171. state.pagination.total = 1
  172. state.pagination.last_page = 1
  173. getArticleList();
  174. setTimeout(function() {
  175. uni.stopPullDownRefresh();
  176. }, 800);
  177. });
  178. </script>
  179. <style scoped>
  180. .page-body {
  181. width: 100%;
  182. position: relative;
  183. z-index: 1;
  184. flex: 1;
  185. padding-top:40rpx;
  186. box-sizing:border-box;
  187. .article {
  188. padding:16rpx;
  189. height: 230rpx;
  190. position: relative;
  191. width: 90%;
  192. margin: 0 auto;
  193. color:#000;
  194. margin-bottom: 40rpx;
  195. background-repeat: no-repeat;
  196. background-size: 100%;
  197. background-position: center;
  198. background-color: #fff;
  199. overflow: hidden;
  200. .title {
  201. font-size: 34rpx;
  202. /* font-weight: bold; */
  203. margin-bottom: 8px;
  204. }
  205. .content {
  206. display: flex;
  207. flex-direction: row;
  208. }
  209. .image {
  210. width: 300rpx;
  211. height: 169rpx;
  212. margin-right: 16rpx;
  213. background-color: #999;
  214. }
  215. .image-content {
  216. width: 100%;
  217. height: 100%;
  218. border-radius: 8rpx;
  219. }
  220. .desc {
  221. flex: 1;
  222. font-size: 32rpx;
  223. color: #333;
  224. line-height: 1.6;
  225. padding-top: 10rpx;
  226. overflow: hidden;
  227. display: -webkit-box;
  228. -webkit-box-orient: vertical;
  229. -webkit-line-clamp: 3;
  230. text-overflow: ellipsis;
  231. }
  232. }
  233. .activity {
  234. height: 300rpx;
  235. position: relative;
  236. width: 90%;
  237. margin: 0 auto;
  238. color:#fff;
  239. margin-bottom: 40rpx;
  240. background-repeat: no-repeat;
  241. background-size: 100%;
  242. background-position: center;
  243. background-color: #fff;
  244. overflow: hidden;
  245. .activity-bottom{
  246. position: absolute;
  247. bottom: 0;
  248. left: 0;
  249. width: 100%;
  250. height: 50rpx;
  251. background: rgba(0,0,0,0.5);
  252. padding:10rpx;
  253. box-sizing: border-box;
  254. display: flex;
  255. align-items: center;
  256. justify-content: space-between;
  257. text{
  258. white-space: nowrap;
  259. overflow: hidden;
  260. text-overflow: ellipsis;
  261. };
  262. image{
  263. width: 20rpx;
  264. height: 20rpx;
  265. }
  266. }
  267. }
  268. }
  269. </style>