| | |
| | | <input class="text-input" v-model="form.legalPersonName" placeholder="请输入法人姓名" placeholder-style="color: #c1c7d0;" /> |
| | | </view> |
| | | <view class="divider"></view> |
| | | |
| | | <view class="form-group compact-group"> |
| | | <view class="label-row"><text class="label">法人手机号</text><text class="required">*</text></view> |
| | | <input class="text-input" v-model="form.legalPersonPhone" placeholder="请输入法人姓名" placeholder-style="color: #c1c7d0;" /> |
| | | </view> |
| | | <view class="divider"></view> |
| | | <view class="form-group compact-group"> |
| | | <view class="label-row"><text class="label">企业支付宝账号</text><text class="required">*</text></view> |
| | | <input class="text-input" v-model="form.aliAccount" placeholder="请输入企业支付宝账号" placeholder-style="color: #c1c7d0;" /> |
| | |
| | | uni.showToast({ title: '请输入法人姓名', icon: 'none' }) |
| | | return |
| | | } |
| | | if (!this.form.legalPersonPhone) { |
| | | uni.showToast({ title: '请输入法人手机号', icon: 'none' }) |
| | | return |
| | | } |
| | | if (!this.form.aliAccount) { |
| | | uni.showToast({ title: '请输入企业支付宝账号', icon: 'none' }) |
| | | return |