|
|
@ -1,14 +1,16 @@ |
|
|
|
<template> |
|
|
|
<view class="form-container container-with-elep full-height-with-titile"> |
|
|
|
|
|
|
|
<view style="background-color: white; padding: 30px 20px; border-radius: 20px;"> |
|
|
|
<view style="background-color: white; height: 100%; overflow-y: auto; padding: 0px 20px; border-radius: 20px;"> |
|
|
|
<view style="position: sticky; top: 0; left:0; display: flex; padding-top: 30px; padding-bottom: 10px; background-color: white; z-index: 999;"> |
|
|
|
<u-steps :current="step"> |
|
|
|
<u-steps-item :title="languageData.me.basicInformation" desc=""></u-steps-item> |
|
|
|
<u-steps-item :title="languageData.me.authenticationInformation" desc=""></u-steps-item> |
|
|
|
<u-steps-item :title="languageData.me.submitForReview" desc=""></u-steps-item> |
|
|
|
</u-steps> |
|
|
|
<!-- <view class="form-title">{{formData.userType == '0' ? languageData.me.personalData:languageData.me.merchantInfo}}</view> --> |
|
|
|
<uni-forms style="max-height: 60vh; margin-top:30px; overflow-y: auto;" label-position="left" :label-width="70" label-align="left" ref="form" :model="formData" :rules="rules"> |
|
|
|
</view> |
|
|
|
<view style="flex: 1;"> |
|
|
|
<uni-forms style="margin-top:30px;" label-position="left" :label-width="70" label-align="left" ref="form" :model="formData" :rules="rules"> |
|
|
|
<view v-show="step!==1"> |
|
|
|
<uni-forms-item :label="languageData.me.userType" name="userType"> |
|
|
|
<uni-easyinput disabled :placeholder="languageData.me.personAcc" clearable /> |
|
|
@ -148,15 +150,13 @@ |
|
|
|
</view> |
|
|
|
</uni-forms-item> |
|
|
|
</view> |
|
|
|
|
|
|
|
|
|
|
|
</uni-forms> |
|
|
|
<view> |
|
|
|
<button v-show="step>0 && !checkOnly" class="submit-btn" @click="step = step === 0 ? step:step-1">{{languageData.functions.lastStep}}</button> |
|
|
|
<view style="position: sticky; bottom: 0; left:0; padding-bottom: 15px; background-color: white; z-index: 9999;"> |
|
|
|
<button v-show="step>0 && !checkOnly || true" class="submit-btn" @click="step = step === 0 ? step:step-1">{{languageData.functions.lastStep}}</button> |
|
|
|
<button v-show="step<2 && !checkOnly" class="submit-btn" @click="nextStep()">{{languageData.functions.nextStep}}</button> |
|
|
|
<button v-show="step===2 && !checkOnly" class="submit-btn" @click="handleSubmit">{{languageData.me.submit}}</button> |
|
|
|
</view> |
|
|
|
|
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<u-datetime-picker |
|
|
|