FirstList.vue 7.3 KB

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