소스 검색

个贷总览列表加上评估目的字段

wucl 1 개월 전
부모
커밋
da3f19ce00
3개의 변경된 파일20개의 추가작업 그리고 2개의 파일을 삭제
  1. 12 0
      src/components/MoreSearchBar/index.vue
  2. 7 1
      src/views/personal/allOrder.vue
  3. 1 1
      src/views/personal/todoDetail.vue

+ 12 - 0
src/components/MoreSearchBar/index.vue

@@ -161,6 +161,13 @@
                         <el-input v-if="handlerName" v-model="listQuery.handlerName" placeholder="处理人" clearable>
                         </el-input>
                     </el-col>
+                    <el-col :xs="24" :sm="12" :lg="3" :span="6" style="margin-right: 8px; margin-top: 10px;">
+                        <el-select v-if="evaluateAim" v-model="listQuery.evaluateAim" placeholder="评估目的" style="width: 100%" clearable>
+                              <el-option label="按揭" value="按揭"></el-option> 
+                              <el-option label="抵押" value="抵押"></el-option> 
+                              <el-option label="咨询" value="咨询"></el-option>
+                            </el-select>
+                    </el-col>
                 </el-row>
             </div>
         </div>
@@ -321,6 +328,11 @@ export default {
             require: false,
             default: false
         },
+        evaluateAim: {
+            type: Boolean,
+            require: false,
+            default: false
+        },
     },
 
 

+ 7 - 1
src/views/personal/allOrder.vue

@@ -5,7 +5,7 @@
     </div>
     <y-page-list-layout :page-list="pageData" :page-para="listQuery" :get-page-list="getPage">
       <template slot="left">
-        <MoreSearchBar business="PERSONAL_BUSINESS" :nodeCode="false" :personalRealAmount="true" :productions="true"
+      <MoreSearchBar business="PERSONAL_BUSINESS" :nodeCode="false" :personalRealAmount="true" :productions="true" :evaluateAim="true"
           @fliterSearch="fliterSearch" @resetParams="resetParams" :listQuery="listQuery">
           <template v-slot:otherButton>
             <el-button class="filter-item" round @click="showAllLabel()">显示全部列</el-button>
@@ -70,6 +70,12 @@
             <span>{{ row.clientSubName ? row.clientSubName : '-' }}</span>
           </template>
         </el-table-column>
+        <el-table-column label="评估目的" align="center" width="130" v-if="!hiddenLabels.includes('evaluateAim')"
+          prop="evaluateAim">
+          <template slot-scope="{row}">
+            <span>{{ row.evaluateAim }}</span>
+          </template>
+        </el-table-column>
         <el-table-column label="中介" align="center" width="130" v-if="!hiddenLabels.includes('agent')" prop="agent">
           <template slot-scope="{row}">
             <span>{{ row.agent ? row.agent : '-' }}</span>

+ 1 - 1
src/views/personal/todoDetail.vue

@@ -2236,7 +2236,7 @@ export default {
         this.$message('实物状况未点击保存');
         return;
       }
-      if (!this.target.backgroundInfo) {
+      if (tag!=4 && !this.target.backgroundInfo) {
         this.$message('区位状况未点击保存');
         return;
       }