|
@@ -262,7 +262,7 @@ export default {
|
|
|
label: '监控管理-未带工单预警、超速预警数、节假日预警数'
|
|
|
}
|
|
|
],
|
|
|
- json: "",
|
|
|
+ json: undefined,
|
|
|
op:false,
|
|
|
// 根路径
|
|
|
baseURL: process.env.VUE_APP_BASE_API,
|
|
@@ -414,7 +414,8 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
sure(){
|
|
|
- const jsonString = encodeURIComponent(JSON.stringify(this.json));
|
|
|
+ const jsonString = JSON.parse(this.json)
|
|
|
+ console.log(jsonString)
|
|
|
uploadJson(this.value, jsonString).then(res => {
|
|
|
|
|
|
})
|