|
@@ -3,7 +3,7 @@
|
|
|
<el-card class="box-card">
|
|
|
<save-form ref="listQuery" :model="listQuery" :inline="true">
|
|
|
<WorkOrderSearch
|
|
|
- :genre="'my-create'"
|
|
|
+ :genre="'related'"
|
|
|
:list="listQuery"
|
|
|
@handleSearch="handleSearch"
|
|
|
/>
|
|
@@ -35,6 +35,12 @@
|
|
|
</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ label="申请人"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ prop="creator_name"
|
|
|
+ >
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="当前处理人" :show-overflow-tooltip="true">
|
|
|
<template slot-scope="scope">
|
|
|
<span v-if="scope.row.is_end === 0">{{
|
|
@@ -218,6 +224,7 @@ export default {
|
|
|
for (var k in val) {
|
|
|
this.listQuery[k] = val[k];
|
|
|
}
|
|
|
+ this.queryParams.pageIndex = this.listQuery.page;
|
|
|
this.$refs.listQuery.save(this.listQuery);
|
|
|
this.$refs.listQuery.save(this.queryParams, "page");
|
|
|
this.getList();
|