You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
721 B
23 lines
721 B
<cu-custom bgColor="bg-blue" isBack="{{true}}">
|
|
<view slot="backText">返回</view>
|
|
<view slot="content">常见问题</view>
|
|
</cu-custom>
|
|
|
|
<view class="cu-bar bg-white solid-bottom margin-top margin-bottom">
|
|
<view class='action'>
|
|
<text class='cuIcon-titles text-orange '></text> 问题列表
|
|
</view>
|
|
</view>
|
|
|
|
<view class="cu-card article">
|
|
<view class="cu-item shadow solid-bottom" wx:for="{{data}}">
|
|
<view class="content" bindtap="toDetail" data-id="{{item.id}}">
|
|
<view class="desc">
|
|
<view>
|
|
<view class="light sm fl">{{index+1}}、{{item.title}}</view>
|
|
<view class="text-green fr">{{item.create_time}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|