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