123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395 |
- <template>
- <view class="u-p-l-20 u-p-r-20">
- <u-navbar :border-bottom="false" :is-back="false">
- <view class="main-flex">
- <view class="u-p-l-20" @click="notice">
- <u-icon color="#666" name="chat" size="50"></u-icon>
- </view>
- <!-- #ifdef H5-->
- <u-search v-model="keyword" :clearabled="true" :disabled="true" :show-action="false"
- class="u-p-l-20" input-align="left"
- placeholder="输入搜索关键字" style="width: 660rpx" @click="search"></u-search>
- <!-- #endif -->
- <!-- #ifdef MP-->
- <u-search v-model="keyword" :clearabled="true" :disabled="true" :show-action="false"
- class="u-p-l-20" input-align="left"
- placeholder="输入搜索关键字" style="width: 420rpx" @click="search"></u-search>
- <!-- #endif -->
- </view>
- </u-navbar>
- <view>
- <u-swiper :interval="5000" :list="swiperList" bg-color="#fff" effect3d effect3d-previous-margin="30" height="300"
- mode="rect"></u-swiper>
- </view>
- <view>
- <view class="rowClass">
- <u-row justify="center">
- <u-col v-for="(item,index) in navList" :key="index" span="3" text-align="center">
- <view class="u-padding-top-20" @tap="clickNav">
- <image :src="item.src" class="main-icon" mode="widthFix"></image>
- <view class="tabName">{{ item.name }}</view>
- </view>
- </u-col>
- </u-row>
- </view>
- <u-gap height="10"></u-gap>
- <view class="firstCate">
- <image :src="advertImg" mode="widthFix" style="width: 700rpx;"></image>
- </view>
- <u-gap height="15"></u-gap>
- <view v-show="!loading" class="hotCate">
- <view class="left">
- <image :src="hotImg" mode="widthFix" style="width: 100rpx;max-width: 100rpx;"></image>
- <view class="text">
- <view class="title">热门推荐</view>
- <view class="desc">Popular Recommendation</view>
- </view>
- </view>
- <view class="right">
- <u-icon color="#ddd" name="arrow-right" size="40"></u-icon>
- </view>
- </view>
- <u-gap height="20"></u-gap>
- <u-waterfall ref="uWaterfall" v-model="flowList">
- <template v-slot:left="{leftList}">
- <view v-for="(item, index) in leftList" :key="index" class="demo-warter">
- <u-lazy-load :image="item.image" :index="index" border-radius="12" threshold="750"
- @click="clickImage(item.id)"></u-lazy-load>
- <view class="item-title">{{ item.goodsName }}</view>
- <view class="item-bottom">
- <view class="item-price">
- <view class="new-price">¥{{ item.newPrice }}</view>
- <view class="old-price">¥{{ item.oldPrice }}</view>
- </view>
- <view class="right">
- 免邮费
- </view>
- </view>
- </view>
- </template>
- <template v-slot:right="{rightList}">
- <view v-for="(item, index) in rightList" :key="index" class="demo-warter">
- <u-lazy-load :image="item.image" :index="index" border-radius="10" threshold="750"
- @click="clickImage(item.id)"></u-lazy-load>
- <view class="item-title">{{ item.goodsName }}</view>
- <view class="item-bottom">
- <view class="item-price">
- <view class="new-price">¥{{ item.newPrice }}</view>
- <view class="old-price">¥{{ item.oldPrice }}</view>
- </view>
- <view class="right">
- 免邮费
- </view>
- </view>
- </view>
- </template>
- </u-waterfall>
- </view>
- <u-loadmore v-show="!loading" :status="loadStatus" bg-color="rgb(250, 250, 250)" style="padding:10rpx 0;"
- @loadmore="findGoodsList"></u-loadmore>
- <u-back-top :scroll-top="scrollTop" top="5000"></u-back-top>
- <u-no-network></u-no-network>
- </view>
- </template>
- <script>
- import config from "@/common/config.js" // 全局配置文件
- export default {
- data() {
- return {
- keyword: '',
- loading: true,
- pageNum: 1,
- pageSize: 20,
- scrollTop: 0,
- swiperList: [],
- navList: [],
- advertImg: null,
- hotImg: null,
- loadStatus: 'loadmore',
- flowList: [],
- uvCode: uni.getStorageSync('uvCode')
- }
- },
- onLoad() {
- // 移除tab badge
- uni.removeTabBarBadge({
- index: 2
- })
- // 获取数据
- this.findMallIndexList();
- },
- onShow() {
- // 流量统计
- this.appSysFlowInfo()
- },
- onPageScroll(e) {
- this.scrollTop = e.scrollTop;
- },
- onReachBottom() {
- this.loadStatus = 'loading';
- // 获取数据
- this.findGoodsList()
- },
- // 下拉刷新
- onPullDownRefresh() {
- // 获取数据
- this.pageNum = 1
- this.flowList = []
- this.$refs.uWaterfall.clear();
- this.findGoodsList();
- // 关闭刷新
- uni.stopPullDownRefresh();
- },
- methods: {
- search() {
- this.$u.route({
- url: 'pages/search/search',
- })
- },
- notice() {
- this.$u.route({
- url: 'pages/notice/notice'
- })
- },
- findMallIndexList() {
- this.loading = true
- let url = "/api/mallApi/findMallIndexList";
- this.$u.get(url, {
- pageNum: this.pageNum,
- pageSize: this.pageSize,
- orderByColumn: 'create_time',
- isAsc: 'desc'
- }).then(result => {
- const data = result.data;
- // 轮播
- const advertList = data.advertList;
- for (let i = 0; i < advertList.length; i++) {
- let item = advertList[i]
- if (item.advertType === 0) {
- item.title = item.advertName
- item.image = config.staticUrl + item.advertUrl
- this.swiperList.push(item);
- }
- if (item.advertType === 1) {
- this.advertImg = config.staticUrl + item.advertUrl
- }
- if (item.advertType === 2) {
- this.hotImg = config.staticUrl + item.advertUrl
- }
- }
- // 导航栏
- const navigateList = data.navigateList;
- for (let i = 0; i < navigateList.length; i++) {
- let item = navigateList[i]
- item.name = item.navigateName
- item.src = config.staticUrl + item.navigateUrl
- this.navList.push(item);
- }
- // 商品数据
- const goodsList = data.goodsList;
- if (this.pageNum > 1 && goodsList.length < this.pageSize) {
- return this.loadStatus = 'nomore';
- }
- for (let i = 0; i < goodsList.length; i++) {
- let item = goodsList[i]
- item.image = config.staticUrl + item.goodsFaceUrl
- this.flowList.push(item);
- }
- ++this.pageNum
- this.loadStatus = 'loadmore';
- this.loading = false
- });
- },
- findGoodsList() {
- let url = "/api/mallApi/findGoodsList";
- this.$u.get(url, {
- pageNum: this.pageNum,
- pageSize: this.pageSize,
- orderByColumn: 'create_time',
- isAsc: 'desc'
- }).then(result => {
- // 商品数据
- const goodsList = result.rows;
- if (this.pageNum > 1 && goodsList.length < this.pageSize) {
- return this.loadStatus = 'nomore';
- }
- for (let i = 0; i < goodsList.length; i++) {
- // 先转成字符串再转成对象,避免数组对象引用导致数据混乱
- let item = goodsList[i]
- item.image = config.staticUrl + item.goodsFaceUrl
- this.flowList.push(item);
- }
- ++this.pageNum
- this.loadStatus = 'loadmore';
- });
- },
- clickSearch() {
- this.$u.route('/pages/search/search');
- },
- clickImage(goodsId) {
- this.$u.route({
- url: '/pages/detail/detail',
- params: {
- goodsId: goodsId
- }
- })
- },
- clickNav() {
- this.$u.route('/pages/search/searchList');
- },
- code() {
- this.$mytip.toast('请咨询作者')
- },
- appSysFlowInfo() {
- // 流量统计
- let uvCode = uni.getStorageSync("uvCode");
- let url = "https://sourcebyte.cn/api/flow/upFlow?type=APP&uvCode=" + uvCode;
- uni.request({
- url: url,
- method: "POST",
- success: (res) => {
- uni.setStorageSync("uvCode", res.data.data);
- },
- });
- },
- server() {
- window.open('https://sourcebyte.cn')
- },
- notice() {
- this.$u.route('/pages/notice/notice');
- },
- }
- }
- </script>
- <style>
- page {
- background-color: #fff;
- }
- </style>
- <style lang="scss" scoped>
- .nomore {
- background-color: $u-bg-color;
- }
- .search {
- width: 54px;
- height: 44px;
- &:active {
- background-color: $u-bg-color;
- }
- }
- .rowClass {
- margin-top: 10 rpx;
- }
- .firstCate {
- text-align: center;
- }
- .hotCate {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding-left: 10 rpx;
- .left {
- display: flex;
- align-items: center;
- .text {
- padding-left: 10 rpx;
- .title {
- font-size: 32 rpx;
- color: $u-main-color;
- font-weight: 800;
- }
- .desc {
- font-weight: normal;
- font-size: 22 rpx;
- color: $u-tips-color;
- }
- }
- }
- .right {
- padding-right: 10 rpx;
- }
- }
- .tabName {
- font-size: 22 rpx;
- color: $u-main-color;
- }
- .demo-warter {
- border-radius: 8px;
- margin-top: 3px;
- background-color: $u-bg-color;
- padding: 3px;
- position: relative;
- box-shadow: 4 rpx 0 10 rpx rgba(0, 0, 0, .06);
- }
- .item-title {
- font-size: 28 rpx;
- color: $u-main-color;
- font-weight: bold;
- padding-top: 10 rpx;
- padding-left: 10 rpx;
- background-color: #fff;
- }
- .item-bottom {
- background-color: #fff;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .item-price {
- display: flex;
- align-items: center;
- width: 220 rpx;
- max-width: 220 rpx;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- .new-price {
- font-weight: normal;
- font-size: 16px;
- color: $base-color;
- padding: 5px 0 5px 2px;
- }
- .old-price {
- font-weight: normal;
- font-size: 13px;
- text-decoration: line-through;
- color: $u-tips-color;
- padding: 5px 0 5px 5px;
- }
- }
- .right {
- color: #fff;
- background-image: linear-gradient(to left, rgba(#ff536f, 1), rgba(#ff536f, 0.6));
- padding: 2 rpx 12 rpx;
- border-radius: 30 rpx;
- margin-right: 5 rpx;
- }
- }
- .item-desc {
- font-weight: normal;
- font-size: 26 rpx;
- color: $u-tips-color;
- padding-bottom: 5 rpx;
- padding-left: 10 rpx;
- background-color: #fff;
- }
- </style>
|