hbao 3 роки тому
джерело
коміт
d13337663f
2 змінених файлів з 19 додано та 13 видалено
  1. +11
    -6
      src/views/homesteadSurvey/add.vue
  2. +8
    -7
      src/views/homesteadSurvey/list.vue

+ 11
- 6
src/views/homesteadSurvey/add.vue Переглянути файл

@@ -3148,7 +3148,8 @@
enterMap: "", enterMap: "",
//记录从地图进入宅基地代码 //记录从地图进入宅基地代码
enterMapZjddm:"", enterMapZjddm:"",

//地图状态保存
numerical:"",
//审核状态 //审核状态
isFinished:false, isFinished:false,
// cookies // cookies
@@ -3162,19 +3163,23 @@
}; };
}, },
created(){ created(){
console.log(this.$route.query.res);
console.log(this.$cookies.get("search")); console.log(this.$cookies.get("search"));
//this.itemBc = this.$cookies.get("map"); //this.itemBc = this.$cookies.get("map");
//this.$cookies.set("item",""); //this.$cookies.set("item","");
if(this.$cookies.get("search") !=null &&this.$cookies.get("search").zjddm !="" && this.$cookies.get("search").zjddm !=undefined && this.$cookies.get("search").zjddm !=null){ if(this.$cookies.get("search") !=null &&this.$cookies.get("search").zjddm !="" && this.$cookies.get("search").zjddm !=undefined && this.$cookies.get("search").zjddm !=null){
this.ztMap =false; this.ztMap =false;
//this.$cookies.set("map",this.$cookies.get("search")); //this.$cookies.set("map",this.$cookies.get("search"));
console.log(this.$cookies.get("search"));
this.numerical =this.$cookies.get("search");
}else { }else {
this.ztMap =true;
if(this.$route.query.res !=null && this.$route.query.res !="" && this.$route.query.res !=undefined){
this.ztMap =true;
this.numerical =this.$route.query.res;
}
} }
if(this.$cookies.get("search")){
if(this.$cookies.get("search").active!=null){
this.cookiesInfo = this.$cookies.get("search")
if(this.numerical){
if(this.numerical.active!=null){
this.cookiesInfo = this.numerical
this.$cookies.set("search","") this.$cookies.set("search","")
//返回地图值记录----start //返回地图值记录----start
this.backMap.activeBtn = 4; this.backMap.activeBtn = 4;


+ 8
- 7
src/views/homesteadSurvey/list.vue Переглянути файл

@@ -5305,26 +5305,27 @@
}, },
//宅基地点击地图核查 //宅基地点击地图核查
zjdHc(){ zjdHc(){
console.log(this.mapZjdTeAll);
if(this.zjdHcDy != "" && this.zjdHcDy != "undefined"){ if(this.zjdHcDy != "" && this.zjdHcDy != "undefined"){
if(this.mapZjdData !=undefined && this.mapZjdData !="" && this.mapZjdDataTure !=""){ if(this.mapZjdData !=undefined && this.mapZjdData !="" && this.mapZjdDataTure !=""){
console.log("ggggggggg") console.log("ggggggggg")
this.mapZjdTeAll.active =1; this.mapZjdTeAll.active =1;
this.$cookies.set("search",this.mapZjdTeAll);
this.$router.push({path:'/homesteadSurvey/add'});
// console.log(this.mapZjdTeAll);
// this.$cookies.set("search",cookMap);
// console.log(this.$cookies.get("search"));
this.$router.push({path:'/homesteadSurvey/add',query: {res: this.mapZjdTeAll}});
}else if(this.mapZrzData !=undefined && this.mapZrzData !=""){ }else if(this.mapZrzData !=undefined && this.mapZrzData !=""){
if(this.mapZjdTeAll.mapZjdAData !=""){ if(this.mapZjdTeAll.mapZjdAData !=""){
this.mapZjdTeAll.active = 3; this.mapZjdTeAll.active = 3;
this.$cookies.set("search",this.mapZjdTeAll);
this.$router.push({path:'/homesteadSurvey/add'});
// this.$cookies.set("search",this.mapZjdTeAll);
this.$router.push({path:'/homesteadSurvey/add',query: {res: this.mapZjdTeAll}});
} else { } else {
this.$toast("必须有宅基地数据才能进入自然幢核查"); this.$toast("必须有宅基地数据才能进入自然幢核查");
} }
}else { }else {
if(this.mapZjdTeAll.mapZjdAData !="") { if(this.mapZjdTeAll.mapZjdAData !="") {
this.mapZjdTeAll.active = 4; this.mapZjdTeAll.active = 4;
this.$cookies.set("search", this.mapZjdTeAll);
this.$router.push({path: '/homesteadSurvey/add'});
//this.$cookies.set("search", this.mapZjdTeAll);
this.$router.push({path: '/homesteadSurvey/add',query: {res: this.mapZjdTeAll}});
} else { } else {
this.$toast("必须有宅基地数据才能进入附属设施核查"); this.$toast("必须有宅基地数据才能进入附属设施核查");
} }


Завантаження…
Відмінити
Зберегти