Selaa lähdekoodia

Finish Hotfix-97

chen 3 vuotta sitten
vanhempi
commit
1ba7ff1a4e
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      src/views/finance/change_list.vue

+ 2 - 2
src/views/finance/change_list.vue

@@ -140,7 +140,7 @@
                 <el-button @click="submitFn(scope.row.id)" v-if="
                     $checkBtnRole('apply', $route.meta.roles) &&
                     isCustomer &&
-                    (scope.row.examineStatus == 'SAVE' || scope.row.examineStatus == 'REJECT' )
+                    scope.row.examineStatus == 'SAVE' 
                   " type="text" class="textColor" slot="reference">提审</el-button>
                 <!-- <el-button v-if="isCustomer && scope.row.examineStatus == 'WAIT'" type="text" class="textColor" slot="reference" @click="withdrawFn">撤回</el-button> -->
                 <el-button v-if="
@@ -149,7 +149,7 @@
                     $checkBtnRole('examine', $route.meta.roles)
                   " @click="examineFn(scope.row.id)" type="text" class="textColor" slot="reference">审核</el-button>
                 <el-button v-if="
-                    (scope.row.examineStatus == 'FAIL_ONE' || scope.row.examineStatus == 'REJECT' ||
+                    (scope.row.examineStatus == 'FAIL_ONE' || 
                       scope.row.examineStatus == 'SAVE') &&
                     $checkBtnRole('edit', $route.meta.roles)
                   " type="text" class="textColor" slot="reference" @click="editFn(scope.row.id)">修改</el-button>