ソースを参照

fix:修改资方授信列表表格刷新按钮展示时机

lazy 1 ヶ月 前
コミット
80c9d12810
共有1 個のファイルを変更した6 個の追加1 個の削除を含む
  1. 6 1
      src/views/capitalFinancingManage/capitalAuth/index.vue

+ 6 - 1
src/views/capitalFinancingManage/capitalAuth/index.vue

@@ -250,12 +250,17 @@ export default {
         }
 
         if (category === 'delayAuth' && rowPower) {
-          if (rowPower.includes(row.creditStatus) || !row.creditStatus) {
+          if (!row.creditStatus) return false
+          if (rowPower.includes(row.creditStatus)) {
             return true
           }
           return false
         }
 
+        if (category === 'refreshAuth') {
+          if (!row.creditStatus) return false
+        }
+
         return true
       }
     },