123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988 |
- <template>
- <view class="container register" :style="{paddingTop:CustomBar+'px'}" v-if="isWxAuthorize">
- <cu-custom :navbar-data='nvabarData' @navigateBack="hanldNavigateBack"></cu-custom>
- <view class="register-step">
- <view class="step-item" :class="stepIndex == 0 ? 'active' : ''">
- <text class="step-num">1</text><text>账户信息</text>
- <text class="line"></text>
- </view>
- <view class="step-item" :class="stepIndex == 1 ? 'active' : ''">
- <text class="step-num">2</text><text>基本信息</text>
- <text class="line"></text>
- </view>
- <view class="step-item" :class="stepIndex == 2 ? 'active' : ''">
- <text class="step-num">3</text><text>详细信息</text>
- </view>
- </view>
- <view class="register-main clearfix" v-if="stepIndex === 0">
- <view class="register-row clearfix">
- <view class="register-from">
- <view class="label">手机号:</view>
- <input class="row-input" type="number" name="input" v-model="bindMobile" placeholder="请输入联系人常用手机号" maxlength="11"/>
- </view>
- </view>
- <view class="register-row clearfix">
- <view class="register-from">
- <input type="text"
- v-model="imageCode"
- maxlength="4"
- class="row-input imgCode"
- placeholder="请输入右侧图形验证码"
- />
- <view class="vscodeimg">
- <image :src="imageCodeUrl" mode=""></image>
- </view>
- <view class="vscod-refresh" @click.stop="getVerificationCode">
- <text class="iconfont icon-shuaxin"></text>
- <text class="ref-text">刷新</text>
- </view>
- </view>
- </view>
- <view class="register-row clearfix">
- <view class="register-from">
- <view class="label">短信验证码:</view>
- <input class="row-input code" type="text" v-model="mobileCode" placeholder="请输入短信验证码" maxlength="6"/>
- <view class="row-btn" :class="[isMobileDisabled ? 'disabled' : '']">
- <button class="row-input"
- type="button"
- @click.stop="getMobileCodeFn"
- :disabled="isMobileDisabled">
- {{ mobileCodeText }}
- </button>
- </view>
- </view>
- </view>
- <view class="register-row clearfix">
- <view class="register-from">
- <view class="label">登录密码:</view>
- <input class="row-input" type="password" name="input" v-model="password" placeholder="密码必须为8-16位字母数字组合" maxlength="16"/>
- </view>
- </view>
- <view class="register-row clearfix">
- <view class="register-from">
- <view class="label">确认密码:</view>
- <input class="row-input" type="password" name="input" v-model="passwordCheck" placeholder="请确认密码" maxlength="16"/>
- </view>
- </view>
- <view class="register-row ">
- <view class="register-btn" @click.stop="setStep(1)">下一步</view>
- </view>
- </view>
-
- <view class="register-main clearfix" v-if="stepIndex === 1">
- <view class="register-row clearfix">
- <view class="register-from">
- <view class="label">公司名称:</view>
- <input class="row-input" type="text" name="input" v-model="userName" placeholder="请输入您的公司名称" maxlength="30"/>
- </view>
- </view>
- <view class="register-row clearfix">
- <view class="register-from">
- <view class="label">联系人:</view>
- <input class="row-input" type="text" name="input" v-model="userName" placeholder="请输入联系人姓名" maxlength="6"/>
- </view>
- </view>
- <view class="register-row none clearfix">
- <view class="register-from">
- <view class="label">联系人:</view>
- <input class="row-input" type="text" name="input" v-model="userName" placeholder="请输入邮箱地址" maxlength="30"/>
- </view>
- </view>
- <view class="register-row text clearfix">
- <text>邮箱可用作登录账号,请使用公司邮箱或法人邮箱</text>
- </view>
- <view class="register-row ">
- <view class="register-btn next" @click.stop="setStep(2)">下一步</view>
- <view class="register-btn prev" @click.stop="setStep(0)">上一步</view>
- </view>
- </view>
- <view class="register-main clearfix" v-if="stepIndex === 2">
- <view class="register-row clearfix">
- <view class="register-from">
- <view class="label">公司简称:</view>
- <input class="row-input" type="text" v-model="abbreviation" placeholder="请输入您的机构简称" maxlength="10"/>
- </view>
- </view>
- <view class="register-row clearfix">
- <view class="register-from" @click="showMulLinkageThreePicker">
- <view class="label">联系地址:</view>
- <text class="row-input" :class="addressData.address === '请选择公司所在地区' ? 'none' : ''">
- {{addressData.address }}
- </text>
- <text class="iconfont icon-xiayibu"></text>
- </view>
- </view>
- <view class="register-row text-textarea clearfix">
- <view class="textarea show" v-if="isShowInput" @click="showTextareaFocus">{{addressData.addressDetail ? addressData.addressDetail :'详细地址:如道路、门牌号、小区等'}}</view>
- <textarea v-else
- class="textarea"
- type="text"
- v-model="addressData.addressDetail"
- placeholder="详细地址:如道路、门牌号、小区等"
- placeholder-class="placeholder"
- maxlength="25"
- @input="onTextareaInput"
- @focus="textareaFocus"
- @blur="hideTextareaFocus"
- :class="isShowInput ? '':''"
- />
- </view>
- <view class="register-row clearfix">
- <view class="register-from">
- <view class="label">营业执照编号:</view>
- <input class="row-input" type="text" v-model="socialCreditCode" placeholder="请填写社会统一信用代码" maxlength="20"/>
- </view>
- </view>
- <view class="register-row clearfix">
- <view class="register-picture">
- <view class="label">营业执照:</view>
- <view class="upload-picture">
- <view class="upload-none" v-if="uploadBusinessImage === ''" @click="chooseBusinessImage"><text class="iconfont icon-jiahao"></text></view>
- <view class="upload-image" v-else>
- <image :src="uploadBusinessImage" mode="" @click="viewBusinessImage"></image>
- <view class="upload-del" @click="delBusinessImage">
- <text class='iconfont icon-shanchu1'></text>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="register-row clearfix">
- <view class="register-from picker">
- <view class="label">公司类型:</view>
- <view class="row-input picker" @click="bindPickerChange">{{ organizationTypeText }}</view>
- <text class="iconfont icon-xiayibu"></text>
- </view>
- </view>
- <view class="register-row none clearfix">
- <view class="register-from radio">
- <view class="label">医疗类型:</view>
- </view>
- </view>
- <view class="register-row clearfix">
- <view class="register-from radio">
- <radio-group @change="radioChange">
- <label class="row-input" v-for="(item, index) in supplierList" :key="item.value">
- <radio class="row-radio" :value="item.value" :checked="index === current" color="#E15616"/>
- <view class="row-text">{{item.name}}</view>
- </label>
- </radio-group>
- </view>
- </view>
- <view class="register-row clearfix">
- <view class="register-from group">
- <view class="label">主营内容:</view>
- <view class="content-class">
- <checkbox-group @change="chooseMaleLike" >
- <label class="item" v-for="(item, index) in supplierMedicaCampList" :key="index" :class="{on: item.checked}">
- <checkbox :value="item.value"></checkbox>
- <text class="item-text">{{item.name}}</text>
- </label>
- </checkbox-group>
- </view>
- </view>
- <view class="register-from group btn">
- <view class="content-class btn">
- <view class="item" @click="showAustomItem">
- <text class="item-text">其他</text>
- </view>
- </view>
- </view>
- <view class="register-from group btn" v-show="isShowAustomItem">
- <view class="content-class btn">
- <input class="row-input other" type="text" v-model="customItemValue" placeholder="请输入自定义项目" @blur="onBlurInput" maxlength="5"/>
- <button type="default"
- class="confirm-btn"
- :class="[isDisabled === true ? 'disabled' : 'none']"
- :disabled="isDisabled"
- @click.stop="addCustomItem"
- >确认添加</button>
- </view>
- </view>
- </view>
- <view class="register-main clearfix">
- <view class="register-agree">
- <view class="agree-text" @tap.stop="agreeCheck()">
- <button class="checkbox iconfont" :class="[isCheck?'icon-gouxuan':'icon-weigouxuan']"></button>
- 我已阅读并同意
- <text @click.stop="this.$api.navigateTo('/pages/service/supplieragree')">《供应商协议》</text>
- <text @click.stop="this.$api.navigateTo('/pages/service/useragree')">《用户协议》</text>及
- <text @click.stop="this.$api.navigateTo('/pages/service/privacyagree')">《隐私权政策》</text>
- </view>
- </view>
- <view class="register-row ">
- <view class="register-btn sub" @click.stop="registerStepsfirst">注册</view>
- <view class="register-btn prev" @click.stop="setStep(1)">上一步</view>
- </view>
- </view>
- </view>
- <mpvue-city-picker :themeColor="themeColor"
- ref="mpvueCityPicker"
- :pickerValueDefault="cityPickerValueDefault"
- @onCancel="onCancel"
- @onConfirm="onConfirm">
- </mpvue-city-picker>
- <supplier-alert v-if="isSupplierAlert"></supplier-alert>
- </view>
- </template>
- <script>
- import { mapState,mapMutations } from 'vuex';
- import authorize from '@/common/config/authorize.js'
- import wxLogin from "@/common/config/wxLogin.js"
- import mpvueCityPicker from '@/components/mpvue-citypicker/mpvueCityPicker.vue'
- import supplierAlert from '@/components/cm-module/modelAlert/supplierRegisreAlert.vue'
- import { supplierList,supplierMedicaCampNullList } from '@/common/json/data.json.js' //本地数据
- import { organizationVerifyRegisterFirst,organizationRegister } from "@/api/use.js"
- import { getRegisterMobileCode, uploadFileImage } from "@/api/utils.js"
- export default{
- components:{
- mpvueCityPicker,
- supplierAlert
- },
- data() {
- return{
- nvabarData: {//顶部自定义导航
- showCapsule: 1, // 是否显示左上角图标 1表示显示 0表示不显示,
- showSearch: 0,
- title: '供应商注册', // 导航栏 中间的标题
- haveBack:true,
- textLeft:this.$store.state.isIphone
- },
- CustomBar:this.CustomBar,// 顶部导航栏高度
- isMobileDisabled: false, //手机验证码按钮控制
- mobilCount: '', //倒计时
- mobileCodeText: '获取验证码',
- mobilTime: null,
- password:'', //密码
- passwordCheck:'', //校验密码
- userName:'', //联系人
- bindMobile:'', //联系人手机号
- mobileCode:'', //手机验证码
- imageCode:'', //图形验证码
- imageCodeUrl:'', //图形验证码图片
- imageCodetoken:'', //图形验证校验
- isAgreed:0, //是否勾选协议
- isCheck:false, //是否勾选协议
- userID:'', //机构userID
- clubID:'', //机构ID
- stepIndex:0,
- abbreviation:'', //机构简称
- socialCreditCode:'', //统一社会信用代码
- isDisabled:true,
- isShowInput:true,
- textareaFocus:false,
- uploadBusinessImage:'', //营业执照图片
- uploadMentuzImage:'', //门头照图片
- uploadMedicalImage:'', //资质照图片
- department:'', //科室
- isDepartment:false, //是否显示科室
- secondClubType:'', //机构类型二级分类
- mainpro:'', //主营内容
- firstClubType:'', //机构类型
- isOrganizationType:0,
- organizationTypeText:'请选择机构类型',
- supplierList:supplierList,//医疗类型
- supplierMedicaCampList:supplierMedicaCampNullList,//主营内容
- mentuzCampList:[], //医美主营
- typtIndex:0,
- organizationType:0,
- current:0,
- isShowAustomItem:false, //是否显示其他添加
- customItemValue:'', //自定义项目
- isMainproCheck:false,
- addressData:{
- address:'请选择机构所在地区',
- townID:'', //区ID
- cityID:'', //市ID
- provinceID:'', //省ID
- addressDetail: '', //地址详情
- },
- isSupplierAlert:true
- }
- },
- onLoad() {
- this.getVerificationCode();
- },
- computed:{
- ...mapState(['isWxAuthorize'])
- },
- methods:{
- ...mapMutations(['login']),
- hanldNavigateBack(){
- this.$util.modal('','注册尚未完成,确定放弃注册吗?','确定','取消',true,() =>{
- uni.navigateBack({
- delta: 1
- });
- })
- },
- // 三级联动选择
- showMulLinkageThreePicker() {
- this.isShowInput = true
- this.$refs.mpvueCityPicker.show()
- },
- registerStepsfirst(){
-
- },
- getMobileCodeFn(){
- if( this.bindMobile == ''){
- this.$util.msg('请输入手机号',2000);
- return
- }
- if(!this.$reg.isMobile(this.bindMobile)){
- this.$util.msg('请输入正确的手机号',2000);
- return
- }
- let params = {
- mobile:this.bindMobile,
- activateCodeType:2,
- platformType:2
- }
- this.isMobileDisabled = true;
- getRegisterMobileCode(params).then(response =>{
- this.$util.msg('验证短信已发送',2000);
- const TIME_COUNT = 60;
- if (!this.mobilTime) {
- this.mobilCount = TIME_COUNT;
- this.isMobileDisabled = true;
- this.mobilTime = setInterval(() => {
- if (this.mobilCount > 1 && this.mobilCount <= TIME_COUNT) {
- this.mobilCount--
- this.mobileCodeText = this.mobilCount +'s重新发送'
- } else {
- this.isMobileDisabled = false;
- clearInterval(this.mobilTime)
- this.mobilTime = null
- this.mobileCodeText = '获取验证码'
- }
- },1000)
- }
- }).catch( error =>{
- this.$util.msg(error.msg,2000);
- this.isMobileDisabled = false;
- })
- },
- bindPickerChange() {
- let self = this
- uni.showActionSheet({
- title:'标题',
- itemList: ['医疗', '非医疗'],
- success: (e) => {
- self.isOrganizationType = e.tapIndex+1
- switch(e.tapIndex){
- case 0:
- this.organizationTypeText = '医疗'
- break;
- case 1:
- this.organizationTypeText = '非医疗'
- break;
- }
- }
- })
- },
- setStep(index){
- this.stepIndex = index
- },
- chooseMaleLike(e){
- this.isMainproCheck = true
- this.mainpro = this.checkLikes(e,this.supplierMedicaCampList)
- },
- checkLikes(e,list){
- let values = e.detail.value
- let arr = []
- list.forEach(item => {
- if(values.indexOf(item.value) >= 0){
- this.$set(item,'checked',true)
- arr.push(item.name)
- }else{
- this.$set(item,'checked',false)
- }
- })
- return arr.join('/')
- },
- getVerificationCode(){//图形验证
- this.PublicService.GetImgVerifyCode().then(res => {
- this.imageCodeUrl = res.data.baseImage
- this.imageCodetoken = res.data.token
- })
- },
- showAustomItem() {
- this.isShowAustomItem = !this.isShowAustomItem
- },
- onBlurInput(e){//
- if(e.detail.value ===''){
- this.isDisabled = true
- }else{
- this.isDisabled = false
- }
- },
- agreeCheck() {
- this.isCheck = !this.isCheck
- if(this.isCheck){
- this.isAgreed = 1
- }else{
- this.isAgreed = 0
- }
- }
- },
- onShow() {
- authorize.getSetting().then(wxResponse =>{// console.log('是否已授权',res);//0:为取消授权 1:为已授权 2:为未操作
- if(wxResponse == 1){
- wxLogin.wxLoginQuick()
- }else{
- this.$api.navigateTo('/pages/authorization/authorization?type=0')
- }
- })
- }
- }
- </script>
- <style lang="scss">
- .register{
- width: 100%;
- height: 100%;
- box-sizing: border-box;
- .register-step{
- margin:80rpx 0;
- width: 100%;
- height: 44rpx;
- box-sizing: border-box;
- padding: 0 90rpx;
- .step-item{
- line-height: 44rpx;
- color: #B2B2B2;
- font-size: $font-size-24;
- float: left;
- margin-right: 60rpx;
- position: relative;
- &.active{
- color: $color-system;
- .step-num{
- background-color: $color-system;
- }
- .line{
- background-color: $color-system;
- }
- }
- &:last-child{
- margin-right: 0;
- }
- .step-num{
- display: inline-block;
- width: 40rpx;
- height: 40rpx;
- border-radius: 50%;
- background-color:#e1e1e1;
- color: #FFFFFF;
- line-height: 40rpx;
- text-align: center;
- margin-right: 10rpx;
- }
- .line{
- width: 60rpx;
- height: 2rpx;
- background-color: #B2B2B2;
- position: absolute;
- right:-60rpx;
- top: 50%;
- }
- }
- }
- .register-main{
- width: 100%;
- height: auto;
- position: relative;
- .register-consult{
- width: 110rpx;
- height: 68rpx;
- background:linear-gradient(223deg,rgba(225,86,21,0.6) 0%,rgba(225,86,10,0.3) 100%);
- border-radius: 34rpx 0 0 34rpx;
- position: absolute;
- right: 0;
- bottom: 120rpx;
- text-align: left;
- line-height: 68rpx;
- padding-left: 20rpx;
- .icon-kefunv{
- font-size: 48rpx;
- color: #31313B;
- float: left;
- }
- .text{
- font-size: $font-size-24;
- display: block;
- float: left;
- width: 60rpx;
- line-height: 30rpx;
- color: #FFFFFF;
- margin-top: 6rpx;
- }
- }
- .register-agree{
- display: flex;
- flex-direction: column;
- align-items: center;
- margin: 100rpx 0 20rpx 0;
- .agree-text{
- .checkbox{
- float: left;
- margin: 4rpx 6rpx 0 0;
- color: #999999;
- font-size: $font-size-34;
- &.icon-gouxuan{
- color: $color-system;
- }
- }
- font-size: $font-size-22;
- line-height: 44rpx;
- color: #999999;
- text{
- color:#1890f9;
- }
- }
- }
- .register-logo{
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- height: 189rpx;
- padding:60rpx 0 40rpx 0;
- .logo{
- width:467rpx;
- height: 189rpx;
- display: block;
- }
- }
- &.detailed{
- padding-bottom: 330rpx;
- }
- .register-row{
- width: 100%;
- height: auto;
- padding: 0 24rpx;
- margin-bottom: 30rpx;
- box-sizing: border-box;
- &.text{
- font-size: $font-size-20;
- line-height: 40rpx;
- color: #fea785;
- }
- &.none{
- margin-bottom: 0;
- }
- &.login{
- display: flex;
- }
- .register-text{
- line-height: 44rpx;
- margin-top: 100rpx;
- font-size: $font-size-24;
- color: #999999;
- text-align: justify;
- .txt{
- margin-right: 15rpx;
- }
- }
- .register-title{
- line-height: 44rpx;
- font-size: $font-size-24;
- color: $text-color;
- text-align: left;
- &.first{
- margin-top: 20rpx;
- }
- }
- .register-tip{
- line-height: 64rpx;
- font-size: $font-size-24;
- color: #CECECE;
- text-align: left;
- }
- .register-from{
- width: 100%;
- height: 80rpx;
- background: #FFFFFF;
- position: relative;
- border-bottom: 1px solid #e1e1e1;
- .label{
- text-align: left;
- font-size: $font-size-28;
- color:#666666;
- line-height: 80rpx;
- float: left;
- }
- .row-input{
- width: 440rpx;
- padding-left:10rpx;
- font-size: $font-size-28;
- color: $text-color;
- line-height: 80rpx;
- float: left;
- height: 80rpx;
- &.none{
- color: #999999;
- }
- &.picker{
- text-align: left;
- color: #333333;
- }
- &.keshi{
- width: 550rpx;
- }
- &.code{
- width: 350rpx;
- }
- &.imgCode{
- width: 390rpx;
- }
- }
- .vscodeimg{
- width: 160rpx;
- height: 80;
- float: left;
- display: flex;
- flex-direction: column;
- align-items: center;
- border-radius: 6rpx;
- margin: 0 10rpx;
- image{
- width: 150rpx;
- height: 68rpx;
- border-radius: 6rpx;
- }
- }
- .vscod-refresh{
- width: 120rpx;
- float: right;
- line-height: 80rpx;
- .ref-text{
- float: left;
- font-size: 26rpx;
- color: #999999;
- }
- .icon-shuaxin{
- float: left;
- font-size: 36rpx;
- color: #999999;
- margin-right: 10rpx;
- }
- }
- &.imgcode{
- width: 410rpx;
- float: left;
- margin-right: 20rpx;
- .row-input{
- width: 230rpx;
- }
- }
- .row-btn{
- width: 180rpx;
- height:64rpx;
- float: left;
- background: $btn-confirm;
- padding: 0;
- border-radius: 32rpx;
- .row-input{
- width: 180rpx;
- height: 64rpx;
- line-height: 64rpx;
- padding: 0;
- color: #FFFFFF;
- background: $btn-confirm;
- text-align: center;
- border-radius: 32rpx;
- font-size: $font-size-24;
- &.other{
- width: 180rpx;
- background: #F7F7F7;
- margin-right: 20rpx;
- }
- &.none{
- background: #F7F7F7;
- }
- }
- &.disabled{
- background: #F7F7F7;
- .row-input{
- background: #F7F7F7;
- color: #999999;
- }
- }
- }
- &.picker{
- width: 100%;
- height: 80rpx;
- line-height: 80rpx;
- .label{
- line-height: 80rpx;
- }
- .row-input{
- width: 470rpx;
- height: 80rpx;
- line-height: 80rpx;
- padding-left: 30rpx;
- }
- }
- &.radio{
- width: 100%;
- border-bottom: none;
- .row-input{
- width: 25%;
- height: 80rpx;
- line-height: 80rpx;
- padding-left: 0;
- }
- .row-radio{
- float: left;
- transform: scale(0.8);
- }
- .row-text{
- text-align: center;
- float: left;
- font-size: $font-size-24;
- }
- }
- &.group{
- width: 100%;
- height: auto;
- background: #FFFFFF;
- margin-top: 30rpx;
- border-bottom: none;
- .label{
- line-height: 76rpx;
- }
- .row-input{
- width: 100%;
- height: 80rpx;
- line-height: 80rpx;
- padding-left: 0;
- }
- .row-radio{
- float: left;
- }
- .row-text{
- width: 100rpx;
- text-align: center;
- float: left;
- }
- }
- &.btn{
- margin-top: 0;
- }
- .content-class {
- margin: 20rpx auto;
- display: flex;
- flex-flow: row wrap;
- justify-content: space-between;
- align-items: center;
- &.btn{
- margin: 0 auto;
- margin-left: 116rpx;
- }
- .row-input{
- display: flex;
- width: 330rpx;
- box-sizing: border-box;
- height: 64rpx;
- padding:0 24rpx;
- text-align: left;
- border-radius: 32rpx;
- font-size: $font-size-28;
- color: $text-color;
- border: 1px solid #B2B2B2;
- line-height: 64rpx;
- }
- .confirm-btn{
- width: 200rpx;
- height: 64rpx;
- border-radius: 32rpx;
- line-height: 64rpx;
- text-align: center;
- &.other{
- width: 213rpx;
- }
- &.none{
- color: $color-system;
- background: #ffe6dc;
- }
- &.disabled{
- color: #999999;
- }
- }
- .item {
- width: 155rpx;
- height: 60rpx;
- font-size:$font-size-28;
- line-height: 60rpx;
- border-radius:30rpx;
- margin: 10rpx;
- text-align: center;
- box-sizing: border-box;
- border: 1rpx solid #EFEFEF;
- float: left;
- checkbox {
- display: none;
- }
- }
- .on {
- border-color: $color-system;
- color:$color-system;
- }
- }
- }
- .row-login{
- flex: 1;
- font-size: $font-size-28;
- color: $text-color;
- text-align: left;
- }
- .row-logincode{
- flex: 1;
- font-size: $font-size-28;
- color: $text-color;
- text-align: right;
- }
- .icon-xiayibu{
- width: 80rpx;
- height: 80rpx;
- position: absolute;
- right: 0;
- top: 0;
- line-height: 80rpx;
- text-align: center;
- }
- &.text-textarea{
- background: #FFFFFF;
- .textarea{
- width: 100%;
- height: 180rpx;
- padding: 24rpx;
- box-sizing: border-box;
- font-size: $font-size-28;
- color: $text-color;
- z-index: 1;
- border-bottom: 1px solid #e1e1e1;
- }
- .textarea.hide{
- opacity: 0;
- }
- .textarea.show{
- color: #999999;
- }
- }
- }
- .register-picture{
- height: 180rpx;
- margin: 30rpx 0;
- float: left;
- &.zz{
- width: 100%;
- }
- .label{
- float: left;
- font-size: $font-size-28;
- color: #666666;
- line-height: 180rpx;
- width: 150rpx;
- text-align: left;
- }
- .upload-picture{
- float: left;
- height: 180rpx;
- .upload-none{
- width: 180rpx;
- height: 180rpx;
- text-align: center;
- line-height: 180rpx;
- color: #999999;
- border: 1px solid #999999;
- border-radius: 10rpx;
- margin: 0 20rpx;
- .iconfont{
- font-size: 60rpx;
- }
- }
- .upload-image{
- width: 180rpx;
- height: 180rpx;
- border-radius: 6rpx;
- margin: 0 20rpx;
- position: relative;
- image{
- width: 180rpx;
- height: 180rpx;
- border-radius: 6rpx;
- }
- .upload-del{
- width: 40rpx;
- height: 40rpx;
- position: absolute;
- top: -20rpx;
- right: -20rpx;
- line-height: 40rpx;
- text-align: center;
- .iconfont{
- font-size: $font-size-32;
- color: #999999;
- }
- }
- }
- }
- }
- .register-input{
- width: 654rpx;
- height: 40rpx;
- padding: 24rpx;
- margin: 0 auto;
- margin-bottom: 60rpx;
- background: #F7F7F7;
- border-radius: 14rpx;
- .input{
- width: 100%;
- height: 100%;
- background: #F7F7F7;
- font-size: $font-size-28;
- line-height: 40rpx;
- color: #333333;
- border-radius: 14rpx;
- }
- }
- .register-fiexd{
- width: 100%;
- height: auto;
- position: fixed;
- bottom: 0;
- left: 0;
- z-index: 999;
- background: #FFFFFF;
- }
- .register-btn{
- width: 100%;
- height: 80rpx;
- border-radius: 44rpx;
- font-size: $font-size-28;
- line-height: 80rpx;
- color: #FFFFFF;
- margin: 0 auto;
- text-align: center;
- background: $btn-confirm;
- margin-top: 96rpx;
- &.prev{
- background:#ffe6dc;
- color: $color-system;
- margin-top: 20rpx;
- }
- &.none{
- border: 1px solid $color-system;
- background: #FFFFFF;
- color:$color-system;
- margin-top: 0;
- }
- &.sub{
- margin-top: 0;
- }
- }
- }
- }
- </style>
|