15 lines
495 B
Plaintext
15 lines
495 B
Plaintext
<!--index.wxml-->
|
|
<view class="scrollarea" scroll-y type="list" >
|
|
<view wx:if="{{active==0}}">
|
|
<report id="report" wx:if="{{role=='customer'}}"></report>
|
|
<maintenance id="maintenance" wx:if="{{role=='supporter'}}"></maintenance>
|
|
</view>
|
|
<view wx:if="{{active==1}}">
|
|
<my id="my"></my>
|
|
</view>
|
|
|
|
</view>
|
|
<van-tabbar active="{{ active }}" bind:change="onChange">
|
|
<van-tabbar-item icon="home-o">首页</van-tabbar-item>
|
|
<van-tabbar-item icon="friends-o">我的</van-tabbar-item>
|
|
</van-tabbar> |