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.
32 lines
996 B
32 lines
996 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.username}}</view>
|
|
<view class="text-green fr">{{item.create_time}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
<view class="cu-tabbar-height"></view>
|
|
<view class="cu-bar tabbar bg-white foot">
|
|
<view class="action text-gray add-action">
|
|
<navigator url="/pages/subaccount/form" class="cu-btn cuIcon-add bg-green shadow"></navigator>
|
|
增加子账号
|
|
</view>
|
|
</view>
|