k94314517
2024-07-25 a75b18a4157ab486e0b51c438ac165ab3a08e3e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<view class="container">
  <image class="banner" src="{{ DESIGN_BANNER }}" mode="widthFix"></image>
  <view class="main_content">
    <view class="title">0元定制 | 您的户型装修方案</view>
    <view class="line">
      <image class="icon" src="../../static/icon/design_ic_name.png" mode="widthFix"></image>
      <van-field type="text" class="input" custom-style="background-color: #F6F6F6;" model:value="{{ name }}" placeholder="请输入姓名" maxlength="{{ 15 }}" clearable />
    </view>
    <view class="line">
      <image class="icon" src="../../static/icon/design_ic_phone.png" mode="widthFix"></image>
      <van-field type="number" class="input" custom-style="background-color: #F6F6F6;" model:value="{{ phone }}" placeholder="请输入联系电话,领免费效果图" clearable maxlength="{{ 11 }}" />
    </view>
    <view class="line">
      <image class="icon" src="../../static/icon/design_ic_city.png" mode="widthFix"></image>
      <picker class="city_picler" mode="region" value="{{ addr }}" bindchange="bindRegionChange" bindchange="positionChange">
        <view class="placeholder9" hidden="{{ addr.cityName }}">请选择地址</view>
        <view class="picker" hidden="{{ !addr.cityName }}">
          {{ addr.provinceName }}{{ addr.cityName }}{{ addr.areaName }}
        </view>
      </picker>
      <image class="arrow_right" src="../../static/icon/arrow_right.png" mode="widthFix"></image>
    </view>
    <view class="btn" bindtap="onSubmit">立即报名</view>
  </view>
  <image class="banner" src="{{ WechatIMG558 }}" mode="widthFix"></image>
  <!--  -->
  <van-popup show="{{ showAreaList }}" bind:close="onClose" round position="bottom">
    <van-cascader field-names="{{ fieldNames }}" value="{{ cascaderValue }}" title="请选择所在地区" options="{{ areaList }}" bind:close="onClose" bind:finish="onFinish" />
  </van-popup>
 
</view>