爱尚家接口合并到cms-api.websoft.top

This commit is contained in:
2025-06-08 11:17:30 +08:00
parent 2c77a45e5d
commit 522281300f
8 changed files with 168 additions and 36 deletions

View File

@@ -272,32 +272,47 @@
this.list1 = [];
this.list2 = [];
this.page = 1
console.log('extentScene: ', this.where.extentScene);
if (text == '0-100㎡') {
this.where.extentScene = '100'
console.log(text,'text...')
if (text == '50平以下') {
this.where.extentStart = '0'
this.where.extentEnd = '50'
}
if (text == '100-150㎡') {
this.where.extentScene = '100-150'
if (text == '50~100平') {
this.where.extentStart = '50'
this.where.extentEnd = '100'
}
if (text == '150-200') {
this.where.extentScene = '150-200'
if (text == '100~200') {
this.where.extentStart = '100'
this.where.extentEnd = '200'
}
if (text == '200-300') {
this.where.extentScene = '200-300'
if (text == '200~300') {
this.where.extentStart = '200'
this.where.extentEnd = '300'
}
if (text == '300-400') {
this.where.extentScene = '300-400'
if (text == '300~500') {
this.where.extentStart = '300'
this.where.extentEnd = '500'
}
if (text == '400-600㎡') {
this.where.extentScene = '400-600'
this.where.extentStart = '100'
this.where.extentEnd = '200'
}
if (text == '600-1000') {
this.where.extentScene = '600-1000'
if (text == '500~1000') {
this.where.extentStart = '500'
this.where.extentEnd = '1000'
}
if (text == '1000以上') {
this.where.extentScene = '1000'
if (text == '1000以上') {
this.where.extentStart = '1000'
this.where.extentEnd = '20000'
}
if (text == '面积(大-小)'){
this.where.sort = 'extent'
this.where.order = 'desc'
}
if (text == '面积(小-大)'){
this.where.sort = 'extent'
this.where.order = 'asc'
}
this.onRefreshList()
// this.$push('/sub_pages/member/member', this.where)
},

View File

@@ -15,7 +15,7 @@
<view class="user-content">
<view class="nick-name">
<!-- {{ userInfo.certification }} -->
<text>{{ userInfo.nickname }}</text>
<text>{{ userInfo.nickname }}-{{ userInfo.userId }}</text>
<image v-if="userInfo.sex == 1" src="../../static/icon/sex_man.png" mode="widthFix"></image>
<image v-if="userInfo.sex == 2" src="../../static/icon/sex_woman.png" mode="widthFix"></image>
</view>