customer-follow-up.wxml 1.5 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!-- 前台导入wxmlUtil.wxs -->
  2. <wxs src='/utils/wxmlUtil.wxs' module="wxmlUtil"></wxs>
  3. <!-- 设置金额和价格的小数位数 -->
  4. <view style="display:none">{{wxmlUtil.setNumberOfDecimalPlacesAmount(numberOfDecimalPlacesAmount)}}</view>
  5. <loading wx:if="{{loading}}"></loading>
  6. <view class="dk-card-outer-class" style="border-radius: 15rpx;">
  7. <view class="dk-card-class">
  8. <van-radio-group value="{{ radioFollowUp }}" style="display:flex;background:white; padding-left: 40rpx;border-radius: 15rpx;" bind:change="onRadioFollowUp">
  9. <view style="flex: 1;">
  10. <van-radio name="1" style="margin: 5vw;font-size: 14px; font-weight: bold;" checked-color="#1B365D">日常跟进
  11. </van-radio>
  12. </view>
  13. <view style="flex: 1;">
  14. <van-radio name="2" style="margin: 5vw;font-size: 14px; font-weight: bold;" checked-color="#1B365D">邀约进店
  15. </van-radio>
  16. </view>
  17. <view style="flex: 1;">
  18. <van-radio name="3" style="margin: 5vw;font-size: 14px; font-weight: bold;" checked-color="#1B365D">预约量尺
  19. </van-radio>
  20. </view>
  21. </van-radio-group>
  22. </view>
  23. </view>
  24. <dk-form id="{{formName}}" routeObjName="{{routeObjName}}" cardList="{{cardList}}" contentObj="{{contentObj}}" model:value="{{formData}}" bind:chooseData="chooseData">
  25. </dk-form>
  26. <!-- 保存 -->
  27. <dk-save-button model:value="{{btnFormData}}" btnAutoWidthFlag="{{true}}" btnRightFlag="{{true}}" buttonList="{{buttonSaveList}}" contentList="{{contentSaveList}}" bind:open="save"></dk-save-button>