|
@@ -17,7 +17,7 @@
|
|
|
<text>{{ queryInfo.minPrice }}-{{ queryInfo.maxPrice }}元</text>
|
|
<text>{{ queryInfo.minPrice }}-{{ queryInfo.maxPrice }}元</text>
|
|
|
</view>
|
|
</view>
|
|
|
<view style="padding: 0 40rpx;">
|
|
<view style="padding: 0 40rpx;">
|
|
|
- <uni-tianzai-slider-range :step="50" :min="0" :max="1000"
|
|
|
|
|
|
|
+ <uni-tianzai-slider-range :step="1" :min="0" :max="1000"
|
|
|
:value="[queryInfo.minPrice, queryInfo.maxPrice]" @change="onChange" @end="onEnd">
|
|
:value="[queryInfo.minPrice, queryInfo.maxPrice]" @change="onChange" @end="onEnd">
|
|
|
</uni-tianzai-slider-range>
|
|
</uni-tianzai-slider-range>
|
|
|
</view>
|
|
</view>
|
|
@@ -249,6 +249,7 @@
|
|
|
try {
|
|
try {
|
|
|
if (options) {
|
|
if (options) {
|
|
|
this.availableAmount = options.availableAmount;
|
|
this.availableAmount = options.availableAmount;
|
|
|
|
|
+ this.queryInfo.maxPrice = this.availableAmount;
|
|
|
}
|
|
}
|
|
|
// 获取定位城市信息
|
|
// 获取定位城市信息
|
|
|
const locationData = await LocationService.initLocation();
|
|
const locationData = await LocationService.initLocation();
|
|
@@ -360,6 +361,7 @@
|
|
|
},
|
|
},
|
|
|
//获取权益套餐列表
|
|
//获取权益套餐列表
|
|
|
async getbenefitPackageList() {
|
|
async getbenefitPackageList() {
|
|
|
|
|
+
|
|
|
let res = await this.$http.post('/rightsGrant/package/list', this.queryInfo);
|
|
let res = await this.$http.post('/rightsGrant/package/list', this.queryInfo);
|
|
|
if (res.code == 200) {
|
|
if (res.code == 200) {
|
|
|
res.data.records.map(val => {
|
|
res.data.records.map(val => {
|