Compare commits
7 Commits
fd462f66bb
...
814c59cba4
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
814c59cba4 | ||
|
|
ea3566baa6 | ||
|
|
ec382aacf1 | ||
|
|
9bd2f0c1ea | ||
|
|
9b58416ed4 | ||
|
|
dddee35084 | ||
|
|
62a0e5c7d7 |
@ -243,9 +243,9 @@ export default {
|
|||||||
receiving_address: data.merchantAddress,
|
receiving_address: data.merchantAddress,
|
||||||
change_goods_id: data.changeServiceId
|
change_goods_id: data.changeServiceId
|
||||||
}
|
}
|
||||||
// request(afterSaleApi.afterSaleCreate, "POST", params).then((res) => {
|
request(afterSaleApi.afterSaleCreate, "POST", params).then((res) => {
|
||||||
// this.getOrderList();
|
this.getOrderList();
|
||||||
// });
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
@ -376,8 +376,8 @@ export default {
|
|||||||
evaluate_status: this.evaluateStatus,
|
evaluate_status: this.evaluateStatus,
|
||||||
user_id: uni.getStorageSync("userId"),
|
user_id: uni.getStorageSync("userId"),
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
res.order_list.forEach(item => {
|
res.order_list?.forEach(item => {
|
||||||
item.commodity_order_item_list.forEach(good => {
|
item.commodity_order_item_list?.forEach(good => {
|
||||||
good.commodity_pic = picUrl + good.commodity_pic;
|
good.commodity_pic = picUrl + good.commodity_pic;
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
@ -390,7 +390,7 @@ export default {
|
|||||||
user_id: uni.getStorageSync('userId'),
|
user_id: uni.getStorageSync('userId'),
|
||||||
}
|
}
|
||||||
request(afterSaleApi.afterSalesList, "POST", params).then((res) => {
|
request(afterSaleApi.afterSalesList, "POST", params).then((res) => {
|
||||||
res.after_sales_list.forEach(item => {
|
res.after_sales_list?.forEach(item => {
|
||||||
item.commodity_order_item?.forEach(good => {
|
item.commodity_order_item?.forEach(good => {
|
||||||
good.commodity_pic = picUrl + good.commodity_pic;
|
good.commodity_pic = picUrl + good.commodity_pic;
|
||||||
})
|
})
|
||||||
|
|||||||
@ -18,14 +18,14 @@
|
|||||||
<view class="amount-item" @tap="toggleAmountExpand">
|
<view class="amount-item" @tap="toggleAmountExpand">
|
||||||
<text class="amount-label">实付金额</text>
|
<text class="amount-label">实付金额</text>
|
||||||
<view class="amount-value">
|
<view class="amount-value">
|
||||||
<text>¥{{ orderDetail.pay_method }}</text>
|
<text>¥{{ orderDetail.pay_method/100 }}</text>
|
||||||
<u-icon :name="amountExpanded ? 'arrow-up' : 'arrow-down'" size="28"></u-icon>
|
<u-icon :name="amountExpanded ? 'arrow-up' : 'arrow-down'" size="28"></u-icon>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="amount-item" v-show="amountExpanded">
|
<view class="amount-item" v-show="amountExpanded">
|
||||||
<text class="amount-label2">订单金额</text>
|
<text class="amount-label2">订单金额</text>
|
||||||
<text>¥{{ orderDetail.pay_method }}</text>
|
<text>¥{{ orderDetail.pay_method/100 }}</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
<view class="info-item">
|
<view class="info-item">
|
||||||
<text class="info-label">车牌号码</text>
|
<text class="info-label">车牌号码</text>
|
||||||
<text>{{ orderDetail.parking_record.car_number }}</text>
|
<text>{{ orderDetail.record_info.car_number }}</text>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="info-item">
|
<view class="info-item">
|
||||||
@ -44,8 +44,11 @@
|
|||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="info-item">
|
<view class="info-item">
|
||||||
<text class="info-label">停车时长</text>
|
<!-- <text class="info-label">停车时长</text>
|
||||||
<text>{{ calculateParkingDuration() }}</text>
|
<text>{{ calculateParkingDuration() }}</text> -->
|
||||||
|
|
||||||
|
<text class="info-label">计费时长</text>
|
||||||
|
<text>{{ getTime(orderDetail.billing_time) }}</text>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="info-item">
|
<view class="info-item">
|
||||||
@ -118,13 +121,26 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
// 计算停车时长
|
// 计算停车时长
|
||||||
|
getTime(time) {
|
||||||
|
if (!time) {
|
||||||
|
return '0分钟';
|
||||||
|
}
|
||||||
|
const hourVal = Math.floor(time/60);
|
||||||
|
const minuteVal = time%60;
|
||||||
|
if (hourVal === 0) {
|
||||||
|
return `${minuteVal}分钟`;
|
||||||
|
}
|
||||||
|
return `${hourVal}小时${minuteVal}分钟`
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
calculateParkingDuration() {
|
calculateParkingDuration() {
|
||||||
if (!this.orderDetail || !this.orderDetail.parking_record) {
|
if (!this.orderDetail || !this.orderDetail.record_info) {
|
||||||
return '0分钟';
|
return '0分钟';
|
||||||
}
|
}
|
||||||
|
|
||||||
const inTime = new Date(this.orderDetail.parking_record.in_time);
|
const inTime = new Date(this.orderDetail.record_info.in_time);
|
||||||
const outTime = new Date(this.orderDetail.parking_record.out_time);
|
const outTime = new Date(this.orderDetail.record_info.out_time);
|
||||||
|
|
||||||
// 计算时间差(毫秒)
|
// 计算时间差(毫秒)
|
||||||
const diffMs = outTime - inTime;
|
const diffMs = outTime - inTime;
|
||||||
|
|||||||
@ -68,7 +68,7 @@
|
|||||||
|
|
||||||
<!-- 停车费展示部分 -->
|
<!-- 停车费展示部分 -->
|
||||||
<view v-if="showCost1">
|
<view v-if="showCost1">
|
||||||
<view v-if="payStatus === 2" class="cost-container">
|
<view v-if="payStatus === 1" class="cost-container">
|
||||||
<view>
|
<view>
|
||||||
<image class="cost-image"
|
<image class="cost-image"
|
||||||
src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/park/park_orderLoading.png"
|
src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/park/park_orderLoading.png"
|
||||||
@ -381,7 +381,7 @@ export default {
|
|||||||
this.isTimeout = false;
|
this.isTimeout = false;
|
||||||
|
|
||||||
// 如果是已支付状态(pay_status=1)
|
// 如果是已支付状态(pay_status=1)
|
||||||
if (this.payStatus === 1 && this.payTime) {
|
if (this.payStatus === 2 && this.payTime) {
|
||||||
// 计算并显示倒计时
|
// 计算并显示倒计时
|
||||||
this.updateCountdown();
|
this.updateCountdown();
|
||||||
// 设置定时器,每秒更新一次倒计时
|
// 设置定时器,每秒更新一次倒计时
|
||||||
|
|||||||
@ -537,9 +537,34 @@ export default {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 团购活动时间判断
|
||||||
|
const currentTime = new Date().getTime();
|
||||||
|
let isGroupBuyValid = true;
|
||||||
|
|
||||||
|
// 检查所有商品是否在团购活动时间内
|
||||||
|
for (let supplierId in this.supplierGroups) {
|
||||||
|
const group = this.supplierGroups[supplierId];
|
||||||
|
for (let item of group) {
|
||||||
|
const activityInfo = item.commodity_goods_info.group_buy_activity_info;
|
||||||
|
// 如果没有团购活动信息,或者不在活动时间内,则isGroupBuyValid设为false
|
||||||
|
if (!activityInfo) {
|
||||||
|
isGroupBuyValid = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
const startTime = new Date(activityInfo.start_time).getTime();
|
||||||
|
const endTime = new Date(activityInfo.end_time).getTime();
|
||||||
|
if (!(currentTime >= startTime && currentTime <= endTime)) {
|
||||||
|
isGroupBuyValid = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!isGroupBuyValid) break;
|
||||||
|
}
|
||||||
|
|
||||||
const params = {
|
const params = {
|
||||||
user_id: uni.getStorageSync('userId'),
|
user_id: uni.getStorageSync('userId'),
|
||||||
is_group_buy: true,
|
is_group_buy: isGroupBuyValid,
|
||||||
goods_list: Object.keys(this.supplierGroups).map(supplierId => {
|
goods_list: Object.keys(this.supplierGroups).map(supplierId => {
|
||||||
const group = this.supplierGroups[supplierId];
|
const group = this.supplierGroups[supplierId];
|
||||||
const firstItem = group[0];
|
const firstItem = group[0];
|
||||||
@ -550,9 +575,6 @@ export default {
|
|||||||
// 根据供应商id获取自提点信息
|
// 根据供应商id获取自提点信息
|
||||||
const ztAddress = this.defZTAddress.find(adItem => adItem.id == supplierId) || {};
|
const ztAddress = this.defZTAddress.find(adItem => adItem.id == supplierId) || {};
|
||||||
|
|
||||||
// 团购活动时间判断
|
|
||||||
const currentTime = new Date().getTime();
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
supplier_id: firstItem.supplier_id,
|
supplier_id: firstItem.supplier_id,
|
||||||
supplier_name: firstItem.supplier_name || '',
|
supplier_name: firstItem.supplier_name || '',
|
||||||
@ -562,9 +584,10 @@ export default {
|
|||||||
receiving_address: ztAddress.address || '',
|
receiving_address: ztAddress.address || '',
|
||||||
group_buy_activity_id: firstItem.commodity_goods_info.group_buy_activity_id,
|
group_buy_activity_id: firstItem.commodity_goods_info.group_buy_activity_id,
|
||||||
goods_and_count: group.map(item => {
|
goods_and_count: group.map(item => {
|
||||||
const startTime = new Date(item.commodity_goods_info.group_buy_activity_info?.start_time).getTime();
|
const activityInfo = item.commodity_goods_info.group_buy_activity_info;
|
||||||
const endTime = new Date(item.commodity_goods_info.group_buy_activity_info?.end_time).getTime();
|
const isGroupBuy = activityInfo &&
|
||||||
const isGroupBuy = currentTime >= startTime && currentTime <= endTime;
|
currentTime >= new Date(activityInfo.start_time).getTime() &&
|
||||||
|
currentTime <= new Date(activityInfo.end_time).getTime();
|
||||||
return {
|
return {
|
||||||
goods_id: item.goods_id,
|
goods_id: item.goods_id,
|
||||||
count: item.count,
|
count: item.count,
|
||||||
|
|||||||
@ -1,3 +1,7 @@
|
|||||||
|
page{
|
||||||
|
overflow-y: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
.not_found_404 {
|
.not_found_404 {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@ -37,6 +41,13 @@
|
|||||||
background-color: #f9f9f9;
|
background-color: #f9f9f9;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mainBox{
|
||||||
|
height: 80.5vh;
|
||||||
|
margin-top: 10rpx;
|
||||||
|
overflow-y: auto;
|
||||||
|
overflow-x: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
.hot-word-container {
|
.hot-word-container {
|
||||||
width: 60%;
|
width: 60%;
|
||||||
height: 50rpx;
|
height: 50rpx;
|
||||||
@ -79,7 +90,7 @@ page {
|
|||||||
.grid_Pic {
|
.grid_Pic {
|
||||||
width: 80rpx;
|
width: 80rpx;
|
||||||
height: 80rpx;
|
height: 80rpx;
|
||||||
margin-bottom: 15rpx;
|
margin-bottom: 10rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.searchBox {
|
.searchBox {
|
||||||
@ -87,6 +98,7 @@ page {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
background-color: #FFFFFF;
|
background-color: #FFFFFF;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
padding-bottom: 10rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.searchBox_add {
|
.searchBox_add {
|
||||||
@ -497,6 +509,7 @@ page {
|
|||||||
box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
|
box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
padding-top: 90rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tabs-container {
|
.tabs-container {
|
||||||
@ -504,6 +517,7 @@ page {
|
|||||||
padding: 0 20rpx;
|
padding: 0 20rpx;
|
||||||
position: relative;
|
position: relative;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
background-color: #FFFFFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tabs-scroll {
|
.tabs-scroll {
|
||||||
@ -522,7 +536,7 @@ page {
|
|||||||
.tab-item {
|
.tab-item {
|
||||||
padding: 0 20rpx;
|
padding: 0 20rpx;
|
||||||
margin-right: 20rpx;
|
margin-right: 20rpx;
|
||||||
font-size: 20rpx;
|
font-size: 24rpx;
|
||||||
color: #333;
|
color: #333;
|
||||||
background-color: #ededed;
|
background-color: #ededed;
|
||||||
height: 50rpx;
|
height: 50rpx;
|
||||||
@ -623,7 +637,7 @@ page {
|
|||||||
|
|
||||||
.overlay {
|
.overlay {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 90rpx;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
@ -739,6 +753,7 @@ page {
|
|||||||
padding: 0 20rpx;
|
padding: 0 20rpx;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.merchantList2 {}
|
.merchantList2 {}
|
||||||
|
|||||||
@ -9,169 +9,171 @@
|
|||||||
</view>
|
</view>
|
||||||
<view v-else>
|
<view v-else>
|
||||||
<view class="container" :style="{ marginTop: top + 'px' }" v-if="loading">
|
<view class="container" :style="{ marginTop: top + 'px' }" v-if="loading">
|
||||||
<view class="white_container">
|
<!-- 城市信息部分 -->
|
||||||
<!-- 城市信息部分 -->
|
<view class="white_container searchBox" :style="{ height: localHeight + 'px' }">
|
||||||
<view class="searchBox" :style="{ height: localHeight + 'px' }">
|
<view class="searchBox_add" @tap="map">
|
||||||
<view class="searchBox_add" @tap="map">
|
<image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/Index_add.png" mode="widthFix" />
|
||||||
<image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/Index_add.png" mode="widthFix" />
|
<view>
|
||||||
<view>
|
{{ currentCity.cityName || '选择城市' }}
|
||||||
{{ currentCity.cityName || '选择城市' }}
|
|
||||||
</view>
|
|
||||||
</view>
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
<!-- 搜索框 -->
|
<!-- 搜索框 -->
|
||||||
<view class="search2" v-if="isShowSearch">
|
<view class="search2" v-if="isShowSearch">
|
||||||
<view class="searchBox2">
|
<view class="searchBox2">
|
||||||
<image
|
<image
|
||||||
src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_communitySearchIcon.png"
|
src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_communitySearchIcon.png"
|
||||||
mode="aspectFill"></image>
|
mode="aspectFill"></image>
|
||||||
<view class="hot-word-container">
|
<view class="hot-word-container">
|
||||||
<view class="hot-word-scroll" :style="{ transform: 'translateY(' + scrollPosition + 'rpx)' }">
|
<view class="hot-word-scroll" :style="{ transform: 'translateY(' + scrollPosition + 'rpx)' }">
|
||||||
<view v-for="(word, index) in hotWord" :key="index" class="hot-word-item"
|
<view v-for="(word, index) in hotWord" :key="index" class="hot-word-item"
|
||||||
@click="handleHotWordClick(word)">
|
@click="handleHotWordClick(word)">
|
||||||
{{ word }}
|
{{ word }}
|
||||||
</view>
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<input class="search_input" placeholder='请输入内容' confirm-type='search' @input="searchInput"
|
|
||||||
@confirm="searchInput" :value="selectKeyWord" />
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
<input class="search_input" placeholder='请输入内容' confirm-type='search' @input="searchInput"
|
||||||
</view>
|
@confirm="searchInput" :value="selectKeyWord" />
|
||||||
<!-- 功能导航区 -->
|
|
||||||
<view class="function-nav" v-if="showNav">
|
|
||||||
<view class="function-item" @click="goToShop">
|
|
||||||
<view class="icon-box">
|
|
||||||
<image class="iconImg" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/index_shop.png"
|
|
||||||
mode="widthFix" />
|
|
||||||
</view>
|
|
||||||
<text>店铺管理</text>
|
|
||||||
</view>
|
|
||||||
<view class="function-item" @click="goToOrder">
|
|
||||||
<view class="icon-box">
|
|
||||||
<image class="iconImg" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/index_order.png"
|
|
||||||
mode="widthFix" />
|
|
||||||
</view>
|
|
||||||
<text>供应商订单</text>
|
|
||||||
</view>
|
|
||||||
<view class="function-item" @click="goToWuye">
|
|
||||||
<view class="icon-box">
|
|
||||||
<image class="iconImg" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/index_wuye.png"
|
|
||||||
mode="widthFix" />
|
|
||||||
</view>
|
|
||||||
<text>物业管理</text>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<!-- 轮播图 -->
|
|
||||||
<view class="swiper">
|
|
||||||
<swiper @animationfinish="swipers" autoplay circular>
|
|
||||||
<!-- <swiper-item v-for="(item, index) in bannerList" :key="index" @click="headerServerClick(item)"> -->
|
|
||||||
<swiper-item v-for="(item, index) in bannerList" :key="index">
|
|
||||||
<image :src="item.pic_src" mode="aspectFill" />
|
|
||||||
</swiper-item>
|
|
||||||
</swiper>
|
|
||||||
|
|
||||||
<view class="cirList">
|
|
||||||
<view :class="['cir', currentIdx == index ? 'active' : '']" v-for="(item, index) in bannerList"
|
|
||||||
:key="index">
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
|
|
||||||
<!-- 宫格列表 -->
|
|
||||||
<view class="tabList">
|
|
||||||
<u-grid :col="rowNum" :border="false">
|
|
||||||
<u-grid-item v-for="(item, index) in tabList" @click="headerServerClick(item)" :key="index">
|
|
||||||
<image class="grid_Pic" :src="item.icon_src" mode="aspectFill"></image>
|
|
||||||
<text>{{ item.title }}</text>
|
|
||||||
</u-grid-item>
|
|
||||||
</u-grid>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
|
|
||||||
<!-- 广告横幅 -->
|
|
||||||
<view class="serverList1">
|
|
||||||
<view class="serverList1_left">
|
|
||||||
<!-- <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/index_ad_left.jpg" mode="aspectFit" /> -->
|
|
||||||
<image :src="serverLeft" mode="aspectFit" />
|
|
||||||
</view>
|
|
||||||
<view class="serverList1_right">
|
|
||||||
<view :class="['serverItemRight', `serverItemRight${index + 1}`]" @tap="headerServerClick(item)"
|
|
||||||
v-for="(item, index) in serverRightList" :key="index">
|
|
||||||
<image :src="item.pic_src" mode="" />
|
|
||||||
<!-- <view>{{ item.ad_position }}</view> -->
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
<view class="mainBox" ref="mainBox">
|
||||||
<view class="white_container margin_top20 padding_bottom32">
|
<view class="white_container">
|
||||||
<view v-if="!currentCity.district" class="Tit">定位错误 未知区域</view>
|
<!-- 功能导航区 -->
|
||||||
<view v-else class="Tit">
|
<view class="function-nav" v-if="showNav">
|
||||||
<view class="local">{{ currentCity.district }}</view>附近
|
<view class="function-item" @click="goToShop">
|
||||||
<view class="Tit_desc">一刻钟便利生活圈</view>
|
<view class="icon-box">
|
||||||
</view>
|
<image class="iconImg" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/index_shop.png"
|
||||||
<view class="serverList">
|
mode="widthFix" />
|
||||||
<view class="serverList_left">
|
</view>
|
||||||
<swiper>
|
<text>店铺管理</text>
|
||||||
<swiper-item v-for="(item, index) in homeLeftList" :key="index" @click="headerServerClick(item)">
|
</view>
|
||||||
<image :src="item.pic_src" alt="" />
|
<view class="function-item" @click="goToOrder">
|
||||||
<!-- <view>{{ item.ad_position }}</view> -->
|
<view class="icon-box">
|
||||||
|
<image class="iconImg" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/index_order.png"
|
||||||
|
mode="widthFix" />
|
||||||
|
</view>
|
||||||
|
<text>供应商订单</text>
|
||||||
|
</view>
|
||||||
|
<view class="function-item" @click="goToWuye">
|
||||||
|
<view class="icon-box">
|
||||||
|
<image class="iconImg" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/index_wuye.png"
|
||||||
|
mode="widthFix" />
|
||||||
|
</view>
|
||||||
|
<text>物业管理</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<!-- 轮播图 -->
|
||||||
|
<view class="swiper">
|
||||||
|
<swiper @animationfinish="swipers" autoplay circular>
|
||||||
|
<!-- <swiper-item v-for="(item, index) in bannerList" :key="index" @click="headerServerClick(item)"> -->
|
||||||
|
<swiper-item v-for="(item, index) in bannerList" :key="index">
|
||||||
|
<image :src="item.pic_src" mode="aspectFill" />
|
||||||
</swiper-item>
|
</swiper-item>
|
||||||
</swiper>
|
</swiper>
|
||||||
</view>
|
|
||||||
|
|
||||||
<view class="serverList_right">
|
<view class="cirList">
|
||||||
<view class="serverList_right1">
|
<view :class="['cir', currentIdx == index ? 'active' : '']" v-for="(item, index) in bannerList"
|
||||||
<view :class="['serverItem', `serverItem${index + 1}`]" @click="headerServerClick2(item)"
|
:key="index">
|
||||||
v-for="(item, index) in homeRightList1" :key="index">
|
|
||||||
<view class="serverTit">{{ item.title }}</view>
|
|
||||||
<image v-if="item.pic_src" :src="item.pic_src" mode="" />
|
|
||||||
<!-- <view>{{ item.ad_position }}</view> -->
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="serverList_right2">
|
</view>
|
||||||
<view :class="['serverItem', `serverItem${index + 4}`]" @click="headerServerClick2(item)"
|
|
||||||
v-for="(item, index) in homeRightList2" :key="index">
|
<!-- 宫格列表 -->
|
||||||
<view class="serverTit">{{ item.title }}</view>
|
<view class="tabList">
|
||||||
<image :src="item.pic_src" mode="" />
|
<u-grid :col="rowNum" :border="false">
|
||||||
<!-- <view>{{ item.ad_position }}</view> -->
|
<u-grid-item v-for="(item, index) in tabList" @click="headerServerClick(item)" :key="index">
|
||||||
</view>
|
<image class="grid_Pic" :src="item.icon_src" mode="aspectFill"></image>
|
||||||
|
<text>{{ item.title }}</text>
|
||||||
|
</u-grid-item>
|
||||||
|
</u-grid>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- 广告横幅 -->
|
||||||
|
<view class="serverList1">
|
||||||
|
<view class="serverList1_left">
|
||||||
|
<!-- <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/index_ad_left.jpg" mode="aspectFit" /> -->
|
||||||
|
<image :src="serverLeft" mode="aspectFit" />
|
||||||
|
</view>
|
||||||
|
<view class="serverList1_right">
|
||||||
|
<view :class="['serverItemRight', `serverItemRight${index + 1}`]" @tap="headerServerClick(item)"
|
||||||
|
v-for="(item, index) in serverRightList" :key="index">
|
||||||
|
<image :src="item.pic_src" mode="" />
|
||||||
|
<!-- <view>{{ item.ad_position }}</view> -->
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<!-- <view class="merchant" @click="headershopEnterClick">商户申请入驻</view> -->
|
|
||||||
</view>
|
|
||||||
|
|
||||||
<!-- <view class="white_container margin_top20 main padding_bottom32">
|
<view class="white_container margin_top20 padding_bottom32">
|
||||||
|
<view v-if="!currentCity.district" class="Tit">定位错误 未知区域</view>
|
||||||
|
<view v-else class="Tit">
|
||||||
|
<view class="local">{{ currentCity.district }}</view>附近
|
||||||
|
<view class="Tit_desc">一刻钟便利生活圈</view>
|
||||||
|
</view>
|
||||||
|
<view class="serverList">
|
||||||
|
<view class="serverList_left">
|
||||||
|
<swiper>
|
||||||
|
<swiper-item v-for="(item, index) in homeLeftList" :key="index" @click="headerServerClick(item)">
|
||||||
|
<image :src="item.pic_src" alt="" />
|
||||||
|
<!-- <view>{{ item.ad_position }}</view> -->
|
||||||
|
</swiper-item>
|
||||||
|
</swiper>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view class="serverList_right">
|
||||||
|
<view class="serverList_right1">
|
||||||
|
<view :class="['serverItem', `serverItem${index + 1}`]" @click="headerServerClick2(item)"
|
||||||
|
v-for="(item, index) in homeRightList1" :key="index">
|
||||||
|
<view class="serverTit">{{ item.title }}</view>
|
||||||
|
<image v-if="item.pic_src" :src="item.pic_src" mode="" />
|
||||||
|
<!-- <view>{{ item.ad_position }}</view> -->
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="serverList_right2">
|
||||||
|
<view :class="['serverItem', `serverItem${index + 4}`]" @click="headerServerClick2(item)"
|
||||||
|
v-for="(item, index) in homeRightList2" :key="index">
|
||||||
|
<view class="serverTit">{{ item.title }}</view>
|
||||||
|
<image :src="item.pic_src" mode="aspectFill" />
|
||||||
|
<!-- <view>{{ item.ad_position }}</view> -->
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<!-- <view class="merchant" @click="headershopEnterClick">商户申请入驻</view> -->
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- <view class="white_container margin_top20 main padding_bottom32">
|
||||||
<image v-for="(item, index) in bottomList" :key="index" class="list_pic" :src="item.pic_src" mode="">
|
<image v-for="(item, index) in bottomList" :key="index" class="list_pic" :src="item.pic_src" mode="">
|
||||||
</image>
|
</image>
|
||||||
</view> -->
|
</view> -->
|
||||||
<!-- 分类标签栏 -->
|
<!-- 分类标签栏已移至mainBox下方作为子盒子,保持视觉位置不变 -->
|
||||||
<view class="category-tabs">
|
<u-sticky>
|
||||||
<view class="tabs-container">
|
<view class="tabs-container">
|
||||||
<scroll-view scroll-x enable-flex class="tabs-scroll" :scroll-into-view="activeCategoryId">
|
<scroll-view scroll-x enable-flex class="tabs-scroll" :scroll-into-view="activeCategoryId">
|
||||||
<view class="tab-item" v-for="item in categoryList1" :key="item.id" :id="'category-' + item.id"
|
<view class="tab-item" v-for="item in categoryList1" :key="item.id" :id="'category-' + item.id"
|
||||||
:class="{ activeTab: currentCategoryId === item.id }" @click="switchCategory(item.id)">
|
:class="{ activeTab: currentCategoryId === item.id }" @click="switchCategory(item.id)">
|
||||||
{{ item.cate_name }}
|
{{ item.cate_name }}
|
||||||
</view>
|
</view>
|
||||||
</scroll-view>
|
</scroll-view>
|
||||||
<view class="dropdown-btn" :class="{ active: showDropdown }" @click="toggleDropdown">
|
<view class="dropdown-btn" :class="{ active: showDropdown }" @click="toggleDropdown">
|
||||||
<u-icon v-if="!showDropdown" name="arrow-down" class="dropdown-icon"></u-icon>
|
<u-icon v-if="!showDropdown" name="arrow-down" class="dropdown-icon"></u-icon>
|
||||||
<u-icon v-else name="arrow-up" class="dropdown-icon active"></u-icon>
|
<u-icon v-else name="arrow-up" class="dropdown-icon active"></u-icon>
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
|
|
||||||
<!-- 分类下拉列表 -->
|
|
||||||
<view class="category-dropdown" v-if="showDropdown">
|
|
||||||
<view class="dropdown-title">商品分类</view>
|
|
||||||
<view class="category-grid">
|
|
||||||
<view class="category-grid-item" v-for="item in categoryList" :key="item.id"
|
|
||||||
:class="{ activeTab: currentCategoryId === item.id }" @click="selectCategoryFromDropdown(item.id)">
|
|
||||||
{{ item.cate_name }}
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
|
||||||
|
|
||||||
|
<!-- 分类下拉列表 -->
|
||||||
|
<view class="category-dropdown" v-if="showDropdown">
|
||||||
|
<view class="dropdown-title">商品分类</view>
|
||||||
|
<view class="category-grid">
|
||||||
|
<view class="category-grid-item" v-for="item in categoryList" :key="item.id"
|
||||||
|
:class="{ activeTab: currentCategoryId === item.id }" @click="selectCategoryFromDropdown(item.id)">
|
||||||
|
{{ item.cate_name }}
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</u-sticky>
|
||||||
|
|
||||||
<!-- 商家列表展示 -->
|
<!-- 商家列表展示 -->
|
||||||
<view class="merchantList" :class="{ merchantList2: merchatList.length < 3 }">
|
<view class="merchantList" :class="{ merchantList2: merchatList.length < 3 }">
|
||||||
<view class="overlay" v-if="showDropdown"></view>
|
<view class="overlay" v-if="showDropdown"></view>
|
||||||
@ -204,7 +206,8 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="merchantItem_right_con_right" @click="toJump(item)">
|
<view class="merchantItem_right_con_right" @click="toJump(item)">
|
||||||
<image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_review.png"
|
<image
|
||||||
|
src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_review.png"
|
||||||
mode="aspectFill"></image>
|
mode="aspectFill"></image>
|
||||||
点评
|
点评
|
||||||
</view>
|
</view>
|
||||||
@ -215,12 +218,13 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
<view class="more" v-if="flag">下拉加载后续10条,共计{{ bottomTotal }}条</view>
|
||||||
|
<nav-footer />
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="more" v-if="flag">下拉加载后续10条,共计{{ bottomTotal }}条</view>
|
|
||||||
<nav-footer />
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
|
||||||
@ -1047,22 +1051,24 @@ export default {
|
|||||||
|
|
||||||
this.showDropdown = false;
|
this.showDropdown = false;
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
uni.pageScrollTo({
|
// 获取mainBox元素并使其滚动到底部
|
||||||
scrollTop: 1000,
|
const mainBox = this.$refs.mainBox;
|
||||||
duration: 300
|
if (mainBox) {
|
||||||
});
|
mainBox.scrollTop = 1000;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
toggleDropdown() {
|
toggleDropdown() {
|
||||||
this.showDropdown = !this.showDropdown;
|
this.showDropdown = !this.showDropdown;
|
||||||
// 当展开下拉菜单时,页面滑动
|
// 当展开下拉菜单时,在mainBox内滑动
|
||||||
if (this.showDropdown) {
|
if (this.showDropdown) {
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
uni.pageScrollTo({
|
// 获取mainBox元素并使其滚动到底部
|
||||||
scrollTop: 1000,
|
const mainBox = this.$refs.mainBox;
|
||||||
duration: 300
|
if (mainBox) {
|
||||||
});
|
mainBox.scrollTop = 1000;
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@ -195,7 +195,8 @@ margin-right: 20rpx;
|
|||||||
}
|
}
|
||||||
|
|
||||||
.title-item {
|
.title-item {
|
||||||
font-size: 26rpx;
|
font-size: 28rpx;
|
||||||
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.customer {
|
.customer {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user