|
@@ -3,14 +3,14 @@
|
|
|
<view class="input-box">
|
|
|
<view class="title">企业名称</view>
|
|
|
<view class="input-view">
|
|
|
- <input class="weui-input" placeholder="请填写" maxlength="50" />
|
|
|
+ <input class="weui-input" name="companyName" placeholder="请填写" maxlength="50" />
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
<view class="select-box">
|
|
|
<view class="title">企业类型</view>
|
|
|
<view class="select-view">
|
|
|
- <picker bindchange="bindPickerChange" value="{{index}}" range="{{array}}">
|
|
|
+ <picker bindchange="bindPickerChange" name="companyType" value="{{index}}" range="{{array}}">
|
|
|
<view class="picker">
|
|
|
{{array[index]}}
|
|
|
</view>
|
|
@@ -21,21 +21,21 @@
|
|
|
<view class="input-box">
|
|
|
<view class="title">联系人姓名</view>
|
|
|
<view class="input-view">
|
|
|
- <input class="weui-input" placeholder="请填写" maxlength="5" />
|
|
|
+ <input class="weui-input" name="contactName" placeholder="请填写" maxlength="5" />
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
<view class="input-box">
|
|
|
<view class="title">联系人电话</view>
|
|
|
<view class="input-view">
|
|
|
- <input class="weui-input" placeholder="请填写" maxlength="11" />
|
|
|
+ <input class="weui-input" name="phone" placeholder="请填写" minlength="8" maxlength="11" />
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
<view class="input-box">
|
|
|
<view class="title">联系人微信</view>
|
|
|
<view class="input-view">
|
|
|
- <input class="weui-input" placeholder="请填写" maxlength="50" />
|
|
|
+ <input class="weui-input" name="weChat" placeholder="请填写" maxlength="50" />
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
@@ -43,7 +43,7 @@
|
|
|
|
|
|
<view class="textarea-box">
|
|
|
<view class="title">项目简介/合作方案</view>
|
|
|
- <textarea class="textarea" placeholder="请在此填写项目简介或初步合作方案说明..." maxlength="200"></textarea>
|
|
|
+ <textarea class="textarea" name="textarea" placeholder="请在此填写项目简介或初步合作方案说明..." maxlength="200"></textarea>
|
|
|
</view>
|
|
|
<view class="line"></view>
|
|
|
|