|
@@ -45,7 +45,7 @@
|
|
|
|
|
|
<el-table :data="GATHERList" @selection-change="handleSelectionChange" @row-click="showRow">
|
|
|
<!-- @current-change="handleCurrentChange" -->
|
|
|
- <el-table-column label="选择" width="70" center>
|
|
|
+ <el-table-column label="选择" fixed="left" width="70" center>
|
|
|
<template scope="scope">
|
|
|
<el-radio class="radio" v-model="radio" :label="scope.$index" @change.native="getCurrentRow(scope.row)">{{ '' }}</el-radio>
|
|
|
</template>
|
|
@@ -78,12 +78,22 @@
|
|
|
<span v-if="scope.row.collStatus == 1">已采集</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="采集人" align="center" prop="collName" width="110">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ scope.row.collName }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="采集时间" align="center" prop="collTime" width="100">
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="上报状态" align="center" prop="reportStatus" width="110">
|
|
|
<template slot-scope="scope">
|
|
|
<span v-if="scope.row.reportStatus == 0">未上报</span>
|
|
|
<span v-if="scope.row.reportStatus == 1">已上报</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="上报人" align="center" prop="reportName" width="110"/>
|
|
|
+ <el-table-column label="上报时间" align="center" prop="createTime" width="100" />
|
|
|
+
|
|
|
<el-table-column label="审核状态" align="center" prop="approveStatus">
|
|
|
<template slot-scope="scope">
|
|
|
<span v-if="scope.row.approveStatus == 0">未提交审核</span>
|
|
@@ -92,8 +102,9 @@
|
|
|
<span v-if="scope.row.approveStatus == 3">审核拒绝</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="上报时间" align="center" prop="createTime" />
|
|
|
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
+ <el-table-column label="审核人" align="center" prop="approveName" width="110"/>
|
|
|
+ <el-table-column label="审核时间" align="center" prop="approveTime" width="100"/>
|
|
|
+ <el-table-column label="操作" align="center" fixed="right" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="scope">
|
|
|
<!-- <el-button
|
|
|
style="margin: 0 2px"
|