|
@@ -95,7 +95,7 @@
|
|
|
style="width: 100%"
|
|
|
@row-click="tblrowclick"
|
|
|
>
|
|
|
- <el-table-column prop="taskCode" label="台账编号">
|
|
|
+ <el-table-column prop="taskCode" fixed="left" label="台账编号">
|
|
|
<template #default="scope">
|
|
|
{{
|
|
|
alldevices.filter((i) => i.id === scope.row.facilitiesId)[0]?.ext1
|
|
@@ -103,7 +103,7 @@
|
|
|
}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="taskCode" label="设施名称">
|
|
|
+ <el-table-column prop="taskCode" fixed="left" width="200" label="设施名称">
|
|
|
<template #default="scope">
|
|
|
{{
|
|
|
alldevices.filter((i) => i.id === scope.row.facilitiesId)[0]?.ext1
|
|
@@ -133,7 +133,7 @@
|
|
|
}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="路段范围">
|
|
|
+ <el-table-column width="300" label="路段范围">
|
|
|
<template #default="scope">
|
|
|
{{
|
|
|
alldevices.filter((i) => i.id === scope.row.facilitiesId)[0]?.ext1
|
|
@@ -141,8 +141,8 @@
|
|
|
}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="ext1.task.datestart" label="计划时间" />
|
|
|
- <el-table-column prop="ext1.task.dateend" label="完成时间" />
|
|
|
+ <el-table-column prop="ext1.task.datestart" width="100" label="计划时间" />
|
|
|
+ <el-table-column prop="ext1.task.dateend" width="100" label="完成时间" />
|
|
|
<el-table-column label="管径(mm)">
|
|
|
<template #default="scope">
|
|
|
{{ scope.row.ext1.task.gd.map((i) => i.yh_gj).join("、") }}
|
|
@@ -209,14 +209,14 @@
|
|
|
{{ scope.row.detectionRemark }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="address" label="操作">
|
|
|
+ <el-table-column prop="address" fixed="right" width="200" label="操作">
|
|
|
<template #default="scope">
|
|
|
- <el-button text size="small" @click.stop="edittask(scope.row)"
|
|
|
+ <el-button text type="primary" size="small" @click.stop="edittask(scope.row)"
|
|
|
>修改
|
|
|
</el-button>
|
|
|
<el-popconfirm title="确定删除?" @confirm="deltask(scope.row)">
|
|
|
<template #reference>
|
|
|
- <el-button text size="small" @click.stop="">删除</el-button>
|
|
|
+ <el-button text type="danger" size="small" @click.stop="">删除</el-button>
|
|
|
</template>
|
|
|
</el-popconfirm>
|
|
|
</template>
|