feat: migrate static pages to native tabbar
This commit is contained in:
26
packages/tcm/pages/placeholder/index.wxml
Normal file
26
packages/tcm/pages/placeholder/index.wxml
Normal file
@@ -0,0 +1,26 @@
|
||||
<view class="placeholder-page">
|
||||
<view class="hero-card">
|
||||
<text class="hero-card__eyebrow">{{eyebrow}}</text>
|
||||
<text class="hero-card__title">{{title}}</text>
|
||||
<text class="hero-card__description">{{description}}</text>
|
||||
</view>
|
||||
|
||||
<view class="tips-card">
|
||||
<text class="tips-card__title">当前状态</text>
|
||||
<view class="tips-card__item" wx:for="{{tips}}" wx:key="index">
|
||||
<text class="tips-card__dot">•</text>
|
||||
<text class="tips-card__text">{{item}}</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view
|
||||
class="action-row__button {{item.key === 'go-profile' ? 'action-row__button--ghost' : ''}}"
|
||||
wx:for="{{actions}}"
|
||||
wx:key="key"
|
||||
data-action-type="{{item.actionType}}"
|
||||
data-route="{{item.route}}"
|
||||
bindtap="handleActionTap"
|
||||
>
|
||||
{{item.title}}
|
||||
</view>
|
||||
</view>
|
||||
Reference in New Issue
Block a user