feat:替换部分图片
@@ -1,4 +1,5 @@
|
||||
node_modules
|
||||
node_modules/
|
||||
.DS_Store
|
||||
.history
|
||||
unpackage
|
||||
.history/
|
||||
unpackage/
|
||||
dist/
|
||||
@@ -1,163 +1,173 @@
|
||||
<template>
|
||||
<!-- <up-loading-page :loading="listLoading"></up-loading-page> -->
|
||||
<scroll-view scroll-y="true" @scrolltolower="loadMore" :style="{'height': heightRef}">
|
||||
<view class="prize_draw_item" v-for="item in prizeDrawList" :key="item.id" v-if="prizeDrawList && prizeDrawList.length!==0">
|
||||
<view class="prize_draw_left_warp">
|
||||
<up-image :src="item.iconUrl ? item.iconUrl :'/static/mine/zj_f.jpg'" width="60" height="60" bgColor="#f1f6ff00"></up-image>
|
||||
<view style="margin-left: 20rpx;">
|
||||
<view class="title_">{{item.prizeName}}</view>
|
||||
<view class="time_">{{formatDate(item.ctdate)}}</view>
|
||||
<view
|
||||
class="delivery_"
|
||||
v-if="[DELIVER_STATUS.AWAIT_DELIVERY_REQUIRED,DELIVER_STATUS.YES_DELIVERY_REQUIRED,DELIVER_STATUS.RECEIVED].includes(item.deliveryStatus)"
|
||||
>
|
||||
<view class="delivery_status">{{getValue(DELIVER_STATUS_,item.deliveryStatus)}}</view>
|
||||
<view class="delivery_num" v-if="item.deliveryNum">
|
||||
<text style="margin-right: 10rpx;">运单号:{{ item.deliveryNum}}</text>
|
||||
<up-image src="/static/common/copy.png" width="10" height="10" bgColor="#f1f6ff00" @click="copyData(item.deliveryNum)"></up-image>
|
||||
</view>
|
||||
<view class="delivery_num" v-else>运单号:暂无</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="prize_draw_right_warp" v-if="item.type === 4" v-show="item.status === 1" @click="jumpGetFun(item)">去领取</view>
|
||||
<view class="prize_draw_right_warp yes_" v-if="item.type === 4" v-show="item.status === 2">已领取</view>
|
||||
</view>
|
||||
<view v-else class="not_order_warp">
|
||||
<up-image src="/static/common/not_order.png" width="80" height="80" bgColor="#f1f6ff00"></up-image>
|
||||
<view class="not_order_msg_warp">还未中奖哦~</view>
|
||||
</view>
|
||||
<scroll-view scroll-y="true" @scrolltolower="loadMore" :style="{ 'height': heightRef }">
|
||||
<view class="prize_draw_item" v-for="item in prizeDrawList" :key="item.id"
|
||||
v-if="prizeDrawList && prizeDrawList.length !== 0">
|
||||
<view class="prize_draw_left_warp">
|
||||
<up-image :src="item.iconUrl ? item.iconUrl : 'https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/zj_f.jpg'"
|
||||
width="60" height="60" bgColor="#f1f6ff00"></up-image>
|
||||
<view style="margin-left: 20rpx;">
|
||||
<view class="title_">{{ item.prizeName }}</view>
|
||||
<view class="time_">{{ formatDate(item.ctdate) }}</view>
|
||||
<view class="delivery_"
|
||||
v-if="[DELIVER_STATUS.AWAIT_DELIVERY_REQUIRED, DELIVER_STATUS.YES_DELIVERY_REQUIRED, DELIVER_STATUS.RECEIVED].includes(item.deliveryStatus)">
|
||||
<view class="delivery_status">{{ getValue(DELIVER_STATUS_, item.deliveryStatus) }}</view>
|
||||
<view class="delivery_num" v-if="item.deliveryNum">
|
||||
<text style="margin-right: 10rpx;">运单号:{{ item.deliveryNum }}</text>
|
||||
<up-image src="/static/common/copy.png" width="10" height="10" bgColor="#f1f6ff00"
|
||||
@click="copyData(item.deliveryNum)"></up-image>
|
||||
</view>
|
||||
<view class="delivery_num" v-else>运单号:暂无</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="prize_draw_right_warp" v-if="item.type === 4" v-show="item.status === 1" @click="jumpGetFun(item)">
|
||||
去领取</view>
|
||||
<view class="prize_draw_right_warp yes_" v-if="item.type === 4" v-show="item.status === 2">已领取</view>
|
||||
</view>
|
||||
<view v-else class="not_order_warp">
|
||||
<up-image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/not_order.png" width="80" height="80"
|
||||
bgColor="#f1f6ff00"></up-image>
|
||||
<view class="not_order_msg_warp">还未中奖哦~</view>
|
||||
</view>
|
||||
<view v-if="loading" style="text-align: center;">加载中...</view>
|
||||
</scroll-view>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { getWinningList } from '@/api/raffle.js';
|
||||
import { formatDate,copyData } from '@/utils/index.js';
|
||||
import { DELIVER_STATUS,DELIVER_STATUS_,getValue } from '@/utils/enumUtils.js'
|
||||
import { getWinningList } from '@/api/raffle.js';
|
||||
import { formatDate, copyData } from '@/utils/index.js';
|
||||
import { DELIVER_STATUS, DELIVER_STATUS_, getValue } from '@/utils/enumUtils.js'
|
||||
|
||||
export default {
|
||||
name:"winning_record",
|
||||
props: {
|
||||
heightRef: { //当前选中的tab项
|
||||
type: Number,
|
||||
default: 'calc(100vh - 100rpx)'
|
||||
}
|
||||
export default {
|
||||
name: "winning_record",
|
||||
props: {
|
||||
heightRef: { //当前选中的tab项
|
||||
type: Number,
|
||||
default: 'calc(100vh - 100rpx)'
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
DELIVER_STATUS() {
|
||||
return DELIVER_STATUS;
|
||||
},
|
||||
computed: {
|
||||
DELIVER_STATUS() {
|
||||
return DELIVER_STATUS;
|
||||
DELIVER_STATUS_() {
|
||||
return DELIVER_STATUS_;
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
prizeDrawList: [],// 抽奖列表
|
||||
form: {
|
||||
status: '',
|
||||
page: 1,
|
||||
pageSize: 20,
|
||||
},
|
||||
DELIVER_STATUS_(){
|
||||
return DELIVER_STATUS_;
|
||||
}
|
||||
loading: false, // 加载状态标志
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
// this.jumpMine();
|
||||
this.loadData(); // 页面加载时加载数据
|
||||
},
|
||||
methods: {
|
||||
formatDate,
|
||||
copyData,
|
||||
getValue,
|
||||
jumpGetFun(item) {
|
||||
uni.navigateTo({
|
||||
url: '/pages/other_package/get_prize/get_prize?id=' + item.id,
|
||||
})
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
prizeDrawList:[],// 抽奖列表
|
||||
form:{
|
||||
status:'',
|
||||
page:1,
|
||||
pageSize:20,
|
||||
},
|
||||
loading: false, // 加载状态标志
|
||||
};
|
||||
},
|
||||
mounted(){
|
||||
// this.jumpMine();
|
||||
this.loadData(); // 页面加载时加载数据
|
||||
},
|
||||
methods: {
|
||||
formatDate,
|
||||
copyData,
|
||||
getValue,
|
||||
jumpGetFun(item){
|
||||
uni.navigateTo({
|
||||
url:'/pages/other_package/get_prize/get_prize?id='+item.id,
|
||||
})
|
||||
},
|
||||
|
||||
// 加载数据的方法
|
||||
async loadData() {
|
||||
if (this.loading) return; // 如果正在加载,则不重复加载
|
||||
this.loading = true; // 设置加载状态为true
|
||||
try {
|
||||
// 加载数据的方法
|
||||
async loadData() {
|
||||
if (this.loading) return; // 如果正在加载,则不重复加载
|
||||
this.loading = true; // 设置加载状态为true
|
||||
try {
|
||||
// 模拟异步获取数据,实际应用中应该替换为你的数据获取逻辑,例如API调用
|
||||
const newData = await this.fetchData(this.form.page, this.form.pageSize);
|
||||
if(newData.entitys && newData.entitys.length !==0){
|
||||
if (newData.entitys && newData.entitys.length !== 0) {
|
||||
this.prizeDrawList = [...this.prizeDrawList, ...newData.entitys]; // 将新数据添加到列表中
|
||||
this.form.page++; // 页码加1
|
||||
}
|
||||
} catch (error) {
|
||||
} catch (error) {
|
||||
console.error('加载数据失败:', error);
|
||||
} finally {
|
||||
} finally {
|
||||
this.loading = false; // 设置加载状态为false
|
||||
}
|
||||
},
|
||||
// 模拟获取数据的方法,实际应用中应该替换为你的数据获取逻辑,例如从服务器获取数据
|
||||
async fetchData(page, pageSize) {
|
||||
const params = {
|
||||
page,
|
||||
pageSize,
|
||||
}
|
||||
const data = await getWinningList(params);
|
||||
if(data && data.bizcode === 100){
|
||||
return data.data
|
||||
}else{
|
||||
return [];
|
||||
}
|
||||
},
|
||||
// 当滚动到底部时触发的方法
|
||||
loadMore() {
|
||||
this.loadData(); // 加载更多数据
|
||||
}
|
||||
},
|
||||
// 模拟获取数据的方法,实际应用中应该替换为你的数据获取逻辑,例如从服务器获取数据
|
||||
async fetchData(page, pageSize) {
|
||||
const params = {
|
||||
page,
|
||||
pageSize,
|
||||
}
|
||||
const data = await getWinningList(params);
|
||||
if (data && data.bizcode === 100) {
|
||||
return data.data
|
||||
} else {
|
||||
return [];
|
||||
}
|
||||
},
|
||||
// 当滚动到底部时触发的方法
|
||||
loadMore() {
|
||||
this.loadData(); // 加载更多数据
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.prize_draw_warp{
|
||||
}
|
||||
.prize_draw_item{
|
||||
.prize_draw_warp {}
|
||||
|
||||
.prize_draw_item {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 20rpx 0;
|
||||
border-bottom: 1rpx solid #EEEEEE;
|
||||
}
|
||||
.prize_draw_left_warp{
|
||||
|
||||
.prize_draw_left_warp {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.title_{
|
||||
|
||||
.title_ {
|
||||
font-weight: bold;
|
||||
font-size: 28rpx;
|
||||
color: #333333;
|
||||
}
|
||||
.time_{
|
||||
|
||||
.time_ {
|
||||
font-size: 24rpx;
|
||||
color: #666666;
|
||||
margin-top: 10rpx;
|
||||
}
|
||||
.delivery_{
|
||||
|
||||
.delivery_ {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 20rpx;
|
||||
margin-top: 10rpx;
|
||||
.delivery_status{
|
||||
|
||||
.delivery_status {
|
||||
padding: 6rpx 10rpx;
|
||||
border-radius: 10rpx;
|
||||
color: $app-bt-bj;
|
||||
border: 1rpx solid $app-bt-bj;
|
||||
}
|
||||
.delivery_num{
|
||||
|
||||
.delivery_num {
|
||||
margin-left: 10rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
.prize_draw_right_warp{
|
||||
|
||||
.prize_draw_right_warp {
|
||||
background: $app-bt-bj;
|
||||
border-radius: 10rpx;
|
||||
text-align: center;
|
||||
@@ -165,7 +175,8 @@
|
||||
padding: 10rpx 28rpx;
|
||||
height: 48rpx;
|
||||
}
|
||||
.yes_{
|
||||
|
||||
.yes_ {
|
||||
background: #F5F5F5;
|
||||
color: #666666;
|
||||
}
|
||||
|
||||
@@ -1,13 +1,15 @@
|
||||
<template>
|
||||
<view class="content">
|
||||
<view class="lottery">
|
||||
<dengbo-lotteryWheel :prizes="prizes" :size="626" :duration="5000" @run="Click"
|
||||
@done="Done" ref="luckyWheel" :lightImgs="lightImages" customStyle="borderRadius: 50%;">
|
||||
<dengbo-lotteryWheel :prizes="prizes" :size="626" :duration="5000" @run="Click" @done="Done"
|
||||
ref="luckyWheel" :lightImgs="lightImages" customStyle="borderRadius: 50%;">
|
||||
<template v-slot:bg>
|
||||
<image src="/static/turntable/turntable.png" style="width: 100%; height: 100%" />
|
||||
<image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/turntable.png"
|
||||
style="width: 100%; height: 100%" />
|
||||
</template>
|
||||
<template v-slot:pointer>
|
||||
<up-image src="/static/turntable/zz.png" width="40" height="40" mode="widthFix" @click="startWheel"></up-image>
|
||||
<up-image src="/static/turntable/zz.png" width="40" height="40" mode="widthFix"
|
||||
@click="startWheel"></up-image>
|
||||
</template>
|
||||
</dengbo-lotteryWheel>
|
||||
</view>
|
||||
@@ -15,77 +17,78 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
lightImages: ['/static/turntable/zz.png', '/static/turntable/turntable.png'],
|
||||
prizes: [{
|
||||
name: '积分',
|
||||
image: '/static/turntable/record.png',
|
||||
pro: '50积分',
|
||||
},
|
||||
{
|
||||
name: '积分',
|
||||
image: '/static/turntable/record.png',
|
||||
pro: '100积分',
|
||||
},
|
||||
{
|
||||
name: '优惠券',
|
||||
image: '/static/turntable/record.png',
|
||||
pro: '15元优惠券',
|
||||
},
|
||||
{
|
||||
name: '家用电器',
|
||||
image: '/static/turntable/record.png',
|
||||
pro: '微波炉',
|
||||
},
|
||||
{
|
||||
name: '谢谢参与',
|
||||
image: '/static/turntable/record.png',
|
||||
pro: '15元优惠券',
|
||||
},
|
||||
{
|
||||
name: '办公用品',
|
||||
image: '/static/turntable/record.png',
|
||||
pro: '机械键盘',
|
||||
},
|
||||
{
|
||||
name: '生活用品',
|
||||
image: '/static/turntable/record.png',
|
||||
pro: '化妆刷',
|
||||
},
|
||||
],
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
|
||||
},
|
||||
methods: {
|
||||
startWheel() {
|
||||
this.$refs.luckyWheel.run(2);
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
lightImages: ['/static/turntable/zz.png', 'https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/turntable.png'],
|
||||
prizes: [{
|
||||
name: '积分',
|
||||
image: '/static/turntable/record.png',
|
||||
pro: '50积分',
|
||||
},
|
||||
Click() {
|
||||
console.log('用户点击了转盘');
|
||||
this.$refs.luckyWheel.run(2);
|
||||
{
|
||||
name: '积分',
|
||||
image: '/static/turntable/record.png',
|
||||
pro: '100积分',
|
||||
},
|
||||
Done(prize) {
|
||||
console.log('抽奖结束,中奖奖品:', prize);
|
||||
{
|
||||
name: '优惠券',
|
||||
image: '/static/turntable/record.png',
|
||||
pro: '15元优惠券',
|
||||
},
|
||||
{
|
||||
name: '家用电器',
|
||||
image: '/static/turntable/record.png',
|
||||
pro: '微波炉',
|
||||
},
|
||||
{
|
||||
name: '谢谢参与',
|
||||
image: '/static/turntable/record.png',
|
||||
pro: '15元优惠券',
|
||||
},
|
||||
{
|
||||
name: '办公用品',
|
||||
image: '/static/turntable/record.png',
|
||||
pro: '机械键盘',
|
||||
},
|
||||
{
|
||||
name: '生活用品',
|
||||
image: '/static/turntable/record.png',
|
||||
pro: '化妆刷',
|
||||
},
|
||||
],
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
|
||||
},
|
||||
methods: {
|
||||
startWheel() {
|
||||
this.$refs.luckyWheel.run(2);
|
||||
},
|
||||
Click() {
|
||||
console.log('用户点击了转盘');
|
||||
this.$refs.luckyWheel.run(2);
|
||||
},
|
||||
Done(prize) {
|
||||
console.log('抽奖结束,中奖奖品:', prize);
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.content{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.lottery {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 626rpx;
|
||||
height: 626rpx;
|
||||
margin-top: 100rpx;
|
||||
}
|
||||
.content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.lottery {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 626rpx;
|
||||
height: 626rpx;
|
||||
margin-top: 100rpx;
|
||||
}
|
||||
</style>
|
||||
@@ -54,7 +54,8 @@
|
||||
</view>
|
||||
</view>
|
||||
<view v-else class="not_order_warp">
|
||||
<up-image src="/static/common/not_order.png" width="80" height="80" bgColor="#f1f6ff00"></up-image>
|
||||
<up-image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/not_order.png" width="80" height="80"
|
||||
bgColor="#f1f6ff00"></up-image>
|
||||
<view class="not_order_msg_warp">暂无分类</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
@@ -51,7 +51,8 @@
|
||||
</view>
|
||||
</view>
|
||||
<view v-else class="not_order_warp">
|
||||
<up-image src="/static/common/not_order.png" width="80" height="80" bgColor="#f1f6ff00"></up-image>
|
||||
<up-image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/not_order.png" width="80" height="80"
|
||||
bgColor="#f1f6ff00"></up-image>
|
||||
<view class="not_order_msg_warp">还未发布新闻哦~</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
<Header leftTitle="商家入驻" left-path-type="switchTab" left-path="/pages/mine/mine" />
|
||||
<view class="authentication_ok_content">
|
||||
<view class="authentication_result">
|
||||
<up-image src="/static/mine/auth_ok.png" mode="widthFix" shape="circle" width="140" height="140"
|
||||
bgColor="#f1f6ff00" :fade="true" duration="450"></up-image>
|
||||
<up-image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/auth_ok.png" mode="widthFix"
|
||||
shape="circle" width="140" height="140" bgColor="#f1f6ff00" :fade="true" duration="450"></up-image>
|
||||
<view class="result_value">提交成功</view>
|
||||
</view>
|
||||
<view class="reauthentication_warp">
|
||||
|
||||
@@ -3,7 +3,8 @@
|
||||
<view class="mine_header">
|
||||
<view class="mine_login_data" v-if="currentUserData && Object.keys(currentUserData).length !== 0">
|
||||
<view class="mine_data">
|
||||
<up-image src="/static/logo_y.png" shape="circle" width="80" height="80" bgColor="#f1f6ff00"></up-image>
|
||||
<up-image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/logo_y.png" shape="circle" width="80"
|
||||
height="80" bgColor="#f1f6ff00"></up-image>
|
||||
<view class="mine_info">
|
||||
<view class="mine_info_name">
|
||||
<text style="margin-right: 20rpx;">{{ currentUserData.name || '信任桥用户' }}</text>
|
||||
@@ -80,7 +81,8 @@
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<up-image src="/static/mine/enter_sj.png" width="50" height="50" bgColor="#f1f6ff00"></up-image>
|
||||
<up-image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/enter_sj.png" width="50" height="50"
|
||||
bgColor="#f1f6ff00"></up-image>
|
||||
</view>
|
||||
<view class="enter_item" @click="jumpEnter('brand')">
|
||||
<view>
|
||||
@@ -92,7 +94,8 @@
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<up-image src="/static/mine/enter_pp.png" width="50" height="50" bgColor="#f1f6ff00"></up-image>
|
||||
<up-image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/enter_pp.png" width="50" height="50"
|
||||
bgColor="#f1f6ff00"></up-image>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 服务工具 -->
|
||||
@@ -232,7 +235,7 @@ export default {
|
||||
{
|
||||
id: 3,
|
||||
title: "交易",
|
||||
url: '/static/mine/apply_hm.png'
|
||||
url: 'https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/apply_hm.png'
|
||||
},
|
||||
// {
|
||||
// id:4,
|
||||
@@ -282,7 +285,7 @@ export default {
|
||||
{
|
||||
id: 7,
|
||||
title: "联系客服",
|
||||
url: '/static/mine/tool_kf.png'
|
||||
url: 'https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/tool_kf.png'
|
||||
},
|
||||
// {
|
||||
// id:4,
|
||||
@@ -304,7 +307,7 @@ export default {
|
||||
}, {
|
||||
id: 11,
|
||||
title: "RWA交易",
|
||||
url: '/static/mine/tool_hxjy.png',
|
||||
url: 'https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/tool_hxjy.png',
|
||||
path: "/pages/rwa_package/rwa/rwa",
|
||||
},
|
||||
// {
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
<Header :leftTitle="$t('authentication.title')" left-path-type="switchTab" left-path="/pages/mine/mine" />
|
||||
<view class="authentication_ok_content" v-if="currentUserData && Object.keys(currentUserData).length !== 0">
|
||||
<view class="authentication_result">
|
||||
<up-image src="/static/mine/auth_ok.png" mode="widthFix" shape="circle" width="140" height="140"
|
||||
bgColor="#f1f6ff00" :fade="true" duration="450"></up-image>
|
||||
<up-image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/auth_ok.png" mode="widthFix"
|
||||
shape="circle" width="140" height="140" bgColor="#f1f6ff00" :fade="true" duration="450"></up-image>
|
||||
<view class="result_value">{{ getValue(CERT_STATUS_OPTION, currentUserData.certStatus) }}</view>
|
||||
</view>
|
||||
<view v-if="currentUserData.certStatus === 3" class="reauthentication_warp">
|
||||
@@ -14,7 +14,8 @@
|
||||
</view>
|
||||
</view>
|
||||
<view v-else class="not_order_warp">
|
||||
<up-image src="/static/common/not_order.png" width="80" height="80" bgColor="#f1f6ff00"></up-image>
|
||||
<up-image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/not_order.png" width="80" height="80"
|
||||
bgColor="#f1f6ff00"></up-image>
|
||||
<view class="not_order_msg_warp">暂无相关认证信息</view>
|
||||
</view>
|
||||
<up-toast ref="uToastRef"></up-toast>
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
</view>
|
||||
</view>
|
||||
<view v-else class="not_order_warp">
|
||||
<up-image src="/static/common/not_order.png" width="80" height="80" bgColor="#f1f6ff00"></up-image>
|
||||
<up-image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/not_order.png" width="80" height="80"
|
||||
bgColor="#f1f6ff00"></up-image>
|
||||
<view class="not_order_msg_warp">还未绑定银行卡哦~</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
@@ -10,7 +10,8 @@
|
||||
<!-- 我的信息 -->
|
||||
<view class="my_info">
|
||||
<view class="left_">
|
||||
<up-image src="/static/logo_y.png" width="50" height="50" bgColor="#f1f6ff00" shape="circle" />
|
||||
<up-image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/logo_y.png" width="50" height="50"
|
||||
bgColor="#f1f6ff00" shape="circle" />
|
||||
<view class="left_msg">
|
||||
<view>
|
||||
<text>{{ userData.name || '信任桥用户' }}</text>
|
||||
@@ -121,7 +122,8 @@
|
||||
</view>
|
||||
</view>
|
||||
<view v-else class="not_order_warp">
|
||||
<up-image src="/static/common/not_order.png" width="80" height="80" bgColor="#f1f6ff00"></up-image>
|
||||
<up-image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/not_order.png" width="80"
|
||||
height="80" bgColor="#f1f6ff00"></up-image>
|
||||
<view class="not_order_msg_warp">暂无相关数据</view>
|
||||
</view>
|
||||
<view v-if="royaltyLoading" style="text-align: center;">加载中...</view>
|
||||
|
||||
@@ -82,7 +82,8 @@
|
||||
</view>
|
||||
</view>
|
||||
<view v-else class="not_order_warp">
|
||||
<up-image src="/static/common/not_order.png" width="80" height="80" bgColor="#f1f6ff00"></up-image>
|
||||
<up-image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/not_order.png" width="80" height="80"
|
||||
bgColor="#f1f6ff00"></up-image>
|
||||
<view class="not_order_msg_warp">团队暂无数据</view>
|
||||
</view>
|
||||
<view v-if="royaltyLoading" style="text-align: center;">加载中...</view>
|
||||
|
||||
@@ -88,7 +88,8 @@
|
||||
</view>
|
||||
</view>
|
||||
<view v-else class="not_order_warp">
|
||||
<up-image src="/static/common/not_order.png" width="80" height="80" bgColor="#f1f6ff00"></up-image>
|
||||
<up-image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/not_order.png" width="80" height="80"
|
||||
bgColor="#f1f6ff00"></up-image>
|
||||
<view class="not_order_msg_warp">暂无相关订单</view>
|
||||
</view>
|
||||
<view v-if="loading" style="text-align: center;">加载中...</view>
|
||||
|
||||
@@ -16,7 +16,8 @@
|
||||
</view>
|
||||
</view>
|
||||
<view v-else class="not_order_warp">
|
||||
<up-image src="/static/common/not_order.png" width="80" height="80" bgColor="#f1f6ff00"></up-image>
|
||||
<up-image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/not_order.png" width="80" height="80"
|
||||
bgColor="#f1f6ff00"></up-image>
|
||||
<view class="not_order_msg_warp">还没有提现记录哦~</view>
|
||||
</view>
|
||||
<view v-if="loading" style="text-align: center;">加载中...</view>
|
||||
|
||||
@@ -38,7 +38,8 @@
|
||||
</view>
|
||||
</up-radio-group>
|
||||
<view v-else class="not_order_warp">
|
||||
<up-image src="/static/common/not_order.png" width="80" height="80" bgColor="#f1f6ff00"></up-image>
|
||||
<up-image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/not_order.png" width="80" height="80"
|
||||
bgColor="#f1f6ff00"></up-image>
|
||||
<view class="not_order_msg_warp">暂无兑换选项</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
@@ -32,7 +32,8 @@
|
||||
</view>
|
||||
</view>
|
||||
<view v-else class="not_order_warp">
|
||||
<up-image src="/static/common/not_order.png" width="80" height="80" bgColor="#f1f6ff00"></up-image>
|
||||
<up-image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/not_order.png" width="80" height="80"
|
||||
bgColor="#f1f6ff00"></up-image>
|
||||
<view class="not_order_msg_warp">暂无记录~</view>
|
||||
</view>
|
||||
<view v-if="loading" style="text-align: center;">加载中...</view>
|
||||
|
||||
@@ -5,7 +5,8 @@
|
||||
<view class="setting_comm">
|
||||
<view class="header_user">
|
||||
<view class="mine_data">
|
||||
<up-image src="/static/logo_y.png" shape="circle" width="60" height="60" bgColor="#f1f6ff00"></up-image>
|
||||
<up-image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/logo_y.png" shape="circle" width="60"
|
||||
height="60" bgColor="#f1f6ff00"></up-image>
|
||||
<view class="mine_info">
|
||||
<view class="mine_info_name">{{ userData.name || '信任桥用户' }}</view>
|
||||
<view class="mine_info_id">注册手机号:{{ userData.mobile }}</view>
|
||||
|
||||
@@ -15,7 +15,8 @@
|
||||
<dengbo-lotteryWheel :prizes="prizes" :size="626" :duration="5000" @run="startClick(1)" @done="Done"
|
||||
ref="luckyWheel" :lightImgs="lightImages" customStyle="borderRadius: 50%;" :styleOpt="styleOpt">
|
||||
<template v-slot:bg>
|
||||
<image src="/static/turntable/turntable.png" style="width: 100%; height: 100%;" />
|
||||
<image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/turntable.png"
|
||||
style="width: 100%; height: 100%;" />
|
||||
</template>
|
||||
<template v-slot:pointer>
|
||||
<image src="/static/turntable/zz.png" style="width: 50px; height: 50px;" mode="widthFix"
|
||||
|
||||
@@ -3,298 +3,306 @@
|
||||
<view class="_header_warp">全球聚合供应链</view>
|
||||
|
||||
<!-- <view class="_content_warp"> -->
|
||||
<up-swiper
|
||||
:list="swiperList"
|
||||
height="160"
|
||||
@change="e => currentNum = e.current"
|
||||
bgColor="#ffffff00"
|
||||
>
|
||||
<template #indicator>
|
||||
<view
|
||||
class="indicator-num"
|
||||
>
|
||||
<text class="indicator-num__text">{{ currentNum + 1 }}/{{ swiperList.length }}</text>
|
||||
</view>
|
||||
</template>
|
||||
</up-swiper>
|
||||
<!-- 通知 -->
|
||||
<view class="supply_chain_note_warp">
|
||||
<up-image src="/static/common/note.png" width="16" height="16" bgColor="#f1f6ff00"></up-image>
|
||||
<up-notice-bar :icon="false" bgColor="#F5F6F8FF" color="#000000E6" text="壹点科技全球聚合供应链:整合京东、阿里、唯品会等一手供应链资源,支持API一键导入,为私域电商全品类货源提供一件代发服务。"></up-notice-bar>
|
||||
</view>
|
||||
<!-- 保障 -->
|
||||
<view class="guarantee_warp">
|
||||
<view class="guarantee_item_warp" v-for="(item,index) in guaranteeList" :key="index">
|
||||
<view style="margin-top: 10rpx;">
|
||||
<up-image :src="item.path" width="20" height="20" bgColor="#f1f6ff00"></up-image>
|
||||
</view>
|
||||
<view class="guarantee_item_content_warp">
|
||||
<view class="title_">{{item.title}}</view>
|
||||
<view class="content_">{{item.content}}</view>
|
||||
</view>
|
||||
<up-swiper :list="swiperList" height="160" @change="e => currentNum = e.current" bgColor="#ffffff00">
|
||||
<template #indicator>
|
||||
<view class="indicator-num">
|
||||
<text class="indicator-num__text">{{ currentNum + 1 }}/{{ swiperList.length }}</text>
|
||||
</view>
|
||||
</template>
|
||||
</up-swiper>
|
||||
<!-- 通知 -->
|
||||
<view class="supply_chain_note_warp">
|
||||
<up-image src="/static/common/note.png" width="16" height="16" bgColor="#f1f6ff00"></up-image>
|
||||
<up-notice-bar :icon="false" bgColor="#F5F6F8FF" color="#000000E6"
|
||||
text="壹点科技全球聚合供应链:整合京东、阿里、唯品会等一手供应链资源,支持API一键导入,为私域电商全品类货源提供一件代发服务。"></up-notice-bar>
|
||||
</view>
|
||||
<!-- 保障 -->
|
||||
<view class="guarantee_warp">
|
||||
<view class="guarantee_item_warp" v-for="(item, index) in guaranteeList" :key="index">
|
||||
<view style="margin-top: 10rpx;">
|
||||
<up-image :src="item.path" width="20" height="20" bgColor="#f1f6ff00"></up-image>
|
||||
</view>
|
||||
<view class="guarantee_item_content_warp">
|
||||
<view class="title_">{{ item.title }}</view>
|
||||
<view class="content_">{{ item.content }}</view>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 分类 -->
|
||||
<view class="sort_warp">
|
||||
<view class="sort_item_warp" v-for="(item,index) in sortList" :key="index" @click="sortFun(item)">
|
||||
<up-image :src="item.path" width="30" height="30" bgColor="#f1f6ff00" ></up-image>
|
||||
<view class="sort_item_title_warp">{{item.title}}</view>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 分类 -->
|
||||
<view class="sort_warp">
|
||||
<view class="sort_item_warp" v-for="(item, index) in sortList" :key="index" @click="sortFun(item)">
|
||||
<up-image :src="item.path" width="30" height="30" bgColor="#f1f6ff00"></up-image>
|
||||
<view class="sort_item_title_warp">{{ item.title }}</view>
|
||||
</view>
|
||||
<!-- 商品 -->
|
||||
<view class="supply_chain_product_warp">
|
||||
<view class="product_title">
|
||||
<view class="product_title_msg">精选好物</view>
|
||||
<view class="product_title_bg"></view>
|
||||
</view>
|
||||
<scroll-view scroll-y="true" @scrolltolower="loadMore" style="height:calc(100vh - 158px);margin-top: 10rpx;">
|
||||
<view class="supply_chain_product_content" v-if="productList && productList.length !==0">
|
||||
<view class="product_content_item" v-for="item in productList" :key="item.id" @click="jumpInfo(item)">
|
||||
<up-image :src="item.thumb" width="100%" height="140" bgColor="#f1f6ff00"></up-image>
|
||||
<view class="product_content_item_content">
|
||||
<view class="product_item_name">{{item.title}}</view>
|
||||
<view class="product_item_price">
|
||||
<view class="price_">
|
||||
<text>¥</text>
|
||||
<text style="color:36rpx;">{{item.price}}</text>
|
||||
</view>
|
||||
<view class="price_sell">已售{{item.sales}}件</view>
|
||||
</view>
|
||||
<!-- 商品 -->
|
||||
<view class="supply_chain_product_warp">
|
||||
<view class="product_title">
|
||||
<view class="product_title_msg">精选好物</view>
|
||||
<view class="product_title_bg"></view>
|
||||
</view>
|
||||
<scroll-view scroll-y="true" @scrolltolower="loadMore" style="height:calc(100vh - 158px);margin-top: 10rpx;">
|
||||
<view class="supply_chain_product_content" v-if="productList && productList.length !== 0">
|
||||
<view class="product_content_item" v-for="item in productList" :key="item.id" @click="jumpInfo(item)">
|
||||
<up-image :src="item.thumb" width="100%" height="140" bgColor="#f1f6ff00"></up-image>
|
||||
<view class="product_content_item_content">
|
||||
<view class="product_item_name">{{ item.title }}</view>
|
||||
<view class="product_item_price">
|
||||
<view class="price_">
|
||||
<text>¥</text>
|
||||
<text style="color:36rpx;">{{ item.price }}</text>
|
||||
</view>
|
||||
<view class="price_sell">已售{{ item.sales }}件</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view v-else class="not_order_warp">
|
||||
<up-image src="/static/common/not_order.png" width="80" height="80" bgColor="#f1f6ff00"></up-image>
|
||||
<view class="not_order_msg_warp">还未添加商品哦~</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
</view>
|
||||
<view v-else class="not_order_warp">
|
||||
<up-image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/not_order.png" width="80" height="80"
|
||||
bgColor="#f1f6ff00"></up-image>
|
||||
<view class="not_order_msg_warp">还未添加商品哦~</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
<!-- </view> -->
|
||||
<CustomTabBar :tabIndex="2"/>
|
||||
<CustomTabBar :tabIndex="2" />
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { getCarouselImage } from '@/api/common.js';
|
||||
import { APP_PAGE_TYPE } from '@/utils/enumUtils.js';
|
||||
import CustomTabBar from '@/components/custom-tab-bar.vue';
|
||||
import { getCarouselImage } from '@/api/common.js';
|
||||
import { APP_PAGE_TYPE } from '@/utils/enumUtils.js';
|
||||
import CustomTabBar from '@/components/custom-tab-bar.vue';
|
||||
|
||||
export default {
|
||||
components:{CustomTabBar},
|
||||
data() {
|
||||
return {
|
||||
swiperList:['/static/supply_chain/banner01.png'],
|
||||
currentNum:0,
|
||||
guaranteeList:[
|
||||
{
|
||||
path:'/static/supply_chain/pz.png',
|
||||
title:'品质保障',
|
||||
content:'100%正品',
|
||||
},{
|
||||
path:'/static/supply_chain/ks.png',
|
||||
title:'快速发货',
|
||||
content:'48小时内送出',
|
||||
},{
|
||||
path:'/static/supply_chain/sh.png',
|
||||
title:'售后服务',
|
||||
content:'快速响应',
|
||||
},{
|
||||
path:'/static/supply_chain/th.png',
|
||||
title:'退货无忧',
|
||||
content:'七天无条件退货',
|
||||
},
|
||||
],
|
||||
sortList:[
|
||||
{
|
||||
path:'/static/supply_chain/sort_fs.png',
|
||||
title:'服饰鞋包',
|
||||
category:"258,259,377"
|
||||
},{
|
||||
path:'/static/supply_chain/sort_sm.png',
|
||||
title:'数码家电',
|
||||
category:"255,257"
|
||||
},{
|
||||
path:'/static/supply_chain/sort_mz.png',
|
||||
title:'美妆个护',
|
||||
category:"278,279,280"
|
||||
},{
|
||||
path:'/static/supply_chain/sort_sp.png',
|
||||
title:'食品酒水',
|
||||
category:"274,275"
|
||||
},{
|
||||
path:'/static/supply_chain/sort_jj.png',
|
||||
title:'家居生活',
|
||||
category:"271"
|
||||
},{
|
||||
path:'/static/supply_chain/sort_my.png',
|
||||
title:'母婴用品',
|
||||
category:"379"
|
||||
},{
|
||||
path:'/static/supply_chain/sort_yd.png',
|
||||
title:'运动户外',
|
||||
category:"380"
|
||||
},{
|
||||
path:'/static/supply_chain/sort_qc.png',
|
||||
title:'汽车用品',
|
||||
category:"389"
|
||||
},{
|
||||
path:'/static/supply_chain/sort_ts.png',
|
||||
title:'图书音像',
|
||||
category:"385"
|
||||
},{
|
||||
path:'/static/supply_chain/sort_bg.png',
|
||||
title:'办公用品',
|
||||
category:"386"
|
||||
},
|
||||
],
|
||||
loading:false,
|
||||
form:{
|
||||
page:1,
|
||||
limit:20,
|
||||
app_id:"2024111300164927",
|
||||
sign_type:"MD5",
|
||||
sign:"d04be0cedd49608e758458325faecf90",
|
||||
category:null,
|
||||
export default {
|
||||
components: { CustomTabBar },
|
||||
data() {
|
||||
return {
|
||||
swiperList: ['https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/banner01.png'],
|
||||
currentNum: 0,
|
||||
guaranteeList: [
|
||||
{
|
||||
path: '/static/supply_chain/pz.png',
|
||||
title: '品质保障',
|
||||
content: '100%正品',
|
||||
}, {
|
||||
path: '/static/supply_chain/ks.png',
|
||||
title: '快速发货',
|
||||
content: '48小时内送出',
|
||||
}, {
|
||||
path: '/static/supply_chain/sh.png',
|
||||
title: '售后服务',
|
||||
content: '快速响应',
|
||||
}, {
|
||||
path: '/static/supply_chain/th.png',
|
||||
title: '退货无忧',
|
||||
content: '七天无条件退货',
|
||||
},
|
||||
productList:[],// 商品图
|
||||
};
|
||||
},
|
||||
onLoad(option) {
|
||||
this.searchGYLMall();
|
||||
},
|
||||
methods: {
|
||||
/**
|
||||
* 查询供应链的商品
|
||||
*/
|
||||
searchGYLMall(){
|
||||
if (this.loading) return; // 如果正在加载,则不重复加载
|
||||
this.loading = true; // 设置加载状态为true
|
||||
try {
|
||||
const params = this.form;
|
||||
uni.request({
|
||||
url: "https://cyysc.gscm.top/outside/1/atm/goods/list",
|
||||
method:"get",
|
||||
data:params,
|
||||
header: {},
|
||||
success: (res) => {
|
||||
const data = res.data;
|
||||
if(data && data.result === 1){
|
||||
const newData = data.data.data;
|
||||
const newArr = newData.map(obj => {
|
||||
const sales = Math.floor(Math.random() * 5000) + 700;
|
||||
return { ...obj, sales:sales }; // 使用展开运算符添加新属性
|
||||
});
|
||||
this.productList = [...this.productList, ...newArr]; // 将新数据添加到列表中
|
||||
this.form.page++;
|
||||
}
|
||||
},
|
||||
fail: (error) => {
|
||||
console.log("error",error);
|
||||
},
|
||||
});
|
||||
} catch (error) {
|
||||
console.error('加载数据失败:', error);
|
||||
} finally {
|
||||
this.loading = false; // 设置加载状态为false
|
||||
}
|
||||
],
|
||||
sortList: [
|
||||
{
|
||||
path: '/static/supply_chain/sort_fs.png',
|
||||
title: '服饰鞋包',
|
||||
category: "258,259,377"
|
||||
}, {
|
||||
path: '/static/supply_chain/sort_sm.png',
|
||||
title: '数码家电',
|
||||
category: "255,257"
|
||||
}, {
|
||||
path: '/static/supply_chain/sort_mz.png',
|
||||
title: '美妆个护',
|
||||
category: "278,279,280"
|
||||
}, {
|
||||
path: '/static/supply_chain/sort_sp.png',
|
||||
title: '食品酒水',
|
||||
category: "274,275"
|
||||
}, {
|
||||
path: '/static/supply_chain/sort_jj.png',
|
||||
title: '家居生活',
|
||||
category: "271"
|
||||
}, {
|
||||
path: '/static/supply_chain/sort_my.png',
|
||||
title: '母婴用品',
|
||||
category: "379"
|
||||
}, {
|
||||
path: '/static/supply_chain/sort_yd.png',
|
||||
title: '运动户外',
|
||||
category: "380"
|
||||
}, {
|
||||
path: '/static/supply_chain/sort_qc.png',
|
||||
title: '汽车用品',
|
||||
category: "389"
|
||||
}, {
|
||||
path: '/static/supply_chain/sort_ts.png',
|
||||
title: '图书音像',
|
||||
category: "385"
|
||||
}, {
|
||||
path: '/static/supply_chain/sort_bg.png',
|
||||
title: '办公用品',
|
||||
category: "386"
|
||||
},
|
||||
],
|
||||
loading: false,
|
||||
form: {
|
||||
page: 1,
|
||||
limit: 20,
|
||||
app_id: "2024111300164927",
|
||||
sign_type: "MD5",
|
||||
sign: "d04be0cedd49608e758458325faecf90",
|
||||
category: null,
|
||||
},
|
||||
/**
|
||||
* 分类搜索
|
||||
* @param {Object} item
|
||||
*/
|
||||
sortFun(item){
|
||||
this.productList = [];
|
||||
this.form.page = 1;
|
||||
this.form.category = item.category;
|
||||
this.searchGYLMall(); // 加载更多数据
|
||||
},
|
||||
|
||||
// 当滚动到底部时触发的方法
|
||||
loadMore() {
|
||||
this.searchGYLMall(); // 加载更多数据
|
||||
},
|
||||
/**
|
||||
* 详情页面
|
||||
*/
|
||||
jumpInfo(item){
|
||||
uni.navigateTo({
|
||||
url: '/pages/other_package/productInfo/productInfo?id='+item.id+"&source=supply_chain",
|
||||
})
|
||||
productList: [],// 商品图
|
||||
};
|
||||
},
|
||||
onLoad(option) {
|
||||
this.searchGYLMall();
|
||||
},
|
||||
methods: {
|
||||
/**
|
||||
* 查询供应链的商品
|
||||
*/
|
||||
searchGYLMall() {
|
||||
if (this.loading) return; // 如果正在加载,则不重复加载
|
||||
this.loading = true; // 设置加载状态为true
|
||||
try {
|
||||
const params = this.form;
|
||||
uni.request({
|
||||
url: "https://cyysc.gscm.top/outside/1/atm/goods/list",
|
||||
method: "get",
|
||||
data: params,
|
||||
header: {},
|
||||
success: (res) => {
|
||||
const data = res.data;
|
||||
if (data && data.result === 1) {
|
||||
const newData = data.data.data;
|
||||
const newArr = newData.map(obj => {
|
||||
const sales = Math.floor(Math.random() * 5000) + 700;
|
||||
return { ...obj, sales: sales }; // 使用展开运算符添加新属性
|
||||
});
|
||||
this.productList = [...this.productList, ...newArr]; // 将新数据添加到列表中
|
||||
this.form.page++;
|
||||
}
|
||||
},
|
||||
fail: (error) => {
|
||||
console.log("error", error);
|
||||
},
|
||||
});
|
||||
} catch (error) {
|
||||
console.error('加载数据失败:', error);
|
||||
} finally {
|
||||
this.loading = false; // 设置加载状态为false
|
||||
}
|
||||
},
|
||||
/**
|
||||
* 分类搜索
|
||||
* @param {Object} item
|
||||
*/
|
||||
sortFun(item) {
|
||||
this.productList = [];
|
||||
this.form.page = 1;
|
||||
this.form.category = item.category;
|
||||
this.searchGYLMall(); // 加载更多数据
|
||||
},
|
||||
|
||||
// 当滚动到底部时触发的方法
|
||||
loadMore() {
|
||||
this.searchGYLMall(); // 加载更多数据
|
||||
},
|
||||
/**
|
||||
* 详情页面
|
||||
*/
|
||||
jumpInfo(item) {
|
||||
uni.navigateTo({
|
||||
url: '/pages/other_package/productInfo/productInfo?id=' + item.id + "&source=supply_chain",
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.supply_chain_warp{
|
||||
.supply_chain_warp {
|
||||
height: calc(100vh - 140rpx);
|
||||
overflow: auto;
|
||||
background-color: $app-bj;
|
||||
._header_warp{
|
||||
|
||||
._header_warp {
|
||||
margin-top: 60rpx;
|
||||
height: 80rpx;
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
background-color: $app-bj;
|
||||
text-align: center;
|
||||
}
|
||||
.supply_chain_note_warp{
|
||||
|
||||
.supply_chain_note_warp {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 0 0 0 30rpx;
|
||||
}
|
||||
.guarantee_warp{
|
||||
|
||||
.guarantee_warp {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
background: #FFFFFF;
|
||||
padding: 10rpx 30rpx;
|
||||
.guarantee_item_warp{
|
||||
|
||||
.guarantee_item_warp {
|
||||
width: 25%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.guarantee_item_content_warp{
|
||||
|
||||
.guarantee_item_content_warp {
|
||||
margin-left: 10rpx;
|
||||
}
|
||||
.title_{
|
||||
|
||||
.title_ {
|
||||
font-size: 18rpx;
|
||||
color: rgba(0,0,0,0.6);
|
||||
color: rgba(0, 0, 0, 0.6);
|
||||
}
|
||||
.content_{
|
||||
|
||||
.content_ {
|
||||
font-size: 14rpx;
|
||||
color: rgba(0,0,0,0.26);
|
||||
color: rgba(0, 0, 0, 0.26);
|
||||
margin-top: 6rpx;
|
||||
}
|
||||
}
|
||||
.sort_warp{
|
||||
|
||||
.sort_warp {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
flex-wrap: wrap;
|
||||
padding: 30rpx 0;
|
||||
.sort_item_warp{
|
||||
|
||||
.sort_item_warp {
|
||||
width: 20%;
|
||||
text-align: center;
|
||||
margin-bottom: 10rpx;
|
||||
}
|
||||
.sort_item_title_warp{
|
||||
|
||||
.sort_item_title_warp {
|
||||
font-size: 24rpx;
|
||||
color: rgba(0,0,0,0.9);
|
||||
color: rgba(0, 0, 0, 0.9);
|
||||
}
|
||||
}
|
||||
|
||||
.supply_chain_product_warp{
|
||||
.supply_chain_product_warp {
|
||||
padding: 0rpx 30rpx 0;
|
||||
.product_title{
|
||||
|
||||
.product_title {
|
||||
position: relative;
|
||||
.product_title_msg{
|
||||
|
||||
.product_title_msg {
|
||||
position: relative;
|
||||
font-family: AlimamaFangYuanTiVF-Medium, AlimamaFangYuanTiVF-Medium;
|
||||
font-weight: normal;
|
||||
font-size: 38rpx;
|
||||
color: rgba(0,0,0,0.9);
|
||||
color: rgba(0, 0, 0, 0.9);
|
||||
z-index: 2;
|
||||
}
|
||||
.product_title_bg{
|
||||
|
||||
.product_title_bg {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 113rpx;
|
||||
@@ -304,36 +312,42 @@
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.supply_chain_product_content{
|
||||
|
||||
.supply_chain_product_content {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
overflow: auto;
|
||||
.product_content_item{
|
||||
|
||||
.product_content_item {
|
||||
width: 48%;
|
||||
background: #FFFFFF;
|
||||
margin-bottom: 20rpx;
|
||||
.product_content_item_content{
|
||||
|
||||
.product_content_item_content {
|
||||
border-radius: 18rpx;
|
||||
padding: 0 20rpx 20rpx;
|
||||
}
|
||||
.product_item_name{
|
||||
|
||||
.product_item_name {
|
||||
font-weight: 500;
|
||||
font-size: 30rpx;
|
||||
color: rgba(0,0,0,0.9);
|
||||
color: rgba(0, 0, 0, 0.9);
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 2;
|
||||
overflow: hidden;
|
||||
}
|
||||
.product_item_price{
|
||||
|
||||
.product_item_price {
|
||||
font-size: 20rpx;
|
||||
color: $app-zt-color;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-top: 10rpx;
|
||||
.price_sell{
|
||||
color: rgba(0,0,0,0.26);
|
||||
|
||||
.price_sell {
|
||||
color: rgba(0, 0, 0, 0.26);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Before Width: | Height: | Size: 239 KiB |
|
Before Width: | Height: | Size: 91 KiB |
|
Before Width: | Height: | Size: 683 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 36 KiB |
|
Before Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 49 KiB |
|
Before Width: | Height: | Size: 72 KiB |
|
Before Width: | Height: | Size: 182 KiB |
|
Before Width: | Height: | Size: 1.4 MiB |
|
Before Width: | Height: | Size: 247 KiB |