|
@@ -17,7 +17,7 @@
|
|
|
<template #custom>
|
|
<template #custom>
|
|
|
<div class="mt-10">
|
|
<div class="mt-10">
|
|
|
<label class="search__label">状态:</label>
|
|
<label class="search__label">状态:</label>
|
|
|
- <el-select class="inline-16" v-model="status" size="small" placeholder="请选择状态" @change="selectChange" clearable>
|
|
|
|
|
|
|
+ <el-select class="inline-16" v-model="q_status" size="small" placeholder="请选择状态" @change="selectChange" clearable>
|
|
|
<el-option label="新建" value="新建"></el-option>
|
|
<el-option label="新建" value="新建"></el-option>
|
|
|
<el-option label="提交" value="提交"></el-option>
|
|
<el-option label="提交" value="提交"></el-option>
|
|
|
<el-option label="审核" value="审核"></el-option>
|
|
<el-option label="审核" value="审核"></el-option>
|
|
@@ -75,7 +75,7 @@ export default {
|
|
|
data () {
|
|
data () {
|
|
|
return {
|
|
return {
|
|
|
options:[],
|
|
options:[],
|
|
|
- status:'',
|
|
|
|
|
|
|
+ q_status:'',
|
|
|
dateSelect:[]
|
|
dateSelect:[]
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
@@ -93,7 +93,7 @@ export default {
|
|
|
this.$refs.basicLayout.param.content.where.begindate = ''
|
|
this.$refs.basicLayout.param.content.where.begindate = ''
|
|
|
this.$refs.basicLayout.param.content.where.enddate = ''
|
|
this.$refs.basicLayout.param.content.where.enddate = ''
|
|
|
}
|
|
}
|
|
|
- this.$refs['basicLayout'].param.content.where.status = this.status
|
|
|
|
|
|
|
+ this.$refs['basicLayout'].param.content.where.status = this.q_status
|
|
|
this.$refs['basicLayout'].param.content.pageNumber = 1
|
|
this.$refs['basicLayout'].param.content.pageNumber = 1
|
|
|
this.$refs['basicLayout'].listData()
|
|
this.$refs['basicLayout'].listData()
|
|
|
}
|
|
}
|