Commit 7c845b9b by 潘建波

提交标定保存错误

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