Parcourir la source

退押补充资料

zhouhao il y a 2 ans
Parent
commit
4af4959a12

+ 2 - 3
src/views/deposit_commerce/components/deposit_list-detail.vue

@@ -444,10 +444,9 @@
         </el-row>
       </div>
       <div>
-      <div>
+      <!-- <div>
         <h3 class="gdzl">补充资料</h3>
         <el-divider />
-        <!-- 列表 -->
         <div class="mymain-container">
           <div class="table">
             <el-table v-loading="listLoading" :data="amendData" element-loading-text="Loading" border fit
@@ -545,7 +544,7 @@
           </div>
         </div>
         </div>
-      </div>
+      </div> -->
     </div>
 
       <div style="margin: 20px 0">

+ 3 - 3
src/views/deposit_commerce/components/refund_list-detail.vue

@@ -637,11 +637,11 @@
         </el-col>
       </el-row>
     </div>
-    <div>
+    <!-- <div>
       <div>
         <h3 class="gdzl">补充资料</h3>
         <el-divider />
-        <!-- 列表 -->
+     
         <div class="mymain-container">
           <div class="table">
             <el-table v-loading="listLoading" :data="amendData" element-loading-text="Loading" border fit
@@ -740,7 +740,7 @@
         </div>
         </div>
       </div>
-    </div>
+    </div> -->
     <br />
     <!-- 按钮 -->
     <!-- detailList.examineStatus != 'OK' || detailList.examineStatus != 'FAIL' -->

+ 4 - 4
src/views/deposit_commerce/refund_list.vue

@@ -551,12 +551,12 @@
                   @click="examineFn(scope.row.depositManageId)"
                   >审批</el-button
                 >
-                <el-button type="text" class="textColor"
+                <!-- <el-button type="text" class="textColor"
                   v-if="(scope.row.examineStatus == 'OK' ||scope.row.examineStatus == 'AMEND') && $checkBtnRole('examine', $route.meta.roles)"
                   @click="replenishClick(scope.row.depositManageId)">补充资料</el-button>
                   <el-button type="text" class="textColor"
                   v-if="scope.row.examineStatus == 'WAIT_REVIEW' && $checkBtnRole('examine', $route.meta.roles)"
-                  @click="reexamineClick(scope.row.depositManageId)">复核</el-button>
+                  @click="reexamineClick(scope.row.depositManageId)">复核</el-button> -->
 
                 <el-button
                   type="text"
@@ -589,8 +589,8 @@
       </div>
     </div>
     <RefundListDetail v-else-if="(showSurrender==1)" @updateList="updateList" :detailId="detailId"  />
-    <refund-replenish v-else-if="(showSurrender==2)" :detail-id="detailId" @updateList="updateList"/>
-    <refund-reexamine v-else-if="(showSurrender==3)" :detail-id="detailId" @updateList="updateList"/>
+    <!-- <refund-replenish v-else-if="(showSurrender==2)" :detail-id="detailId" @updateList="updateList"/>
+    <refund-reexamine v-else-if="(showSurrender==3)" :detail-id="detailId" @updateList="updateList"/> -->
   </div>
 </template>
 

+ 2 - 3
src/views/deposit_home/components/deposit_list-detail.vue

@@ -444,10 +444,9 @@
         </el-row>
       </div>
       <div>
-      <div>
+      <!-- <div>
         <h3 class="gdzl">补充资料</h3>
         <el-divider />
-        <!-- 列表 -->
         <div class="mymain-container">
           <div class="table">
             <el-table v-loading="listLoading" :data="amendData" element-loading-text="Loading" border fit
@@ -545,7 +544,7 @@
           </div>
         </div>
         </div>
-      </div>
+      </div> -->
     </div>
 
       <div style="margin: 20px 0">

+ 2 - 3
src/views/deposit_home/components/refund_list-detail.vue

@@ -637,11 +637,10 @@
         </el-col>
       </el-row>
     </div>
-    <div>
+    <!-- <div>
       <div>
         <h3 class="gdzl">补充资料</h3>
         <el-divider />
-        <!-- 列表 -->
         <div class="mymain-container">
           <div class="table">
             <el-table v-loading="listLoading" :data="amendData" element-loading-text="Loading" border fit
@@ -740,7 +739,7 @@
         </div>
         </div>
       </div>
-    </div>
+    </div> -->
     <br />
     <!-- 按钮 -->
     <!-- detailList.examineStatus != 'OK' || detailList.examineStatus != 'FAIL' -->

+ 15 - 2
src/views/deposit_home/deposit_list.vue

@@ -778,6 +778,8 @@
     <DepositListDetail v-else-if="showPage == 2" />
     <DepositApplyDeduction v-else-if="showPage == 3" />
     <DepositApplySurrender v-else-if="showPage == 4" />
+    <!-- <refund-replenish v-else-if="(showSurrender==2)" :detail-id="detailId" @updateList="updateList"/>
+    <refund-reexamine v-else-if="(showSurrender==3)" :detail-id="detailId" @updateList="updateList"/> -->
   </div>
 </template>
 
@@ -789,12 +791,15 @@ import DepositApplySurrender from './components/deposit-apply-surrender.vue'
 import { downloadFiles, handleImport } from '@/utils/util'
 import { getList } from '@/api/engin_deposit.js'
 import Mixin from '@/mixin'
-
+import refund_reexamine from './components/refund_reexamine.vue'
+import refund_replenish from './components/refund_replenish.vue'
 export default {
   components: {
     DepositListDetail,
     DepositApplyDeduction,
-    DepositApplySurrender
+    DepositApplySurrender,
+    refund_reexamine,
+    refund_replenish
   },
   mixins: [Mixin],
   data() {
@@ -894,6 +899,14 @@ export default {
     }
   },
   methods: {
+    replenishClick(id){
+      this.detailId = id
+      this.showSurrender = 2
+    },
+    reexamineClick(id){
+      this.detailId = id
+      this.showSurrender = 3
+    },
     // 同步资料日期
     async syncDateFn() {
       await getDepositManageDate()

+ 1 - 2
src/views/deposit_home/refund_list.vue

@@ -476,8 +476,7 @@
       </div>
     </div>
     <refund-list-detail v-else-if="(showSurrender==1)" :detail-id="detailId" @updateList="updateList" />
-    <refund-replenish v-else-if="(showSurrender==2)" :detail-id="detailId" @updateList="updateList"/>
-    <refund-reexamine v-else-if="(showSurrender==3)" :detail-id="detailId" @updateList="updateList"/>
+
     <examine-dialog :is-show.sync="isShowExamineDialog" :examine-form.sync="examineForm" />
   </div>
 </template>