|
@@ -120,6 +120,12 @@ |
|
|
title="请假类型" placeholder="按请假类型查询" /> |
|
|
title="请假类型" placeholder="按请假类型查询" /> |
|
|
<l-select v-model="queryData.CheckStatus" @change="searchChange" :range="dataSource.CheckStatus" |
|
|
<l-select v-model="queryData.CheckStatus" @change="searchChange" :range="dataSource.CheckStatus" |
|
|
title="审核状态" placeholder="按审核状态查询" /> |
|
|
title="审核状态" placeholder="按审核状态查询" /> |
|
|
|
|
|
<l-input |
|
|
|
|
|
v-model="queryData.StuName" |
|
|
|
|
|
@change="searchChange" |
|
|
|
|
|
title ="姓名" |
|
|
|
|
|
placeholder="按姓名查询" |
|
|
|
|
|
/> |
|
|
<!-- 重置查询条件按钮 --> |
|
|
<!-- 重置查询条件按钮 --> |
|
|
<view class="padding-tb"> |
|
|
<view class="padding-tb"> |
|
|
<l-button @click="reset" line="orange" class="block" block>重置查询条件</l-button> |
|
|
<l-button @click="reset" line="orange" class="block" block>重置查询条件</l-button> |
|
@@ -224,6 +230,7 @@ |
|
|
queryData: { |
|
|
queryData: { |
|
|
LeaveType: "", |
|
|
LeaveType: "", |
|
|
CheckStatus: '', |
|
|
CheckStatus: '', |
|
|
|
|
|
StuName:'', |
|
|
// CreateUser: "", |
|
|
// CreateUser: "", |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
@@ -239,10 +246,31 @@ |
|
|
value: t.value, |
|
|
value: t.value, |
|
|
text: t.text |
|
|
text: t.text |
|
|
})), |
|
|
})), |
|
|
CheckStatus: Object.values(this.GET_GLOBAL('dataDictionary').LeaveCheck).map(t => ({ |
|
|
|
|
|
value: t.value, |
|
|
|
|
|
text: t.text |
|
|
|
|
|
})), |
|
|
|
|
|
|
|
|
// CheckStatus: Object.values(this.GET_GLOBAL('dataDictionary').LeaveCheck).map(t => ({ |
|
|
|
|
|
// value: t.value, |
|
|
|
|
|
// text: t.text |
|
|
|
|
|
// })), |
|
|
|
|
|
CheckStatus:[ |
|
|
|
|
|
{ |
|
|
|
|
|
value:'0', |
|
|
|
|
|
text:'草稿' |
|
|
|
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
value:'1', |
|
|
|
|
|
text:'审核中' |
|
|
|
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
value:'2', |
|
|
|
|
|
text:'审核通过' |
|
|
|
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
value:'3', |
|
|
|
|
|
text:'审核未通过' |
|
|
|
|
|
} |
|
|
|
|
|
], |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
// 页面相关参数 |
|
|
// 页面相关参数 |
|
|