日照项目的居民端小程序
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.2 KiB

<view class="m-fm" hidden="{{ hidden }}">
<view class="fm">
<view class="btn-close" bind:tap="cancel">
<image mode="aspectFill"
src="/assets/images/common/close.png"></image>
</view>
<view class="logo">
<image mode="aspectFill"
src="{{info.groupHeadPhoto}}"></image>
<view class="tag" wx:if="{{info.groupType=='branch'}}"><text>支部</text></view>
</view>
<view class="title">{{ info.groupName }}</view>
<view class="attr">
<text>共{{info.totalMember}}人</text>
<text>党员{{info.totalPartyMember}}人</text>
</view>
<view class="intro">{{ info.groupIntroduction }}</view>
<view class="input">
<textarea
type="text"
placeholder="请填写申请理由"
placeholder-class="z-placeholder"
data-fm="fmData"
data-name="operateDes"
confirm-type="send"
value="{{fmData.operateDes}}"
bindinput="inputSync"
cursor-spacing="14"
maxlength="200"></textarea>
</view>
<view class="operate">
<view class="btn" bind:tap="confirm">{{ confirmText }}</view>
</view>
</view>
</view>