|
@@ -8,11 +8,15 @@
|
|
|
<el-input v-model="listQuery.keyword" placeholder="关键字搜索..." clearable
|
|
|
style="margin-left: 20px;width: 500px;float: left;">
|
|
|
</el-input>
|
|
|
- <el-select style="margin-left: 20px;width: 170px;float: left;" v-model="listQuery.production" clearable placeholder="产品类型">
|
|
|
+ <el-select style="margin-left: 20px;width: 170px;float: left;" v-model="listQuery.production" clearable placeholder="产品类型" @change="getList()">
|
|
|
<el-option value="STATEMENT" label="价值意见书">价值意见书</el-option>
|
|
|
<el-option value="REPORT" label="报告">报告</el-option>
|
|
|
<el-option value="LETTER" label="复评函">复评函</el-option>
|
|
|
</el-select>
|
|
|
+ <el-select style="margin-left: 20px;width: 170px;float: left;" v-model="listQuery.hasCommission" clearable placeholder="是否提成" @change="getList()">
|
|
|
+ <el-option value="true" label="有提成">有提成</el-option>
|
|
|
+ <el-option value="false" label="无提成">无提成</el-option>
|
|
|
+ </el-select>
|
|
|
<el-date-picker
|
|
|
style="margin-left: 20px;float: left;"
|
|
|
v-model="saveFileDate"
|
|
@@ -109,7 +113,9 @@ export default {
|
|
|
page: 1,
|
|
|
size: 20,
|
|
|
descs: 'id',
|
|
|
- keyword:null
|
|
|
+ keyword:null,
|
|
|
+ // 是否提成
|
|
|
+ hasCommission: null
|
|
|
},
|
|
|
saveFileDate:'',
|
|
|
pickerOptions: {
|
|
@@ -154,6 +160,8 @@ export default {
|
|
|
current: 1,
|
|
|
size: 20,
|
|
|
descs: 'id',
|
|
|
+ // 是否提成
|
|
|
+ hasCommission: null
|
|
|
}
|
|
|
this.getList()
|
|
|
},
|