FirstList.vue 7.0 KB

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