add.wxml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!-- 前台导入wxmlUtil.wxs -->
  2. <wxs src='/utils/wxmlUtil.wxs' module="wxmlUtil"></wxs>
  3. <!-- 单据信息 -->
  4. <loading wx:if="{{loading}}"></loading>
  5. <view class="top">
  6. <view class="top-center">
  7. <van-radio-group value="{{ radioFollowUp }}" class="radio" bind:change="onRadioFollowUp">
  8. <view style="flex: 1;">
  9. <van-radio name="1" style="margin: 2vw;font-size: 15px;" checked-color="#1B365D">{{$t['customerReception']}} <text wx:if="{{pageFlag!='edit'}}" style='color:red;font-size:15px;'>*</text>
  10. <view style="color: #95A8CB;font-size: 25rpx;">
  11. {{$t['retainedReception']}}
  12. </view>
  13. </van-radio>
  14. </view>
  15. <view style="flex: 1;">
  16. <van-radio name="2" style="margin: 2vw;font-size: 15px;" checked-color="#1B365D">{{$t['strangeReception']}}
  17. <view style="color: #95A8CB;font-size: 25rpx;">
  18. {{$t['noPhoneReception']}}
  19. </view>
  20. </van-radio>
  21. </view>
  22. </van-radio-group>
  23. </view>
  24. </view>
  25. <dk-form id="{{formName}}" routeObjName="{{routeObjName}}" cardList="{{cardList}}" contentObj="{{contentObj}}" model:value="{{formData}}" bind:chooseData="chooseData">
  26. </dk-form>
  27. <!-- 购物车 -->
  28. <view catchtap="toPay" data-item="{{form}}" style="position:fixed;z-index: 10;bottom: 250rpx;right: 50rpx;">
  29. <image style="height:51px;width: 51px;" src="/static/image/Group.png" />
  30. </view>
  31. <!-- 保存 -->
  32. <dk-save-button model:value="{{btnFormData}}" btnAutoWidthFlag="{{true}}" btnRightFlag="{{true}}" buttonList="{{buttonSaveList}}" contentList="{{contentSaveList}}" bind:open="save"></dk-save-button>