16 lines
1.6 KiB
Plaintext
16 lines
1.6 KiB
Plaintext
<scroll-view class="page" scroll-y>
|
|
<view class="container">
|
|
<view class="hero"><view class="title">加盟合作</view><view class="subtitle">留下您的开店计划,品牌运营人员会尽快与您联系。</view></view>
|
|
<view wx:if="{{applicationNo}}" class="success"><view class="success-title">申请已提交</view><view>申请编号:{{applicationNo}}</view><view class="muted">重复点击不会产生重复申请。</view><button type="primary" bindtap="backHome">返回首页</button></view>
|
|
<view wx:else class="form-card">
|
|
<view class="label">意向城市</view><input data-field="city" value="{{form.city}}" maxlength="64" placeholder="例如:上海市" bindinput="onInput" />
|
|
<view class="label">联系人</view><input data-field="contactName" value="{{form.contactName}}" maxlength="64" placeholder="请输入联系人姓名" bindinput="onInput" />
|
|
<view class="label">联系电话</view><input data-field="contactPhone" value="{{form.contactPhone}}" type="number" maxlength="20" placeholder="请输入手机号" bindinput="onInput" />
|
|
<view class="label">开店计划或留言</view><textarea data-field="message" value="{{form.message}}" maxlength="1000" placeholder="可填写预计开店时间、区域、预算等" bindinput="onInput" />
|
|
<view wx:if="{{errorMessage}}" class="error">{{errorMessage}}</view>
|
|
<button type="primary" loading="{{submitting}}" disabled="{{submitting}}" bindtap="submit">提交申请</button>
|
|
<view class="privacy">提交即表示同意运营人员仅将以上信息用于加盟联系与跟进。</view>
|
|
</view>
|
|
</view>
|
|
</scroll-view>
|