Commit 80cf9e2e by tangjinlin

05-12

parent 17be7a3e
...@@ -43,6 +43,12 @@ Page({ ...@@ -43,6 +43,12 @@ Page({
}, },
back: function () {
wx.navigateBack({
delta: 1
})
},
//选择年龄段 //选择年龄段
selectAge(e) { selectAge(e) {
let age = e.currentTarget.dataset['index'] let age = e.currentTarget.dataset['index']
......
<!--pages/ageChange/ageChange.wxml--> <!--pages/ageChange/ageChange.wxml-->
<custom-navi text="年龄选择" back="{{true}}" home="{{false}}"></custom-navi> <!-- <custom-navi text="年龄选择" back="{{true}}" home="{{false}}"></custom-navi> -->
<image class='background-image' src='/img/registerBg.jpg' mode="aspectFill"></image>
<view class="title" bindtap='back'>
<image src="/img/left1.png" style="width:40px;height:40px;margin-right:5px"></image>年龄选择
</view>
<view class='ageChange'> <view class='ageChange'>
<image src='../../img/2.jpg'></image> <image src='/img/logo1.png' mode="widthFix"></image>
<text>请选择您的孩子的年龄段</text> <text>请选择您的孩子的年龄段</text>
<view style="background:{{age==1?'#3AAB69':'#fff'}}" bindtap='selectAge' data-index="1">3~6岁</view> <view style="background:{{age==1?'#d8477f':'transparent'}};color:{{age==1?'#fff':'#d8477f'}}" bindtap='selectAge' data-index="1">3~6 岁</view>
<view style="background:{{age==2?'#3AAB69':'#fff'}}" bindtap='selectAge' data-index="2">7岁以上</view> <view style="background:{{age==2?'#d8477f':'transparent'}};color:{{age==2?'#fff':'#d8477f'}}" bindtap='selectAge' data-index="2">7 岁以上</view>
<view style="background:{{age==0?'#3AAB69':'#fff'}}" bindtap='selectAge' data-index="0">暂不选择</view> <view style="background:{{age==0?'#d8477f':'transparent'}};color:{{age==0?'#fff':'#d8477f'}}" bindtap='selectAge' data-index="0">暂不选择</view>
<view class='button' style='border:none'> <view class='button' style='border:none;margin-top:10%;color:#fff;'>
<view style="width:100%;height:100%;background:#0D76ED;color:#fff" bindtap="updateAge">提交</view> <view style="width:100%;height:100%;background:linear-gradient(to right, #e85c6d, #fb689b);border-radius: 20px;font-size: 18px;" bindtap="updateAge">提交</view>
</view> </view>
</view> </view>
\ No newline at end of file
/* pages/ageChange/ageChange.wxss */ /* pages/ageChange/ageChange.wxss */
.ageChange>image{ .background-image {
height: 100%;
position: fixed;
width: 100%;
left: 0px;
top: 0px;
}
.title {
position: fixed;
top: 4%;
left: 5%;
display: flex;
align-items: center;
font-size: 18px;
color: #fff;
}
.ageChange {
width: 100%;
height: 100%;
position: absolute;
left: 0px;
}
.ageChange>image {
display: block; display: block;
width: 100px; width: 30%;
height: 100px; margin: 30% auto 0;
border-radius: 50%;
margin: 0 auto;
} }
.ageChange>text{
.ageChange>text {
display: block; display: block;
color: #fff;
width: 100%; width: 100%;
text-align: center; text-align: center;
font-size: 18px; font-size: 18px;
margin: 30px 0 40px; margin: 30px 0 40px;
} }
.ageChange>view{
width: 200px; .ageChange>view {
width: 50%;
height: 40px; height: 40px;
line-height: 40px; line-height: 40px;
text-align: center; text-align: center;
font-size: 16px; font-size: 18px;
margin: 15px auto; margin: 20px auto;
border: 1px solid #ccc; border: 1rpx solid #d8477f;
border-radius: 20px;
} }
\ No newline at end of file
<!--pages/leaderRegistered/leaderRegistered.wxml--> <!--pages/leaderRegistered/leaderRegistered.wxml-->
<custom-navi text="注册" back="{{false}}" home="{{false}}"></custom-navi> <image class='background-image' src='/img/registerBg.jpg' mode="aspectFill"></image>
<view class="title">注册</view>
<view class='leaderRegistered'> <view class='leaderRegistered'>
<image src='../../img/2.jpg'></image> <image src='/img/logo1.png' mode="widthFix"></image>
<view class='title_leaderRegistered'><text>{{leaderTitle}}领导:</text>欢迎来到志愿者平台!</view> <view class='title_leaderRegistered'>
<view class='con_leaderRegistered'> <text>{{leaderTitle}}领导</text>
<view>欢迎来到志愿者平台</view>
</view>
<view style='display:flex;justify-content: center;margin-top:80px;' class='button'>
<van-button type="default" open-type="getUserInfo" bind:getuserinfo="regist">注册</van-button>
</view> </view>
<view style='display:flex;justify-content: center;margin-top:100px;' class='button'>
<van-button type="default" open-type="getUserInfo" bind:getuserinfo="regist">注册</van-button></view>
</view> </view>
\ No newline at end of file
/* pages/leaderRegistered/leaderRegistered.wxss */ /* pages/leaderRegistered/leaderRegistered.wxss */
.leaderRegistered>image{ .background-image {
width: 100px; height: 100%;
height: 100px; position: absolute;
display: block; width: 100%;
border-radius: 50%; left: 0px;
margin: 0 auto; top: 0px;
} }
.title_leaderRegistered{
width: 75%; .title {
font-size: 18px; position: absolute;
margin: 30px auto 10px; top: 5%;
left: 5%;
font-size: 16px;
color: #fff;
} }
.title_leaderRegistered>text{
color: red; .leaderRegistered {
width: 100%;
height: 100%;
position: absolute;
left: 0px;
} }
.con_leaderRegistered{
width: 80%; .leaderRegistered>image {
margin: 0 auto; display: block;
width: 40%;
margin: 40% auto 0;
} }
.con_leaderRegistered>view{
.title_leaderRegistered {
color: #fff;
width: 75%;
font-size: 18px;
margin: 60px auto 10px;
display: flex; display: flex;
flex-direction: column;
align-items: center; align-items: center;
justify-content: center;
}
.title_leaderRegistered>text {
font-size: 14px;
font-weight: 300;
padding-bottom: 15px;
} }
.con_leaderRegistered>view input{ .title_leaderRegistered>view {
border: 1px solid #ccc; font-size: 18px;
height: 40px;
padding-left: 10px;
} }
.leaderRegistered button{
padding: 0 80px; .leaderRegistered button {
padding: 20px 130px;
width: 100%;
height: 60px;
line-height: 60px;
border-radius: 30px;
border: 0px;
background: linear-gradient(to right, #e85c6d, #fb689b);
color: #fff;
}
button>view {
font-size: 18px;
} }
<!--pages/memberChange/memberChange.wxml--> <!--pages/memberChange/memberChange.wxml-->
<custom-navi text="会员" back="{{true}}" home="{{true}}"></custom-navi> <custom-navi text="返回" back="{{true}}" home="{{true}}" bg1="#fff" bg2="#fff" bg3="#fff"></custom-navi>
<view class='memberChange'> <view class='memberChange'>
<view class='con_memberChange'> <view class='con_memberChange'>
<view class='top_memberChange'> <view class='top_memberChange'>
{{entity.title}} {{entity.title}}
</view> </view>
<view class='money_memberChange'> <view class='money_memberChange'>
金额:<text>{{entity.money}}元</text> 金额<text>{{entity.money}}元</text>
</view> </view>
<view class='huiyuan'>{{entity.comment}}</view> <view class='huiyuan'>{{entity.comment}}</view>
<view class='btn'> <view class='btn'>
<view bindtap="buy">购买</view> <view class="buy" bindtap="buy">购买</view>
<view bindtap="cancel">放弃</view> <view class="cancel" bindtap="cancel">放弃</view>
</view> </view>
</view> </view>
</view> </view>
......
/* pages/memberChange/memberChange.wxss */ /* pages/memberChange/memberChange.wxss */
.con_memberChange{ .con_memberChange {
position: fixed; position: fixed;
top: 0; top: 0;
left: 0; left: 0;
...@@ -8,38 +8,72 @@ ...@@ -8,38 +8,72 @@
margin: auto; margin: auto;
width: 260px; width: 260px;
height: 280px; height: 280px;
display: flex;
flex-direction: column;
align-items: center;
} }
.top_memberChange{
.top_memberChange {
width: 100%; width: 100%;
text-align: left; text-align: center;
font-size: 14px; font-size: 14px;
color: #333333;
font-weight: 500;
} }
.money_memberChange{
.money_memberChange {
width: 100%; width: 100%;
font-size: 14px; font-size: 18px;
margin: 20px 0;
color: #eb5e76;
font-weight: bold;
display: flex;
align-items: center;
justify-content: center;
} }
.money_memberChange>text{
margin-left: 20px; .money_memberChange text {
font-size: 18px;
margin: 20px 0;
} }
.huiyuan{
font-size: 12px; .huiyuan {
color: #a8a8a8;
font-size: 14px;
margin-bottom: 10px;
} }
.btn{
.btn {
width: 100%; width: 100%;
display: flex; display: flex;
justify-content: space-between; flex-direction: column;
margin-top: 20px!important; align-items: center;
justify-content: center;
} }
.btn>view{
width: 120px; .btn>view {
margin: 10px 0;
}
.btn>.buy {
width: 80%;
height: 30px; height: 30px;
text-align: center; text-align: center;
line-height: 30px; line-height: 30px;
border-radius: 5px; border-radius: 15px;
background: rgb(91,155,213); background: linear-gradient(to right, #e85c6d, #fb689b);
color: #fff; color: #fff;
font-size: 14px; font-size: 14px;
} }
.con_memberChange>view{
margin-top: 15px; .btn>.cancel {
width: 80%;
height: 30px;
text-align: center;
line-height: 30px;
border-radius: 15px;
background: transparent;
border: 1rpx solid #fd66a1;
color: #e85b93;
font-size: 14px;
} }
\ No newline at end of file
<!--pages/familyUser/familyUser.wxml--> <!--pages/familyUser/familyUser.wxml-->
<custom-navi text="用户注册" back="{{false}}" home="{{false}}"></custom-navi> <image class='background-image' src='/img/registerBg.jpg' mode="aspectFill"></image>
<view class="title">注册</view>
<view class='familyUser'> <view class='familyUser'>
<image src='../../img/2.jpg'></image> <image src='/img/logo1.png' mode="widthFix"></image>
<text>欢迎来到志愿者平台!</text> <text>欢迎来到志愿者平台!</text>
<view style='display:flex;justify-content: center;margin-top:100px;' class='button'> <view style='display:flex;justify-content: center;margin-top:100px;' class='button'>
<van-button type="default" open-type="getUserInfo" bind:getuserinfo="regist">进入首页</van-button> <van-button type="default" open-type="getUserInfo" bind:getuserinfo="regist">进入首页</van-button>
......
/* pages/familyUser/familyUser.wxss */ /* pages/familyUser/familyUser.wxss */
.familyUser>image{ .background-image {
height: 100%;
position: absolute;
width: 100%;
left: 0px;
top: 0px;
}
.title {
position: absolute;
top: 5%;
left: 5%;
font-size: 16px;
color: #fff;
}
.familyUser {
width: 100%;
height: 100%;
position: absolute;
left: 0px;
}
.familyUser>image {
display: block; display: block;
margin-top: 20px; width: 40%;
width: 100px; margin: 40% auto 0;
height: 100px;
border-radius: 50%;
margin: 0 auto;
} }
.familyUser>text{
.familyUser>text {
display: block; display: block;
width: 100%; width: 100%;
text-align: center; text-align: center;
font-size: 18px; font-size: 18px;
margin-top: 30px; margin-top: 30px;
color: #fff;
}
.button button {
padding: 20px 110px;
width: 100%;
height: 60px;
line-height: 60px;
border-radius: 30px;
border: 0px;
background: linear-gradient(to right, #e85c6d, #fb689b);
color: #fff;
} }
\ No newline at end of file
<!--pages/socialUserRegister/socialUserRegister.wxml--> <!--pages/socialUserRegister/socialUserRegister.wxml-->
<view class='jigouRegistered'> <image class='background-image' src='/img/registerBg.jpg' mode="aspectFill"></image>
<image src='../../img/2.jpg'></image> <view class="title">注册</view>
<scroll-view class="scroll" scroll-y>
<view class='jigouRegistered'>
<view wx:if="{{upload!=1}}">
<image src='/img/logo1.png' mode="widthFix"></image>
<view class='formtable'> <view class='formtable'>
<view> <view>
<text>用户姓名:</text> <text>用户姓名:</text>
<van-cell-group> <van-cell-group>
<van-field <van-field value="{{ name }}" placeholder="请输入用户姓名" bind:change="onChangeName" border="{{false}}" />
value="{{ name }}"
placeholder="请输入用户姓名"
bind:change="onChangeName"
border="{{false}}"
/>
</van-cell-group> </van-cell-group>
</view> </view>
<view> <view>
<text>手机号码:</text> <text>手机号码:</text>
<van-cell-group> <van-cell-group>
<van-field <van-field value="{{ mobile }}" placeholder="请输入手机号码" bind:change="onChangeMobile" border="{{false}}" />
value="{{ mobile }}"
placeholder="请输入手机号码"
bind:change="onChangeMobile"
border="{{false}}"
/>
</van-cell-group> </van-cell-group>
</view> </view>
<view style='justify-content: flex-end;font-size:12px;width:280px;padding-right:30px'> <view style='justify-content: flex-end;font-size:12px;width:280px;padding-right:30px'>
<van-checkbox value="{{ isOrganization }}" shape="square" bind:change="onChangeIsOrganization" icon-size="16px"> <van-checkbox value="{{ isOrganization }}" shape="square" bind:change="onChangeIsOrganization" icon-size="16px">
</van-checkbox> </van-checkbox>
<text style='width:60px;color:#0D76ED;font-size:12px'>认证机构</text> <text style='width:60px;color:#fff;font-size:12px'>认证机构</text>
</view> </view>
<view wx:if="{{isOrganization==true}}"> <view wx:if="{{isOrganization==true}}">
<text>机构名称:</text> <text>机构名称:</text>
<van-cell-group> <van-cell-group>
<van-field <van-field value="{{ organizationTitle }}" placeholder="请输入机构名称" bind:change="onChangeOrganizationTitle" border="{{false}}" />
value="{{ organizationTitle }}"
placeholder="请输入机构名称"
bind:change="onChangeOrganizationTitle"
border="{{false}}"
/>
</van-cell-group> </van-cell-group>
</view> </view>
<view style='margin-bottom:5px' wx:if="{{isOrganization==true}}"> <view style='margin-bottom:5px' wx:if="{{isOrganization==true}}">
<text>法人姓名:</text> <text>法人姓名:</text>
<van-cell-group> <van-cell-group>
<van-field <van-field value="{{ legalPerson }}" placeholder="请输入法人姓名" bind:change="onChangeLegalPerson" border="{{false}}" />
value="{{ legalPerson }}"
placeholder="请输入法人姓名"
bind:change="onChangeLegalPerson"
border="{{false}}"
/>
</van-cell-group> </van-cell-group>
</view> </view>
<view style='margin-bottom:5px' wx:if="{{isOrganization==true}}"> <view style='margin-bottom:5px' wx:if="{{isOrganization==true}}">
<text>法人手机:</text> <text>法人手机:</text>
<van-cell-group> <van-cell-group>
<van-field <van-field value="{{ organizationContact }}" placeholder="请输入法人手机" bind:change="onChangeOrganizationContact" border="{{false}}" />
value="{{ organizationContact }}"
placeholder="请输入法人手机"
bind:change="onChangeOrganizationContact"
border="{{false}}"
/>
</van-cell-group> </van-cell-group>
</view> </view>
<view class='uploadPic' wx:if="{{uploadPic==true}}">
<view>
<text>身份证:</text><image src='{{legalPersonImgage1}}'></image><image src='{{legalPersonImgage2}}'></image>
</view>
<view>
<text>营业执照:</text><image src='{{licensenImgage}}'></image>
</view>
<view>
<text>其他资料:</text><image src='{{otherImgage}}'></image>
</view>
</view>
<view class='button'> <view class='button' wx:if="{{showRule!=true}}">
<van-button type="default" style="margin:0 auto;" open-type="getUserInfo" bind:getuserinfo="regist">注册</van-button> <van-button type="default" style="margin:0 auto;" open-type="getUserInfo" bind:getuserinfo="regist">注册</van-button>
</view> </view>
</view> </view>
</view>
<view class='surejigou' wx:if="{{showRule==true}}"> <view class='surejigou' wx:if="{{showRule==true}}">
<view class='conSurejigou'> <view class='conSurejigou'>
<text>认证机构</text> <text>认证机构</text>
<view class='content'> <view class='content'>
{{content}} {{content}}
</view> </view>
<view class='btnagreen button'><van-button type="default" style="margin:0 auto" bind:click="agree">同意</van-button></view> <view class='btnagreen button'>
<van-button type="default" style="margin:0 auto" bind:click="agree">同意</van-button>
</view>
</view> </view>
</view> </view>
<view class='upload' wx:if="{{upload==1}}"> <view class='upload' wx:if="{{upload==1}}">
<text>机构认证</text>
<view class='mainUpload'>
<view> <view>
<text>机构认证</text>
</view>
<scroll-view class="mainUpload" scroll-y>
<view class="upload_info">
<text>法人身份证:</text> <text>法人身份证:</text>
<view> <view>
<van-uploader file-list="{{ fileList }}" <view class="a_b">
max-count="1" <van-uploader file-list="{{ fileList }}" max-count="1" multiple bind:after-read="afterRead" bind:before-read="beforeRead" use-before-read="{{ true }}" bind:delete="delete" image-fit="widthFix" preview-size="150px">
multiple <van-button icon="/img/jia1.png" type="default" />
bind:after-read="afterRead" </van-uploader>
bind:before-read="beforeRead" <text style='font-weight: 500;margin-bottom:10px'>身份证反面</text>
use-before-read="{{ true }}"
bind:delete="delete"/>
<view style='font-size:12px;color:#666'>只支持.jpg格式</view> <view style='font-size:12px;color:#666'>只支持.jpg格式</view>
<van-uploader file-list="{{ fileList1 }}" </view>
max-count="1" <view class="a_b">
multiple <van-uploader file-list="{{ fileList1 }}" max-count="1" multiple bind:after-read="afterRead1" bind:before-read="beforeRead" use-before-read="{{ true }}" bind:delete="delete1" image-fit="widthFix" preview-size="150px">
bind:after-read="afterRead1" <van-button icon="/img/jia1.png" type="default" />
bind:before-read="beforeRead" </van-uploader>
use-before-read="{{ true }}" <text style='font-weight: 500;margin-bottom:10px'>身份证反面</text>
bind:delete="delete1"/>
<view style='font-size:12px;color:#666'>只支持.jpg格式</view> <view style='font-size:12px;color:#666'>只支持.jpg格式</view>
</view> </view>
<view>
<text>(身份证正面)</text>
<text>(身份证反面)</text>
</view> </view>
</view> </view>
<view class="upload_info">
<text>营业执照</text>
<view> <view>
<text>营业执照:</text> <view class="a_b">
<view> <van-uploader file-list="{{ fileList2 }}" max-count="1" multiple bind:after-read="afterRead2" bind:before-read="beforeRead" use-before-read="{{ true }}" bind:delete="delete2" image-fit="widthFix" preview-size="150px">
<van-uploader file-list="{{ fileList2 }}" <van-button icon="/img/jia1.png" type="default" />
max-count="1" </van-uploader>
multiple
bind:after-read="afterRead2"
bind:before-read="beforeRead"
use-before-read="{{ true }}"
bind:delete="delete2"/>
<view style='font-size:12px;color:#666'>只支持.jpg格式</view> <view style='font-size:12px;color:#666'>只支持.jpg格式</view>
</view> </view>
</view> </view>
<view> </view>
<view class="upload_info">
<text>其他资料:</text> <text>其他资料:</text>
<view> <view>
<van-uploader file-list="{{ fileList3 }}" <view class="a_b">
max-count="1" <van-uploader file-list="{{ fileList3 }}" max-count="1" multiple bind:after-read="afterRead3" bind:before-read="beforeRead" use-before-read="{{ true }}" bind:delete="delete3" image-fit="widthFix" preview-size="150px">
multiple <van-button icon="/img/jia1.png" type="default" />
bind:after-read="afterRead3" </van-uploader>
bind:before-read="beforeRead"
use-before-read="{{ true }}"
bind:delete="delete3"/>
<view style='font-size:12px;color:#666'>只支持.jpg格式</view> <view style='font-size:12px;color:#666'>只支持.jpg格式</view>
</view> </view>
</view> </view>
</view>
<view class='button'> <view class='button'>
<van-button type="default" style="margin:30px auto" bind:click="upload">上传</van-button> <van-button type="default" style="margin:30px auto" bind:click="upload">上传</van-button>
</view> </view>
</view> </scroll-view>
</view> </view>
<van-notify id="van-notify" /> <van-notify id="van-notify" />
</view> </view>
</scroll-view>
\ No newline at end of file
/* pages/socialUserRegister/socialUserRegister.wxss */ /* pages/socialUserRegister/socialUserRegister.wxss */
.jigouRegistered{ .background-image {
height: 100%;
position: absolute;
width: 100%; width: 100%;
left: 0px;
top: 0px;
}
.title {
position: absolute;
top: 5%;
left: 5%;
font-size: 16px;
color: #fff;
}
.jigouRegistered {
width: 100%;
height: 100%;
position: relative; position: relative;
} }
.jigouRegistered>image{
.jigouRegistered>view>image {
display: block; display: block;
width: 100px; width: 40%;
height: 100px; margin: 20% auto 70px;
border-radius: 50%;
margin: 20px auto 70px;
} }
.formtable>view{
.formtable>view {
width: 280px; width: 280px;
margin: 40px auto; margin: 40px auto;
} }
.surejigou{
.surejigou {
position: absolute; position: absolute;
top: 0; top: 0;
left: 0; left: 0;
...@@ -22,7 +40,8 @@ ...@@ -22,7 +40,8 @@
height: 100%; height: 100%;
z-index: 200; z-index: 200;
} }
.conSurejigou{
.conSurejigou {
position: absolute; position: absolute;
top: 100px; top: 100px;
left: 0; left: 0;
...@@ -35,14 +54,16 @@ ...@@ -35,14 +54,16 @@
border-radius: 10px; border-radius: 10px;
border: 1px solid #ccc; border: 1px solid #ccc;
} }
.conSurejigou>text{
.conSurejigou>text {
display: block; display: block;
width: 100%; width: 100%;
text-align: center; text-align: center;
font-size: 16px; font-size: 16px;
margin-top: 30px margin-top: 30px
} }
.btnagreen{
.btnagreen {
position: absolute; position: absolute;
bottom: 20px; bottom: 20px;
left: 0; left: 0;
...@@ -50,69 +71,115 @@ ...@@ -50,69 +71,115 @@
display: flex; display: flex;
justify-content: center; justify-content: center;
} }
.van-button{
height: 30px!important; .van-button {
height: 30px !important;
} }
.content{
.content {
width: 90%; width: 90%;
margin: 40px auto; margin: 40px auto;
} }
.upload{
position: absolute; .upload {
position: relative;
top: 0; top: 0;
left: 0; left: 0;
width: 100%; width: 100%;
height: 100%; height: 100%;
background: #fff; background: #fff;
z-index: 200;
} }
.upload>text{
.upload>view {
position: fixed;
display: block; display: block;
top: 0;
left: 0;
width: 100%; width: 100%;
height: 30px; height: 8%;
line-height: 30px; background: #fff;
text-align: center; z-index: 200;
}
.upload>view>text {
position: fixed;
display: block;
top: 5%;
left: 5%;
font-size: 16px; font-size: 16px;
border: 1px solid #ccc;
} }
.mainUpload{
width: 90%; .mainUpload {
margin: 20px auto 0; position: absolute;
top: 0;
width: 100%;
height: 100%;
background: #fff;
margin: 20% auto 0;
} }
.mainUpload>view{
.mainUpload .upload_info {
display: flex; display: flex;
flex-direction: column;
margin-bottom: 40px;
} }
.mainUpload>view>text{
display: block; .mainUpload .upload_info text {
width: 100px; font-weight: 600;
text-align: right; padding-left: 5%;
font-size: 14px;
}
.mainUpload>view>view{
width: 90px;
} }
.mainUpload>view>view>text{
display: block; .mainUpload .upload_info view {
font-size: 14px; display: flex;
color: #4F4F4F; flex-direction: row;
height: 120px; justify-content: space-between;
} }
.uploadPic>view{
width: 100%; .upload_info view .a_b {
display: flex; display: flex;
width: 50%;
flex-direction: column;
align-items: center; align-items: center;
height: 40px; justify-content: center;
flex-wrap: wrap;
margin-bottom: 10px;
} }
.uploadPic>view>text{
width: 100px; .upload_info view .a_b button {
text-align: right; padding: 50px 60px;
font-size: 16px; font-size: 35px;
margin-right: 5px box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.1);
margin: 15px;
} }
.uploadPic>view>image{
width: 60px; .upload_info view .a_b .van-uploader__preview {
height: 34px; width: 100%;
margin-left: 20px; margin: 0;
}
.button button {
padding: 20px 110px;
width: 100%;
height: 60px;
line-height: 60px;
border-radius: 30px;
border: 0px;
background: linear-gradient(to right, #e85c6d, #fb689b);
color: #fff;
}
.scroll {
position: absolute;
top: 0;
width: 100%;
height: 100%;
}
.scroll .button {
width: 80%;
padding-left: 10%;
}
.formtable view text {
color: #fff;
font-weight: 300;
font-size: 16px;
} }
\ No newline at end of file
...@@ -87,13 +87,6 @@ ...@@ -87,13 +87,6 @@
"pathName": "pages/circle/circle", "pathName": "pages/circle/circle",
"query": "圈子", "query": "圈子",
"scene": null "scene": null
},
{
"id": -1,
"name": "pages/circleDetails/circleDetails",
"pathName": "pages/circleDetails/circleDetails",
"query": "circleId=5",
"scene": null
} }
] ]
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment