Phase1 后端核心:
- 新增 fsgx_v1.sql 迁移脚本(is_queue_goods/frozen_points/available_points/no_assess)
- SystemConfigServices 返佣设置扩展(周期人数/分档比例/范围/时机)
- StoreOrderCreateServices 周期循环佣金计算
- StoreOrderTakeServices 佣金发放后同步冻结积分
- StoreProductServices/StoreProduct 保存 is_queue_goods
Phase2 后端接口:
- GET /api/hjf/brokerage/progress 佣金周期进度
- GET /api/hjf/assets/overview 资产总览
- HjfPointsServices 每日 frozen_points 0.4‰ 释放定时任务
- PUT /adminapi/hjf/member/{uid}/no_assess 不考核接口
- GET /adminapi/hjf/points/release_log 积分日志接口
Phase3 前端清理:
- hjfCustom.js 路由精简(仅保留 points/log)
- hjfQueue.js/hjfMember.js API 清理/重定向至 CRMEB 原生接口
- pages.json 公排→推荐佣金/佣金记录/佣金规则
Phase4-5 前端改造:
- queue/status.vue 推荐佣金进度页整体重写
- 商品详情/订单确认/支付结果页文案与逻辑改造
- 个人中心/资产页/引导页/规则页文案改造
- HjfQueueProgress/HjfRefundNotice/HjfAssetCard 组件改造
- 推广中心嵌入佣金进度摘要
- hjfMockData.js 全量更新(公排字段→佣金字段)
Phase6 Admin 增强:
- 用户列表新增 frozen_points/available_points 列及不考核操作按钮
- hjfPoints.js USE_MOCK=false 对接真实积分日志接口
Phase7 配置文档:
- docs/fsgx-phase7-config-checklist.md 后台配置与全链路验收清单
Made-with: Cursor
307 lines
7.0 KiB
Vue
307 lines
7.0 KiB
Vue
<template>
|
|
<!-- 带背景轮播图 -->
|
|
<view class="swiperBg" :style="[swiperBgStyle]" v-if="!dataConfig.isHide">
|
|
<template v-if="dataConfig.swiperConfig.list.length">
|
|
<view class="colorBg" :style="[colorBgStyle]"></view>
|
|
<view class="swiper">
|
|
<swiper :style="'height:'+ imageH +'rpx;'" :autoplay="true" :previous-margin="swiperMargin" :next-margin="swiperMargin" :circular="circular" :interval="interval" :duration="duration"
|
|
@change="bannerfun" v-if="imageH">
|
|
<swiper-item v-for="(item,index) in dataConfig.swiperConfig.list" :key="index">
|
|
<view @click="goDetail(item)" class="swiper-item" :class="{ active: active == index }">
|
|
<image :src="item.img" mode="aspectFill" class="image" :style="[imageStyle]"></image>
|
|
</view>
|
|
</swiper-item>
|
|
</swiper>
|
|
<view class="noPic" v-else>图片加载中...</view>
|
|
<view class="dot acea-row" :style="[dotStyle]">
|
|
<view class="progress" v-if="dataConfig.docConfig.tabVal == 2" :style="[progressWidth,dotItemStyle]">
|
|
<view class="inner" :style="[progressValue,dotItemActiveStyle]"></view>
|
|
</view>
|
|
<view class="acea-row" :class="{ small: dataConfig.docConfig.tabVal == 1, line: dataConfig.docConfig.tabVal == 3 }" v-else>
|
|
<view class="dot-item" v-for="(item, index) in dataConfig.swiperConfig.list" :key="index" :class="{ active: active == index }"
|
|
:style="[active == index ? dotItemActiveStyle : dotItemStyle]"></view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'swiperBg',
|
|
props: {
|
|
dataConfig: {
|
|
type: Object,
|
|
default: () => {}
|
|
},
|
|
isSortType: {
|
|
type: String | Number,
|
|
default: 0
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
circular: true,
|
|
autoplay: true,
|
|
interval: 3000,
|
|
duration: 500,
|
|
imgUrls: [], //图片轮播数据
|
|
bgColor: '', //轮播背景颜色
|
|
marginTop: 0, //组件上边距
|
|
paddinglr: 0, //轮播左右边距
|
|
docConfig: 0, //指示点样式
|
|
imgConfig: 0, //是否为圆角
|
|
imageH: 0,
|
|
isColor: 0,
|
|
txtStyle: 0,
|
|
dotColor: '',
|
|
current: 1, //数字指示器当前
|
|
active: 0, //一般指示器当前
|
|
swiperMargin: '',
|
|
swiperMargin: '',
|
|
};
|
|
},
|
|
computed: {
|
|
swiperBgStyle() {
|
|
return {
|
|
padding: `${this.dataConfig.topConfig.val * 2}rpx ${this.dataConfig.prConfig.val * 2}rpx ${this.dataConfig.bottomConfig.val * 2}rpx`,
|
|
marginTop: `${this.dataConfig.mbConfig.val * 2}rpx`,
|
|
};
|
|
},
|
|
colorBgStyle() {
|
|
let styleObject = {
|
|
'background': this.dataConfig.bgColor.color[0].item,
|
|
};
|
|
if (this.dataConfig.styleConfig.tabVal == 1) {
|
|
styleObject['height'] = '50%';
|
|
}
|
|
return styleObject;
|
|
},
|
|
imageStyle() {
|
|
return {
|
|
borderRadius: `${this.dataConfig.filletImg.val * 2}rpx`,
|
|
};
|
|
},
|
|
dotStyle() {
|
|
let styleObject = {};
|
|
if (this.dataConfig.docPosition.tabVal) {
|
|
styleObject['justify-content'] = this.dataConfig.docPosition.tabVal == 1 ? 'center' : 'flex-end';
|
|
}
|
|
return styleObject;
|
|
},
|
|
dotItemStyle() {
|
|
let styleObject = {};
|
|
if (this.dataConfig.toneConfig.tabVal) {
|
|
styleObject['background'] = this.dataConfig.dotBgColor.color[0].item;
|
|
}
|
|
return styleObject;
|
|
},
|
|
dotItemActiveStyle() {
|
|
let styleObject = {};
|
|
if (this.dataConfig.toneConfig.tabVal) {
|
|
styleObject['background'] = this.dataConfig.dotColor.color[0].item;
|
|
}
|
|
return styleObject;
|
|
},
|
|
progressWidth() {
|
|
return {
|
|
width: `${this.dataConfig.swiperConfig.list.length * 20}rpx`,
|
|
};
|
|
},
|
|
progressValue() {
|
|
return {
|
|
width: `${this.current / this.dataConfig.swiperConfig.list.length * 100}%`,
|
|
};
|
|
},
|
|
},
|
|
watch: {
|
|
imageH(nVal, oVal) {
|
|
let self = this
|
|
this.imageH = nVal
|
|
},
|
|
},
|
|
created() {
|
|
this.imgUrls = this.dataConfig.swiperConfig.list
|
|
if (this.dataConfig.styleConfig.tabVal == 2) {
|
|
this.swiperMargin = '55rpx';
|
|
}
|
|
},
|
|
mounted() {
|
|
if (this.imgUrls.length) {
|
|
let that = this;
|
|
this.$nextTick((e) => {
|
|
uni.getImageInfo({
|
|
src: that.setDomain(that.imgUrls[0].img),
|
|
success: (res) => {
|
|
if (res && res.height > 0) {
|
|
// that.$set(that, 'imageH',
|
|
// res.height / res
|
|
// .width * 750)
|
|
let height = res.height * ((750 - this.dataConfig.prConfig.val * 4) / res.width)
|
|
that.$set(that, 'imageH', height);
|
|
} else {
|
|
that.$set(that, 'imageH', 375);
|
|
}
|
|
},
|
|
fail: function(error) {
|
|
that.$set(that, 'imageH', 375);
|
|
}
|
|
})
|
|
})
|
|
}
|
|
},
|
|
methods: {
|
|
bannerfun(e) {
|
|
this.active = e.detail.current;
|
|
this.current = e.detail.current + 1;
|
|
},
|
|
//替换安全域名
|
|
setDomain: function(url) {
|
|
url = url ? url.toString() : '';
|
|
//本地调试打开,生产请注销
|
|
if (url.indexOf("https://") > -1) return url;
|
|
else return url.replace('http://', 'https://');
|
|
},
|
|
goDetail(url) {
|
|
let urls = url.info[0].value;
|
|
this.$util.JumpPath(urls);
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.noPic {
|
|
border-radius: 10rpx;
|
|
width: 100%;
|
|
height: 300rpx;
|
|
background-color: #F0F0F0;
|
|
color: #ccc;
|
|
text-align: center;
|
|
line-height: 300rpx;
|
|
font-size: 30rpx;
|
|
}
|
|
|
|
.swiperBg {
|
|
position: relative;
|
|
.colorBg {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.swiper {
|
|
z-index: 20;
|
|
position: relative;
|
|
overflow: hidden;
|
|
|
|
.dot {
|
|
position: absolute;
|
|
bottom: 20rpx;
|
|
left: 0;
|
|
width: 100%;
|
|
padding: 0 20rpx;
|
|
|
|
.dot-item {
|
|
width: 12rpx;
|
|
height: 12rpx;
|
|
border-radius: 6rpx;
|
|
margin-right: 16rpx;
|
|
background: #DDDDDD;
|
|
|
|
&:last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
&.active {
|
|
background: var(--view-theme);
|
|
}
|
|
}
|
|
|
|
.small {
|
|
.dot-item {
|
|
width: 10rpx;
|
|
height: 10rpx;
|
|
border-radius: 5rpx;
|
|
margin-right: 8rpx;
|
|
|
|
&.active {
|
|
width: 18rpx;
|
|
}
|
|
}
|
|
}
|
|
|
|
.line {
|
|
.dot-item {
|
|
width: 20rpx;
|
|
height: 6rpx;
|
|
border-radius: 3rpx;
|
|
margin-right: 10rpx;
|
|
}
|
|
}
|
|
|
|
.progress {
|
|
width: 60rpx;
|
|
height: 6rpx;
|
|
border-radius: 3rpx;
|
|
background: #DDDDDD;
|
|
|
|
.inner {
|
|
width: 33%;
|
|
height: 6rpx;
|
|
border-radius: 3rpx;
|
|
background: var(--view-theme);
|
|
transition: 0.3s;
|
|
}
|
|
}
|
|
}
|
|
|
|
.swiper-item {
|
|
width: 100%;
|
|
height: 100%;
|
|
transform: scale(0.9);
|
|
transition: 0.3s;
|
|
|
|
&.active {
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
|
|
.image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
// 圆形指示点
|
|
&.circular {
|
|
/deep/.uni-swiper-dot {
|
|
width: 10rpx !important;
|
|
height: 10rpx !important;
|
|
background: rgba(0, 0, 0, .4) !important
|
|
}
|
|
|
|
/deep/.uni-swiper-dot-active {
|
|
background: #fff !important
|
|
}
|
|
}
|
|
|
|
// 方形指示点
|
|
&.square {
|
|
/deep/.uni-swiper-dot {
|
|
width: 20rpx !important;
|
|
height: 5rpx !important;
|
|
border-radius: 3rpx;
|
|
background: rgba(0, 0, 0, .4) !important
|
|
}
|
|
|
|
/deep/.uni-swiper-dot-active {
|
|
background: #fff !important
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|