|
@@ -66,6 +66,13 @@
|
|
|
<div class="table-container">
|
|
|
<el-table ref="tableRef" v-loading="loading" :data="list" :stripe="true"
|
|
|
:show-overflow-tooltip="true" style="width: 100%" :cell-style="cellStyle">
|
|
|
+ <el-table-column
|
|
|
+ label="日期"
|
|
|
+ align="center"
|
|
|
+ prop="createTime"
|
|
|
+ :formatter="dateFormatter"
|
|
|
+ :width="columnWidths.createTime"
|
|
|
+ />
|
|
|
<el-table-column label="施工队伍" align="center" prop="deptName" :width="columnWidths.deptName"/>
|
|
|
<el-table-column label="项目" align="center" prop="contractName" :width="columnWidths.contractName"/>
|
|
|
<el-table-column label="任务" align="center" prop="taskName" :width="columnWidths.taskName"/>
|
|
@@ -107,13 +114,6 @@
|
|
|
:width="columnWidths.totalGasInjection" :formatter="gasInjectionFormatter"/>
|
|
|
<el-table-column label="累计注水量(方)" align="center" prop="totalWaterInjection" :width="columnWidths.totalWaterInjection"/>
|
|
|
<el-table-column label="累计完工井次" align="center" prop="cumulativeCompletion" :width="columnWidths.cumulativeCompletion"/>
|
|
|
- <el-table-column
|
|
|
- label="创建时间"
|
|
|
- align="center"
|
|
|
- prop="createTime"
|
|
|
- :formatter="dateFormatter"
|
|
|
- :width="columnWidths.createTime"
|
|
|
- />
|
|
|
<el-table-column label="操作" align="center" :width="columnWidths.operation">
|
|
|
<template #default="scope">
|
|
|
<el-button
|