|
@@ -23,6 +23,11 @@
|
|
|
<span>{{ row.taskTitle }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="采空区">
|
|
|
+ <template v-slot="{row}">
|
|
|
+ <span>{{ NumConvertLM(row.goafOrebelt) }}/{{ row.goafOrebody }}/{{ row.goafOreheight }}/{{ row.goafName }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column prop="handleAccountName" label="执行人员" header-align="center" align="center" width="100">
|
|
|
<template v-slot="{row}">
|
|
|
<el-popover v-if="row.handleAccountName" trigger="hover" placement="top">
|
|
@@ -81,7 +86,7 @@ import { getCheckTaskByPage, deleteCheckTaskById } from '@/api/goaf/task'
|
|
|
import { mapGetters } from 'vuex'
|
|
|
import Pagination from '@/components/Pagination'
|
|
|
import { checkType } from '@/utils'
|
|
|
-
|
|
|
+import { NumConvertLM } from '@/utils'
|
|
|
export default {
|
|
|
name: 'MyWaiting',
|
|
|
filters: {
|
|
@@ -125,6 +130,7 @@ export default {
|
|
|
this.loadData(this.conditions.status)
|
|
|
},
|
|
|
methods: {
|
|
|
+ NumConvertLM,
|
|
|
// 加载数据
|
|
|
loadData(status) {
|
|
|
this.conditions.status = status
|