index.wxml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <nav-bar navbar-data='{{nvabarData}}'></nav-bar>
  2. <view class="home">
  3. <view class="main">
  4. <view class="mainTop">
  5. <image src="/pages/images/test.png"></image>
  6. </view>
  7. <view class="mainInfo">
  8. <form bindsubmit="formSubmit">
  9. <view class="input-col">
  10. <label class="textarea">企业名称:</label>
  11. <input type='text' name="company_name" placeholder='请输入企业名称' value="{{company}}" disabled="false"></input>
  12. </view>
  13. <view class="input-col">
  14. <label class="textarea">联系人:</label>
  15. <input type='text' name="person" placeholder='请输入联系人姓名' value="{{person}}" disabled="false"></input>
  16. </view>
  17. <view class="input-col">
  18. <label class="textarea">手机号:</label>
  19. <input type='text' name="phone" placeholder='请输入联系人手机号' value="{{phone}}" disabled="false"></input>
  20. </view>
  21. <view class="input-col">
  22. <label class="textarea">资金需求(万元):</label>
  23. <input type='text' name="money" placeholder='请输入需求金额' value="{{}}"></input>
  24. </view>
  25. <view class="input-col">
  26. <label class="textarea">担保方式:</label>
  27. <picker bindchange="dbindexListChange" name="ensure_id" value="{{dbindexList[dbindex].code}}" range-key="{{'name'}}" range="{{dbindexList}}">
  28. <view class="picker">
  29. {{dbindexList[dbindex].name}} <text >{{dbtext}}</text>
  30. </view>
  31. </picker>
  32. </view>
  33. <view class="input-col">
  34. <label class="textarea">融资取向排序:</label>
  35. <checkbox-group bindchange="checkboxChange" name="orientation">
  36. <label class="rzqxList" wx:key="unique" wx:for="{{rzqxList}}" wx:for-item="item">
  37. <checkbox value="{{item.code}}" checked="{{item.checked}}" />{{item.name}}
  38. </label>
  39. </checkbox-group>
  40. <view class="rzqxLists">
  41. <text wx:key="unique" wx:for="{{rzqxLists}}" wx:for-item="item">{{item.name}}</text>
  42. </view>
  43. </view>
  44. <view class="input-col buchong">
  45. <label class="textarea">补充信息:</label>
  46. <textarea bindblur="bindTextAreaBlur" class="textareas" name="additional_information" maxlength="500" placeholder="500字以内" placeholder-style="color:#888888;" value="{{}}" />
  47. </view>
  48. <view class="save">
  49. <button class='save-btn' form-type="submit" >开始对接</button>
  50. </view>
  51. </form>
  52. </view>
  53. </view>
  54. </view>
  55. <van-popup show="{{ show }}" bind:close="onClose" class="vanPopup">
  56. <image src="/pages/images/succes.png"></image>
  57. <text class="title">恭喜您对接成功\n银行将尽快与您联系\n业务进展详情请到小程序\n"我的"-"我的融资" 页面查询</text>
  58. </van-popup>