| 12345678910111213141516171819202122232425262728293031323334 |
- <!-- 前台导入wxmlUtil.wxs -->
- <wxs src='/utils/wxmlUtil.wxs' module="wxmlUtil"></wxs>
- <!-- 设置金额和价格的小数位数 -->
- <view style="display:none">{{wxmlUtil.setNumberOfDecimalPlacesAmount(numberOfDecimalPlacesAmount)}}</view>
- <loading wx:if="{{loading}}"></loading>
- <view class="dk-card-outer-class" style="border-radius: 15rpx;">
- <view class="dk-card-class">
- <van-radio-group value="{{ radioFollowUp }}" style="display:flex;background:white; padding-left: 40rpx;border-radius: 15rpx;" bind:change="onRadioFollowUp">
- <view style="flex: 1;">
- <van-radio name="1" style="margin: 5vw;font-size: 14px; font-weight: bold;" checked-color="#1B365D">日常跟进
- </van-radio>
- </view>
- <view style="flex: 1;">
- <van-radio name="2" style="margin: 5vw;font-size: 14px; font-weight: bold;" checked-color="#1B365D">邀约进店
- </van-radio>
- </view>
- <view style="flex: 1;">
- <van-radio name="3" style="margin: 5vw;font-size: 14px; font-weight: bold;" checked-color="#1B365D">预约量尺
- </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>
- <!-- 保存 -->
- <dk-save-button model:value="{{btnFormData}}" btnAutoWidthFlag="{{true}}" btnRightFlag="{{true}}" buttonList="{{buttonSaveList}}" contentList="{{contentSaveList}}" bind:open="save"></dk-save-button>
|