Merge branch 'master' of http://yun.pashanhoo.com:9090/renchao/CadastralSystem
Showing
2 changed files
with
16 additions
and
11 deletions
| ... | @@ -30,7 +30,7 @@ | ... | @@ -30,7 +30,7 @@ |
| 30 | class="box" | 30 | class="box" |
| 31 | v-for="(item, index) in list" | 31 | v-for="(item, index) in list" |
| 32 | :key="index" | 32 | :key="index" |
| 33 | @click="handleSelect" | 33 | @click="handleSelect(item)" |
| 34 | > | 34 | > |
| 35 | <div class="psr"> | 35 | <div class="psr"> |
| 36 | <img :src="item.img" alt="" /> | 36 | <img :src="item.img" alt="" /> |
| ... | @@ -97,13 +97,14 @@ export default { | ... | @@ -97,13 +97,14 @@ export default { |
| 97 | { name: "退件箱", img: require("@assets/images/tjx.png"),count:0 }, | 97 | { name: "退件箱", img: require("@assets/images/tjx.png"),count:0 }, |
| 98 | ], | 98 | ], |
| 99 | list: [ | 99 | list: [ |
| 100 | { name: "宗地分割", img: require("@assets/images/zdfg.png") }, | 100 | { name: "宗地分割", img: require("@assets/images/zdfg.png"),path:'change',oLevel:'fg',tLevel:'zd'}, |
| 101 | { | 101 | { |
| 102 | name: "导入楼盘表模板", | 102 | name: "宗地合并", |
| 103 | img: require("@assets/images/drlpbmb.png"), | 103 | img: require("@assets/images/drlpbmb.png"), |
| 104 | path:'change',oLevel:'hb',tLevel:'zd' | ||
| 104 | }, | 105 | }, |
| 105 | { name: "新办房屋", img: require("@assets/images/xbfw.png") }, | 106 | { name: "范围属性变更", img: require("@assets/images/xbfw.png"),path:'change',oLevel:'fwsxbg',tLevel:'' }, |
| 106 | { name: "重新落宗", img: require("@assets/images/cxlz.png") }, | 107 | { name: "重新落宗", img: require("@assets/images/cxlz.png"),path:'change',oLevel:'cxlz',tLevel:''}, |
| 107 | { name: "添加", img: require("@assets/images/tj.png") }, | 108 | { name: "添加", img: require("@assets/images/tj.png") }, |
| 108 | ], | 109 | ], |
| 109 | tableData: [ | 110 | tableData: [ |
| ... | @@ -161,12 +162,16 @@ export default { | ... | @@ -161,12 +162,16 @@ export default { |
| 161 | //非编辑状态才可以点击 | 162 | //非编辑状态才可以点击 |
| 162 | if (!this.isEdit) { | 163 | if (!this.isEdit) { |
| 163 | if(item.path){ | 164 | if(item.path){ |
| 164 | this.$router.push({ | 165 | let params = {}; |
| 165 | path:'/change', | 166 | if(item.oLevel!==''){ |
| 166 | query:{ | 167 | params.oLevel = item.oLevel; |
| 167 | oLevel:'fg', | ||
| 168 | tLevel:'h' | ||
| 169 | } | 168 | } |
| 169 | if(item.tLevel!==''){ | ||
| 170 | params.tLevel = item.tLevel; | ||
| 171 | } | ||
| 172 | this.$router.push({ | ||
| 173 | path:item.path, | ||
| 174 | query:params | ||
| 170 | }) | 175 | }) |
| 171 | } | 176 | } |
| 172 | } | 177 | } | ... | ... |
-
Please register or sign in to post a comment