Commit 7c845b9b by 潘建波

提交标定保存错误

1 parent 92565c06
No preview for this file type
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
"analyzer": "cross-env use_analyzer=true npm run serve" "analyzer": "cross-env use_analyzer=true npm run serve"
}, },
"dependencies": { "dependencies": {
"@svgdotjs/svg.js": "^3.0.16",
"axios": "^0.19.0", "axios": "^0.19.0",
"core-js": "^3.3.2", "core-js": "^3.3.2",
"echarts": "^4.5.0", "echarts": "^4.5.0",
......
...@@ -305,3 +305,7 @@ body{ ...@@ -305,3 +305,7 @@ body{
.el-radio__label{ .el-radio__label{
color: #333; color: #333;
} }
.show-box .el-image__inner--center{
transform:none;
left: 0;
}
\ No newline at end of file \ No newline at end of file
...@@ -31,7 +31,11 @@ ...@@ -31,7 +31,11 @@
</div> </div>
<div class="submast-box"> <div class="submast-box">
<div <div
:class="{ 'submast-item': true, 'top-line': true,'onceline':subDevData.length ==1 }" :class="{
'submast-item': true,
'top-line': true,
onceline: subDevData.length == 1
}"
v-for="(subitem, index) in subDevData" v-for="(subitem, index) in subDevData"
:key="index" :key="index"
ref="subitem" ref="subitem"
...@@ -243,6 +247,7 @@ ...@@ -243,6 +247,7 @@
</template> </template>
<script> <script>
import { SVG } from "@svgdotjs/svg.js";
export default { export default {
data() { data() {
return { return {
...@@ -599,6 +604,6 @@ export default { ...@@ -599,6 +604,6 @@ export default {
font-weight: 600; font-weight: 600;
} }
.onceline:first-child::after { .onceline:first-child::after {
height: 4vh!important; height: 4vh !important;
} }
</style> </style>
...@@ -411,8 +411,8 @@ export default { ...@@ -411,8 +411,8 @@ export default {
break; break;
case "config": case "config":
this.taskInfo.param_status = 1; this.taskInfo.param_status = 1;
this.taskInfo.mtasks[0].scenes[this.curindex].calibration = { this.taskInfo.mtasks[0].scenes[this.curindex].config = {
calibration: xml xml: xml
}; };
break; break;
default: default:
......
...@@ -398,6 +398,7 @@ export default { ...@@ -398,6 +398,7 @@ export default {
this.getTaskList(); this.getTaskList();
}, },
query() { query() {
this.page = 1;
this.getTaskList(); this.getTaskList();
}, },
getTaskList() { getTaskList() {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!