generated from msb_47094/GinChat
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.
20 lines
770 B
20 lines
770 B
{{define "/chat/group.shtml"}}
|
|
<div id="tabbar-group" class="mui-control-content tabbar-group" v-show="win=='main'">
|
|
<header class="mui-bar mui-bar-nav">
|
|
<h1 class="mui-title">群聊</h1>
|
|
</header>
|
|
|
|
<ul class="mui-table-view mui-table-view-chevron">
|
|
<li v-for="item in communitys" class="mui-table-view-cell mui-media" @tap="groupmsg(item)">
|
|
<a class="">
|
|
<img class="mui-media-object mui-pull-left avatar" :src="item.Img ||'/asset/images/avatar0.png'">
|
|
<div class="mui-media-body">
|
|
<span v-text="item.Name+'('+item.ID+')'"></span>
|
|
<p class='mui-ellipsis' v-text="item.Desc"></p>
|
|
</div>
|
|
</a>
|
|
</li>
|
|
|
|
</ul>
|
|
</div>
|
|
{{end}} |