|
@@ -1,7 +1,9 @@
|
|
|
<template>
|
|
|
<div class="stepsViewScroll">
|
|
|
<div class="recordBox" v-for="(item, index) in equitListData" :key="index">
|
|
|
- <div class="headerText titleText">{{ item.equitType }}</div>
|
|
|
+ <div class="headerText titleText">
|
|
|
+ {{ dictS.getLableByValue("device_type", item.equitType) }}
|
|
|
+ </div>
|
|
|
<div class="describeBox">
|
|
|
<div class="describeText">精度要求</div>
|
|
|
<div class="describeText" style="color: black">
|
|
@@ -100,6 +102,9 @@ import {
|
|
|
} from "@/api/prosteps/shebeijilu";
|
|
|
import { useProcessStore } from "@/store";
|
|
|
defineOptions({ name: "Shebeijilu" });
|
|
|
+import { useDictionaryStore } from "@/store";
|
|
|
+
|
|
|
+const dictS = useDictionaryStore();
|
|
|
const selectStatus = ref(false);
|
|
|
const scanStatus = ref(false);
|
|
|
const binding = async (item: any) => {
|