|
@@ -444,16 +444,18 @@ export default {
|
|
|
run(tabPageData.children)
|
|
|
console.log(obj)
|
|
|
// 提交数据
|
|
|
- updateAnalyticFeedback({
|
|
|
- reportId: this.$route.query.reportId,
|
|
|
- reportCatalog: obj
|
|
|
- }).then((res) => {
|
|
|
- if (res.code === 200) {
|
|
|
- console.log(res.data)
|
|
|
- }
|
|
|
- })
|
|
|
- // console.log(this.domKey)
|
|
|
- // console.log(this.title)
|
|
|
+ if (obj) {
|
|
|
+ updateAnalyticFeedback({
|
|
|
+ reportId: this.$route.query.reportId,
|
|
|
+ reportCatalog: obj
|
|
|
+ }).then((res) => {
|
|
|
+ if (res.code === 200) {
|
|
|
+ console.log(res.data)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ // console.log(this.domKey)
|
|
|
+ // console.log(this.title)
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
/**
|