12345678910111213141516171819202122232425262728 |
- <!-- pages/guanyuan/exhibition/exhibition.wxml -->
- <view>
- <view class="container">
- <view class="icon-edit">
- <image class="img-full" src="https://resource.artouchstone.com/miniapp/artist/images/guanyuan/icon-edit.png"></image>
- </view>
- <view class="form-box">
- <view class="form-list">
- <view class="form-label">姓名</view>
- <input class="input-text" placeholder="请输入您的姓名" bindchange="changeInput" bindblur="validateForm" id="formData.nickname" value="{{formData.nickname}}" type="text" />
- </view>
- <view class="form-list">
- <view class="form-label">电话</view>
- <input class="input-text" disabled bindchange="changeInput" bindblur="validateForm" id="formData.mobile" value="{{formData.phone}}" placeholder="请输入您的电话" type="text" />
- <button class="get-phone" bindgetphonenumber="getPhoneNumber" open-type="getPhoneNumber">获取手机号</button>
- </view>
- <view class="form-list">
- <view class="form-label">备注</view>
- <textarea class="textarea-text" bindinput="changeInput" bindblur="validateForm" id="formData.content" value="{{formData.content}}" placeholder="请输入"></textarea>
- </view>
- </view>
- </view>
- <view class="footer-btn">
- <view class="footer-btn-content">
- <view bindtap="saveData" class="default-btn {{isValidate?'primary':''}}">提交</view>
- </view>
- </view>
- </view>
|