筛选租金回车触发
This commit is contained in:
@@ -109,9 +109,10 @@
|
|||||||
<div class="option-box flexacenter flex1 option-input-box">
|
<div class="option-box flexacenter flex1 option-input-box">
|
||||||
<div class="flex1">
|
<div class="flex1">
|
||||||
<input class="option-input" type="number" v-model="pitchValue['rent_min']"
|
<input class="option-input" type="number" v-model="pitchValue['rent_min']"
|
||||||
@blur="rentBlur" @input="rentInput" /><span style="font-size: 18px;">~</span><input class="option-input"
|
@blur="rentBlur" @input="rentInput" @keyup.enter="rentBlur" /><span
|
||||||
type="number" v-model="pitchValue['rent_max']" @blur="rentBlur"
|
style="font-size: 18px;">~</span><input class="option-input" type="number"
|
||||||
@input="rentInput" />HK$/月
|
v-model="pitchValue['rent_max']" @blur="rentBlur" @input="rentInput"
|
||||||
|
@keyup.enter="rentBlur" />HK$/月
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="eliminate flexcenter" @click="clearingAmount"
|
<div class="eliminate flexcenter" @click="clearingAmount"
|
||||||
@@ -748,6 +749,7 @@ let deleteSeachVal = (i) => {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
&:hover .btn-icon {
|
&:hover .btn-icon {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -178,7 +178,8 @@ const goapArtmentDetails = () => redirectToExternalWebsite(`/apartmentDetail?uni
|
|||||||
font-weight: 650;
|
font-weight: 650;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
height: 18px;
|
// height: 18px;
|
||||||
|
line-height: 18px;
|
||||||
background-color: rgba(253, 223, 109, 1);
|
background-color: rgba(253, 223, 109, 1);
|
||||||
border-radius: 9px;
|
border-radius: 9px;
|
||||||
padding: 0 8px;
|
padding: 0 8px;
|
||||||
|
|||||||
@@ -150,9 +150,9 @@
|
|||||||
=== '6' ? '租金预算' : '租金' }}</div>
|
=== '6' ? '租金预算' : '租金' }}</div>
|
||||||
<div class="dis-f al-item rent-box jus-bet">
|
<div class="dis-f al-item rent-box jus-bet">
|
||||||
<div class="dis-f al-item">
|
<div class="dis-f al-item">
|
||||||
<input type="number" class="input" v-model="rentObj.min" @blur="setRent">
|
<input type="number" class="input" v-model="rentObj.min" @blur="setRent" @keyup.enter="setRent">
|
||||||
<span class="tab-icon">~</span>
|
<span class="tab-icon">~</span>
|
||||||
<input type="number" class="input" v-model="rentObj.max" @blur="setRent">
|
<input type="number" class="input" v-model="rentObj.max" @blur="setRent" @keyup.enter="setRent">
|
||||||
<span class="unit-box">HK$/月</span>
|
<span class="unit-box">HK$/月</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="clean-btn dis-f al-item jus-x" v-show="rentObj.min || rentObj.max" @click="cleanRent">
|
<div class="clean-btn dis-f al-item jus-x" v-show="rentObj.min || rentObj.max" @click="cleanRent">
|
||||||
|
|||||||
Reference in New Issue
Block a user