123456789101112131415161718192021222324252627282930313233 |
- <!-- pages/settled/personInfo/personInfo.wxml -->
- <view>
- <view class="planer-box">
- <view class="planer-header">
- <view class="name">联系方式</view>
- </view>
- <view class="planer-content">
- <view class="form-box">
- <view class="form-list">
- <view class="form-label">手机号</view>
- <input class="input-text" bindchange="changeInput" id="formData.mobile" value="{{formData.mobile}}" placeholder="请输入" type="text" />
- </view>
- <view class="form-list">
- <view class="form-label">联系地址</view>
- <input class="input-text" bindchange="changeInput" id="formData.address" value="{{formData.address}}" placeholder="请输入" type="text" />
- </view>
- <view class="form-list">
- <view class="form-label">电子邮箱</view>
- <input class="input-text" bindchange="changeInput" id="formData.email" value="{{formData.email}}" placeholder="请输入" type="text" />
- </view>
- <view class="form-list">
- <view class="form-label">微信号</view>
- <input class="input-text" bindchange="changeInput" id="formData.weixinNo" value="{{formData.businessLicenseNo}}" placeholder="请输入" type="text" />
- </view>
- </view>
- </view>
- </view>
- <view class="footer-btn">
- <view class="footer-btn-content">
- <view bindtap="saveData" class="default-btn primary disable">提交</view>
- </view>
- </view>
- </view>
|