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