1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
| <template>
| <div class="params-container params-container-flex">
| <div class="form-title">
|
| </div>
| <div class="form-wrapper">
| <div class="test-explain">
| <p class="p-h">当前步骤</p>
| <p class="text-indent-two">① 被试电机在额定频率,额定电压及额定负载下运行到温升稳定</p>
| </div>
| <test-step-check :type="type"></test-step-check>
| </div>
| <div class="footer-button">
|
| </div>
| </div>
| </template>
|
| <script>
| import TestStepCheck from "@/pages/test/dialog/testStepCheck";
| export default {
| name: "testStart",
| components: {TestStepCheck},
| props: {
| type: {
| type: String,
| default: "",
| }
| },
| }
| </script>
|
| <style scoped>
| .p-h {
| font-size: 18px;
| font-weight: 700;
| }
| </style>
|
|