|
@@ -49,7 +49,7 @@
|
|
|
<text>{{child.checkItemName}}</text>
|
|
|
</view>
|
|
|
<image src="../../static/tuli.png"
|
|
|
- @click="goLegendDetails(child.checkItemId)"></image>
|
|
|
+ @click="goLegendDetails($event ,child.checkItemId)"></image>
|
|
|
</view>
|
|
|
<view class="children">
|
|
|
<view class="child">
|
|
@@ -75,6 +75,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+ import {_stopPropagation} from "../../utils/compatible.js";
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
@@ -173,7 +174,8 @@
|
|
|
});
|
|
|
}
|
|
|
},
|
|
|
- goLegendDetails(checkItemId) {
|
|
|
+ goLegendDetails(e, checkItemId) {
|
|
|
+ _stopPropagation(e);
|
|
|
//跳转到图例详情
|
|
|
uni.navigateTo({
|
|
|
url: `/pages/legendDetails/legendDetails?checkItemId=${checkItemId}`
|