瀏覽代碼

b 补充资料

zhouhao 2 年之前
父節點
當前提交
78ad155315

+ 1 - 1
src/views/deposit_home/components/deposit_list-detail.vue

@@ -426,7 +426,7 @@
 
               </el-row>
             </div>
-            <div v-if="details.examineStatus == 'REVIEW'">
+            <div v-if=" isCustomer&& details.examineStatus == 'REVIEW'">
               <h3 class="gdzl">复核</h3>
               <el-divider />
               <div class="diy-table-1">

+ 1 - 0
src/views/deposit_home/components/deposit_replenish.vue

@@ -903,6 +903,7 @@ export default {
             }).then(res => {
                 this.$successMsg('已提交')
                 this.$parent.showPage = 1
+                this.$parent.getList()
 
             })
         }

+ 1 - 1
src/views/deposit_home/components/refund_list-detail.vue

@@ -708,7 +708,7 @@
             </div>
           </div>
         </div>
-        <div v-if="(detailList.examineStatus == 'REVIEW' || detailList.examineStatus == 'AMEND')">
+        <div v-if="(detailList.examineStatus == 'REVIEW' || detailList.examineStatus == 'AMEND') &&isCustomer">
           <h3 class="gdzl">复核</h3>
           <el-divider />
           <div class="diy-table-1">

+ 4 - 0
src/views/deposit_home/components/refund_reexamine.vue

@@ -888,6 +888,8 @@ export default {
       reviewData(params).then(res => {
         this.$successMsg('审核驳回')
         this.goBack()
+        this.$emit('updateList')
+
       })
     },
     // 审批通过
@@ -900,6 +902,8 @@ export default {
       reviewData(params).then(res => {
         this.$successMsg('审核通过')
         this.goBack()
+        this.$emit('updateList')
+
       })
     },
     async getData(data) {