|
@@ -6,9 +6,15 @@
|
|
|
<view wx:if="{{currentTab == 0}}" class="con">
|
|
<view wx:if="{{currentTab == 0}}" class="con">
|
|
|
<view class="title2">信息发布类型</view>
|
|
<view class="title2">信息发布类型</view>
|
|
|
<view class="buttons">
|
|
<view class="buttons">
|
|
|
- <view><button class="button primary-background-color white-text-color" bindtap="switch1">活动</button></view>
|
|
|
|
|
- <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>
|
|
|
|
|
+ <myButton class="button" type="primary" bindtap="switch1">活动</myButton>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <view>
|
|
|
|
|
+ <myButton class="button" type="primary" bindtap="switch2">纳新</myButton>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <view>
|
|
|
|
|
+ <myButton class="button" type="primary" bindtap="switch3">通知</myButton>
|
|
|
|
|
+ </view>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
@@ -16,19 +22,19 @@
|
|
|
<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="{{activityName}}"/>
|
|
|
|
|
|
|
+ <input class="input block-background-color" placeholder="请输入活动名称" model:value="{{activityName}}" />
|
|
|
</view>
|
|
</view>
|
|
|
<view class="block">
|
|
<view class="block">
|
|
|
- <view class="cate">副标题</view>:
|
|
|
|
|
- <input class="input block-background-color" placeholder="请输入活动副标题" model:value="{{activitySubTitle}}"/>
|
|
|
|
|
|
|
+ <view class="cate">简介</view>:
|
|
|
|
|
+ <input class="input block-background-color" placeholder="请输入活动副标题" model:value="{{activitySubTitle}}" />
|
|
|
</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="{{activityTime}}"/>
|
|
|
|
|
|
|
+ <input class="input block-background-color" placeholder="请输入活动开展的时间" model:value="{{activityTime}}" />
|
|
|
</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="{{activityPlace}}"/>
|
|
|
|
|
|
|
+ <input class="input block-background-color" placeholder="请输入活动开展的地点" model:value="{{activityPlace}}" />
|
|
|
</view>
|
|
</view>
|
|
|
<view class="block">
|
|
<view class="block">
|
|
|
<view class="cate">*活动属性</view>:
|
|
<view class="cate">*活动属性</view>:
|
|
@@ -55,41 +61,53 @@
|
|
|
<input class="input block-background-color" model:value="{{activityAim}}" placeholder="请输入面向对象" />
|
|
<input class="input block-background-color" model:value="{{activityAim}}" placeholder="请输入面向对象" />
|
|
|
</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="{{activityDetail}}"></textarea>
|
|
|
|
|
|
|
+ <view class="block22">
|
|
|
|
|
+ <view class="cate">*活动详情</view>:
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <textarea class="textarea block-background-color" placeholder="请输入具体活动信息"
|
|
|
|
|
+ model:value="{{activityDetail}}"></textarea>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="block2">
|
|
<view class="block2">
|
|
|
- <view class="block22"><view class="cate">活动海报</view>:</view>
|
|
|
|
|
- <imagePicker images="{{activityPoster}}" max="1" image-width="450" image-height="270" bindchange="updateActivityPoster" />
|
|
|
|
|
|
|
+ <view class="block22">
|
|
|
|
|
+ <view class="cate">活动海报</view>:
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <imagePicker images="{{activityPoster}}" max="1" image-width="450" image-height="270"
|
|
|
|
|
+ bindchange="updateActivityPoster" />
|
|
|
</view>
|
|
</view>
|
|
|
<view class="block2">
|
|
<view class="block2">
|
|
|
- <view class="block22"><view class="cate">活动图片</view>:</view>
|
|
|
|
|
- <imagePicker images="{{activityPicture}}" max="9" image-width="145" image-height="145" bindchange="updateActivityPicture" />
|
|
|
|
|
|
|
+ <view class="block22">
|
|
|
|
|
+ <view class="cate">活动图片</view>:
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <imagePicker images="{{activityPicture}}" max="9" image-width="145" image-height="145"
|
|
|
|
|
+ bindchange="updateActivityPicture" />
|
|
|
</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="{{activityProInfo}}"></textarea>
|
|
|
|
|
|
|
+ <view class="block22">
|
|
|
|
|
+ <view class="cate">现宣信息</view>:
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <textarea class="textarea block-background-color" placeholder="请输入你的现宣信息"
|
|
|
|
|
+ model:value="{{activityProInfo}}"></textarea>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="block">
|
|
<view class="block">
|
|
|
<view class="cate">报名链接</view>:
|
|
<view class="cate">报名链接</view>:
|
|
|
<input class="input block-background-color" model:value="{{activitySrc}}" placeholder="请输入报名链接" />
|
|
<input class="input block-background-color" model:value="{{activitySrc}}" placeholder="请输入报名链接" />
|
|
|
</view>
|
|
</view>
|
|
|
- <button class="button primary-background-color white-text-color" bindtap="switch4">提交</button>
|
|
|
|
|
|
|
+ <myButton class="button" type="primary" bindtap="switch4">提交</myButton>
|
|
|
</scroll-view>
|
|
</scroll-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="{{recruitName}}"/>
|
|
|
|
|
|
|
+ <input class="input block-background-color" placeholder="请输入纳新标题" model:value="{{recruitName}}" />
|
|
|
</view>
|
|
</view>
|
|
|
<view class="block">
|
|
<view class="block">
|
|
|
- <view class="cate">副标题</view>:
|
|
|
|
|
- <input class="input block-background-color" placeholder="请输入纳新副标题" model:value="{{recruitSubTitle}}"/>
|
|
|
|
|
|
|
+ <view class="cate">简介</view>:
|
|
|
|
|
+ <input class="input block-background-color" placeholder="请输入纳新副标题" model:value="{{recruitSubTitle}}" />
|
|
|
</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="{{recruitTime}}"/>
|
|
|
|
|
|
|
+ <input class="input block-background-color" placeholder="请输入纳新开展的时间" model:value="{{recruitTime}}" />
|
|
|
</view>
|
|
</view>
|
|
|
<view class="block">
|
|
<view class="block">
|
|
|
<view class="cate">*纳新属性</view>:
|
|
<view class="cate">*纳新属性</view>:
|
|
@@ -108,37 +126,49 @@
|
|
|
<input class="input block-background-color" model:value="{{recruitAim}}" placeholder="请输入面向对象" />
|
|
<input class="input block-background-color" model:value="{{recruitAim}}" placeholder="请输入面向对象" />
|
|
|
</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="{{recruitDetail}}"></textarea>
|
|
|
|
|
|
|
+ <view class="block22">
|
|
|
|
|
+ <view class="cate">*纳新详情</view>:
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <textarea class="textarea block-background-color" placeholder="请输入具体纳新信息"
|
|
|
|
|
+ model:value="{{recruitDetail}}"></textarea>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="block2">
|
|
<view class="block2">
|
|
|
- <view class="block22"><view class="cate">活动海报</view>:</view>
|
|
|
|
|
- <imagePicker images="{{recruitPoster}}" max="1" image-width="450" image-height="270" bindchange="updateRecruitPoster" />
|
|
|
|
|
|
|
+ <view class="block22">
|
|
|
|
|
+ <view class="cate">纳新海报</view>:
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <imagePicker images="{{recruitPoster}}" max="1" image-width="450" image-height="270"
|
|
|
|
|
+ bindchange="updateRecruitPoster" />
|
|
|
</view>
|
|
</view>
|
|
|
<view class="block2">
|
|
<view class="block2">
|
|
|
- <view class="block22"><view class="cate">活动图片</view>:</view>
|
|
|
|
|
- <imagePicker images="{{recruitPicture}}" max="9" image-width="145" image-height="145" bindchange="updateRecruitPicture" />
|
|
|
|
|
|
|
+ <view class="block22">
|
|
|
|
|
+ <view class="cate">纳新图片</view>:
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <imagePicker images="{{recruitPicture}}" max="9" image-width="145" image-height="145"
|
|
|
|
|
+ bindchange="updateRecruitPicture" />
|
|
|
</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="{{recruitProInfo}}"></textarea>
|
|
|
|
|
|
|
+ <view class="block22">
|
|
|
|
|
+ <view class="cate">现宣信息</view>:
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <textarea class="textarea block-background-color" placeholder="请输入你的现宣信息"
|
|
|
|
|
+ model:value="{{recruitProInfo}}"></textarea>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="block">
|
|
<view class="block">
|
|
|
<view class="cate">报名链接</view>:
|
|
<view class="cate">报名链接</view>:
|
|
|
<input class="input block-background-color" model:value="{{recruitSrc}}" placeholder="请输入报名链接" />
|
|
<input class="input block-background-color" model:value="{{recruitSrc}}" placeholder="请输入报名链接" />
|
|
|
</view>
|
|
</view>
|
|
|
- <button class="button primary-background-color white-text-color" bindtap="switch4">提交</button>
|
|
|
|
|
|
|
+ <myButton class="button" type="primary" bindtap="switch4">提交</myButton>
|
|
|
</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;">
|
|
|
<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="{{notiName}}"/>
|
|
|
|
|
|
|
+ <input class="input block-background-color" placeholder="请输入通知标题" model:value="{{notiName}}" />
|
|
|
</view>
|
|
</view>
|
|
|
<view class="block">
|
|
<view class="block">
|
|
|
- <view class="cate">副标题</view>:
|
|
|
|
|
- <input class="input block-background-color" placeholder="请输入通知副标题" model:value="{{notiSubTitle}}"/>
|
|
|
|
|
|
|
+ <view class="cate">简介</view>:
|
|
|
|
|
+ <input class="input block-background-color" placeholder="请输入通知副标题" model:value="{{notiSubTitle}}" />
|
|
|
</view>
|
|
</view>
|
|
|
<view class="block">
|
|
<view class="block">
|
|
|
<view class="cate">*通知属性</view>:
|
|
<view class="cate">*通知属性</view>:
|
|
@@ -153,23 +183,29 @@
|
|
|
<input class="input block-background-color" model:value="{{notiAim}}" placeholder="请输入面向对象" />
|
|
<input class="input block-background-color" model:value="{{notiAim}}" placeholder="请输入面向对象" />
|
|
|
</view>
|
|
</view>
|
|
|
<view class="block2">
|
|
<view class="block2">
|
|
|
- <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="{{notiDetail}}"></textarea>
|
|
<textarea class="textarea block-background-color" placeholder="请输入通知详情" model:value="{{notiDetail}}"></textarea>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="block2">
|
|
<view class="block2">
|
|
|
- <view class="block22"><view class="cate">通知海报</view>:</view>
|
|
|
|
|
|
|
+ <view class="block22">
|
|
|
|
|
+ <view class="cate">通知海报</view>:
|
|
|
|
|
+ </view>
|
|
|
<imagePicker images="{{notiPoster}}" max="1" image-width="450" image-height="270" bindchange="updateNotiPoster" />
|
|
<imagePicker images="{{notiPoster}}" max="1" image-width="450" image-height="270" bindchange="updateNotiPoster" />
|
|
|
</view>
|
|
</view>
|
|
|
<view class="block2">
|
|
<view class="block2">
|
|
|
- <view class="block22"><view class="cate">通知图片</view>:</view>
|
|
|
|
|
|
|
+ <view class="block22">
|
|
|
|
|
+ <view class="cate">通知图片</view>:
|
|
|
|
|
+ </view>
|
|
|
<imagePicker images="{{notiPicture}}" max="9" image-width="145" image-height="145" bindchange="updateNotiPicture" />
|
|
<imagePicker images="{{notiPicture}}" max="9" image-width="145" image-height="145" bindchange="updateNotiPicture" />
|
|
|
</view>
|
|
</view>
|
|
|
- <button class="button primary-background-color white-text-color" bindtap="switch4">提交</button>
|
|
|
|
|
|
|
+ <myButton class="button" type="primary" bindtap="switch4">提交</myButton>
|
|
|
</scroll-view>
|
|
</scroll-view>
|
|
|
|
|
|
|
|
<view wx:if="{{currentTab == 4}}" class="con">
|
|
<view wx:if="{{currentTab == 4}}" class="con">
|
|
|
<view class="con1 primary-text-color">发布成功!</view>
|
|
<view class="con1 primary-text-color">发布成功!</view>
|
|
|
- <image class="success-icon" src="../../images/finish.png" mode="aspectFill"/>
|
|
|
|
|
|
|
+ <image class="success-icon" src="../../images/finish.png" mode="aspectFill" />
|
|
|
<!-- <view class="con2"></view> -->
|
|
<!-- <view class="con2"></view> -->
|
|
|
- <button class="button primary-background-color white-text-color" bindtap="returnToUser" >返回</button>
|
|
|
|
|
-</view>
|
|
|
|
|
|
|
+ <myButton class="button" type="primary" bindtap="returnToUser">返回</myButton>
|
|
|
|
|
+</view>
|