123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <view class="home-index">
- <view class="page-section page-section-spacing swiper">
- <swiper class="my-swiper" indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">
- <block wx:for="{{background}}" wx:key="index">
- <swiper-item>
- <image class="swiper-image" src="{{item}}" mode="scaleToFill" />
- </swiper-item>
- </block>
- </swiper>
- </view>
- <view class="form-index">
- <van-row gutter="1">
- <van-col span="24">
- <van-field label="活动名称" clickable="{{ true }}" value="{{ formData.name }}" maxlength="50" placeholder="活动名称" bind:blur="onNameChange" />
- </van-col>
- <van-col span="12">
- <van-field label="活动城市" readonly="{{ true }}" right-icon="location" value="{{ formData.city_name }}" placeholder="活动城市" bindtap="onFormChange" data-type="city" />
- </van-col>
- <van-col span="12">
- <van-field label="联系电话" clickable="{{ true }}" value="{{ phone }}" maxlength="11" placeholder="联系电话" bind:blur="onPhoneChange" />
- </van-col>
- <van-col span="12">
- <van-field label="活动人数" readonly="{{ true }}" right-icon="arrow" value="{{ formData.participant_name }}" placeholder="参加人数?" bindtap="onFormChange" data-type="participant" />
- </van-col>
- <!-- <van-col span="12">
- <van-field label="活动预算" readonly="{{ true }}" right-icon="arrow" value="{{ formData.budget_name }}" placeholder="大致预算?" bindtap="onFormChange" data-type="budget" />
- </van-col> -->
- <van-col span="12">
- <van-field label="活动类型" readonly="{{ true }}" right-icon="arrow" value="{{ formData.require_item_name }}" placeholder="办一场什么活动?" bindtap="onFormChange" data-type="require_item" />
- </van-col>
- <van-col span="24">
- <van-field label="活动时间" readonly="{{ true }}" right-icon="arrow" value="{{ formData.act_time_name }}" placeholder="活动举办时间?" bindtap="onFormChange" data-type="act_time" />
- </van-col>
- <van-col span="24">
- <van-field label="其他需求" bindtap="onFormChange" data-type="req_demand" readonly="{{ true }}" right-icon="arrow" value="{{ formData.req_demand_name }}" placeholder="您的需求项目?" border="{{ false }}" />
- </van-col>
- <van-col span="24">
- <van-field label="所在组织" readonly="{{ true }}" right-icon="arrow" value="{{ formData.item_id_name }}" placeholder="举办活动的组织?" bindtap="onFormChange" data-type="item_id" />
- </van-col>
- </van-row>
- <view class="form-btn">
- <van-button type="primary" custom-style="font-size:16px;font-weight:bold;width:100%" round block bindtap="submitTap">
- 免费帮我找场地
- </van-button>
- </view>
- </view>
- <popup-modal show="{{show}}" popupType="{{popupType}}" popupKey="{{popupKey}}" popupTitle="{{popupTitle}}" popupValue="{{popupValue}}" popupApi="{{popupApi}}" binditemClick="tapItemClick" bindleftClick="popupLeft" />
- </view>
|