临时外出申请新增是否因公外出字段,新增修改查看
This commit is contained in:
parent
ced2b5469a
commit
1eacfe207f
|
|
@ -51,6 +51,11 @@
|
||||||
<input type="text" :value="formData.isTrain === '1' ? '是' : '否'" disabled />
|
<input type="text" :value="formData.isTrain === '1' ? '是' : '否'" disabled />
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
<view class="form-item">
|
||||||
|
<text class="label required" style="width: 300px">是否因公外出</text>
|
||||||
|
<input type="text" :value="formData.isBusiness === '1' ? '是' : '否'" disabled />
|
||||||
|
</view>
|
||||||
|
|
||||||
<view class="form-item">
|
<view class="form-item">
|
||||||
<text class="label required">代理主持工作人员</text>
|
<text class="label required">代理主持工作人员</text>
|
||||||
<input type="text" v-model="formData.hostUserName" disabled />
|
<input type="text" v-model="formData.hostUserName" disabled />
|
||||||
|
|
@ -89,6 +94,7 @@
|
||||||
leaveDuration: '',
|
leaveDuration: '',
|
||||||
location: '',
|
location: '',
|
||||||
isAgree: '1',
|
isAgree: '1',
|
||||||
|
isBusiness: '1',
|
||||||
isTrain: '1',
|
isTrain: '1',
|
||||||
hostUserName: '',
|
hostUserName: '',
|
||||||
leaveReason: '',
|
leaveReason: '',
|
||||||
|
|
|
||||||
|
|
@ -162,6 +162,29 @@
|
||||||
</radio-group>
|
</radio-group>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
<view class="form-item">
|
||||||
|
<text class="label required" style="width: 300px">是否因公外出</text>
|
||||||
|
<radio-group @change="onBusinessChange">
|
||||||
|
<label class="radio">
|
||||||
|
<radio
|
||||||
|
value="1"
|
||||||
|
:disabled="isFormDisabled"
|
||||||
|
checked
|
||||||
|
:checked="formData.isBusiness === '1'"
|
||||||
|
/>
|
||||||
|
是
|
||||||
|
</label>
|
||||||
|
<label class="radio">
|
||||||
|
<radio
|
||||||
|
value="0"
|
||||||
|
:disabled="isFormDisabled"
|
||||||
|
:checked="formData.isBusiness === '0'"
|
||||||
|
/>
|
||||||
|
否
|
||||||
|
</label>
|
||||||
|
</radio-group>
|
||||||
|
</view>
|
||||||
|
|
||||||
<view class="form-item" style="margin-bottom: 20rpx">
|
<view class="form-item" style="margin-bottom: 20rpx">
|
||||||
<text
|
<text
|
||||||
class="label required"
|
class="label required"
|
||||||
|
|
@ -310,6 +333,7 @@
|
||||||
location: '',
|
location: '',
|
||||||
isAgree: '1',
|
isAgree: '1',
|
||||||
isTrain: '1',
|
isTrain: '1',
|
||||||
|
isBusiness: '1',
|
||||||
representative: '',
|
representative: '',
|
||||||
hostUserId: '',
|
hostUserId: '',
|
||||||
hostUserName: '',
|
hostUserName: '',
|
||||||
|
|
@ -473,6 +497,9 @@
|
||||||
onAgreerovalChange(e){
|
onAgreerovalChange(e){
|
||||||
this.formData.isAgree = e.detail.value
|
this.formData.isAgree = e.detail.value
|
||||||
},
|
},
|
||||||
|
onBusinessChange(e){
|
||||||
|
this.formData.isBusiness = e.detail.value
|
||||||
|
},
|
||||||
onTrainChange(e){
|
onTrainChange(e){
|
||||||
this.formData.isTrain = e.detail.value
|
this.formData.isTrain = e.detail.value
|
||||||
},
|
},
|
||||||
|
|
@ -621,6 +648,7 @@
|
||||||
hostUserId,
|
hostUserId,
|
||||||
hostUserName,
|
hostUserName,
|
||||||
isAgree,
|
isAgree,
|
||||||
|
isBusiness,
|
||||||
isTrain,
|
isTrain,
|
||||||
leaveDuration,
|
leaveDuration,
|
||||||
leaveEndDate,
|
leaveEndDate,
|
||||||
|
|
@ -643,6 +671,7 @@
|
||||||
hostUserId,
|
hostUserId,
|
||||||
hostUserName,
|
hostUserName,
|
||||||
isAgree,
|
isAgree,
|
||||||
|
isBusiness,
|
||||||
isTrain,
|
isTrain,
|
||||||
leaveDuration,
|
leaveDuration,
|
||||||
leaveEndDate,
|
leaveEndDate,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue