Преглед изворни кода

1.大中型归档查询新增条件

GouGengquan пре 9 месеци
родитељ
комит
87a6271e4c
1 измењених фајлова са 10 додато и 2 уклоњено
  1. 10 2
      src/views/major/saveFileDoneList.vue

+ 10 - 2
src/views/major/saveFileDoneList.vue

@@ -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()
     },