|
@@ -369,7 +369,12 @@ export default {
|
|
|
},
|
|
|
|
|
|
isHasPermission({status, process}){
|
|
|
- return !this.isSupertube && String(this.sitem.status) === status && this.ppowers.includes(process)
|
|
|
+ return (
|
|
|
+ !this.isSupertube
|
|
|
+ && this.sitem
|
|
|
+ && String(this.sitem.status) === status
|
|
|
+ && this.ppowers.includes(process)
|
|
|
+ )
|
|
|
},
|
|
|
async initData() {
|
|
|
const { code, data, message } = await asyncRequest.detail({
|