|
@@ -26,43 +26,48 @@
|
|
|
|
|
|
|
|
<view wx:if="{{currentTab == 1}}" class="con">
|
|
<view wx:if="{{currentTab == 1}}" class="con">
|
|
|
<view class="title2">请问您入驻的类型是?</view>
|
|
<view class="title2">请问您入驻的类型是?</view>
|
|
|
- <view class="buttons">
|
|
|
|
|
- <view><button class="button primary-background-color white-text-color" bindtap="switch2">组织</button></view>
|
|
|
|
|
- <view><button class="button primary-background-color white-text-color" bindtap="switch3">社团</button></view>
|
|
|
|
|
- </view>
|
|
|
|
|
|
|
+ <view class="buttons">
|
|
|
|
|
+ <view><button class="button primary-background-color white-text-color" bindtap="switch2">组织</button></view>
|
|
|
|
|
+ <view><button class="button primary-background-color white-text-color" bindtap="switch3">社团</button></view>
|
|
|
|
|
+ </view>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
<scroll-view wx:if="{{currentTab == 2}}" scroll-y style="height: {{winHeight - 60}}px;">
|
|
<scroll-view wx:if="{{currentTab == 2}}" scroll-y style="height: {{winHeight - 60}}px;">
|
|
|
<view class="subTitle">组织入驻</view>
|
|
<view class="subTitle">组织入驻</view>
|
|
|
<view class="block">
|
|
<view class="block">
|
|
|
<view class="cate">邀请码</view>:
|
|
<view class="cate">邀请码</view>:
|
|
|
- <input class="input block-background-color" placeholder="请输入邀请码" model:value="{{inviteCode}}"/>
|
|
|
|
|
|
|
+ <input class="input block-background-color" placeholder="请输入邀请码" model:value="{{inviteCode}}" />
|
|
|
</view>
|
|
</view>
|
|
|
<view class="block">
|
|
<view class="block">
|
|
|
<view class="cate">组织名称</view>:
|
|
<view class="cate">组织名称</view>:
|
|
|
- <input class="input block-background-color" placeholder="请输入组织名" model:value="{{publisherName}}"/>
|
|
|
|
|
|
|
+ <input class="input block-background-color" placeholder="请输入组织名" model:value="{{publisherName}}" />
|
|
|
</view>
|
|
</view>
|
|
|
<view class="block">
|
|
<view class="block">
|
|
|
<view class="cate">组织类型</view>:
|
|
<view class="cate">组织类型</view>:
|
|
|
<radio-group class="radio-group" bindchange="updateRadio">
|
|
<radio-group class="radio-group" bindchange="updateRadio">
|
|
|
<label wx:for="{{types}}" wx:for-item="item" wx:key="*this">
|
|
<label wx:for="{{types}}" wx:for-item="item" wx:key="*this">
|
|
|
- <radio class="radio" value="{{item}}" color="#3F51B5">{{item}}</radio>
|
|
|
|
|
|
|
+ <radio class="radio" value="{{item}}" color="#469298">{{item}}</radio>
|
|
|
</label>
|
|
</label>
|
|
|
</radio-group>
|
|
</radio-group>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="block2">
|
|
<view class="block2">
|
|
|
- <view class="block22"><view class="cate">组织头像</view>:</view>
|
|
|
|
|
- <imagePicker images="{{publisherAvatar}}" max="1" image-width="450" image-height="450" bindchange="updatePublishAvatar" />
|
|
|
|
|
|
|
+ <view class="block22">
|
|
|
|
|
+ <view class="cate">组织头像</view>:
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <imagePicker images="{{publisherAvatar}}" max="1" image-width="450" image-height="450"
|
|
|
|
|
+ bindchange="updatePublishAvatar" />
|
|
|
</view>
|
|
</view>
|
|
|
<view class="block">
|
|
<view class="block">
|
|
|
<view class="cate">联系方式</view>:
|
|
<view class="cate">联系方式</view>:
|
|
|
- <input class="input block-background-color" placeholder="请输入联系方式" model:value="{{publisherContact}}"/>
|
|
|
|
|
|
|
+ <input class="input block-background-color" placeholder="请输入联系方式" model:value="{{publisherContact}}" />
|
|
|
</view>
|
|
</view>
|
|
|
<view class="block2">
|
|
<view class="block2">
|
|
|
- <view class="block22"><view class="cate">组织介绍</view>:</view>
|
|
|
|
|
- <textarea class="textarea block-background-color" placeholder="请输入组织介绍" model:value="{{publisherIntro}}"/>
|
|
|
|
|
- </view>
|
|
|
|
|
- <button class="button dark-primary-color white-text-color" bindtap="switch4">提交</button>
|
|
|
|
|
|
|
+ <view class="block22">
|
|
|
|
|
+ <view class="cate">组织介绍</view>:
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <textarea class="textarea block-background-color" placeholder="请输入组织介绍" model:value="{{publisherIntro}}" />
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <button class="button primary-background-color white-text-color" bindtap="switch4">提交</button>
|
|
|
</scroll-view>
|
|
</scroll-view>
|
|
|
|
|
|
|
|
<scroll-view wx:if="{{currentTab == 3}}" scroll-y style="height: {{winHeight - 60}}px;">
|
|
<scroll-view wx:if="{{currentTab == 3}}" scroll-y style="height: {{winHeight - 60}}px;">
|
|
@@ -79,7 +84,7 @@
|
|
|
<view class="cate">社团规模</view>:
|
|
<view class="cate">社团规模</view>:
|
|
|
<radio-group class="radio-group" bindchange="updateRadio">
|
|
<radio-group class="radio-group" bindchange="updateRadio">
|
|
|
<label wx:for="{{stars}}" wx:for-item="item" wx:key="*this">
|
|
<label wx:for="{{stars}}" wx:for-item="item" wx:key="*this">
|
|
|
- <radio class="radio" value="{{item}}" color="#3F51B5">{{item}}</radio>
|
|
|
|
|
|
|
+ <radio class="radio" value="{{item}}" color="#469298">{{item}}</radio>
|
|
|
</label>
|
|
</label>
|
|
|
</radio-group>
|
|
</radio-group>
|
|
|
</view>
|
|
</view>
|
|
@@ -95,12 +100,12 @@
|
|
|
<view class="block22"><view class="cate">社团介绍</view>:</view>
|
|
<view class="block22"><view class="cate">社团介绍</view>:</view>
|
|
|
<textarea class="textarea block-background-color" placeholder="请输入社团介绍" model:value="{{publisherIntro}}"/>
|
|
<textarea class="textarea block-background-color" placeholder="请输入社团介绍" model:value="{{publisherIntro}}"/>
|
|
|
</view>
|
|
</view>
|
|
|
- <button class="button dark-primary-color white-text-color" bindtap="switch4">提交</button>
|
|
|
|
|
|
|
+ <button class="button primary-background-color white-text-color" bindtap="switch4">提交</button>
|
|
|
</scroll-view>
|
|
</scroll-view>
|
|
|
|
|
|
|
|
<view wx:if="{{currentTab == 4}}" class="con">
|
|
<view wx:if="{{currentTab == 4}}" class="con">
|
|
|
- <view class="con1 dark-primary-color-font">恭喜您完成填写!</view>
|
|
|
|
|
|
|
+ <view class="con1 primary-background-color">恭喜您完成填写!</view>
|
|
|
<image class="pic" src="../../images/finish.png" mode="aspectFill"/>
|
|
<image class="pic" src="../../images/finish.png" mode="aspectFill"/>
|
|
|
<view class="con2">感谢您的入驻</view>
|
|
<view class="con2">感谢您的入驻</view>
|
|
|
- <button class="button dark-primary-color white-text-color" bindtap="returnToUser">返回</button>
|
|
|
|
|
-</view>
|
|
|
|
|
|
|
+ <button class="button primary-background-color white-text-color" bindtap="returnToUser">返回</button>
|
|
|
|
|
+</view>
|