修改big
This commit is contained in:
@@ -44,7 +44,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</el-popover>
|
||||
<div class="seach-btn dis-f al-item jus-x" @click="handleKeyword(pitchValue['keyword'])">
|
||||
<div class="seach-btn dis-f al-item jus-x" @click="pitchValue['keyword'] ? handleKeyword(pitchValue['keyword']) : ''">
|
||||
<img src="../../assets/homeImage/seachImg.svg" class="img" alt="">
|
||||
搜索
|
||||
</div>
|
||||
@@ -267,9 +267,7 @@ const rentInput = () => clearingAmountState = false
|
||||
|
||||
// 点击历史搜索和热门推荐
|
||||
const handleKeyword = value => {
|
||||
|
||||
router.push(`/seachPage?keyword=${value}`)
|
||||
|
||||
if (historyArr.value.indexOf(value) == -1 && value) {
|
||||
historyArr.value.unshift(value)
|
||||
storingHistory()
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<el-carousel-item v-for="(item, i) in list" :key="i">
|
||||
<div class="dis-f jus-x al-item" v-if="item">
|
||||
<div class="img-box dis-f jus-x" style="width:600px" v-if="item['type'] != 'attachment'">
|
||||
<video autoplay="false" controls :src="item.url || item['videourl']"></video>
|
||||
<video :autoplay="false" controls :src="item.url || item['videourl']"></video>
|
||||
</div>
|
||||
<div class="img-box dis-f jus-x" v-else>
|
||||
<img v-lazy="item && item.url || item['imageurl'] || item['image']" class="img" alt="">
|
||||
|
||||
@@ -93,7 +93,11 @@ async function init() {
|
||||
let data = res.data
|
||||
identityList.value = data.data
|
||||
housingnum.value = data.housingnum
|
||||
// housingnum.value = 10
|
||||
isintermediary.value = data.isintermediary
|
||||
// isintermediary.value = 1
|
||||
|
||||
// console.log("data.isintermediary",data.isintermediary);
|
||||
if (data['ispopup'] == 0) overallJump()
|
||||
else popType.value = 'choice'
|
||||
}).finally(() => {
|
||||
@@ -127,6 +131,7 @@ let overallJump = () => {
|
||||
let confirmIntermediary = (isintermediary) => {
|
||||
if (isintermediary == 1) identityKey.value = 1
|
||||
overallJump()
|
||||
// return
|
||||
proxy.$post("/tenement/pc/api/publish/submitidentity", {
|
||||
isintermediary
|
||||
}).then(res => {
|
||||
|
||||
@@ -72,13 +72,14 @@ const goapArtmentDetails = () => router.push(`/apartmentDetail?uniqid=${props['i
|
||||
color: #000000;
|
||||
margin-bottom: 10px;
|
||||
padding-left: 6px;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.hint {
|
||||
color: #AAAAAA;
|
||||
font-size: 14px;
|
||||
margin: 0 6px 20px;
|
||||
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.tab-box {
|
||||
|
||||
@@ -76,6 +76,12 @@ const toConsumableArray = (arr) => {
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped>
|
||||
@media screen and (max-width: 1360px) {
|
||||
.btn {
|
||||
right: 20px !important;
|
||||
}
|
||||
}
|
||||
|
||||
.btn {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
@@ -85,7 +91,6 @@ const toConsumableArray = (arr) => {
|
||||
position: fixed;
|
||||
bottom: 98px;
|
||||
right: calc((100vw - 1200px) / 2 - 75px);
|
||||
|
||||
border: 1px solid #d7d7d7;
|
||||
border-radius: 50%;
|
||||
background-color: #fff;
|
||||
|
||||
Reference in New Issue
Block a user