|
@@ -5,7 +5,7 @@
|
|
|
v-if="powers.some((i) => i == '001')"
|
|
|
:table="table"
|
|
|
:data="tableData"
|
|
|
- :columns="columns"
|
|
|
+ :columns="doneColumns"
|
|
|
:page="pageInfo"
|
|
|
:size="size"
|
|
|
@page-curr-change="handlePageChange"
|
|
@@ -112,7 +112,7 @@ import asyncRequest from "@/apis/service/process/done";
|
|
|
import mixinPage from "@/mixins/elPaginationHandle";
|
|
|
import { mapGetters } from "vuex";
|
|
|
import resToken from "@/mixins/resToken";
|
|
|
-import { routerList, columns } from "@/views/process/columns";
|
|
|
+import { routerList, doneColumns } from "@/views/process/columns";
|
|
|
export default {
|
|
|
name: "done",
|
|
|
mixins: [mixinPage, resToken],
|
|
@@ -153,7 +153,7 @@ export default {
|
|
|
total: 0,
|
|
|
},
|
|
|
// 表格 - 列参数
|
|
|
- columns: columns.filter(({_slot_}) => _slot_ !== 'current_handle_name'),
|
|
|
+ doneColumns,
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|