修复分销没有显示查看更多店铺功能,修复分销绑定问题

This commit is contained in:
2026-01-31 09:56:32 +08:00
parent ea3fb0fe0f
commit 0f640bdf9e
3 changed files with 8 additions and 4 deletions

View File

@@ -110,7 +110,7 @@
}).then(res => { }).then(res => {
// console.log('分享组件挂载完毕:shareConfig',res); // console.log('分享组件挂载完毕:shareConfig',res);
// console.log('分享组件挂载完毕:currentOptions',currentOptions); // console.log('分享组件挂载完毕:currentOptions',currentOptions);
if(res){ if(res&& typeof res==='object'){
Object.assign(config,res) Object.assign(config,res)
const rewardSharePages=res.rewardSharePages.split(',') const rewardSharePages=res.rewardSharePages.split(',')
const pTag = returnPageTags(path) const pTag = returnPageTags(path)

View File

@@ -102,7 +102,7 @@
</view> </view>
</view> </view>
<view <view
v-if="state.activates.totalRow > 0" v-if="state.activates.totalRow*1 > 0"
class="u-flex justify-center font-12 color-666" class="u-flex justify-center font-12 color-666"
style="align-items: baseline" style="align-items: baseline"
@click="toShopList('activates')" @click="toShopList('activates')"
@@ -159,7 +159,7 @@
</view> </view>
</view> </view>
<view <view
v-if="state.activates.totalRow > 0" v-if="state.unActivates.totalRow*1 > 0"
class="u-flex justify-center font-12 color-666" class="u-flex justify-center font-12 color-666"
style="align-items: baseline" style="align-items: baseline"
@click="toShopList('unActivates')" @click="toShopList('unActivates')"

View File

@@ -400,7 +400,7 @@
}); });
} }
const shopUserInfo = ref(); const shopUserInfo = ref({shopInfo:{}});
const config = reactive({}); const config = reactive({});
//邀请码 //邀请码
const inviteCode = ref(''); const inviteCode = ref('');
@@ -871,6 +871,10 @@
color: #e8ad7b; color: #e8ad7b;
line-height: 48rpx; line-height: 48rpx;
text-align: center; text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
} }
.bottom-btn { .bottom-btn {