| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <view class="toptip {{tipStaus}} text-white {{tipType}}" style='top:{{CustomBar}}px;'>{{tipText}}</view>
- <cu-custom bgColor="bg-color" isBack="{{true}}" title="企业信息">
- <!-- <view slot="content">企业信息</view> -->
- </cu-custom>
- <view class="info_card">
- <form bindsubmit="formSubmit">
- <view class="info_item">
- <view class="info_label">企业名称</view>
- <input class="info_input" placeholder="请输入企业名称" type='text' name='companyName' value="{{companyInfo.name}}"></input>
- </view>
- <view class="info_item">
- <view class="info_label">联系人姓名</view>
- <input class="info_input" placeholder="请输入联系人姓名" type='text' name="managerName" value="{{companyInfo.managerName}}"></input>
- </view>
- <view class="info_item">
- <view class="info_label">联系人电话</view>
- <input class="info_input" placeholder="请输入联系人电话" type='number' bindinput='setMobile' name="managerPhone" value="{{companyInfo.managerPhone}}"></input>
- </view>
- <view class="info_item">
- <input class="info_input" style="text-align: left" placeholder="请输入手机验证码" type='text' name="phoneCode"></input>
- <view class="sendCode">
- <text bindtap="sendCodeMobile" data-type="true">{{codeBtnTxt}}</text>
- </view>
- </view>
- <view class="info_item">
- <view class="info_label">联系人邮箱</view>
- <input class="info_input" placeholder="请输入联系人邮箱" type='text' name="managerEmail" value="{{companyInfo.managerEmail}}"></input>
- </view>
- <view class="info_item">
- <input class="info_input" style="text-align: left" placeholder="请输入邮箱验证码" type='text' name='emailCode' bindinput="setEmail"></input>
- <view class="sendCode">
- <text bindtap="sendCodeEmail" data-type="false">{{codeBtnEmailTxt}}</text>
- </view>
- </view>
- <!-- <view class="info_item">
- <view class="info_label">企业所在地区</view>
- <picker mode="region" bindchange="RegionChange" value="{{region}}" custom-item="{{customItem}}">
- <view class="picker">
- {{region[0]}},{{region[1]}},{{region[2]}}
- </view>
- </picker>
- </view> -->
- <view class="info_item">
- <view class="info_label">企业详细地址</view>
- <input class="info_input" placeholder="请输入详细地址" type='text' name="address" value="{{companyInfo.address}}"></input>
- </view>
- <view class="phone_btm">
- <button class="phone_btn1" form-type="submit">保存</button>
- </view>
- </form>
- </view>
|