24 lines
603 B
Plaintext
24 lines
603 B
Plaintext
<view class="container">
|
|
<view class="nav-back" bindtap="handleBack">
|
|
<text class="back-icon">⇠</text>
|
|
<text class="back-text">返回</text>
|
|
</view>
|
|
<view class="header">
|
|
<text class="page-title">塔罗知识</text>
|
|
</view>
|
|
|
|
<view class="category-list">
|
|
<view
|
|
class="category-card"
|
|
wx:for="{{categories}}"
|
|
wx:key="id"
|
|
bindtap="goToList"
|
|
data-category="{{item.id}}"
|
|
hover-class="card-hover"
|
|
>
|
|
<text class="category-icon">{{item.icon}}</text>
|
|
<text class="category-name">{{item.name}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|