snow 2 years ago
parent
commit
041c14802f

File diff suppressed because it is too large
+ 0 - 0
dist/static/js/0.js


+ 2 - 2
src/views/sellOut/sellAfterApply/detail.vue

@@ -311,9 +311,9 @@ export default {
   },
   methods: {
     isHasPermission({ status, process }){
-      console.log(this.ppowers)
       return (
-        status === String(this.sitem.status) 
+       this.sitem
+        && status === String(this.sitem.status) 
         && this.ppowers.includes(process) 
         && !this.isSupertube
       )

+ 4 - 2
src/views/sellOut/sellReturn/detail.vue

@@ -380,8 +380,10 @@ export default {
     },
 
     isHasPermission({status, process}){
-      // && this.ppowers.includes(process) && !this.isSupertube
-      return String(this.sitem.status) === status 
+      return this.sitem 
+             && String(this.sitem.status) === status  
+             && this.ppowers.includes(process) 
+             && !this.isSupertube
     },
     
     async initData() {

+ 4 - 3
src/views/supplierSellOut/supplierSellAfterApply/detail.vue

@@ -256,9 +256,10 @@ export default {
   methods: {
     isHasPermission({ status, process }){
       return (
-        status === String(this.sitem.status) &&
-        this.ppowers.includes(process) &&
-        !this.isSupertube 
+        this.sitem
+        && status === String(this.sitem.status) 
+        && this.ppowers.includes(process) 
+        && !this.isSupertube 
       )
     },
     async handleExpress(data){

+ 6 - 1
src/views/supplierSellOut/supplierSellReturn/detail.vue

@@ -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({

Some files were not shown because too many files changed in this diff