a5b7a1cb by 夏齐

Merge remote-tracking branch 'origin/master'

2 parents 54f163aa 031fc89b
...@@ -33,8 +33,8 @@ ...@@ -33,8 +33,8 @@
33 <div class="right-situation el-card box-card is-always-shadow"> 33 <div class="right-situation el-card box-card is-always-shadow">
34 <div class="right-title">{{ obj[n] }}</div> 34 <div class="right-title">{{ obj[n] }}</div>
35 <ul> 35 <ul>
36 <li v-for="(item, index) in itemList" :key="index" @click="handleSelectYw(item, itemList)" 36 <li v-for="(item, index) in itemList" :key="index" @dblclick="handleSelectItem(item, itemList)"
37 :class="item.cselect ? 'cactive' : ''"> 37 @click="handleSelectYw(item, itemList)" :class="item.cselect ? 'cactive' : ''">
38 <p v-if="n == 0"> 38 <p v-if="n == 0">
39 {{ item.djywmc }}<br> 39 {{ item.djywmc }}<br>
40 {{ item.nodename }} 40 {{ item.nodename }}
...@@ -125,10 +125,6 @@ export default { ...@@ -125,10 +125,6 @@ export default {
125 }) 125 })
126 item.cselect = true; 126 item.cselect = true;
127 this.djqxObj = item; 127 this.djqxObj = item;
128
129 // this.djqxObj.djqxbm = item.nodecode
130 // this.djqxObj.djqxmc = item.djqxmc
131
132 if (item.sffqlc == '1') { 128 if (item.sffqlc == '1') {
133 this.btnDisabled = false 129 this.btnDisabled = false
134 this.bsmSqyw = item.bsmSqyw 130 this.bsmSqyw = item.bsmSqyw
...@@ -222,6 +218,10 @@ export default { ...@@ -222,6 +218,10 @@ export default {
222 } 218 }
223 this.djqxList = [] 219 this.djqxList = []
224 }, 220 },
221 handleSelectItem (item, list) {
222 this.handleSelectYw(item, list)
223 this.isDialog = true
224 },
225 // 选择不动产信息 225 // 选择不动产信息
226 bthSelectClick () { 226 bthSelectClick () {
227 this.isDialog = true 227 this.isDialog = true
......