53 lines
2.5 KiB
HTML
53 lines
2.5 KiB
HTML
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="ibox">
|
|
<div class="ibox-title">
|
|
<h5>
|
|
<vc:i18n name="添加" namespace="addAttendanceStaff"></vc:i18n>
|
|
</h5>
|
|
<div class="ibox-tools" style="top:10px;">
|
|
<button type="button" class="btn btn-primary btn-sm" v-on:click="_goBack()">
|
|
<i class="fa fa-times"></i>返回
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="ibox-content">
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label text-right">
|
|
<vc:i18n name='员工名称' namespace='addAttendanceStaff'></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-8">
|
|
<input type="text" class="form-control" :placeholder="vc.i18n('必填,请选择员工','itemReleaseDetail')"
|
|
disabled v-model="addAttendanceStaffInfo.staffName">
|
|
</div>
|
|
<div class="col-sm-2">
|
|
<button class="btn btn-primary " type="button" v-on:click="openChooseStaff()">
|
|
<i class="fa fa-search"></i>选择
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label text-right">
|
|
<vc:i18n name='考勤人脸' namespace='addAttendanceStaff'></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-4">
|
|
<vc:create path="frame/uploadImageUrl" callBackListener="addAttendanceStaff"
|
|
callBackFunction="notifyUploadImage" imageCount="1" namespace="addAttendanceStaff">
|
|
</vc:create>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-12 text-right">
|
|
<button type="button" class="btn btn-warning " style="margin-right:20px;" @click="_goBack()">
|
|
<vc:i18n name="返回"></vc:i18n>
|
|
</button>
|
|
<button class="btn btn-primary" type="button" v-on:click="saveAttendanceStaffInfo()">
|
|
<i class="fa fa-check"></i> 提交
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<vc:create path="frame/searchStaff"></vc:create>
|
|
</div> |