- 多租户,每个租户都有自己的appid,如何让租户自定义主题?
自定义tabbar <view class="tabbar" wx:if="{{ showTabBar }}"> <view class="tabbar-container"> <block wx:for="{{actives}}" wx:key="id"> <view class="tabbar-item" data-item="{{item}}" style="color: {{activeIndex === item.id ? mainColor : '#999999'}}" bind:tap="changeIndex"> <view> <text class="{{item.iconPath}}"></text> </view> <text class="item-title">{{item.name}}</text> </view> </block> </view> </view> Component({ properties: { }, data: { actives: [{ iconPath: 'iconfont icon-a-Frame1', name: '首页', pagePath: '/pages/index/index', id: 0 }, { iconPath: 'iconfont icon-a-Frame2', name: '卡券', pagePath: '/pages/ticket/index', id: 1 }, { iconPath: 'iconfont icon-a-Frame3', name: '我的', pagePath: '/pages/mine/index', id: 2 }, ], activeIndex: 0, mainColor: getApp().globalData.mainColor, showTabBar: true }, methods: { changeIndex(e) { const item = e.currentTarget.dataset.item; this.setData({ activeIndex: item.id }) wx.switchTab({ url:item.pagePath }); }, } })
10-26 - page-container登录页在任何页面都能调用吗?
我封装了一个page-container的半屏登录页 想在多个页面复用这个登录页 或者登录失效的时候调用这个登录页 哪位大神知道怎么做?
10-22 - 多租户,每个租户都有自己的appid,如何让租户自定义主题?
每个租户都需要不同颜色的图片,包括底部的tabbar也需要跟随主题颜色变化,有没大神知道这个需求怎么实现吗
10-21 - 多租户,每个租户都有自己的appid,如何让租户自定义主题?
多租户,每个租户都有自己的appid,如何让租户自定义主题,包括tabBar图片颜色 ,背景渐变色,按钮等
08-21 - 原始代码没有上次GIT 重装系统之后丢失了还能找回来吗?
小程序 已经上线了 原始代码没有上次GIT 重装系统之后丢失了 还能找回来吗
2022-02-22