Merge branch 'develop' of https://gitee.com/qinxingxing/alpha-shopping into develop
@@ -0,0 +1,150 @@
|
|||||||
|
<template>
|
||||||
|
<view class="header" :style="{backgroundColor:bgColor,height:height,borderBottomWidth:borderWidth}">
|
||||||
|
<view class="header-left">
|
||||||
|
<view class="header-left" v-if="isBack" @click="goback">
|
||||||
|
<u-icon :size="fontSize" name="arrow-left" :color="color"></u-icon>
|
||||||
|
</view>
|
||||||
|
<slot name="left" v-else>
|
||||||
|
</slot>
|
||||||
|
</view>
|
||||||
|
<view class="header-mid">
|
||||||
|
<slot name="mid" v-if="isMid">
|
||||||
|
|
||||||
|
</slot>
|
||||||
|
<text v-else :style="{fontSize:fontSize,fontWeight:fontWeight,color:color}">{{title}}</text>
|
||||||
|
</view>
|
||||||
|
<view class="header-right">
|
||||||
|
<slot name="right">
|
||||||
|
|
||||||
|
</slot>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
/**
|
||||||
|
* 共用头部
|
||||||
|
* title:中间标题 默认空
|
||||||
|
* bgColor:背景色 默认#fff
|
||||||
|
* height:高度 默认88rpx
|
||||||
|
* isBack:是否打开左方返回 默认打开
|
||||||
|
* borderWidth:下划线 默认无
|
||||||
|
* fontSize:返回箭头 中间字体大小 默认30rpx
|
||||||
|
* fontWeight:中间字体字重 默认加粗
|
||||||
|
* color:返回箭头 中间字体颜色 默认#333
|
||||||
|
* slot->left:左边插槽 开启后要将isBack传false
|
||||||
|
* slot->right:右边插槽
|
||||||
|
* isReturn 抛出返回方法
|
||||||
|
*/
|
||||||
|
export default {
|
||||||
|
props:{
|
||||||
|
black:{
|
||||||
|
type:Boolean,
|
||||||
|
default:false
|
||||||
|
},
|
||||||
|
isMid:{
|
||||||
|
type:Boolean,
|
||||||
|
default:false
|
||||||
|
},
|
||||||
|
title:{
|
||||||
|
type:String,
|
||||||
|
default:''
|
||||||
|
},
|
||||||
|
bgColor:{
|
||||||
|
type:String,
|
||||||
|
default:'#fff'
|
||||||
|
},
|
||||||
|
height:{
|
||||||
|
type:String,
|
||||||
|
default:'88rpx'
|
||||||
|
},
|
||||||
|
isBack:{
|
||||||
|
type:Boolean,
|
||||||
|
default:true
|
||||||
|
},
|
||||||
|
borderWidth:{
|
||||||
|
type:String,
|
||||||
|
default:'0'
|
||||||
|
},
|
||||||
|
fontSize:{
|
||||||
|
type:String,
|
||||||
|
default:'36rpx'
|
||||||
|
},
|
||||||
|
fontWeight:{
|
||||||
|
type:String,
|
||||||
|
default:'bold'
|
||||||
|
},
|
||||||
|
color:{
|
||||||
|
type:String,
|
||||||
|
default:'#333'
|
||||||
|
},
|
||||||
|
isReturn:{
|
||||||
|
type:Boolean,
|
||||||
|
default:false
|
||||||
|
}
|
||||||
|
|
||||||
|
},
|
||||||
|
mounted(){
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
goback(){
|
||||||
|
if(this.isReturn){
|
||||||
|
this.$emit('return');
|
||||||
|
}else{
|
||||||
|
console.log('2312313')
|
||||||
|
uni.navigateBack()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.header{
|
||||||
|
width:100vw;
|
||||||
|
height:88rpx;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
border-bottom-style: solid;
|
||||||
|
font-weight: bold;
|
||||||
|
padding: 0 30rpx;
|
||||||
|
font-size: 30rpx;
|
||||||
|
background-color: transparent;
|
||||||
|
box-sizing: border-box;
|
||||||
|
.header-left{
|
||||||
|
width:48rpx;
|
||||||
|
height: 48rpx;
|
||||||
|
display: flex;
|
||||||
|
background: rgba(0,0,0,0.2);
|
||||||
|
border-radius: 8rpx;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
position: relative;
|
||||||
|
.left-img{
|
||||||
|
width:18rpx;
|
||||||
|
height:30rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.header-right{
|
||||||
|
min-width:240rpx;
|
||||||
|
height:56rpx;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: flex-end;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.header-mid{
|
||||||
|
color: #fff;
|
||||||
|
flex:1;
|
||||||
|
height:100%;
|
||||||
|
margin-left: 32rpx;
|
||||||
|
font-size: 36rpx;
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-start;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
@@ -1,70 +1,89 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="shop-view" @click.stop="onClick">
|
<view class="ping-item" @click.stop="onClick">
|
||||||
<image :src="obj.url" class="top-img"></image>
|
<image
|
||||||
<view class="shop-bottom-panel">
|
class="top-img"
|
||||||
<text class="text-30 text-zu text-overflow" style="padding-top:8rpx">{{obj.title}}</text>
|
:src="obj.url"
|
||||||
<view class="flex-r-lr" style="width:100%;margin-top:10rpx">
|
mode="widthFix"
|
||||||
<text class="text-28 text-zi text-bold">¥{{obj.price}}</text>
|
lazy-load
|
||||||
<text class="text-24 " style="color:#999">已售{{obj.sales}}件</text>
|
/>
|
||||||
</view>
|
<view class="shop-bottom-panel">
|
||||||
</view>
|
<text class="title text-30 text-zu text-overflow">
|
||||||
</view>
|
{{ obj.title }}
|
||||||
|
</text>
|
||||||
|
<view class="flex-r-lr price-line">
|
||||||
|
<text class="text-28 text-zi text-bold">¥{{ obj.price }}</text>
|
||||||
|
<text class="text-24 sold">已售{{ obj.sales }}件</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import MyBtn from '@/components/common/my-btn.vue'
|
export default {
|
||||||
export default {
|
name: 'PingItem',
|
||||||
components:{MyBtn},
|
props: {
|
||||||
props:{
|
obj: {
|
||||||
obj:{
|
type: Object,
|
||||||
type:Object,
|
default: () => ({})
|
||||||
default:()=>{}
|
}
|
||||||
},
|
},
|
||||||
},
|
methods: {
|
||||||
mounted(){
|
onClick() {
|
||||||
},
|
this.$emit('ok', this.obj.id);
|
||||||
methods: {
|
}
|
||||||
onClick(){
|
}
|
||||||
this.$emit('ok',this.obj.id);
|
};
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.shop-view{
|
.ping-item {
|
||||||
width:332rpx;
|
width: 332rpx;
|
||||||
height:416rpx;
|
background: #fff;
|
||||||
min-height:416rpx;
|
border-radius: 12rpx;
|
||||||
border-radius: 12rpx;
|
overflow: hidden;
|
||||||
display: flex;
|
margin-bottom: 0; /* 瀑布流父层控制间距,这里清零 */
|
||||||
flex-direction: column;
|
}
|
||||||
align-items: center;
|
|
||||||
justify-content: space-between;
|
.top-img {
|
||||||
box-sizing: border-box;
|
width: 332rpx;
|
||||||
background-color: #fff;
|
display: block;
|
||||||
.top-img{
|
border-radius: 12rpx 12rpx 0 0;
|
||||||
width:332rpx;
|
}
|
||||||
// height:268rpx;
|
|
||||||
display: flex;
|
.shop-bottom-panel {
|
||||||
border-radius: 12rpx;
|
padding: 12rpx 16rpx 16rpx;
|
||||||
}
|
}
|
||||||
.shop-bottom-panel{
|
|
||||||
width:100%;
|
.title {
|
||||||
height:calc(100% - 268rpx);
|
line-height: 40rpx;
|
||||||
padding: 0 12rpx;
|
max-width: 300rpx;
|
||||||
box-sizing: border-box;
|
}
|
||||||
flex-direction: column;
|
|
||||||
justify-content: space-between;
|
.price-line {
|
||||||
display: flex;
|
margin-top: 10rpx;
|
||||||
|
}
|
||||||
}
|
|
||||||
|
.sold {
|
||||||
}
|
color: #999;
|
||||||
.text-overflow {
|
}
|
||||||
display: inline-block;
|
|
||||||
overflow: hidden;
|
/* 通用工具类(如已全局引入可删除) */
|
||||||
text-overflow: ellipsis;
|
.text-overflow {
|
||||||
white-space: nowrap;
|
display: block;
|
||||||
}
|
width: 100%;
|
||||||
</style>
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
.text-30 { font-size: 30rpx; }
|
||||||
|
.text-28 { font-size: 28rpx; }
|
||||||
|
.text-24 { font-size: 24rpx; }
|
||||||
|
.text-zu { color: #333; }
|
||||||
|
.text-zi { color: #7A35F6; }
|
||||||
|
.text-bold { font-weight: bold; }
|
||||||
|
.flex-r-lr {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -4,24 +4,18 @@
|
|||||||
<image :src="obj.url"></image>
|
<image :src="obj.url"></image>
|
||||||
</view>
|
</view>
|
||||||
<view class="shop-right-view">
|
<view class="shop-right-view">
|
||||||
|
<view class="shop-top-img">
|
||||||
|
<image src="/static/home/xyx.png" style="width: 122rpx;height: 28rpx;margin-right: 12rpx;"></image>
|
||||||
|
<image src="/static/home/xs.png" v-if="obj.limitedTime " style="width: 52rpx;height: 28rpx;margin-right: 12rpx;"></image>
|
||||||
|
<image src="/static/home/tg.png" v-if="obj.tag" style="width: 80rpx;height: 28rpx;"></image>
|
||||||
|
</view>
|
||||||
<view class="right-top-view text-overflow1">
|
<view class="right-top-view text-overflow1">
|
||||||
<text class="text-32 text-bold text-zu text-overflow1">{{obj.title}}</text>
|
<text class="text-32 text-bold text-zu text-overflow1">{{obj.title}}</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="right-bottom-view">
|
<view class="shop-price" @ok.stop="onClick" >
|
||||||
<view class="flex-c-lr" >
|
<view class="price-left"><text style="font-size: 24rpx;">¥</text>{{obj.price}}</view>
|
||||||
<view class="text-24" style="color:#FF5A5A;width: 112rpx;height: 32rpx; margin-right: 3rpx;" v-if="obj.tag">
|
<view class="price-center">专区立省{{ Number(obj.adPrice) - Number(obj.price) }}元</view>
|
||||||
<image src="/static/shopping/tg.png" style="width: 112rpx;height: 32rpx;"></image>
|
<image src="/static/home/qiang.png" style="width: 80rpx;height: 80rpx;"></image>
|
||||||
</view>
|
|
||||||
<image v-if="obj.id === 33162" src="/static/shopping/tp.png" alt="" style="width: 60rpx;height: 32rpx; margin-top: 2rpx;"></image>
|
|
||||||
<text class="text-24 text-fu">原价</text>
|
|
||||||
<text class="text-24 text-fu text-d text-bold">¥{{obj.adPrice}}</text>
|
|
||||||
</view>
|
|
||||||
<view class="right-bottom-panel" style="height:70rpx">
|
|
||||||
<MyBtn @ok.stop="onClick" mh="36rpx" :text="`专区立省${Number(obj.adPrice) - Number(obj.price)}元`" br="8rpx" fz="16rpx" bg="linear-gradient( 270deg, #AF39C4 0%, #7732FF 100%)" wd="260rpx"></MyBtn>
|
|
||||||
<text class="text-28 text-zi text-bold">到手
|
|
||||||
<text class="text-36">¥{{obj.price}}</text>
|
|
||||||
</text>
|
|
||||||
</view>
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@@ -54,10 +48,10 @@
|
|||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
padding: 12rpx;
|
padding: 20rpx;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
border-radius: 12rpx;
|
border-radius: 16rpx;
|
||||||
.shop-left-view{
|
.shop-left-view{
|
||||||
min-width:216rpx;
|
min-width:216rpx;
|
||||||
min-height:216rpx;
|
min-height:216rpx;
|
||||||
@@ -65,8 +59,9 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
image{
|
image{
|
||||||
width:216rpx;
|
width:220rpx;
|
||||||
height:216rpx;
|
height:220rpx;
|
||||||
|
border-radius: 8rpx;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.shop-right-view{
|
.shop-right-view{
|
||||||
@@ -75,30 +70,37 @@
|
|||||||
min-height:216rpx;
|
min-height:216rpx;
|
||||||
margin-left:24rpx;
|
margin-left:24rpx;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: space-between;
|
justify-content: space-around;
|
||||||
|
.shop-top-img{
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: flex-start;
|
||||||
|
image{
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
.right-top-view{
|
.right-top-view{
|
||||||
width:100%;
|
width:100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
}
|
}
|
||||||
.right-bottom-view{
|
.shop-price{
|
||||||
width:100%;
|
background: linear-gradient( 270deg, #F0E7FE 0%, rgba(240,231,254,0) 100%);
|
||||||
|
width: 100%;
|
||||||
|
height: 80rpx;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: flex-end;
|
align-items: center;
|
||||||
.right-bottom-panel{
|
.price-left{
|
||||||
width:284rpx;
|
font-weight: bold;
|
||||||
height:104rpx;
|
font-size: 28rpx;
|
||||||
min-height:104rpx;
|
color: #7934F6;
|
||||||
display: flex;
|
}
|
||||||
flex-direction: column;
|
.price-center{
|
||||||
justify-content: space-between;
|
font-size: 20rpx;
|
||||||
align-items: center;
|
color: #7934F6;
|
||||||
padding: 12rpx;
|
|
||||||
box-sizing: border-box;
|
|
||||||
background-color: #F0E7FE;
|
|
||||||
border-radius: 8rpx;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,170 @@
|
|||||||
|
<template>
|
||||||
|
<view class="content">
|
||||||
|
<TopSafe></TopSafe>
|
||||||
|
<Header title="兑换券专区" >
|
||||||
|
<!-- #ifndef MP-WEIXIN -->
|
||||||
|
<template v-slot:right>
|
||||||
|
<u-icon name="share-fill" @click="onShare" color="#333" size="24"></u-icon>
|
||||||
|
</template>
|
||||||
|
<!-- #endif -->
|
||||||
|
</Header>
|
||||||
|
<view class="swiper-view">
|
||||||
|
<up-swiper
|
||||||
|
:list="swiperList"
|
||||||
|
style="width:100%"
|
||||||
|
circular
|
||||||
|
></up-swiper>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view class="mid-panel">
|
||||||
|
<up-image src="/static/common/jingxuan_left.png" width="24" height="8" bgColor="#f1f6ff00"></up-image>
|
||||||
|
<view style="margin:0 12rpx">信任桥兑换</view>
|
||||||
|
<up-image src="/static/common/jingxuan_right.png" width="24" height="8" bgColor="#f1f6ff00"></up-image>
|
||||||
|
</view>
|
||||||
|
<view class="setting-view">
|
||||||
|
<FenItem @ok="onJumpShop" style="margin-top:24rpx" :obj="item" v-for="(item,index) in dataList" :key="index"></FenItem>
|
||||||
|
</view>
|
||||||
|
<up-toast ref="uToastRef"></up-toast>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Header from '@/components/common/header.vue';
|
||||||
|
import TopSafe from '@/components/common/top-safe.nvue'
|
||||||
|
import MyBtn from '@/components/common/my-btn.vue'
|
||||||
|
import FenItem from '@/components/shop/fen-item.vue'
|
||||||
|
import { searchList } from '@/api/product.js';
|
||||||
|
import { getCarouselImage } from '@/api/common.js';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: { Header, TopSafe,MyBtn,FenItem },
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
dataList:[],
|
||||||
|
swiperList: ['https://cdn.uviewui.com/uview/swiper/swiper1.png'],
|
||||||
|
};
|
||||||
|
},
|
||||||
|
onShow() {
|
||||||
|
},
|
||||||
|
onLoad() {
|
||||||
|
this.init();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
init() {
|
||||||
|
this.getSearchList();
|
||||||
|
this.getCarouselImage();
|
||||||
|
},
|
||||||
|
async getCarouselImage(){
|
||||||
|
const params={
|
||||||
|
pageUi:6,
|
||||||
|
}
|
||||||
|
const resp = await getCarouselImage(params);
|
||||||
|
if(resp && resp.bizcode === 100){
|
||||||
|
const data = resp.data || [];
|
||||||
|
this.swiperList = data.length !== 0 ? data.map(obj=>obj.carouselImage) : [];
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async getSearchList(){
|
||||||
|
const params = {
|
||||||
|
type:3,
|
||||||
|
page:1,
|
||||||
|
pageSize:99,
|
||||||
|
}
|
||||||
|
const resp = await searchList(params);
|
||||||
|
if(resp && resp.bizcode === 100){
|
||||||
|
this.dataList = resp.data || [];
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onJumpShop(id){
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/other_package/productInfo/productInfo?id='+id,
|
||||||
|
})
|
||||||
|
},
|
||||||
|
onShare(){
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/other_package/invite_friends/invite_friends',
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.bottom-btn{
|
||||||
|
width: 100%;
|
||||||
|
margin-bottom:92rpx;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
padding: 0 32rpx;
|
||||||
|
box-sizing: border-box;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
}
|
||||||
|
.mid-panel{
|
||||||
|
width:100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
height:120rpx;
|
||||||
|
min-height:120rpx;
|
||||||
|
}
|
||||||
|
.swiper-view{
|
||||||
|
width:100%;
|
||||||
|
height:268rpx;
|
||||||
|
min-height:268rpx;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
.setting-view {
|
||||||
|
width: 100%;
|
||||||
|
height: calc(100% - 88rpx - 268rpx - 156rpx - var(--status-bar-height));
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
overflow-y: auto;
|
||||||
|
padding: 0 32rpx;
|
||||||
|
box-sizing: border-box;
|
||||||
|
position: relative;
|
||||||
|
.name-box{
|
||||||
|
width:100%;
|
||||||
|
border-radius: 16rpx;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
background-color: #fff;
|
||||||
|
padding: 64rpx 32rpx;
|
||||||
|
box-sizing: border-box;
|
||||||
|
margin-top:24rpx;
|
||||||
|
.mid-view{
|
||||||
|
width:100%;
|
||||||
|
padding: 40rpx 32rpx;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
border:2rpx solid #eaeaea;
|
||||||
|
border-radius: 16rpx;
|
||||||
|
margin-top:48rpx;
|
||||||
|
}
|
||||||
|
.top-view{
|
||||||
|
width:100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.input-view{
|
||||||
|
border-radius: 20rpx;
|
||||||
|
margin-top:52rpx;
|
||||||
|
width:100%;
|
||||||
|
padding: 0 32rpx;
|
||||||
|
min-height:104rpx;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
background-color: #f5f5f5;
|
||||||
|
box-sizing: border-box;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -0,0 +1,116 @@
|
|||||||
|
<template>
|
||||||
|
<view class="content">
|
||||||
|
<TopSafe></TopSafe>
|
||||||
|
<Header :title="name" >
|
||||||
|
<!-- #ifndef MP-WEIXIN -->
|
||||||
|
<template v-slot:right>
|
||||||
|
<u-icon name="share-fill" @click="onShare" color="#333" size="24"></u-icon>
|
||||||
|
</template>
|
||||||
|
<!-- #endif -->
|
||||||
|
</Header>
|
||||||
|
<view class="setting-view">
|
||||||
|
<view class="name-box">
|
||||||
|
<PingItem @ok="onJumpShop" style="margin-top:24rpx" :obj="item" v-for="(item,index) in dataList" :key="index"></PingItem>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<up-toast ref="uToastRef"></up-toast>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Header from '@/components/common/header.vue';
|
||||||
|
import TopSafe from '@/components/common/top-safe.nvue'
|
||||||
|
import MyBtn from '@/components/common/my-btn.vue'
|
||||||
|
import { searchList } from '@/api/product.js';
|
||||||
|
import { getCascadeCategory } from '@/api/common.js';
|
||||||
|
|
||||||
|
import PingItem from "@/components/shop/ping-item.vue";
|
||||||
|
import func from '@/utils/func.js';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: { Header, TopSafe,MyBtn,PingItem },
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
dataList:[
|
||||||
|
],
|
||||||
|
name:null,
|
||||||
|
id:0
|
||||||
|
};
|
||||||
|
},
|
||||||
|
onShow() {
|
||||||
|
},
|
||||||
|
onLoad(option) {
|
||||||
|
if(option && option.id){
|
||||||
|
this.id = Number(option.id);
|
||||||
|
this.name = option.name;
|
||||||
|
this.init();
|
||||||
|
}
|
||||||
|
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
init() {
|
||||||
|
this.getSearchList();
|
||||||
|
},
|
||||||
|
async getSearchList(){
|
||||||
|
const params = {
|
||||||
|
page: 1,
|
||||||
|
pageSize: 99,
|
||||||
|
categoryId:this.id
|
||||||
|
}
|
||||||
|
const resp = await searchList(params);
|
||||||
|
if(resp && resp.bizcode === 100){
|
||||||
|
this.dataList = resp.data || [];
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onJumpShop(id){
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/other_package/productInfo/productInfo?id='+id,
|
||||||
|
})
|
||||||
|
},
|
||||||
|
onShare(){
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/other_package/invite_friends/invite_friends',
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.bottom-btn{
|
||||||
|
width: 100%;
|
||||||
|
margin-bottom:92rpx;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
padding: 0 32rpx;
|
||||||
|
box-sizing: border-box;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
}
|
||||||
|
.setting-view {
|
||||||
|
width: 100%;
|
||||||
|
height: calc(100% - 88rpx - var(--status-bar-height));
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
overflow-y: auto;
|
||||||
|
padding: 0 32rpx;
|
||||||
|
box-sizing: border-box;
|
||||||
|
position: relative;
|
||||||
|
.name-box {
|
||||||
|
width: 100%;
|
||||||
|
border-radius: 16rpx;
|
||||||
|
height: 100%;
|
||||||
|
overflow-y: auto;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-content: flex-start;
|
||||||
|
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -0,0 +1,173 @@
|
|||||||
|
<template>
|
||||||
|
<view class="content">
|
||||||
|
<TopSafe></TopSafe>
|
||||||
|
<Header title="信任桥优选专区" >
|
||||||
|
<!-- #ifndef MP-WEIXIN -->
|
||||||
|
<template v-slot:right>
|
||||||
|
<u-icon name="share-fill" @click="onShare" color="#333" size="24"></u-icon>
|
||||||
|
</template>
|
||||||
|
<!-- #endif -->
|
||||||
|
</Header>
|
||||||
|
|
||||||
|
<view class="swiper-view">
|
||||||
|
<up-swiper
|
||||||
|
:list="swiperList"
|
||||||
|
style="width:100%"
|
||||||
|
circular
|
||||||
|
></up-swiper>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view class="mid-panel">
|
||||||
|
<up-image src="/static/common/jingxuan_left.png" width="24" height="8" bgColor="#f1f6ff00"></up-image>
|
||||||
|
<view style="margin:0 12rpx">信任桥优选</view>
|
||||||
|
<up-image src="/static/common/jingxuan_right.png" width="24" height="8" bgColor="#f1f6ff00"></up-image>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view class="setting-view">
|
||||||
|
<YouItem @ok="onJumpShop" style="margin-bottom:24rpx" :obj="item" v-for="(item,index) in dataList" :key="index"></YouItem>
|
||||||
|
</view>
|
||||||
|
<up-toast ref="uToastRef"></up-toast>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Header from '@/components/common/header.vue';
|
||||||
|
import TopSafe from '@/components/common/top-safe.nvue'
|
||||||
|
import MyBtn from '@/components/common/my-btn.vue'
|
||||||
|
import YouItem from '@/components/shop/you-item.vue'
|
||||||
|
import { searchList } from '@/api/product.js';
|
||||||
|
import { getCarouselImage } from '@/api/common.js';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: { Header, TopSafe,MyBtn,YouItem },
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
dataList:[
|
||||||
|
],
|
||||||
|
swiperList: ['https://cdn.uviewui.com/uview/swiper/swiper1.png'],
|
||||||
|
};
|
||||||
|
},
|
||||||
|
onShow() {
|
||||||
|
},
|
||||||
|
onLoad() {
|
||||||
|
this.init();
|
||||||
|
this.getCarouselImage();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
init() {
|
||||||
|
this.getSearchList();
|
||||||
|
},
|
||||||
|
async getSearchList(){
|
||||||
|
const params = {
|
||||||
|
type:1,
|
||||||
|
page:1,
|
||||||
|
pageSize:99,
|
||||||
|
}
|
||||||
|
const resp = await searchList(params);
|
||||||
|
if(resp && resp.bizcode === 100){
|
||||||
|
this.dataList = resp.data || [];
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async getCarouselImage(){
|
||||||
|
const params={
|
||||||
|
pageUi:4,
|
||||||
|
}
|
||||||
|
const resp = await getCarouselImage(params);
|
||||||
|
if(resp && resp.bizcode === 100){
|
||||||
|
const data = resp.data || [];
|
||||||
|
this.swiperList = data.length !== 0 ? data.map(obj=>obj.carouselImage) : [];
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onJumpShop(id){
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/other_package/productInfo/productInfo?id='+id,
|
||||||
|
})
|
||||||
|
},
|
||||||
|
onShare(){
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/other_package/invite_friends/invite_friends',
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.bottom-btn{
|
||||||
|
width: 100%;
|
||||||
|
margin-bottom:92rpx;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
padding: 0 32rpx;
|
||||||
|
box-sizing: border-box;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
}
|
||||||
|
.mid-panel{
|
||||||
|
width:100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
height:120rpx;
|
||||||
|
min-height:120rpx;
|
||||||
|
}
|
||||||
|
.swiper-view{
|
||||||
|
width:100%;
|
||||||
|
height:268rpx;
|
||||||
|
min-height:268rpx;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
.setting-view {
|
||||||
|
width: 100%;
|
||||||
|
height: calc(100% - 88rpx - var(--status-bar-height));
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
overflow-y: auto;
|
||||||
|
padding: 0 32rpx;
|
||||||
|
box-sizing: border-box;
|
||||||
|
position: relative;
|
||||||
|
.name-box{
|
||||||
|
width:100%;
|
||||||
|
border-radius: 16rpx;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
background-color: #fff;
|
||||||
|
padding: 64rpx 32rpx;
|
||||||
|
box-sizing: border-box;
|
||||||
|
margin-top:24rpx;
|
||||||
|
.mid-view{
|
||||||
|
width:100%;
|
||||||
|
padding: 40rpx 32rpx;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
border:2rpx solid #eaeaea;
|
||||||
|
border-radius: 16rpx;
|
||||||
|
margin-top:48rpx;
|
||||||
|
}
|
||||||
|
.top-view{
|
||||||
|
width:100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.input-view{
|
||||||
|
border-radius: 20rpx;
|
||||||
|
margin-top:52rpx;
|
||||||
|
width:100%;
|
||||||
|
padding: 0 32rpx;
|
||||||
|
min-height:104rpx;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
background-color: #f5f5f5;
|
||||||
|
box-sizing: border-box;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -1,173 +1,350 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="content">
|
<view class="content">
|
||||||
<TopSafe></TopSafe>
|
<TopSafe></TopSafe>
|
||||||
<Header title="信任桥优选专区" >
|
<view class="top-box">
|
||||||
<!-- #ifndef MP-WEIXIN -->
|
<shopHeader color="#fff" bgColor="transparent" isMid>
|
||||||
<template v-slot:right>
|
<!-- #ifndef MP-WEIXIN -->
|
||||||
<u-icon name="share-fill" @click="onShare" color="#333" size="24"></u-icon>
|
<template v-slot:mid>
|
||||||
</template>
|
<view
|
||||||
<!-- #endif -->
|
class="header-left"
|
||||||
</Header>
|
style="height: 80rpx; display: flex; align-items: center"
|
||||||
|
>
|
||||||
|
<image
|
||||||
|
src="/static/home/shop-title.png"
|
||||||
|
style="width: 240rpx; height: 38rpx"
|
||||||
|
></image>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
<template v-slot:right>
|
||||||
|
<view
|
||||||
|
class="language_warp"
|
||||||
|
style="width: 240rpx; height: 56rpx; justify-content: flex-start"
|
||||||
|
@click="jumpSearch"
|
||||||
|
>
|
||||||
|
<view style="margin-top: 10rpx">
|
||||||
|
<up-image
|
||||||
|
src="/static/home/shop-search.png"
|
||||||
|
width="20"
|
||||||
|
height="20"
|
||||||
|
bgColor="#f1f6ff00"
|
||||||
|
></up-image>
|
||||||
|
</view>
|
||||||
|
<text class="search_msg_warp">搜索</text>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
<!-- #endif -->
|
||||||
|
</shopHeader>
|
||||||
|
<view class="swiper-box">
|
||||||
|
<view class="swiper-card">
|
||||||
|
<up-swiper
|
||||||
|
:list="swiperList"
|
||||||
|
style="width: 100%; border-radius: 20rpx; height: 160rpx"
|
||||||
|
circular
|
||||||
|
@click="onSwiperClick"
|
||||||
|
@change="(e) => (currentNum = e.current)"
|
||||||
|
></up-swiper>
|
||||||
|
</view>
|
||||||
|
<view class="swiper-title">
|
||||||
|
<image
|
||||||
|
src="/static/home/shop-intro.png"
|
||||||
|
style="width: 308rpx; height: 30rpx"
|
||||||
|
></image>
|
||||||
|
<view class="swiper-center">信任桥-畅享全球好物</view>
|
||||||
|
<image
|
||||||
|
@click="goShare"
|
||||||
|
src="/static/home/shop-go.png"
|
||||||
|
style="width: 92rpx; height: 30rpx"
|
||||||
|
></image>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
<view class="swiper-view">
|
<!-- 爆款专区 -->
|
||||||
<up-swiper
|
<view class="shop-view">
|
||||||
:list="swiperList"
|
<view
|
||||||
style="width:100%"
|
class="shop-item"
|
||||||
circular
|
v-for="(item, index) in faddishProduct"
|
||||||
></up-swiper>
|
:style="{ background: 'url(' + item.url + ')' }"
|
||||||
</view>
|
style="text-align: center; background-size: 202rpx 228rpx"
|
||||||
|
:key="index"
|
||||||
|
@click="jumpInfo(item)"
|
||||||
|
>
|
||||||
|
<view class="shop-content">
|
||||||
|
<view class="shop-name">{{ item.title }}</view>
|
||||||
|
<view class="shop-price">优选价{{ item.price }}元</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
<view class="mid-panel">
|
<view class="setting-view">
|
||||||
<up-image src="/static/common/jingxuan_left.png" width="24" height="8" bgColor="#f1f6ff00"></up-image>
|
<YouItem
|
||||||
<view style="margin:0 12rpx">信任桥优选</view>
|
@ok="onJumpShop"
|
||||||
<up-image src="/static/common/jingxuan_right.png" width="24" height="8" bgColor="#f1f6ff00"></up-image>
|
style="margin-bottom: 24rpx"
|
||||||
</view>
|
:obj="item"
|
||||||
|
v-for="(item, index) in dataList"
|
||||||
<view class="setting-view">
|
:key="index"
|
||||||
<YouItem @ok="onJumpShop" style="margin-bottom:24rpx" :obj="item" v-for="(item,index) in dataList" :key="index"></YouItem>
|
></YouItem>
|
||||||
</view>
|
</view>
|
||||||
<up-toast ref="uToastRef"></up-toast>
|
<up-toast ref="uToastRef"></up-toast>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import Header from '@/components/common/header.vue';
|
import shopHeader from '@/components/common/shopHeader.vue';
|
||||||
import TopSafe from '@/components/common/top-safe.nvue'
|
import TopSafe from '@/components/common/top-safe.nvue';
|
||||||
import MyBtn from '@/components/common/my-btn.vue'
|
import MyBtn from '@/components/common/my-btn.vue';
|
||||||
import YouItem from '@/components/shop/you-item.vue'
|
import YouItem from '@/components/shop/you-item.vue';
|
||||||
import { searchList } from '@/api/product.js';
|
import { searchList } from '@/api/product.js';
|
||||||
import { getCarouselImage } from '@/api/common.js';
|
import { getCarouselImage } from '@/api/common.js';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: { Header, TopSafe,MyBtn,YouItem },
|
components: { shopHeader, TopSafe, MyBtn, YouItem },
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
dataList:[
|
dataList: [],
|
||||||
],
|
faddishProduct: [], // 爆款专区
|
||||||
swiperList: ['https://cdn.uviewui.com/uview/swiper/swiper1.png'],
|
swiperList: ['https://cdn.uviewui.com/uview/swiper/swiper1.png'],
|
||||||
};
|
swiperListData:[],
|
||||||
},
|
};
|
||||||
onShow() {
|
},
|
||||||
},
|
onShow() {},
|
||||||
onLoad() {
|
onLoad() {
|
||||||
this.init();
|
this.init();
|
||||||
this.getCarouselImage();
|
this.getCarouselImage();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
init() {
|
init() {
|
||||||
this.getSearchList();
|
this.getSearchList();
|
||||||
},
|
this.querySearchList();
|
||||||
async getSearchList(){
|
},
|
||||||
const params = {
|
async querySearchList() {
|
||||||
type:1,
|
const params = {
|
||||||
page:1,
|
type: 1,
|
||||||
pageSize:99,
|
page: 1,
|
||||||
}
|
isRecomm: true,
|
||||||
const resp = await searchList(params);
|
pageSize: 3,
|
||||||
if(resp && resp.bizcode === 100){
|
};
|
||||||
this.dataList = resp.data || [];
|
const resp = await searchList(params);
|
||||||
}
|
if (resp && resp.bizcode === 100) {
|
||||||
},
|
this.faddishProduct = resp.data;
|
||||||
async getCarouselImage(){
|
}
|
||||||
const params={
|
},
|
||||||
pageUi:4,
|
jumpSearch() {
|
||||||
}
|
uni.navigateTo({
|
||||||
const resp = await getCarouselImage(params);
|
url: '/pages/rwa_package/dongjian/search',
|
||||||
if(resp && resp.bizcode === 100){
|
})
|
||||||
const data = resp.data || [];
|
},
|
||||||
this.swiperList = data.length !== 0 ? data.map(obj=>obj.carouselImage) : [];
|
// 跳转到商品详情
|
||||||
}
|
jumpInfo(item) {
|
||||||
},
|
|
||||||
onJumpShop(id){
|
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: '/pages/other_package/productInfo/productInfo?id='+id,
|
url: '/pages/other_package/productInfo/productInfo?id=' + item.id,
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
onShare(){
|
|
||||||
uni.navigateTo({
|
goShare(){
|
||||||
url: '/pages/other_package/invite_friends/invite_friends',
|
console.log('go 的地址')
|
||||||
})
|
},
|
||||||
}
|
onSwiperClick(index){
|
||||||
}
|
console.log('banner 图',this.swiperListData,index);
|
||||||
}
|
// swiperList[index].goodsUrl
|
||||||
|
},
|
||||||
|
async getSearchList() {
|
||||||
|
const params = {
|
||||||
|
type: 1,
|
||||||
|
page: 1,
|
||||||
|
pageSize: 99,
|
||||||
|
};
|
||||||
|
const resp = await searchList(params);
|
||||||
|
if (resp && resp.bizcode === 100) {
|
||||||
|
this.dataList = resp.data || [];
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async getCarouselImage() {
|
||||||
|
const params = {
|
||||||
|
pageUi: 4,
|
||||||
|
};
|
||||||
|
const resp = await getCarouselImage(params);
|
||||||
|
if (resp && resp.bizcode === 100) {
|
||||||
|
const data = resp.data || [];
|
||||||
|
this.swiperListData = data;
|
||||||
|
this.swiperList = data.length !== 0 ? data.map((obj) => obj.carouselImage) : [];
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onJumpShop(id) {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/other_package/productInfo/productInfo?id=' + id,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
onShare() {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/other_package/invite_friends/invite_friends',
|
||||||
|
});
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.bottom-btn{
|
.top-box {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin-bottom:92rpx;
|
padding-bottom: 24rpx;
|
||||||
display: flex;
|
background: linear-gradient(270deg, #af39c4 0%, #7732ff 100%);
|
||||||
flex-direction: column;
|
.swiper-box {
|
||||||
align-items: center;
|
position: relative;
|
||||||
padding: 0 32rpx;
|
margin-bottom: 50rpx;
|
||||||
box-sizing: border-box;
|
.swiper-card {
|
||||||
position: relative;
|
padding: 12rpx 32rpx 20rpx;
|
||||||
|
}
|
||||||
|
.swiper-title {
|
||||||
|
padding: 3rpx 10rpx;
|
||||||
|
position: absolute;
|
||||||
|
left: -14rpx;
|
||||||
|
top: 164rpx;
|
||||||
|
height: 56rpx;
|
||||||
|
width: 702rpx;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
margin: 0 28rpx;
|
||||||
|
background-color: #f0e7fe;
|
||||||
|
border-radius: 8rpx;
|
||||||
|
}
|
||||||
|
.swiper-center {
|
||||||
|
background: #ffffff;
|
||||||
|
border-radius: 6rpx;
|
||||||
|
font-size: 20rpx;
|
||||||
|
padding: 0 20rpx;
|
||||||
|
border: 2rpx solid;
|
||||||
|
border-image: linear-gradient(270deg, rgba(174, 57, 196, 1), rgba(119, 50, 255, 1)) 1 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.shop-view {
|
||||||
|
background-color: #fff;
|
||||||
|
border-radius: 24rpx;
|
||||||
|
margin: 0 24rpx;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
padding: 24rpx;
|
||||||
|
.shop-item {
|
||||||
|
width: 202rpx;
|
||||||
|
border-radius: 24rpx;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
.shop-content {
|
||||||
|
width: 100%;
|
||||||
|
margin-top: 130rpx;
|
||||||
|
background: #f0e7fe;
|
||||||
|
border-radius: 0 0 23rpx 24rpx;
|
||||||
|
.shop-name {
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #000000;
|
||||||
|
font-weight: bold;
|
||||||
|
box-sizing: border-box;
|
||||||
|
width: 202rpx;
|
||||||
|
text-align: center;
|
||||||
|
padding: 12rpx 10rpx;
|
||||||
|
white-space: nowrap; /* 不换行 */
|
||||||
|
overflow: hidden; /* 隐藏超出部分 */
|
||||||
|
text-overflow: ellipsis; /* 显示省略号 */
|
||||||
|
}
|
||||||
|
.shop-price {
|
||||||
|
width: 160rpx;
|
||||||
|
font-size: 16rpx;
|
||||||
|
padding: 3rpx 6rpx;
|
||||||
|
box-sizing: border-box;
|
||||||
|
color: #fff;
|
||||||
|
background: linear-gradient(270deg, #af39c4 0%, #7732ff 100%);
|
||||||
|
border-radius: 4px;
|
||||||
|
margin: 0 auto 12rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.mid-panel{
|
.language_warp {
|
||||||
width:100%;
|
display: flex;
|
||||||
display: flex;
|
justify-content: space-between;
|
||||||
flex-direction: row;
|
align-items: center;
|
||||||
align-items: center;
|
width: 100rpx;
|
||||||
justify-content: center;
|
height: 56rpx;
|
||||||
height:120rpx;
|
padding: 0 24rpx;
|
||||||
min-height:120rpx;
|
background: #ffffff;
|
||||||
|
border-radius: 12rpx;
|
||||||
}
|
}
|
||||||
.swiper-view{
|
|
||||||
width:100%;
|
.search_msg_warp {
|
||||||
height:268rpx;
|
margin-left: 12rpx;
|
||||||
min-height:268rpx;
|
font-weight: 400;
|
||||||
display: flex;
|
font-size: 28rpx;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
.bottom-btn {
|
||||||
|
width: 100%;
|
||||||
|
margin-bottom: 92rpx;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
padding: 0 32rpx;
|
||||||
|
box-sizing: border-box;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.swiper-view {
|
||||||
|
width: 100%;
|
||||||
|
height: 268rpx;
|
||||||
|
min-height: 268rpx;
|
||||||
|
display: flex;
|
||||||
}
|
}
|
||||||
.setting-view {
|
.setting-view {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: calc(100% - 88rpx - var(--status-bar-height));
|
height: calc(100% - 88rpx - var(--status-bar-height));
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
padding: 0 32rpx;
|
padding: 24rpx;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
position: relative;
|
position: relative;
|
||||||
.name-box{
|
.name-box {
|
||||||
width:100%;
|
width: 100%;
|
||||||
border-radius: 16rpx;
|
border-radius: 16rpx;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
padding: 64rpx 32rpx;
|
padding: 64rpx 32rpx;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
margin-top:24rpx;
|
margin-top: 24rpx;
|
||||||
.mid-view{
|
.mid-view {
|
||||||
width:100%;
|
width: 100%;
|
||||||
padding: 40rpx 32rpx;
|
padding: 40rpx 32rpx;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
border:2rpx solid #eaeaea;
|
border: 2rpx solid #eaeaea;
|
||||||
border-radius: 16rpx;
|
border-radius: 16rpx;
|
||||||
margin-top:48rpx;
|
margin-top: 48rpx;
|
||||||
}
|
}
|
||||||
.top-view{
|
.top-view {
|
||||||
width:100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
.input-view{
|
.input-view {
|
||||||
border-radius: 20rpx;
|
border-radius: 20rpx;
|
||||||
margin-top:52rpx;
|
margin-top: 52rpx;
|
||||||
width:100%;
|
width: 100%;
|
||||||
padding: 0 32rpx;
|
padding: 0 32rpx;
|
||||||
min-height:104rpx;
|
min-height: 104rpx;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background-color: #f5f5f5;
|
background-color: #f5f5f5;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -26,9 +26,16 @@
|
|||||||
</view>
|
</view>
|
||||||
<view class="setting-view">
|
<view class="setting-view">
|
||||||
<view class="name-box">
|
<view class="name-box">
|
||||||
<mescroll-uni ref="mescrollRef" @down="downCallback" @up="upCallback" :up="upOption"
|
<mescroll-uni
|
||||||
:down="downOption" @init="mescrollInit" :fixed="false">
|
ref="mescrollRef"
|
||||||
<view class="mescrollUniView">
|
@down="downCallback"
|
||||||
|
@up="upCallback"
|
||||||
|
:up="upOption"
|
||||||
|
:down="downOption"
|
||||||
|
@init="mescrollInit"
|
||||||
|
:fixed="false"
|
||||||
|
>
|
||||||
|
<!-- <view class="mescrollUniView">
|
||||||
|
|
||||||
<PingItem
|
<PingItem
|
||||||
@ok="onJumpShop"
|
@ok="onJumpShop"
|
||||||
@@ -37,8 +44,29 @@
|
|||||||
v-for="(item, index) in dataList"
|
v-for="(item, index) in dataList"
|
||||||
:key="index"
|
:key="index"
|
||||||
></PingItem>
|
></PingItem>
|
||||||
</view>
|
</view> -->
|
||||||
</mescroll-uni>
|
<!-- 原来单个 v-for 替换成两列 -->
|
||||||
|
<view class="mescrollUniView">
|
||||||
|
<view class="fall-col">
|
||||||
|
<PingItem
|
||||||
|
v-for="(item, i) in leftList"
|
||||||
|
:key="item.id"
|
||||||
|
:obj="item"
|
||||||
|
@ok="onJumpShop"
|
||||||
|
style="margin-top: 24rpx"
|
||||||
|
/>
|
||||||
|
</view>
|
||||||
|
<view class="fall-col">
|
||||||
|
<PingItem
|
||||||
|
v-for="(item, i) in rightList"
|
||||||
|
:key="item.id"
|
||||||
|
:obj="item"
|
||||||
|
@ok="onJumpShop"
|
||||||
|
style="margin-top: 24rpx"
|
||||||
|
/>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</mescroll-uni>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<!-- #ifndef H5 -->
|
<!-- #ifndef H5 -->
|
||||||
@@ -49,6 +77,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { toRaw } from "vue";
|
||||||
import { getCascadeCategory } from "@/api/common.js";
|
import { getCascadeCategory } from "@/api/common.js";
|
||||||
import Header from "@/components/common/header.vue";
|
import Header from "@/components/common/header.vue";
|
||||||
import TopSafe from "@/components/common/top-safe.nvue";
|
import TopSafe from "@/components/common/top-safe.nvue";
|
||||||
@@ -57,91 +86,91 @@ import PingItem from "@/components/shop/ping-item.vue";
|
|||||||
import { searchList } from "@/api/product.js";
|
import { searchList } from "@/api/product.js";
|
||||||
import CustomTabBar from "@/components/custom-tab-bar.vue";
|
import CustomTabBar from "@/components/custom-tab-bar.vue";
|
||||||
import MescrollMixin from "@/components/mescroll-uni/mescroll-mixins.js";
|
import MescrollMixin from "@/components/mescroll-uni/mescroll-mixins.js";
|
||||||
import MescrollUni from '@/components/mescroll-uni/mescroll-uni.vue';
|
import MescrollUni from "@/components/mescroll-uni/mescroll-uni.vue";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [MescrollMixin],
|
mixins: [MescrollMixin],
|
||||||
components: { Header, TopSafe, MyBtn, PingItem,CustomTabBar,MescrollUni },
|
components: { Header, TopSafe, MyBtn, PingItem, CustomTabBar, MescrollUni },
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
dataList: [],
|
dataList: [],
|
||||||
tabList: [{name:'推荐'}],
|
tabList: [{ name: "推荐" }],
|
||||||
curTab: 0,
|
curTab: 0,
|
||||||
upOption: {
|
upOption: {
|
||||||
auto: false,
|
auto: false,
|
||||||
page: {
|
page: {
|
||||||
size: 10 // 每页数据的数量,默认10
|
size: 10, // 每页数据的数量,默认10
|
||||||
},
|
},
|
||||||
noMoreSize: 10, // 配置列表的总数量要大于等于5条才显示'-- END --'的提示
|
noMoreSize: 10, // 配置列表的总数量要大于等于5条才显示'-- END --'的提示
|
||||||
empty: {
|
empty: {
|
||||||
tip: `空空如也`
|
tip: `空空如也`,
|
||||||
},
|
},
|
||||||
textColor: '#333',
|
textColor: "#333",
|
||||||
bgColor: 'rgba(0,0,0,0)',
|
bgColor: "rgba(0,0,0,0)",
|
||||||
},
|
},
|
||||||
downOption: {
|
downOption: {
|
||||||
auto: false,
|
auto: false,
|
||||||
textColor: '#333',
|
textColor: "#333",
|
||||||
bgColor: 'rgba(0,0,0,0)',
|
bgColor: "rgba(0,0,0,0)",
|
||||||
|
},
|
||||||
},
|
leftList: [],
|
||||||
|
rightList: [],
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
onLoad() {
|
onLoad() {
|
||||||
this.init();
|
this.init();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
mescrollInit(mescroll) {
|
mescrollInit(mescroll) {
|
||||||
this.mescroll = mescroll;
|
this.mescroll = mescroll;
|
||||||
},
|
},
|
||||||
upCallback(page) {
|
upCallback(page) {
|
||||||
let pageNum = page.num;
|
let pageNum = page.num;
|
||||||
let pageSize = page.size;
|
let pageSize = page.size;
|
||||||
|
|
||||||
|
let params = {
|
||||||
let params = {
|
type: 2,
|
||||||
type: 2,
|
page: page.num,
|
||||||
page: page.num,
|
pageSize: page.size,
|
||||||
pageSize: page.size,
|
isPar: true,
|
||||||
isPar: true,
|
};
|
||||||
};
|
if (this.curTab != 0) {
|
||||||
if(this.curTab != 0){
|
params["categoryId"] = this.tabList[this.curTab].id;
|
||||||
params['categoryId'] = this.tabList[this.curTab].id;
|
}
|
||||||
}
|
searchList(params).then((res) => {
|
||||||
searchList(params).then(res => {
|
let curPageLen = res.data.length;
|
||||||
|
if (page.num === 1) this.dataList = [];
|
||||||
let curPageLen = res.data.length;
|
this.dataList = this.dataList.concat(res.data);
|
||||||
if (page.num === 1) this.dataList = [];
|
console.log(this.dataList);
|
||||||
this.dataList = this.dataList.concat(res.data);
|
|
||||||
|
this.waterfall();
|
||||||
this.mescroll.endBySize(curPageLen, res.data.total);
|
this.mescroll.endBySize(curPageLen, res.data.total);
|
||||||
})
|
});
|
||||||
// this.mescroll.endBySize(1, 1);
|
},
|
||||||
},
|
downCallback() {
|
||||||
downCallback() {
|
this.$nextTick(function () {
|
||||||
this.$nextTick(function() {
|
this.mescroll && this.mescroll.resetUpScroll();
|
||||||
this.mescroll && this.mescroll.resetUpScroll();
|
});
|
||||||
})
|
},
|
||||||
},
|
|
||||||
async cascadeCategory() {
|
async cascadeCategory() {
|
||||||
getCascadeCategory({ parentId: 0 }).then((res) => {
|
getCascadeCategory({ parentId: 0 }).then((res) => {
|
||||||
if (res && res.bizcode === 100) {
|
if (res && res.bizcode === 100) {
|
||||||
res.data.forEach(item=>{
|
res.data.forEach((item) => {
|
||||||
this.tabList.push(item);
|
this.tabList.push(item);
|
||||||
})
|
});
|
||||||
this.downCallback();
|
this.downCallback();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
onTab(index) {
|
onTab(index) {
|
||||||
if (index != this.curTab) {
|
if (index != this.curTab) {
|
||||||
this.curTab = index;
|
this.curTab = index;
|
||||||
this.dataList = [];
|
this.dataList = [];
|
||||||
this.downCallback();
|
this.downCallback();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
init() {
|
init() {
|
||||||
this.cascadeCategory();
|
this.cascadeCategory();
|
||||||
},
|
},
|
||||||
async getSearchList() {
|
async getSearchList() {
|
||||||
const params = {
|
const params = {
|
||||||
@@ -150,14 +179,31 @@ export default {
|
|||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
isPar: true,
|
isPar: true,
|
||||||
};
|
};
|
||||||
if(this.curTab != 0){
|
if (this.curTab != 0) {
|
||||||
params['categoryId'] = this.tabList[this.curTab].id;
|
params["categoryId"] = this.tabList[this.curTab].id;
|
||||||
}
|
}
|
||||||
const resp = await searchList(params);
|
const resp = await searchList(params);
|
||||||
if (resp && resp.bizcode === 100) {
|
if (resp && resp.bizcode === 100) {
|
||||||
this.dataList = resp.data || [];
|
this.dataList = resp.data || [];
|
||||||
|
this.waterfall();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
waterfall() {
|
||||||
|
this.leftList = this.dataList
|
||||||
|
.map((item, index) => {
|
||||||
|
if (index % 2 == 0) return item;
|
||||||
|
return null;
|
||||||
|
})
|
||||||
|
.filter(Boolean);
|
||||||
|
this.rightList = this.dataList
|
||||||
|
.map((item, index) => {
|
||||||
|
if (index % 2 != 0)return item;
|
||||||
|
return null;
|
||||||
|
})
|
||||||
|
.filter(Boolean);
|
||||||
|
console.log(this.leftList, this.rightList);
|
||||||
|
},
|
||||||
|
|
||||||
onJumpSearch() {
|
onJumpSearch() {
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: "/pages/rwa_package/dongjian/search",
|
url: "/pages/rwa_package/dongjian/search",
|
||||||
@@ -178,11 +224,9 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
|
||||||
.content-two {
|
.content-two {
|
||||||
|
height: calc(100vh);
|
||||||
height: calc(100vh );
|
|
||||||
|
|
||||||
background-color: $app-bj;
|
background-color: $app-bj;
|
||||||
}
|
}
|
||||||
.head-view {
|
.head-view {
|
||||||
@@ -227,13 +271,13 @@ export default {
|
|||||||
}
|
}
|
||||||
.line {
|
.line {
|
||||||
width: 48rpx;
|
width: 48rpx;
|
||||||
height:6rpx;
|
height: 6rpx;
|
||||||
background-color: #7a35f6;
|
background-color: #7a35f6;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.setting-view {
|
.setting-view {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: calc(100vh - 88rpx - 80rpx - 100rpx - var(--status-bar-height));
|
height: calc(100vh - 88rpx - 80rpx - 100rpx - var(--status-bar-height));
|
||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@@ -249,12 +293,17 @@ export default {
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
.mescrollUniView{
|
.mescrollUniView {
|
||||||
width: calc(100vw - 48rpx);
|
width: calc(100vw - 48rpx);
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
|
||||||
|
.fall-col {
|
||||||
|
width: 332rpx; /* 与 PingItem 宽度一致 */
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
|
After Width: | Height: | Size: 7.0 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 635 B |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 5.9 KiB |
@@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
// export const BASE_URL="https://frontend.jdns360.com/api"; // 正式环境
|
// export const BASE_URL="https://frontend.jdns360.com/api"; // 正式环境
|
||||||
// export const BASE_URL="http://cl55un59859.vicp.fun:24346"; // 测试环境
|
// export const BASE_URL="http://cl55un59859.vicp.fun:24346"; // 测试环境
|
||||||
|
|
||||||
|
|||||||