You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
3.5 KiB
Plaintext
74 lines
3.5 KiB
Plaintext
|
2 years ago
|
<form catchsubmit="formSubmit">
|
||
|
|
<view class="page-section" wx:if="{{from == '培训'}}">
|
||
|
|
<view class="weui-cells weui-cells_after-title">
|
||
|
|
<radio-group name="trainingRadio" bindchange="radioChange">
|
||
|
|
<label class="weui-cell weui-check__label" wx:for="{{trainingRadio}}" wx:key="{{item.value}}">
|
||
|
|
<view class="weui-cell__hd">
|
||
|
|
<radio value="{{item.value}}" checked="{{item.checked}}" color="var(--color-be)" />
|
||
|
|
</view>
|
||
|
|
<view class="weui-cell__bd ml4">{{item.name}}</view>
|
||
|
|
</label>
|
||
|
|
</radio-group>
|
||
|
|
<view class="weui-cells__group weui-cells__group_form p010 bgf" style="margin-top: 0px;">
|
||
|
|
<view class="weui-cells weui-cells_form br8" style="margin-top: 0px;">
|
||
|
|
<view class="weui-cell" style="padding: 0 38px 12px;">
|
||
|
|
<view class="weui-cell__bd">
|
||
|
|
<input name="training" value="{{training}}" disabled="{{!trainingRadio[1].checked}}" class="weui-input" placeholder="请输入" placeholder-class="weui-input__placeholder" />
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
<view class="page-section" wx:if="{{from == '试用期'}}">
|
||
|
|
<view class="weui-cells weui-cells_after-title">
|
||
|
|
<radio-group name="probationRadio" bindchange="radioChange2">
|
||
|
|
<label class="weui-cell weui-check__label" wx:for="{{probationRadio}}" wx:key="{{item.value}}">
|
||
|
|
<view class="weui-cell__hd">
|
||
|
|
<radio value="{{item.value}}" checked="{{item.checked}}" color="var(--color-be)" />
|
||
|
|
</view>
|
||
|
|
<view class="weui-cell__bd ml4">{{item.name}}</view>
|
||
|
|
</label>
|
||
|
|
</radio-group>
|
||
|
|
<view class="weui-cells__group weui-cells__group_form p010 bgf" style="margin-top: 0px;">
|
||
|
|
<view class="weui-cells weui-cells_form br8" style="margin-top: 0px;">
|
||
|
|
<view class="weui-cell" style="padding: 0 38px 12px;">
|
||
|
|
<view class="weui-cell__bd">
|
||
|
|
<input name="probation" value="{{probation}}" disabled="{{!probationRadio[1].checked}}" class="weui-input" placeholder="请输入" placeholder-class="weui-input__placeholder" />
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
|
||
|
|
<view class="page-section" wx:if="{{from == '调单费'}}">
|
||
|
|
<view class="weui-cells weui-cells_after-title">
|
||
|
|
<radio-group name="transferFeeRadio" bindchange="radioChange3">
|
||
|
|
<label class="weui-cell weui-check__label" style="flex-wrap: wrap;" wx:for="{{transferFeeRadio}}" wx:key="{{item.value}}">
|
||
|
|
<view class="weui-cell__hd">
|
||
|
|
<radio value="{{item.value}}" checked="{{item.checked}}" color="var(--color-be)" />
|
||
|
|
</view>
|
||
|
|
<view class="weui-cell__bd ml4">{{item.name}}</view>
|
||
|
|
|
||
|
|
<view class="weui-cells__group weui-cells__group_form p010 bgf" wx:if="{{item.value != 0 && item.checked}}" style="margin-top: 0px;min-width: 90vw;">
|
||
|
|
<view class="weui-cells weui-cells_form br8" style="margin-top: 0px;">
|
||
|
|
<view class="weui-cell" style="padding: 12px 24px 0px;">
|
||
|
|
<view class="weui-cell__bd">
|
||
|
|
<input name="transferFee" value="{{transferFee}}" disabled="{{transferFeeRadio[0].checked}}" class="weui-input" placeholder="请输入" placeholder-class="weui-input__placeholder" />
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
</label>
|
||
|
|
|
||
|
|
</radio-group>
|
||
|
|
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
<button type="primary" class="dtBtn" formType="submit">确定</button>
|
||
|
|
</form>
|