|
@@ -299,7 +299,12 @@ export default {
|
|
|
if (msg === '新建会员账户') {
|
|
|
return rowPower.includes(row.verificationStatus)
|
|
|
} else if (row.stageStr === '暂存' || row.stageStr === '审批退回') {
|
|
|
- return row.button && rowPower.includes(row.stageStr)
|
|
|
+ if(this.activeName === 'pending') {
|
|
|
+ return rowPower.includes(row.stageStr)
|
|
|
+ }else {
|
|
|
+ return row.button && rowPower.includes(row.stageStr)
|
|
|
+ }
|
|
|
+
|
|
|
} else {
|
|
|
return rowPower.includes(row.stageStr)
|
|
|
}
|