| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <!-- 前台导入wxmlUtil.wxs -->
- <wxs src='/utils/wxmlUtil.wxs' module="wxmlUtil"></wxs>
- <!-- 单据信息 -->
- <loading wx:if="{{loading}}"></loading>
- <view class="top">
- <view class="top-center">
- <van-radio-group value="{{ radioFollowUp }}" class="radio" bind:change="onRadioFollowUp">
- <view style="flex: 1;">
- <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>
- <view style="color: #95A8CB;font-size: 25rpx;">
- {{$t['retainedReception']}}
- </view>
- </van-radio>
- </view>
- <view style="flex: 1;">
- <van-radio name="2" style="margin: 2vw;font-size: 15px;" checked-color="#1B365D">{{$t['strangeReception']}}
- <view style="color: #95A8CB;font-size: 25rpx;">
- {{$t['noPhoneReception']}}
- </view>
- </van-radio>
- </view>
- </van-radio-group>
- </view>
- </view>
- <dk-form id="{{formName}}" routeObjName="{{routeObjName}}" cardList="{{cardList}}" contentObj="{{contentObj}}" model:value="{{formData}}" bind:chooseData="chooseData">
- </dk-form>
- <!-- 购物车 -->
- <view catchtap="toPay" data-item="{{form}}" style="position:fixed;z-index: 10;bottom: 250rpx;right: 50rpx;">
- <image style="height:51px;width: 51px;" src="/static/image/Group.png" />
- </view>
- <!-- 保存 -->
- <dk-save-button model:value="{{btnFormData}}" btnAutoWidthFlag="{{true}}" btnRightFlag="{{true}}" buttonList="{{buttonSaveList}}" contentList="{{contentSaveList}}" bind:open="save"></dk-save-button>
|