FirstList.vue 7.0 KB

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