Commit 5e7897f2 authored by 王玉鑫's avatar 王玉鑫

feat: 土地列表筛选

parent e2fe0da5
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
</div> </div>
</div> </div>
</div> </div>
<div v-show="activeBar !== 1"> <div>
<dropdown-vue <dropdown-vue
ref="dropDown" ref="dropDown"
:menuList="$u.deepClone(menuList[activeBar])" :menuList="$u.deepClone(menuList[activeBar])"
...@@ -95,7 +95,7 @@ ...@@ -95,7 +95,7 @@
> >
</u-empty> </u-empty>
</view> </view>
<div v-else class="content z-100"> <div v-else class="content z-100" :class="{'no-filter': activeBar === 1}">
<map id="mapId" @markertap="handleMarkerClick" @callouttap="handleMarkerClick" :scale='10' style="width: 100%;height: calc(100vh - 246rpx)" latitude="31.464086" longitude="116.944909" class="map" :markers="markers"> <map id="mapId" @markertap="handleMarkerClick" @callouttap="handleMarkerClick" :scale='10' style="width: 100%;height: calc(100vh - 246rpx)" latitude="31.464086" longitude="116.944909" class="map" :markers="markers">
</map> </map>
<div v-if="activeInfo.id" :key="activeInfo.id" @click="toDetail(activeInfo)" style="position: fixed;padding: 0 30rpx;bottom: 30rpx;width: 100vw;z-index: 999;box-sizing: border-box;"> <div v-if="activeInfo.id" :key="activeInfo.id" @click="toDetail(activeInfo)" style="position: fixed;padding: 0 30rpx;bottom: 30rpx;width: 100vw;z-index: 999;box-sizing: border-box;">
...@@ -148,18 +148,18 @@ export default { ...@@ -148,18 +148,18 @@ export default {
}, },
], ],
[ [
// { {
// id: 1, id: 1,
// name: "土地类型", name: "土地类型",
// isMultiple: false, //是否多选 isMultiple: false, //是否多选
// showType: 3, //下拉框类型(1、2、3、4) showType: 3, //下拉框类型(1、2、3、4)
// }, },
// { {
// id: 2, id: 2,
// name: "面积", name: "面积",
// isMultiple: false, //是否多选 isMultiple: false, //是否多选
// showType: 3, //下拉框类型(1、2、3、4) showType: 3, //下拉框类型(1、2、3、4)
// }, },
], ],
[ [
{ {
...@@ -243,6 +243,8 @@ export default { ...@@ -243,6 +243,8 @@ export default {
carrier_type: 'carrierType', carrier_type: 'carrierType',
carrier_construction: 'carrierConstruction', carrier_construction: 'carrierConstruction',
carrier_area: 'carrierArea', carrier_area: 'carrierArea',
land_type: 'landType',
land_area: 'area',
} }
const result = Object.entries(params).map(([key, value]) => { const result = Object.entries(params).map(([key, value]) => {
const target = config[key]; const target = config[key];
...@@ -448,7 +450,7 @@ export default { ...@@ -448,7 +450,7 @@ export default {
.content { .content {
padding-top: 250rpx + 20rpx; padding-top: 250rpx + 20rpx;
&.no-filter { &.no-filter {
padding-top: 250rpx + 20rpx - 80rpx; // padding-top: 250rpx + 20rpx - 80rpx;
} }
} }
.media-card { .media-card {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment