11654dc0 by 杨威

新建宗地成功后跳转至宗地页面

1 parent 26823ca2
...@@ -333,14 +333,14 @@ export default { ...@@ -333,14 +333,14 @@ export default {
333 // 根据res.processInstance.businessId去查询zdbsm TODO 333 // 根据res.processInstance.businessId去查询zdbsm TODO
334 334
335 // this.$store.state.zdbsm = res.result; 335 // this.$store.state.zdbsm = res.result;
336 //todo 跳转到宗地基本信息内容表页面 (预留) 336 // todo 跳转到宗地基本信息内容表页面 (预留)
337 // this.close(); 337 this.close();
338 // this.$router.push({ 338 this.$router.push({
339 // path: '/zd', query:{ 339 path: '/zd', query:{
340 // source: 2, 340 source: 2,
341 // bsm:res.result 341 bsm:res.processInstance.title
342 // } 342 }
343 // }); 343 });
344 } else { 344 } else {
345 this.$message.error(res.message); 345 this.$message.error(res.message);
346 } 346 }
......