- admin:OrdersHub/UsersHub、Commerce/Ops/Enterprise Hub、MpAnalytics、Feishu/小程序配置面板、鉴权存储 - api:Analytics、DataMigration、FeishuLeadWebhook、mp 事件迁移 SQL - 微信/抖音小程序:analytics 上报与相关页面调整 - 开发文档与 scripts 补充 Made-with: Cursor
41 lines
1.4 KiB
Plaintext
41 lines
1.4 KiB
Plaintext
<!-- 自定义 tabBar:顶部分割线 + 三栏;中间单独一列避免浮钮与左右叠层 -->
|
||
<view class="tab-bar">
|
||
<view class="tab-bar-line"></view>
|
||
<view class="tab-bar-inner">
|
||
<view
|
||
class="tab-item {{selected === 0 ? 'active' : ''}}"
|
||
data-index="0"
|
||
data-path="/pages/index/index"
|
||
bindtap="switchTab"
|
||
>
|
||
<image class="tab-icon" src="{{selected === 0 ? '/images/home-active.png' : '/images/home.png'}}" mode="aspectFit" />
|
||
<text class="tab-text">首页</text>
|
||
</view>
|
||
|
||
<!-- 中间列:与审核态无关,固定「拍摄」+ 始终进 camera -->
|
||
<view class="tab-slot-middle">
|
||
<view
|
||
class="middle-fab {{selected === 1 ? 'active' : ''}}"
|
||
data-index="1"
|
||
data-path="/pages/index/camera"
|
||
bindtap="switchTab"
|
||
>
|
||
<view class="center-circle">
|
||
<image class="center-icon" src="{{selected === 1 ? '/images/camera-active.png' : '/images/camera.png'}}" mode="aspectFit" />
|
||
</view>
|
||
<text class="tab-text tab-text-fab">拍摄</text>
|
||
</view>
|
||
</view>
|
||
|
||
<view
|
||
class="tab-item {{selected === 2 ? 'active' : ''}}"
|
||
data-index="2"
|
||
data-path="/pages/profile/index"
|
||
bindtap="switchTab"
|
||
>
|
||
<image class="tab-icon" src="{{selected === 2 ? '/images/user-active.png' : '/images/user.png'}}" mode="aspectFit" />
|
||
<text class="tab-text">我的</text>
|
||
</view>
|
||
</view>
|
||
</view>
|