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.
29 lines
941 B
29 lines
941 B
2 years ago
|
<view class="g-cnt">
|
||
|
<title-list
|
||
|
wx:if="{{pageData.titleList.length>0}}"
|
||
|
titleList="{{pageData.titleList}}" id="titleList"></title-list>
|
||
|
<top-list
|
||
|
id="topList"
|
||
|
wx:if="{{pageData.topList.length>0}}"
|
||
|
topList="{{pageData.topList}}"
|
||
|
bind:callParentFun="initPage"></top-list>
|
||
|
|
||
|
<function-list
|
||
|
id="functionList"
|
||
|
wx:if="{{pageData.functionList.length>0}}"
|
||
|
functionList="{{pageData.functionList}}"
|
||
|
bind:callParentFun="initPage"></function-list>
|
||
|
<view wx:if="{{false}}">
|
||
|
<view class="m-nothing">
|
||
|
<image mode="aspectFill" class="arrow" src="/assets/images/group/nodata.png" />
|
||
|
<!-- <text>本网格还没有小组,去创建一个吧</text> -->
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
<floating-list
|
||
|
wx:if="{{pageData.floatingList.length>0 && showCom}}"
|
||
|
floatingList="{{pageData.floatingList}}"></floating-list>
|
||
|
</view>
|
||
|
|
||
|
<loading showed="{{ !iniLoaded }}"></loading>
|