|
@@ -209,7 +209,7 @@
|
|
|
<el-button type="text" size="mini" @click="check(scope.row)">查看</el-button>
|
|
|
<el-button type="text" size="mini" v-if="scope.row.status == '0' || scope.row.status == '3'" @click="edit(scope.row)">编辑</el-button>
|
|
|
<el-button type="text" size="mini" v-if="scope.row.status == '0' || scope.row.status == '3'" @click="commit(scope.row)">提交</el-button>
|
|
|
- <!-- <el-button type="text" size="mini" v-if="scope.row.status == '1' && scope.row.flowId" @click="reback(scope.row)">收回</el-button> -->
|
|
|
+ <el-button type="text" size="mini" v-if="scope.row.status == '1' && scope.row.flowId" @click="reback(scope.row)">收回</el-button>
|
|
|
<el-button type="text" size="mini" v-if="scope.row.status == '0' || scope.row.status == '3'" @click="deleteids(scope.row)">删除</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -429,6 +429,8 @@ export default {
|
|
|
return '已完成'
|
|
|
case '3':
|
|
|
return '已驳回'
|
|
|
+ case '9':
|
|
|
+ return '已回退'
|
|
|
}
|
|
|
},
|
|
|
formatterBillType(row) {
|