123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434 |
- <template>
- <view class="content">
- <view class="back">
- <view class="sticky">
- <van-search class='top-search' shape="round" background="#fff" placeholder="请输入搜索关键词" @search="onSearch" @change='onSearchChange' />
- <view class="grid">
- <view class="grid-item" :class="{border:listType==0}" @click="listType=0">
- <van-icon name="/static/imgs/jx.png" size="30px" />
- <text class="text">精选</text>
- </view>
- <view class="grid-item" :class="{border:listType==item.id}" @click="listType=item.id" v-for="(item,index) in typeList"
- :key='index'>
- <van-icon :name="item.fileUrl || '/static/imgs/wxtb.png'" size="30px" />
- <text class="text">{{item.productName}}</text>
- </view>
- <view class="grid-item" :class="{border:listType==5}" @click="moreShow=!moreShow,typeMore()">
- <van-icon v-if='moreShow' name="/static/imgs/sq.png" size="30px" />
- <van-icon v-else name="/static/imgs/gd.png" size="30px" />
- <text class="text">{{moreShow?'收起':'更多'}}</text>
- </view>
- </view>
- </view>
- <loadSke :loading='loading' :list='applist'>
- <view class='list-item' v-for="(item, index) in applist" :key="index" @click="clickJumpType(item)">
- <image class="avatar" mode="aspectFit" :src="item.appletLogoFileUrl || '/static/imgs/shmr.png'" />
- <view class="top">
- <van-icon class="icon" v-if="item.collectionStatus=='0'" @tap.stop='addSc(index)' name="star-o" color='#999999'/>
- <van-icon class="icon" v-else @tap.stop='delSc(index)' name="star" color='#dfdf00'/>
- <van-icon class="icon" name="ellipsis" size='20' color='#999999' @tap.stop='showShare=true' />
- </view>
- <view class="item-right">
- <view class="bottom">
- <text class="title">{{item.corporateName}}</text>
- <text class="type">{{itemType(item)}}</text>
- <view class="right" v-if="false">
- <view class="flex">
- <van-icon class="icon" name="/static/imgs/评论.png" size='15' />
- <text>54</text>
- </view>
- <view class="flex">
- <van-icon class="icon" name="/static/imgs/好评率.png" size='15' />
- <text>99%</text>
- </view>
- </view>
- </view>
- <view class="center" v-if="item.appletIntroduce">
- <text class="details">{{item.appletIntroduce || `Appid: ${item.appletAddress}`}}</text>
- </view>
- </view>
- </view>
- <view class="ad-box list-item">
- <ad unit-id="adunit-d8c1548cc9663765"></ad>
- </view>
- <view class="ad-box list-item">
- <ad-custom unit-id="adunit-66504f2e91ee7be4"></ad-custom>
- </view>
- </loadSke>
- </view>
- <van-share-sheet :show="showShare" :options="options" @select="onSelect" @close='shareClose' />
- </view>
- </template>
- <script>
- import {
- debounce
- } from '@/utils/utils.js'
- import {
- typeList,
- getTypeAppList,
- addFavorites,
- delFavorites,
- BrowseRecordAdd,
- getCarouselChartList
- } from '@/api/applist.js'
- export default {
- data() {
- return {
- comname: 'xueche',
- active: 0,
- tabActive: 0,
- info: [{
- "id": 12,
- "pictureName": "山泉心品",
- "fileId": "77",
- "fileUrl": "http://image.jppt.com.cn/zzjs/2021-04-09/others/1617954376809.jpg",
- "jumpUrl": "{\"appId\":\"wxb47185e82704dda8\"}",
- "jumpUrlType": "goMiniApp",
- "status": 0
- }],
- current: 0,
- mode: 'round',
- applist: [],
- typeList: {},
- listType: 0,
- loading: true,
- showShare: false,
- moreShow: false,
- options: [{
- name: '微信',
- icon: 'wechat',
- openType: 'share'
- }],
- pageNum: 1,
- pageSize: 10,
- total: 1,
- customerName: ''
- }
- },
- mounted() {
- this.initAppList()
- },
- watch: {
- listType(val) {
- this.customerName = ''
- this.pageNum = 1
- this.loading = true
- getTypeAppList(val, {
- pageNum: this.pageNum,
- pageSize: this.pageSize
- }).then(res => {
- this.applist = res.rows
- this.total = res.total
- this.$nextTick(() => {
- this.loading = false
- })
- })
- }
- },
- methods: {
- itemType(item) {
- if (item.jumpUrlType == 'goMiniApp') {
- return '小程序'
- }
- if (item.jumpUrlType == 'goPage') {
- return '子页面'
- }
- if (item.jumpUrlType == 'goWebView') {
- return 'WEB'
- }
- },
- onSearchChange(e) {
- this.customerName = e.detail
- },
- onSearch(e) {
- this.pageNum = 1
- this.loading = true
- getTypeAppList(this.listType, {
- pageNum: this.pageNum,
- pageSize: this.pageSize,
- customerName: e.detail
- }).then(res => {
- this.applist = res.rows
- this.total = res.total
- this.$nextTick(() => {
- this.loading = false
- })
- })
- },
- initAppList() {
- typeList({
- pid: 0
- }).then(res => {
- this.typeList = res.rows.slice(0, 8)
- })
- getTypeAppList(0, {
- pageNum: 1,
- pageSize: 10
- }).then(res => {
- this.applist = res.rows
- this.total = res.total
- this.$nextTick(() => {
- this.loading = false
- })
- })
- },
- onBottom() {
- if (this.total - this.pageNum * this.pageSize <= 0) {
- return
- }
- this.pageNum++
- getTypeAppList(this.listType, {
- pageNum: this.pageNum,
- pageSize: this.pageSize,
- customerName: this.customerName
- }).then(res => {
- this.applist = this.applist.concat(res.rows)
- })
- },
- typeMore() {
- if (this.moreShow) {
- typeList({
- pid: 0
- }).then(res => {
- this.typeList = res.rows
- })
- } else {
- this.typeList = this.typeList.slice(0, 8)
- }
- },
- addSc(index) {
- addFavorites(this.applist[index].id).then(res => {
- if (res.code == 200) {
- this.$set(this.applist[index], 'collectionStatus', '1')
- this.Toast('收藏成功!');
- }
- })
- },
- delSc(index) {
- delFavorites(this.applist[index].id).then(res => {
- if (res.code == 200) {
- this.$set(this.applist[index], 'collectionStatus', '0')
- this.Toast('取消收藏成功!');
- }
- })
- },
- shareClose() {
- this.showShare = false;
- },
- onSelect(event) {
- this.Toast(event.detail.name);
- this.onClose();
- },
- getAppList() {
- featuredAppList({
- pageNum: 1,
- pageSize: 10
- }).then(res => {
- console.log(res)
- this.applist = res.rows
- this.$nextTick(() => {
- this.loading = false
- })
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .ad-box {
- margin: 40rpx;
- box-sizing: border-box;
- display: flex;
- justify-content: center !important;
- align-items: center;
- }
- .content {
- padding-bottom: 1rpx;
- }
- .swiper-box {
- width: 100vw;
- height: 56.25vw;
- .image {
- width: 100%;
- height: 100%;
- }
- }
- .sticky {
- position: sticky;
- top: 0rpx;
- left: 0;
- background-color: #fff;
- z-index: 9;
- margin-bottom: 20rpx;
- .grid {
- display: flex;
- flex-wrap: wrap;
- justify-content: flex-start;
- overflow: auto;
- .grid-item {
- flex-shrink: 0;
- width: 20%;
- height: 130rpx;
- display: flex;
- justify-content: center;
- flex-direction: column;
- align-items: center;
- text-align: center;
- font-size: 34rpx;
- padding: 10rpx;
- box-sizing: border-box;
- position: relative;
- .text {
- font-size: .8em;
- margin-top: 5rpx;
- color: #999999;
- font-weight: 400;
- }
- }
- .border::after {
- content: '';
- position: absolute;
- bottom: 5rpx;
- width: 30rpx;
- height: 5rpx;
- background-color: red;
- }
- }
- }
- .list-item {
- display: flex;
- align-items: center;
- justify-content: space-between;
- background-color: #FFFFFF;
- padding: 20rpx;
- margin: 2rpx 0rpx;
- position: relative;
-
- .avatar {
- flex-shrink: 0;
- width: 100rpx;
- height: 100rpx;
- border-radius: 50%;
- border: 1px solid #1989FA;
- margin-right: 16rpx;
- }
-
- .top {
- display: flex;
- justify-content: flex-end;
- position: absolute;
- top: 10rpx;
- right: 0;
-
- .icon {
- margin-top: -20rpx;
- padding: 20rpx;
- }
- }
-
- .item-right {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- // height: 200rpx;
-
- .center {
- align-self: flex-start;
- .details {
- width: 436rpx;
- // height: 70rpx;
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: #999999;
- display: -webkit-box;
- margin-bottom: 20rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- word-wrap: break-word;
- white-space: normal !important;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- }
- .bottom {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- margin: 20rpx 0;
- .title {
- max-width: 300rpx;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- word-break: break-all;
- font-family: PingFang SC;
- font-weight: 400;
- }
- .type {
- margin-left: 10rpx;
- padding: 3rpx 12rpx;
- height: 30rpx;
- border: 2rpx solid #999999;
- border-radius: 20rpx;
- font-size: 20rpx;
- color: #999999;
- line-height: 20rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .right {
- width: 170rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 22rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: #999999;
- line-height: 35rpx;
- .flex {
- display: flex;
- justify-content: center;
- .icon {
- margin-right: 5rpx;
- }
- }
- }
- }
- }
- }
- </style>
|