zjs_project 1 hete
szülő
commit
35520ca54f

+ 1 - 1
src/mixins/commonPageMethod.js

@@ -22,7 +22,7 @@ export default {
                 	pvId: this.pvId,
                 	locusBehaviorName: this.locusBehaviorName,
                 	pvCurPageName: this.pvCurPageName,
-                	locusValue: this.$route.query.locusValue || "",
+                	locusValue: this.locusValue || this.$route.query.locusValue || "",
                 };
                 util.trackRequest(param);//发送统一PV埋点
             }

+ 2 - 2
src/pages/webgl_rxdz_test/webgl_rxdz_test.vue

@@ -845,14 +845,14 @@
             		this.cameraStarPosition.y = 30;
             	}
             	this.cameraInit();
-                this.locusValue = (this.curHouseObj.name + this.curHouseObj.houseArea) || "";
+                this.locusValue = this.curHouseObj.name + "-" + this.curHouseObj.houseArea + "㎡";
                 let param = {
                 	type: 'PV',
                 	pvId: this.pvId,
                 	locusBehaviorName: this.locusBehaviorName,
                 	pvCurPageName: this.pvCurPageName,
                 	locusValue: this.locusValue,
-                    behaviorName:"户型定制",
+                    behaviorName:"空间定制",
                 };
                 util.trackRequest(param);//发送统一PV埋点
             },