Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
3b528ea24f
|
|
@ -124,7 +124,7 @@
|
|||
<el-row>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="所属部门:" prop="orgId">
|
||||
<el-select v-model="form.orgId" @change="changDept">
|
||||
<el-select v-model="form.orgId" @change="changDept" style="width: 100%;">
|
||||
<el-option
|
||||
v-for="item in orgList"
|
||||
:key="item.id"
|
||||
|
|
@ -161,7 +161,7 @@
|
|||
</el-col>
|
||||
<el-col :span="4">
|
||||
<el-form-item prop="leaveStartInterval" label-width="0px">
|
||||
<el-select v-model="form.leaveStartInterval" style="width: 80%;margin-left: 10px;"
|
||||
<el-select v-model="form.leaveStartInterval" style="width: 80%;margin-left: 30px;"
|
||||
@change="handleDateChange">
|
||||
<el-option
|
||||
v-for="item in timeStatusList"
|
||||
|
|
@ -183,7 +183,7 @@
|
|||
</el-col>
|
||||
<el-col :span="4">
|
||||
<el-form-item prop="leaveEndInterval" label-width="0px">
|
||||
<el-select v-model="form.leaveEndInterval" style="width: 80%;margin-left: 10px;"
|
||||
<el-select v-model="form.leaveEndInterval" style="width: 80%;margin-left: 30px;"
|
||||
@change="handleDateChange">
|
||||
<el-option
|
||||
v-for="item in timeStatusList"
|
||||
|
|
@ -226,7 +226,7 @@
|
|||
|
||||
<el-col :span="12">
|
||||
<el-form-item label="代理主持工作人员:" prop="hostUserId">
|
||||
<el-select v-model="form.hostUserId" multiple placeholder="请选择人员姓名" filterable clearable>
|
||||
<el-select v-model="form.hostUserId" multiple placeholder="请选择人员姓名" filterable clearable style="width: 100%;">
|
||||
<el-option
|
||||
v-for="item in userList"
|
||||
:key="item.userId"
|
||||
|
|
@ -352,7 +352,7 @@ export default {
|
|||
{required: true, message: "是否请示领导同意不能为空", trigger: "blur"}
|
||||
],
|
||||
hostUserId: [
|
||||
{required: true, message: "代理主持工作人员同意不能为空", trigger: "blur"}
|
||||
{required: true, message: "代理主持工作人员不能为空", trigger: "blur"}
|
||||
]
|
||||
},
|
||||
// 开始日期选择限制
|
||||
|
|
@ -404,6 +404,7 @@ export default {
|
|||
},
|
||||
/** 查询列表 */
|
||||
getList() {
|
||||
console.log("111")
|
||||
this.loading = true;
|
||||
listEvection(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
|
||||
this.tableList = response.rows;
|
||||
|
|
|
|||
|
|
@ -124,7 +124,7 @@
|
|||
<el-row>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="所属部门:" prop="orgId">
|
||||
<el-select v-model="form.orgId" @change="changDept">
|
||||
<el-select v-model="form.orgId" @change="changDept" style="width: 100%;">
|
||||
<el-option
|
||||
v-for="item in orgList"
|
||||
:key="item.id"
|
||||
|
|
@ -137,7 +137,7 @@
|
|||
|
||||
<el-col :span="12">
|
||||
<el-form-item label="休假类型:" prop="type">
|
||||
<el-select v-model="form.type" @change="changType" filterable >
|
||||
<el-select v-model="form.type" @change="changType" filterable style="width: 100%;">
|
||||
<el-option
|
||||
v-for="item in typeList"
|
||||
:key="item.id"
|
||||
|
|
@ -161,7 +161,7 @@
|
|||
</el-col>
|
||||
<el-col :span="4">
|
||||
<el-form-item prop="leaveStartInterval" label-width="0px">
|
||||
<el-select v-model="form.leaveStartInterval" style="width: 80%;margin-left: 10px;"
|
||||
<el-select v-model="form.leaveStartInterval" style="width: 80%;margin-left: 30px;"
|
||||
@change="handleDateChange">
|
||||
<el-option
|
||||
v-for="item in timeStatusList"
|
||||
|
|
@ -183,7 +183,7 @@
|
|||
</el-col>
|
||||
<el-col :span="4">
|
||||
<el-form-item prop="leaveEndInterval" label-width="0px">
|
||||
<el-select v-model="form.leaveEndInterval" style="width: 80%;margin-left: 10px;"
|
||||
<el-select v-model="form.leaveEndInterval" style="width: 80%;margin-left: 30px;"
|
||||
@change="handleDateChange">
|
||||
<el-option
|
||||
v-for="item in timeStatusList"
|
||||
|
|
@ -226,7 +226,7 @@
|
|||
|
||||
<el-col :span="12">
|
||||
<el-form-item label="代理主持工作人员:" prop="hostUserId">
|
||||
<el-select v-model="form.hostUserId" multiple placeholder="请选择人员姓名" filterable clearable>
|
||||
<el-select v-model="form.hostUserId" multiple placeholder="请选择人员姓名" filterable clearable style="width: 100%;">
|
||||
<el-option
|
||||
v-for="item in userList"
|
||||
:key="item.userId"
|
||||
|
|
|
|||
Loading…
Reference in New Issue