myCustomer.wxml 1.2 KB

12345678910111213141516171819202122232425262728
  1. <!--pages/my/myCustomer/myCustomer.wxml-->
  2. <!-- 联系客户 -->
  3. <import src="../../../wxParse/wxParse.wxml" />
  4. <view class="customer-container">
  5. <rich-text nodes="{{richtext}}"></rich-text>
  6. <!-- <radio-group class="radio-group radio-view" bindchange="radioChange">
  7. <label class="radio" wx:for="{{items}}" wx:for-index="index">
  8. <radio value="{{item.itemcode}}" checked="{{index===0}}" />{{item.itemname}}
  9. </label>
  10. </radio-group> -->
  11. <view class="radioBox">
  12. <view class="item" wx:for="{{items}}" wx:for-index="index" bindtap='radioChange' data-item="{{item}}">
  13. <view class="item_l {{parm.fbtype==item.itemcode?'active':''}}">
  14. <view></view>
  15. </view>
  16. <view>{{item.itemname}}</view>
  17. </view>
  18. </view>
  19. <!-- 想说的话 文字输入 -->
  20. <view class='text-view'>
  21. <textarea class='textarea' placeholder-class='text-pla' placeholder='请输入您的想法 ...' bindinput="input"
  22. auto-focus="true" maxlength='-1'></textarea>
  23. </view>
  24. <view class='btn' bindtap='sub'>提交</view>
  25. </view>
  26. <!-- <button class="custCare" open-type="contact" session-from="sessionFrom">
  27. <image mode="aspectFill" src="{{appAssetsUrl}}/images/custCare.png"></image>
  28. </button> -->