f7acf334 by zhaoqian

代办箱

1 parent 7ec11035
...@@ -132,20 +132,15 @@ export default { ...@@ -132,20 +132,15 @@ export default {
132 window.open(row.url) 132 window.open(row.url)
133 }, 133 },
134 handleSelect(item) { 134 handleSelect(item) {
135 console.log(this.$route.path+":this.$route.params.path") 135 console.log(JSON.stringify(item)+":item")
136 //非编辑状态才可以点击 136 //非编辑状态才可以点击
137 if (!this.isEdit) { 137 if (!this.isEdit) {
138 if(this.$route.path === '/dbx'){
139 this.$parent.changeActiveName("dbx");
140
141 }else {
142 if(item.path){ 138 if(item.path){
143 this.$router.push({ 139 this.$router.push({
144 path:'/dbx' 140 path:'/dbx'
145 }) 141 })
146 } 142 }
147 } 143 }
148 }
149 }, 144 },
150 tableRowClassName({ row, rowIndex }) { 145 tableRowClassName({ row, rowIndex }) {
151 if (rowIndex % 2 !== 0) { 146 if (rowIndex % 2 !== 0) {
......