|
@@ -3,16 +3,20 @@
|
|
|
<el-table :data="tableData" id="tableStyle" :height="tableHeight" border>
|
|
|
<el-table-column prop="operationName" label="冻结状态">
|
|
|
<template #default="scope">
|
|
|
- {{ dictS.getLableByValue("escalation_fault_state", scope.row.state) }}
|
|
|
+ {{ getLableByValue("escalation_fault_state", scope.row.state) }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="creator" label="报故人">
|
|
|
+ <template #default="scope">
|
|
|
+ {{ getLableByValue('user_name_list',scope.row.creator) }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="creator" label="报故人" />
|
|
|
<el-table-column prop="stationName" label="报故工位" />
|
|
|
<el-table-column prop="created" label="报故时间" />
|
|
|
<el-table-column prop="disposalMeasures" label="处理结果">
|
|
|
<template #default="scope">
|
|
|
{{
|
|
|
- dictS.getLableByValue(
|
|
|
+ getLableByValue(
|
|
|
"disposal_measures_type",
|
|
|
scope.row.disposalMeasures
|
|
|
)
|
|
@@ -37,10 +41,9 @@
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
-import { useProcessStore } from "@/store";
|
|
|
+import { useProcessStore ,useDictionaryStore} from "@/store";
|
|
|
import { escalationRecordInfo } from "@/api/process/traceability";
|
|
|
-import { useDictionaryStore } from "@/store";
|
|
|
-const dictS = useDictionaryStore();
|
|
|
+const {dictS , getLableByValue} = useDictionaryStore();
|
|
|
const store = useProcessStore();
|
|
|
const page = ref(1);
|
|
|
const limit = ref(10);
|