Commit 72ceaf08 by liyuhang19990520

可视化

parent 9eb4a1f3
......@@ -185,7 +185,6 @@ export default {
this.photoXhrObject.url,
this.photoXhrObject.params
)
describe =
photoData?.rows?.xm ||
photoData?.rows?.describe ||
......@@ -434,7 +433,7 @@ export default {
return require(`@/assets/img/graphEcharts/${str}imei.png`)
case 'lawcase':
return require(`@/assets/img/graphEcharts/${str}lawcase.png`)
case 'webo':
case 'weibo':
return require(`@/assets/img/graphEcharts/${str}weibo.png`)
case 'bankCard':
return require(`@/assets/img/graphEcharts/${str}yinhangka.png`)
......
<!--
* @Author: your name
* @Date: 2021-07-20 14:38:05
* @LastEditTime: 2021-08-18 10:52:28
* @LastEditTime: 2021-08-18 17:36:33
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: \founder_vue\src\views\yppt\argxfx.vue
......@@ -242,20 +242,26 @@ export default {
let newParams = this.objectAssignment(this.newParams);
let newNodedata = this.objectAssignment(this.newNodedata);
let newPhotoXhrObject = this.objectAssignment(this.newPhotoXhrObject);
for (let key in this.newParams) {
if (this.form[this.newParams[key]]) {
this.$set(newParams, key, this.form[this.newParams[key]]);
if (this.newParams) {
for (let key in this.newParams) {
if (this.form[this.newParams[key]]) {
this.$set(newParams, key, this.form[this.newParams[key]]);
}
}
}
for (let key in this.newNodedata) {
if (this.form[this.newNodedata[key]]) {
this.$set(newNodedata, key, this.form[this.newNodedata[key]]);
if (this.newNodedata) {
for (let key in this.newNodedata) {
if (this.form[this.newNodedata[key]]) {
this.$set(newNodedata, key, this.form[this.newNodedata[key]]);
}
}
}
console.log(newNodedata,11111111111)
for(let key in this.newPhotoXhrObject['params']){
if(newNodedata[this.newPhotoXhrObject['params'][key]]){
newPhotoXhrObject.params[key] = newNodedata[this.newPhotoXhrObject['params'][key]];
if (this.newPhotoXhrObject) {
for (let key in this.newPhotoXhrObject["params"]) {
if (newNodedata[this.newPhotoXhrObject["params"][key]]) {
newPhotoXhrObject.params[key] =
newNodedata[this.newPhotoXhrObject["params"][key]];
}
}
}
let obj = {
......@@ -328,4 +334,4 @@ export default {
border: none;
}
}
</style>
\ No newline at end of file
</style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment