|
|
|
@ -86,11 +86,14 @@ export default {
|
|
|
|
|
methods: {
|
|
|
|
|
parseTime,
|
|
|
|
|
filteredActions(applyStatus) {
|
|
|
|
|
if (applyStatus === 3) {
|
|
|
|
|
return this.actions;
|
|
|
|
|
} else {
|
|
|
|
|
if(applyStatus === 0 || applyStatus === 1){
|
|
|
|
|
return this.actions.filter(action => action.text !== '退回意见');
|
|
|
|
|
}
|
|
|
|
|
if (applyStatus === 3) {
|
|
|
|
|
return this.actions
|
|
|
|
|
} else if(applyStatus === 2 || applyStatus === 4){
|
|
|
|
|
return this.actions.filter(action => action.text === '查看');
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
//父组件搜索方法
|
|
|
|
|
getList(query){
|
|
|
|
|