|
@@ -4,9 +4,17 @@
|
|
|
<el-dialog title="绩效审批记录" :visible.sync="open" width="1000px" :close-on-click-modal="false">
|
|
|
<el-table size="mini" height="500px" v-loading="loading" :data="listData">
|
|
|
<el-table-column label="时间" align="center" prop="createTime" />
|
|
|
- <el-table-column label="阶段" align="center" prop="performanceStatus" />
|
|
|
+ <el-table-column label="阶段" align="center" prop="performanceStatus" >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <dict-tag :options="dict.type.ehr_pm_status" :value="scope.row.performanceStatus"/>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="评估人" align="center" prop="staffName" />
|
|
|
- <el-table-column label="状态" align="center" prop="status" />
|
|
|
+ <el-table-column label="状态" align="center" prop="status" >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <dict-tag :options="dict.type.ehr_pm_flow_status" :value="scope.row.status"/>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="结果" align="center" prop="result" />
|
|
|
</el-table>
|
|
|
</el-dialog>
|
|
@@ -18,6 +26,7 @@
|
|
|
import { listFlow} from "@/api/business/ehr/pm/flow";
|
|
|
export default {
|
|
|
name: "ApproveLogDialog",
|
|
|
+ dicts: ['ehr_pm_status','ehr_pm_flow_status'],
|
|
|
props: ['pmId'],
|
|
|
data() {
|
|
|
return {
|