|
@@ -28,9 +28,9 @@
|
|
|
<span :style="{color: stColors[scope.row.status]}"> {{ scope.row.statusString }} </span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="创建人" min-width="100" align="center">
|
|
|
+ <el-table-column label="报告人" min-width="100" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
- <span v-if="dataStatus">{{ scope.row.creatorObject === null ? '' : scope.row.creatorObject.name }}</span>
|
|
|
+ <span v-if="dataStatus">{{ scope.row.reportorObject === null ? '' : scope.row.reportorObject.name }}</span>
|
|
|
<span v-if="!dataStatus">{{ scope.row.createrObject.name }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -96,9 +96,9 @@
|
|
|
<el-table-column label="状态" min-width="100" align="center">
|
|
|
<template slot-scope="scope">{{ scope.row.statusString }}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="创建人" min-width="100" align="center">
|
|
|
+ <el-table-column label="报告人" min-width="100" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
- <span v-if="dailyDataStatus">{{ !scope.row.createrObject? '':scope.row.createrObject.name }}</span>
|
|
|
+ <span v-if="dailyDataStatus">{{ !scope.row.reportorObject? '':scope.row.reportorObject.name }}</span>
|
|
|
<span v-if="!dailyDataStatus">{{ scope.row.createrObject.name }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -111,7 +111,7 @@
|
|
|
<span v-if="scope.row.status === 0 ? true : false" class="btn" @click="dailyButtom(5,scope.row.id, scope.row)">发送</span>
|
|
|
<span v-if="scope.row.status === 0 ? true : false" style="margin: 0 30px;" class="btn" @click="dailyButtom(6,scope.row.id, scope.row)">编辑</span>
|
|
|
<span v-if="scope.row.status === 0 ? true : false" class="btn" @click="dailyButtom(4,scope.row.id, scope.row )">删除</span>
|
|
|
- <span v-if="scope.row.status === 1 ? true : false" class="btn" @click="dailyButtom(3,scope.row.id, scope.row)">复制</span>
|
|
|
+ <span v-if="scope.row.status === 3 ? true : false" class="btn" @click="dailyButtom(3,scope.row.id, scope.row)">复制</span>
|
|
|
<el-dialog :title="titName" :visible.sync="dialog_daily" width="30%" :close-on-click-modal="false">
|
|
|
<div style="position: absolute; top: 23px; left: 12px;width:4px;height:17px;background:#409EFF;border-radius:1px;" />
|
|
|
<div align="center">
|
|
@@ -165,10 +165,10 @@
|
|
|
<span v-if="releaseDataStatus">{{ scope.row.statusString }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="创建人" min-width="100" align="center">
|
|
|
+ <el-table-column label="报告人" min-width="100" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<span v-if="!releaseDataStatus">{{ scope.row.createrObject.name }}</span>
|
|
|
- <span v-if="releaseDataStatus">{{ scope.row.creatorObject === null ? '' :scope.row.creatorObject.name }}</span>
|
|
|
+ <span v-if="releaseDataStatus">{{ scope.row.reportorObject === null ? '' :scope.row.reportorObject.name }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="创建日期" min-width="100" align="center">
|