feat:替换部分图片

This commit is contained in:
2025-08-06 20:47:28 +08:00
parent 04ee847c09
commit e3dc5539ca
30 changed files with 474 additions and 429 deletions
+4 -3
View File
@@ -1,4 +1,5 @@
node_modules node_modules/
.DS_Store .DS_Store
.history .history/
unpackage unpackage/
dist/
+22 -11
View File
@@ -1,30 +1,33 @@
<template> <template>
<!-- <up-loading-page :loading="listLoading"></up-loading-page> --> <!-- <up-loading-page :loading="listLoading"></up-loading-page> -->
<scroll-view scroll-y="true" @scrolltolower="loadMore" :style="{ 'height': heightRef }"> <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_item" v-for="item in prizeDrawList" :key="item.id"
v-if="prizeDrawList && prizeDrawList.length !== 0">
<view class="prize_draw_left_warp"> <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> <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 style="margin-left: 20rpx;">
<view class="title_">{{ item.prizeName }}</view> <view class="title_">{{ item.prizeName }}</view>
<view class="time_">{{ formatDate(item.ctdate) }}</view> <view class="time_">{{ formatDate(item.ctdate) }}</view>
<view <view class="delivery_"
class="delivery_" v-if="[DELIVER_STATUS.AWAIT_DELIVERY_REQUIRED, DELIVER_STATUS.YES_DELIVERY_REQUIRED, DELIVER_STATUS.RECEIVED].includes(item.deliveryStatus)">
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_status">{{ getValue(DELIVER_STATUS_, item.deliveryStatus) }}</view>
<view class="delivery_num" v-if="item.deliveryNum"> <view class="delivery_num" v-if="item.deliveryNum">
<text style="margin-right: 10rpx;">运单号:{{ item.deliveryNum }}</text> <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> <up-image src="/static/common/copy.png" width="10" height="10" bgColor="#f1f6ff00"
@click="copyData(item.deliveryNum)"></up-image>
</view> </view>
<view class="delivery_num" v-else>运单号:暂无</view> <view class="delivery_num" v-else>运单号:暂无</view>
</view> </view>
</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" 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 class="prize_draw_right_warp yes_" v-if="item.type === 4" v-show="item.status === 2">已领取</view>
</view> </view>
<view v-else class="not_order_warp"> <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 class="not_order_msg_warp">还未中奖哦~</view>
</view> </view>
<view v-if="loading" style="text-align: center;">加载中...</view> <view v-if="loading" style="text-align: center;">加载中...</view>
@@ -117,8 +120,8 @@
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.prize_draw_warp{ .prize_draw_warp {}
}
.prize_draw_item { .prize_draw_item {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
@@ -126,37 +129,44 @@
padding: 20rpx 0; padding: 20rpx 0;
border-bottom: 1rpx solid #EEEEEE; border-bottom: 1rpx solid #EEEEEE;
} }
.prize_draw_left_warp { .prize_draw_left_warp {
display: flex; display: flex;
align-items: center; align-items: center;
} }
.title_ { .title_ {
font-weight: bold; font-weight: bold;
font-size: 28rpx; font-size: 28rpx;
color: #333333; color: #333333;
} }
.time_ { .time_ {
font-size: 24rpx; font-size: 24rpx;
color: #666666; color: #666666;
margin-top: 10rpx; margin-top: 10rpx;
} }
.delivery_ { .delivery_ {
display: flex; display: flex;
align-items: center; align-items: center;
font-size: 20rpx; font-size: 20rpx;
margin-top: 10rpx; margin-top: 10rpx;
.delivery_status { .delivery_status {
padding: 6rpx 10rpx; padding: 6rpx 10rpx;
border-radius: 10rpx; border-radius: 10rpx;
color: $app-bt-bj; color: $app-bt-bj;
border: 1rpx solid $app-bt-bj; border: 1rpx solid $app-bt-bj;
} }
.delivery_num { .delivery_num {
margin-left: 10rpx; margin-left: 10rpx;
display: flex; display: flex;
align-items: center; align-items: center;
} }
} }
.prize_draw_right_warp { .prize_draw_right_warp {
background: $app-bt-bj; background: $app-bt-bj;
border-radius: 10rpx; border-radius: 10rpx;
@@ -165,6 +175,7 @@
padding: 10rpx 28rpx; padding: 10rpx 28rpx;
height: 48rpx; height: 48rpx;
} }
.yes_ { .yes_ {
background: #F5F5F5; background: #F5F5F5;
color: #666666; color: #666666;
+8 -5
View File
@@ -1,13 +1,15 @@
<template> <template>
<view class="content"> <view class="content">
<view class="lottery"> <view class="lottery">
<dengbo-lotteryWheel :prizes="prizes" :size="626" :duration="5000" @run="Click" <dengbo-lotteryWheel :prizes="prizes" :size="626" :duration="5000" @run="Click" @done="Done"
@done="Done" ref="luckyWheel" :lightImgs="lightImages" customStyle="borderRadius: 50%;"> ref="luckyWheel" :lightImgs="lightImages" customStyle="borderRadius: 50%;">
<template v-slot:bg> <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>
<template v-slot:pointer> <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> </template>
</dengbo-lotteryWheel> </dengbo-lotteryWheel>
</view> </view>
@@ -18,7 +20,7 @@
export default { export default {
data() { data() {
return { return {
lightImages: ['/static/turntable/zz.png', '/static/turntable/turntable.png'], lightImages: ['/static/turntable/zz.png', 'https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/turntable.png'],
prizes: [{ prizes: [{
name: '积分', name: '积分',
image: '/static/turntable/record.png', image: '/static/turntable/record.png',
@@ -81,6 +83,7 @@
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
} }
.lottery { .lottery {
position: relative; position: relative;
display: inline-block; display: inline-block;
+2 -1
View File
@@ -54,7 +54,8 @@
</view> </view>
</view> </view>
<view v-else class="not_order_warp"> <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 class="not_order_msg_warp">暂无分类</view>
</view> </view>
</view> </view>
+2 -1
View File
@@ -51,7 +51,8 @@
</view> </view>
</view> </view>
<view v-else class="not_order_warp"> <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 class="not_order_msg_warp">还未发布新闻哦~</view>
</view> </view>
</scroll-view> </scroll-view>
@@ -3,8 +3,8 @@
<Header leftTitle="商家入驻" left-path-type="switchTab" left-path="/pages/mine/mine" /> <Header leftTitle="商家入驻" left-path-type="switchTab" left-path="/pages/mine/mine" />
<view class="authentication_ok_content"> <view class="authentication_ok_content">
<view class="authentication_result"> <view class="authentication_result">
<up-image src="/static/mine/auth_ok.png" mode="widthFix" shape="circle" width="140" height="140" <up-image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/auth_ok.png" mode="widthFix"
bgColor="#f1f6ff00" :fade="true" duration="450"></up-image> shape="circle" width="140" height="140" bgColor="#f1f6ff00" :fade="true" duration="450"></up-image>
<view class="result_value">提交成功</view> <view class="result_value">提交成功</view>
</view> </view>
<view class="reauthentication_warp"> <view class="reauthentication_warp">
+9 -6
View File
@@ -3,7 +3,8 @@
<view class="mine_header"> <view class="mine_header">
<view class="mine_login_data" v-if="currentUserData && Object.keys(currentUserData).length !== 0"> <view class="mine_login_data" v-if="currentUserData && Object.keys(currentUserData).length !== 0">
<view class="mine_data"> <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">
<view class="mine_info_name"> <view class="mine_info_name">
<text style="margin-right: 20rpx;">{{ currentUserData.name || '信任桥用户' }}</text> <text style="margin-right: 20rpx;">{{ currentUserData.name || '信任桥用户' }}</text>
@@ -80,7 +81,8 @@
</view> </view>
</view> </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>
<view class="enter_item" @click="jumpEnter('brand')"> <view class="enter_item" @click="jumpEnter('brand')">
<view> <view>
@@ -92,7 +94,8 @@
</view> </view>
</view> </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>
</view> </view>
<!-- 服务工具 --> <!-- 服务工具 -->
@@ -232,7 +235,7 @@ export default {
{ {
id: 3, id: 3,
title: "交易", title: "交易",
url: '/static/mine/apply_hm.png' url: 'https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/apply_hm.png'
}, },
// { // {
// id:4, // id:4,
@@ -282,7 +285,7 @@ export default {
{ {
id: 7, id: 7,
title: "联系客服", title: "联系客服",
url: '/static/mine/tool_kf.png' url: 'https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/tool_kf.png'
}, },
// { // {
// id:4, // id:4,
@@ -304,7 +307,7 @@ export default {
}, { }, {
id: 11, id: 11,
title: "RWA交易", 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", path: "/pages/rwa_package/rwa/rwa",
}, },
// { // {
@@ -3,8 +3,8 @@
<Header :leftTitle="$t('authentication.title')" left-path-type="switchTab" left-path="/pages/mine/mine" /> <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_ok_content" v-if="currentUserData && Object.keys(currentUserData).length !== 0">
<view class="authentication_result"> <view class="authentication_result">
<up-image src="/static/mine/auth_ok.png" mode="widthFix" shape="circle" width="140" height="140" <up-image src="https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/auth_ok.png" mode="widthFix"
bgColor="#f1f6ff00" :fade="true" duration="450"></up-image> 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 class="result_value">{{ getValue(CERT_STATUS_OPTION, currentUserData.certStatus) }}</view>
</view> </view>
<view v-if="currentUserData.certStatus === 3" class="reauthentication_warp"> <view v-if="currentUserData.certStatus === 3" class="reauthentication_warp">
@@ -14,7 +14,8 @@
</view> </view>
</view> </view>
<view v-else class="not_order_warp"> <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 class="not_order_msg_warp">暂无相关认证信息</view>
</view> </view>
<up-toast ref="uToastRef"></up-toast> <up-toast ref="uToastRef"></up-toast>
@@ -22,7 +22,8 @@
</view> </view>
</view> </view>
<view v-else class="not_order_warp"> <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 class="not_order_msg_warp">还未绑定银行卡哦~</view>
</view> </view>
</view> </view>
@@ -10,7 +10,8 @@
<!-- 我的信息 --> <!-- 我的信息 -->
<view class="my_info"> <view class="my_info">
<view class="left_"> <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 class="left_msg">
<view> <view>
<text>{{ userData.name || '信任桥用户' }}</text> <text>{{ userData.name || '信任桥用户' }}</text>
@@ -121,7 +122,8 @@
</view> </view>
</view> </view>
<view v-else class="not_order_warp"> <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 class="not_order_msg_warp">暂无相关数据</view>
</view> </view>
<view v-if="royaltyLoading" style="text-align: center;">加载中...</view> <view v-if="royaltyLoading" style="text-align: center;">加载中...</view>
@@ -82,7 +82,8 @@
</view> </view>
</view> </view>
<view v-else class="not_order_warp"> <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 class="not_order_msg_warp">团队暂无数据</view>
</view> </view>
<view v-if="royaltyLoading" style="text-align: center;">加载中...</view> <view v-if="royaltyLoading" style="text-align: center;">加载中...</view>
+2 -1
View File
@@ -88,7 +88,8 @@
</view> </view>
</view> </view>
<view v-else class="not_order_warp"> <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 class="not_order_msg_warp">暂无相关订单</view>
</view> </view>
<view v-if="loading" style="text-align: center;">加载中...</view> <view v-if="loading" style="text-align: center;">加载中...</view>
@@ -16,7 +16,8 @@
</view> </view>
</view> </view>
<view v-else class="not_order_warp"> <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 class="not_order_msg_warp">还没有提现记录哦~</view>
</view> </view>
<view v-if="loading" style="text-align: center;">加载中...</view> <view v-if="loading" style="text-align: center;">加载中...</view>
@@ -38,7 +38,8 @@
</view> </view>
</up-radio-group> </up-radio-group>
<view v-else class="not_order_warp"> <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 class="not_order_msg_warp">暂无兑换选项</view>
</view> </view>
</view> </view>
@@ -32,7 +32,8 @@
</view> </view>
</view> </view>
<view v-else class="not_order_warp"> <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 class="not_order_msg_warp">暂无记录~</view>
</view> </view>
<view v-if="loading" style="text-align: center;">加载中...</view> <view v-if="loading" style="text-align: center;">加载中...</view>
@@ -5,7 +5,8 @@
<view class="setting_comm"> <view class="setting_comm">
<view class="header_user"> <view class="header_user">
<view class="mine_data"> <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">
<view class="mine_info_name">{{ userData.name || '信任桥用户' }}</view> <view class="mine_info_name">{{ userData.name || '信任桥用户' }}</view>
<view class="mine_info_id">注册手机号:{{ userData.mobile }}</view> <view class="mine_info_id">注册手机号:{{ userData.mobile }}</view>
+2 -1
View File
@@ -15,7 +15,8 @@
<dengbo-lotteryWheel :prizes="prizes" :size="626" :duration="5000" @run="startClick(1)" @done="Done" <dengbo-lotteryWheel :prizes="prizes" :size="626" :duration="5000" @run="startClick(1)" @done="Done"
ref="luckyWheel" :lightImgs="lightImages" customStyle="borderRadius: 50%;" :styleOpt="styleOpt"> ref="luckyWheel" :lightImgs="lightImages" customStyle="borderRadius: 50%;" :styleOpt="styleOpt">
<template v-slot:bg> <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>
<template v-slot:pointer> <template v-slot:pointer>
<image src="/static/turntable/zz.png" style="width: 50px; height: 50px;" mode="widthFix" <image src="/static/turntable/zz.png" style="width: 50px; height: 50px;" mode="widthFix"
+26 -12
View File
@@ -3,16 +3,9 @@
<view class="_header_warp">全球聚合供应链</view> <view class="_header_warp">全球聚合供应链</view>
<!-- <view class="_content_warp"> --> <!-- <view class="_content_warp"> -->
<up-swiper <up-swiper :list="swiperList" height="160" @change="e => currentNum = e.current" bgColor="#ffffff00">
:list="swiperList"
height="160"
@change="e => currentNum = e.current"
bgColor="#ffffff00"
>
<template #indicator> <template #indicator>
<view <view class="indicator-num">
class="indicator-num"
>
<text class="indicator-num__text">{{ currentNum + 1 }}/{{ swiperList.length }}</text> <text class="indicator-num__text">{{ currentNum + 1 }}/{{ swiperList.length }}</text>
</view> </view>
</template> </template>
@@ -20,7 +13,8 @@
<!-- 通知 --> <!-- 通知 -->
<view class="supply_chain_note_warp"> <view class="supply_chain_note_warp">
<up-image src="/static/common/note.png" width="16" height="16" bgColor="#f1f6ff00"></up-image> <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> <up-notice-bar :icon="false" bgColor="#F5F6F8FF" color="#000000E6"
text="壹点科技全球聚合供应链:整合京东、阿里、唯品会等一手供应链资源,支持API一键导入,为私域电商全品类货源提供一件代发服务。"></up-notice-bar>
</view> </view>
<!-- 保障 --> <!-- 保障 -->
<view class="guarantee_warp"> <view class="guarantee_warp">
@@ -64,7 +58,8 @@
</view> </view>
</view> </view>
<view v-else class="not_order_warp"> <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 class="not_order_msg_warp">还未添加商品哦~</view>
</view> </view>
</scroll-view> </scroll-view>
@@ -83,7 +78,7 @@
components: { CustomTabBar }, components: { CustomTabBar },
data() { data() {
return { return {
swiperList:['/static/supply_chain/banner01.png'], swiperList: ['https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/banner01.png'],
currentNum: 0, currentNum: 0,
guaranteeList: [ guaranteeList: [
{ {
@@ -230,6 +225,7 @@
height: calc(100vh - 140rpx); height: calc(100vh - 140rpx);
overflow: auto; overflow: auto;
background-color: $app-bj; background-color: $app-bj;
._header_warp { ._header_warp {
margin-top: 60rpx; margin-top: 60rpx;
height: 80rpx; height: 80rpx;
@@ -237,45 +233,54 @@
background-color: $app-bj; background-color: $app-bj;
text-align: center; text-align: center;
} }
.supply_chain_note_warp { .supply_chain_note_warp {
display: flex; display: flex;
align-items: center; align-items: center;
padding: 0 0 0 30rpx; padding: 0 0 0 30rpx;
} }
.guarantee_warp { .guarantee_warp {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
background: #FFFFFF; background: #FFFFFF;
padding: 10rpx 30rpx; padding: 10rpx 30rpx;
.guarantee_item_warp { .guarantee_item_warp {
width: 25%; width: 25%;
display: flex; display: flex;
align-items: center; align-items: center;
} }
.guarantee_item_content_warp { .guarantee_item_content_warp {
margin-left: 10rpx; margin-left: 10rpx;
} }
.title_ { .title_ {
font-size: 18rpx; font-size: 18rpx;
color: rgba(0, 0, 0, 0.6); color: rgba(0, 0, 0, 0.6);
} }
.content_ { .content_ {
font-size: 14rpx; font-size: 14rpx;
color: rgba(0, 0, 0, 0.26); color: rgba(0, 0, 0, 0.26);
margin-top: 6rpx; margin-top: 6rpx;
} }
} }
.sort_warp { .sort_warp {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
flex-wrap: wrap; flex-wrap: wrap;
padding: 30rpx 0; padding: 30rpx 0;
.sort_item_warp { .sort_item_warp {
width: 20%; width: 20%;
text-align: center; text-align: center;
margin-bottom: 10rpx; margin-bottom: 10rpx;
} }
.sort_item_title_warp { .sort_item_title_warp {
font-size: 24rpx; font-size: 24rpx;
color: rgba(0, 0, 0, 0.9); color: rgba(0, 0, 0, 0.9);
@@ -284,8 +289,10 @@
.supply_chain_product_warp { .supply_chain_product_warp {
padding: 0rpx 30rpx 0; padding: 0rpx 30rpx 0;
.product_title { .product_title {
position: relative; position: relative;
.product_title_msg { .product_title_msg {
position: relative; position: relative;
font-family: AlimamaFangYuanTiVF-Medium, AlimamaFangYuanTiVF-Medium; font-family: AlimamaFangYuanTiVF-Medium, AlimamaFangYuanTiVF-Medium;
@@ -294,6 +301,7 @@
color: rgba(0, 0, 0, 0.9); color: rgba(0, 0, 0, 0.9);
z-index: 2; z-index: 2;
} }
.product_title_bg { .product_title_bg {
position: absolute; position: absolute;
bottom: 0; bottom: 0;
@@ -304,19 +312,23 @@
z-index: 1; z-index: 1;
} }
} }
.supply_chain_product_content { .supply_chain_product_content {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
justify-content: space-between; justify-content: space-between;
overflow: auto; overflow: auto;
.product_content_item { .product_content_item {
width: 48%; width: 48%;
background: #FFFFFF; background: #FFFFFF;
margin-bottom: 20rpx; margin-bottom: 20rpx;
.product_content_item_content { .product_content_item_content {
border-radius: 18rpx; border-radius: 18rpx;
padding: 0 20rpx 20rpx; padding: 0 20rpx 20rpx;
} }
.product_item_name { .product_item_name {
font-weight: 500; font-weight: 500;
font-size: 30rpx; font-size: 30rpx;
@@ -326,12 +338,14 @@
-webkit-line-clamp: 2; -webkit-line-clamp: 2;
overflow: hidden; overflow: hidden;
} }
.product_item_price { .product_item_price {
font-size: 20rpx; font-size: 20rpx;
color: $app-zt-color; color: $app-zt-color;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
margin-top: 10rpx; margin-top: 10rpx;
.price_sell { .price_sell {
color: rgba(0, 0, 0, 0.26); color: rgba(0, 0, 0, 0.26);
} }
Binary file not shown.

Before

Width:  |  Height:  |  Size: 239 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 91 KiB

BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 683 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 182 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 247 KiB