adminInfo.wxml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <view class="toptip {{tipStaus}} text-white {{tipType}}" style='top:{{CustomBar}}px;'>{{tipText}}</view>
  2. <cu-custom bgColor="bg-color" isBack="{{true}}" title="企业信息">
  3. <!-- <view slot="content">企业信息</view> -->
  4. </cu-custom>
  5. <view class="info_card">
  6. <form bindsubmit="formSubmit">
  7. <view class="info_item">
  8. <view class="info_label">企业名称</view>
  9. <input class="info_input" placeholder="请输入企业名称" type='text' name='companyName' value="{{companyInfo.name}}"></input>
  10. </view>
  11. <view class="info_item">
  12. <view class="info_label">联系人姓名</view>
  13. <input class="info_input" placeholder="请输入联系人姓名" type='text' name="managerName" value="{{companyInfo.managerName}}"></input>
  14. </view>
  15. <view class="info_item">
  16. <view class="info_label">联系人电话</view>
  17. <input class="info_input" placeholder="请输入联系人电话" type='number' bindinput='setMobile' name="managerPhone" value="{{companyInfo.managerPhone}}"></input>
  18. </view>
  19. <view class="info_item">
  20. <input class="info_input" style="text-align: left" placeholder="请输入手机验证码" type='text' name="phoneCode"></input>
  21. <view class="sendCode">
  22. <text bindtap="sendCodeMobile" data-type="true">{{codeBtnTxt}}</text>
  23. </view>
  24. </view>
  25. <view class="info_item">
  26. <view class="info_label">联系人邮箱</view>
  27. <input class="info_input" placeholder="请输入联系人邮箱" type='text' name="managerEmail" value="{{companyInfo.managerEmail}}"></input>
  28. </view>
  29. <view class="info_item">
  30. <input class="info_input" style="text-align: left" placeholder="请输入邮箱验证码" type='text' name='emailCode' bindinput="setEmail"></input>
  31. <view class="sendCode">
  32. <text bindtap="sendCodeEmail" data-type="false">{{codeBtnEmailTxt}}</text>
  33. </view>
  34. </view>
  35. <!-- <view class="info_item">
  36. <view class="info_label">企业所在地区</view>
  37. <picker mode="region" bindchange="RegionChange" value="{{region}}" custom-item="{{customItem}}">
  38. <view class="picker">
  39. {{region[0]}},{{region[1]}},{{region[2]}}
  40. </view>
  41. </picker>
  42. </view> -->
  43. <view class="info_item">
  44. <view class="info_label">企业详细地址</view>
  45. <input class="info_input" placeholder="请输入详细地址" type='text' name="address" value="{{companyInfo.address}}"></input>
  46. </view>
  47. <view class="phone_btm">
  48. <button class="phone_btn1" form-type="submit">保存</button>
  49. </view>
  50. </form>
  51. </view>