12345678910111213141516171819 |
- <!--pages/my/myCustomer/myCustomer.wxml-->
- <!-- 联系客户 -->
- <import src="../../../wxParse/wxParse.wxml" />
- <view class="customer-container">
- <rich-text nodes="{{richtext}}"></rich-text>
- <radio-group class="radio-group radio-view" bindchange="radioChange">
- <label class="radio" wx:for="{{items}}" wx:for-index="index">
- <radio value="{{item.itemcode}}" checked="{{index===0}}" />{{item.itemname}}
- </label>
- </radio-group>
- <!-- 想说的话 文字输入 -->
- <view class='text-view'>
- <textarea class='textarea' placeholder-class='text-pla' placeholder='请输入您的想法 ...' bindinput="input" auto-focus="true" maxlength='-1'></textarea>
- </view>
- <view class='btn' bindtap='sub'>提交</view>
- </view>
- <!-- <button class="custCare" open-type="contact" session-from="sessionFrom">
- <image mode="aspectFill" src="{{appAssetsUrl}}/images/custCare.png"></image>
- </button> -->
|