diff --git a/components/configPopup.vue b/components/configPopup.vue new file mode 100644 index 0000000..7510f4d --- /dev/null +++ b/components/configPopup.vue @@ -0,0 +1,55 @@ + + + + + \ No newline at end of file diff --git a/otherPages/workbenchManage/bindUser/index.scss b/otherPages/workbenchManage/bindUser/index.scss index 9bb7953..b1f0f22 100644 --- a/otherPages/workbenchManage/bindUser/index.scss +++ b/otherPages/workbenchManage/bindUser/index.scss @@ -38,14 +38,17 @@ } .bind-main-one{ text-align: center; - background: #FAE7E3; + // background: #FAE7E3; border-radius: 20rpx; padding: 40rpx 60rpx; + background-size: 100% 100%; + // background-image: url('https://image.hhlm1688.com/2025/03/29d85e1fc00ba64d3496fdc5c79be35ff6组件 88 – 1.png'); } .bind-main-two{ text-align: center; background: #D0E5F9; border-radius: 20rpx; + background-size: 100% 100%; padding: 40rpx 50rpx; } .bind-main-three{ @@ -53,6 +56,7 @@ background: #FDE7C5; border-radius: 20rpx; padding: 40rpx 50rpx; + background-size: 100% 100%; } .label1 { width: 120rpx; diff --git a/otherPages/workbenchManage/bindUser/index.vue b/otherPages/workbenchManage/bindUser/index.vue index a464e1a..3467072 100644 --- a/otherPages/workbenchManage/bindUser/index.vue +++ b/otherPages/workbenchManage/bindUser/index.vue @@ -6,7 +6,7 @@ {{ userInfo?.userName}} - 初级合伙人 + {{ baseInfo.partner_level }} 当前分成比例: @@ -19,7 +19,8 @@ - + 推广攻略 @@ -30,7 +31,8 @@ width="71rpx" height="85rpx"> - + 推广教程 @@ -43,51 +45,77 @@ + + + - + 邀请码邀请 用户输入邀请码,直接完成绑定 - + - + 分享海报邀请 扫码进入猫妈狗爸完成绑定 - + - + 分享链接邀请 复制链接给好友,进入直接绑定 - + + + diff --git a/otherPages/workbenchManage/bindUser/sharing - 副本.vue b/otherPages/workbenchManage/bindUser/sharing - 副本.vue new file mode 100644 index 0000000..806d8da --- /dev/null +++ b/otherPages/workbenchManage/bindUser/sharing - 副本.vue @@ -0,0 +1,193 @@ + + + + + \ No newline at end of file diff --git a/otherPages/workbenchManage/bindUser/sharing.vue b/otherPages/workbenchManage/bindUser/sharing.vue new file mode 100644 index 0000000..7352221 --- /dev/null +++ b/otherPages/workbenchManage/bindUser/sharing.vue @@ -0,0 +1,209 @@ + + + + + \ No newline at end of file diff --git a/otherPages/workbenchManage/myLevel/commponents/levelInfo.vue b/otherPages/workbenchManage/myLevel/commponents/levelInfo.vue index 0d4b9c6..6a3e4c9 100644 --- a/otherPages/workbenchManage/myLevel/commponents/levelInfo.vue +++ b/otherPages/workbenchManage/myLevel/commponents/levelInfo.vue @@ -22,6 +22,17 @@ ref, reactive } from "vue" + + + const props = defineProps({ + dataInfo : { + default : () => { + return {} + } + } + }) + + const cardName = ref("距离下一等级要求") const baseList = ref([ { diff --git a/otherPages/workbenchManage/myLevel/commponents/myData.vue b/otherPages/workbenchManage/myLevel/commponents/myData.vue index 6ada2ac..900c7a7 100644 --- a/otherPages/workbenchManage/myLevel/commponents/myData.vue +++ b/otherPages/workbenchManage/myLevel/commponents/myData.vue @@ -37,40 +37,55 @@ import { useStore } from 'vuex' const store = useStore() + + const props = defineProps({ + dataInfo : { + default : () => { + return {} + } + } + }) const configList = computed(() => { return store.getters.configList }) + + const nounthData = computed(() => { + return [{ + title: '当月注册用户', + num: props.dataInfo.register_users + "个", + }, + { + title: '当月下单用户', + num: props.dataInfo.register_users + "个", + }, + { + title: '当月有效用户', + num: props.dataInfo.register_users + "个", + }, + ] + }) + + const totalData = computed(() => { + return [{ + title: '累计注册用户', + num: props.dataInfo.register_users + "个", + }, + { + title: '累计下单用户', + num: props.dataInfo.register_users + "个", + }, + { + title: '累计有效用户', + num: props.dataInfo.register_users + "个", + color:'red' + }, + ] + }) const nounthName = ref('当月数据') const totalName = ref('累计数据') - const nounthData = reactive([{ - title: '当月注册用户', - num: "0个" - }, - { - title: '当月下单用户', - num: "0个" - }, - { - title: '当月有效用户', - num: "0个" - }, - ]) - const totalData = reactive([{ - title: '累计注册用户', - num: "0个" - }, - { - title: '累计下单用户', - num: "0个" - }, - { - title: '累计有效用户', - num: "0个", - color:'red' - }, - ]) +