日照项目的居民端小程序
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
560 B

<view class="m-fm" wx:if="{{!hidden}}">
<view class="fm">
<view class="title" wx:if="{{title}}">{{ title }}</view>
<view class="item">
<input placeholder="请输入内容"
focus="{{true}}"
placeholder-class="z-ph"
model:value="{{value}}"
cursor-spacing="12" />
</view>
<view class="operate">
<view class="btn btn-off"
bind:tap="cancel">{{ cancelText }}</view>
<view class="btn"
bind:tap="confirm">{{ confirmText }}</view>
</view>
</view>
</view>