锦水居民端小程序
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.
 

37 lines
1.5 KiB

<view class="createassociation">
<view class="content">
<view class="group-avatar">
<view>群头像</view>
<image bindtap="chooseImage" src="{{associationInfo.avatar}}" />
</view>
<view class="group-info">
<view class="group-leader">
<view class="title">群主</view>
<view class="name">
<text>{{userInfo.nickname}}</text>
<image wx:if="{{userInfo.partyFlag == 1}}" src="../../images/ic_dangbiaoqian.png" />
</view>
</view>
<view class="group-name">
<view>群名称</view>
<input value="{{associationInfo.name}}" bindinput="oberseInput" maxlength="10" type="text" placeholder-class="placeholder-style" placeholder="创建后不能修改10字内" />
</view>
</view>
<view class="group-introduce">
<view>群介绍</view>
<textarea value="{{associationInfo.introduce}}" bindinput="oberseTextarea" maxlength="500" placeholder-class="placeholder-style" placeholder="请输入社群介绍" />
<text>{{associationInfo.introduce.length}}/500</text>
</view>
<button bindtap="createAssociation" id="btn" hover-class="hover-button" type="warn">创建社群</button>
</view>
</view>
<wux-actionsheet id="wux-actionsheet" />
<notice bind:close="closeDialog" bind:confirm="confirmDialog" dialogVisible="{{dialogVisible}}" title="待审核" content="{{['网格会尽快审核您的建群申请', '请耐心等待']}}" confirmText="知道了"></notice>