43 lines
2.6 KiB
HTML
43 lines
2.6 KiB
HTML
<div id="staffAttendanceReplenishCheckInModel" class="modal fade" role="dialog" aria-labelledby="staffAttendanceReplenishCheckInModel" aria-hidden="true">
|
|
<div class="modal-dialog modal-lg">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h3 class="modal-title" >
|
|
<span><vc:i18n name="补考勤" namespace="staffAttendanceReplenishCheckIn"></vc:i18n></span>
|
|
</h3>
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label text-center">
|
|
<span><vc:i18n name="考勤任务" namespace="staffAttendanceReplenishCheckIn"></vc:i18n></span>
|
|
</label>
|
|
<div class="col-sm-10">
|
|
<select class="custom-select" v-model="staffAttendanceReplenishCheckInInfo.detailId">
|
|
<option selected disabled value="">{{vc.i18n('必填,请选择考勤任务','staffAttendanceReplenishCheckIn')}}</option>
|
|
<option v-for="(item,index) in staffAttendanceReplenishCheckInInfo.details" :key="index"
|
|
v-bind:value="item.detailId">{{item.specName}}({{item.value}})
|
|
</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label text-center">
|
|
<span><vc:i18n name="原因" namespace="addStaff"></vc:i18n></span>
|
|
</label>
|
|
<div class="col-sm-10">
|
|
<textarea v-model="staffAttendanceReplenishCheckInInfo.remark"
|
|
:placeholder="vc.i18n('必填,请填写原因','staffAttendanceReplenishCheckIn')" class="form-control"></textarea>
|
|
</div>
|
|
</div>
|
|
<div class="ibox-content">
|
|
<button class="btn btn-primary float-right" type="button" v-on:click="_doReplenishCheckIn()" > 补考勤</button>
|
|
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;" data-dismiss="modal"><span><vc:i18n name="取消" namespace="addMenu"></vc:i18n></span></button>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |