|
@ -14,6 +14,7 @@ |
|
|
<view class="select-dialog" @tap.stop="" :style="{ backgroundColor: bgColor }"> |
|
|
<view class="select-dialog" @tap.stop="" :style="{ backgroundColor: bgColor }"> |
|
|
<view class="title-main"> |
|
|
<view class="title-main"> |
|
|
<text class="title-detail">{{ title }}</text> |
|
|
<text class="title-detail">{{ title }}</text> |
|
|
|
|
|
<image src="../../static/close2.png" class="close-icon" @click="closePop"></image> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
|
|
|
<view v-if="showSearch" class="search-box"> |
|
|
<view v-if="showSearch" class="search-box"> |
|
@ -156,6 +157,9 @@ |
|
|
}, |
|
|
}, |
|
|
created() {}, |
|
|
created() {}, |
|
|
methods: { |
|
|
methods: { |
|
|
|
|
|
closePop(){ |
|
|
|
|
|
this.hideModal() |
|
|
|
|
|
}, |
|
|
handleSearch() { |
|
|
handleSearch() { |
|
|
this.$emit('search', this.searchInput) |
|
|
this.$emit('search', this.searchInput) |
|
|
}, |
|
|
}, |
|
@ -320,6 +324,12 @@ |
|
|
padding: 30rpx 0; |
|
|
padding: 30rpx 0; |
|
|
/* border-bottom: 1rpx solid #e6e1e1; */ |
|
|
/* border-bottom: 1rpx solid #e6e1e1; */ |
|
|
} |
|
|
} |
|
|
|
|
|
.close-icon{ |
|
|
|
|
|
width: 20px; |
|
|
|
|
|
height: 20px; |
|
|
|
|
|
padding: 30rpx 0; |
|
|
|
|
|
margin-right: 10px; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
.selectIcon { |
|
|
.selectIcon { |
|
|
font-family: 'selectIcon' !important; |
|
|
font-family: 'selectIcon' !important; |
|
|