Commit f784e5e8 authored by 彭佳妮(贵阳日报)'s avatar 彭佳妮(贵阳日报)
parents 86625dd9 f41c1d02
...@@ -18,7 +18,9 @@ onHide(() => { ...@@ -18,7 +18,9 @@ onHide(() => {
const signIn = () => { const signIn = () => {
getTokenUser(testJson).then((res) => { getTokenUser(testJson).then((res) => {
const token = res.data.access_token; const token = res.data.access_token;
const userInfo = res.data.user_info;
xma.setStorageSync('Authorization', token); xma.setStorageSync('Authorization', token);
xma.setStorageSync('userInfo', userInfo);
console.log('登录...'); console.log('登录...');
}); });
}; };
......
<template> <template>
<view class="card" v-for="(item, index) in cardData" :key="index"> <view class="card" v-for="(item, index) in cardData" :key="index">
<image class="img" src="../../static/index/test1.png" mode="widthFix" /> <image class="img" :src="item.shopLogo" mode="aspectFill" />
<view class="right"> <view class="right">
<text class="text">王将速食超市(可店内用餐)</text> <text class="text">{{ item.shopName }}</text>
<view class="twoBxo"> <view class="twoBxo">
<text class="one-text">5.0推荐</text> <text class="one-text">{{ item.grade }}推荐</text>
<text class="two-text">¥30/人</text> <!-- <text class="two-text">¥30/人</text> -->
<text class="three-text">销量1265</text> <text class="three-text">销量{{ item.monthSoldNum }}</text>
<text class="four-text">1.2km</text> <text class="four-text">1.2km</text>
</view> </view>
<view class="threeBox"> <view class="threeBox">
<image class="img2" src="../../static/index/test2.png" mode="widthFix" /> <image class="img2" :src="item.evaluationVos[0].avatar" mode="aspectFill" />
<text class="one-text">味道浓郁,食材新鲜,童年的老味道</text> <text class="one-text">{{ item.evaluationVos[0].evaluation }}</text>
</view> </view>
<view class="labelBox"> <view class="labelBox">
<view>卤味爱好者最佳选择</view> <view>卤味爱好者最佳选择</view>
...@@ -59,6 +59,8 @@ const props = defineProps({ ...@@ -59,6 +59,8 @@ const props = defineProps({
box-sizing: border-box; box-sizing: border-box;
.img { .img {
width: 144rpx; width: 144rpx;
height: 144rpx;
border-radius: 16rpx;
} }
.right { .right {
margin-left: 20rpx; margin-left: 20rpx;
...@@ -102,6 +104,8 @@ const props = defineProps({ ...@@ -102,6 +104,8 @@ const props = defineProps({
align-items: center; align-items: center;
.img2 { .img2 {
width: 40rpx; width: 40rpx;
height: 40rpx;
border-radius: 50%;
} }
.one-text { .one-text {
font-size: 22rpx; font-size: 22rpx;
......
...@@ -7,33 +7,34 @@ ...@@ -7,33 +7,34 @@
<view class="right-details" v-show="light2 === 0"> <view class="right-details" v-show="light2 === 0">
<text class="nearby-title">我的附近</text> <text class="nearby-title">我的附近</text>
<view class="nearby-card"> <view class="nearby-card">
<view @tap="choice2(0)" class="label" :class="light3 === 0 ? 'light3' : ''">附近</view> <view @tap="choice2(0, 0)" class="label" :class="light3 === 0 ? 'light3' : ''">附近</view>
<view @tap="choice2(1)" class="label" :class="light3 === 1 ? 'light3' : ''">500m</view> <view @tap="choice2(1, 0.5)" class="label" :class="light3 === 1 ? 'light3' : ''">500m</view>
<view @tap="choice2(2)" class="label" :class="light3 === 2 ? 'light3' : ''">1km</view> <view @tap="choice2(2, 1)" class="label" :class="light3 === 2 ? 'light3' : ''">1km</view>
<view @tap="choice2(3)" class="label" :class="light3 === 3 ? 'light3' : ''">3km</view> <view @tap="choice2(3, 3)" class="label" :class="light3 === 3 ? 'light3' : ''">3km</view>
<view @tap="choice2(4)" class="label" :class="light3 === 4 ? 'light3' : ''">5km</view> <view @tap="choice2(4, 5)" class="label" :class="light3 === 4 ? 'light3' : ''">5km</view>
<view @tap="choice2(5)" class="label" :class="light3 === 5 ? 'light3' : ''">10km</view> <view @tap="choice2(5, 10)" class="label" :class="light3 === 5 ? 'light3' : ''">10km</view>
</view> </view>
<text class="nearby-title margin">热门地点</text> <text class="nearby-title margin">热门地点</text>
<ul class="ul"> <ul class="ul">
<li>花果园购物中心</li> <li
<li>世纪金源购物中心</li> v-for="(item, index) in items"
<li>鸿通城</li> :key="index"
<li>花果园中环广场</li> :class="{ active: selectedItem === index }"
<li>万科大都会</li> @tap="selectItem(index, item)"
<li>喷水池</li> >
<li>喷水池</li> {{ item }}
</li>
</ul> </ul>
</view> </view>
<view class="right-details2" v-show="light2 === 1"> <view class="right-details2" v-show="light2 === 1">
<ul class="ul"> <ul class="ul">
<li <li
v-for="(item, index) in items" v-for="(item, index) in items1"
:key="index" :key="index"
:class="{ active: selectedItem === index }" :class="{ active: selectedItem1 === index }"
@tap="selectItem(index)" @tap="selectItem1(index)"
> >
{{ item }} {{ item.name }}
</li> </li>
</ul> </ul>
<ul class="ul"> <ul class="ul">
...@@ -41,9 +42,9 @@ ...@@ -41,9 +42,9 @@
v-for="(item, index) in items2" v-for="(item, index) in items2"
:key="index" :key="index"
:class="{ active: selectedItem2 === index }" :class="{ active: selectedItem2 === index }"
@tap="selectItem2(index)" @tap="selectItem2(index, item.name)"
> >
{{ item }} {{ item.name }}
</li> </li>
</ul> </ul>
</view> </view>
...@@ -52,16 +53,19 @@ ...@@ -52,16 +53,19 @@
<script setup> <script setup>
import { defineProps } from 'vue'; import { defineProps } from 'vue';
import { getRegion, administration } from '@/api/index';
const props = defineProps({ const props = defineProps({
width: { width: {
type: String, type: String,
default: '100%', default: '100%',
}, },
}); });
const emit = defineEmits(['nearby', 'popular', 'region']);
const light2 = ref(0); const light2 = ref(0);
const light3 = ref(0); const light3 = ref(0);
const items = reactive(['云岩区', '白云区', '乌当区', '花溪区', '清镇市', '开阳县', '修文县']); const items = ref(['云岩区', '白云区', '乌当区', '花溪区', '清镇市', '开阳县', '修文县']);
const items2 = reactive([ const items1 = ref(['云岩区', '白云区', '乌当区', '花溪区', '清镇市', '开阳县', '修文县']);
const items2 = ref([
'全部', '全部',
'百花新城', '百花新城',
'人民广场', '人民广场',
...@@ -72,19 +76,45 @@ const items2 = reactive([ ...@@ -72,19 +76,45 @@ const items2 = reactive([
]); ]);
const selectedItem = ref(null); const selectedItem = ref(null);
const selectedItem1 = ref(0);
const selectedItem2 = ref(null); const selectedItem2 = ref(null);
onMounted(() => {
getPlace();
getAdministration();
});
// 热门地点
const getPlace = () => {
getRegion({ city: '贵阳' }).then((res) => {
items.value = res.data;
});
};
// 行政区
const getAdministration = () => {
administration({ parentId: '52' }).then((res) => {
items1.value = res.data;
items2.value = items1.value[0].children;
});
};
const choice = (index) => { const choice = (index) => {
light2.value = index; light2.value = index;
}; };
const choice2 = (index) => { const choice2 = (index, distance) => {
light3.value = index; light3.value = index;
emit('nearby', distance);
}; };
const selectItem = (index, communityName) => {
const selectItem = (selectItem) => { selectedItem.value = index;
selectedItem.value = selectItem; selectedItem2.value = null;
emit('popular', communityName);
}; };
const selectItem2 = (selectItem) => { const selectItem1 = (index) => {
selectedItem2.value = selectItem; selectedItem1.value = index;
items2.value = items1.value[index].children;
};
const selectItem2 = (index, area) => {
selectedItem2.value = index;
selectedItem.value = null;
emit('region', area);
}; };
</script> </script>
...@@ -93,7 +123,7 @@ const selectItem2 = (selectItem) => { ...@@ -93,7 +123,7 @@ const selectItem2 = (selectItem) => {
position: absolute; position: absolute;
top: 100%; top: 100%;
// width: 710rpx; // width: 710rpx;
height: 780rpx; min-height: 780rpx;
border-radius: 0rpx 0rpx 16rpx 16rpx; border-radius: 0rpx 0rpx 16rpx 16rpx;
background: #ffffff; background: #ffffff;
box-shadow: 0rpx 16rpx 16rpx 0rpx rgba(73, 73, 73, 0.14); box-shadow: 0rpx 16rpx 16rpx 0rpx rgba(73, 73, 73, 0.14);
...@@ -103,7 +133,7 @@ const selectItem2 = (selectItem) => { ...@@ -103,7 +133,7 @@ const selectItem2 = (selectItem) => {
.left-classification { .left-classification {
width: 176rpx; width: 176rpx;
background: #f1f1f1; background: #f1f1f1;
height: 100%; min-height: 780rpx;
.option { .option {
text-align: center; text-align: center;
width: 100%; width: 100%;
...@@ -164,6 +194,9 @@ const selectItem2 = (selectItem) => { ...@@ -164,6 +194,9 @@ const selectItem2 = (selectItem) => {
color: #3d3d3d; color: #3d3d3d;
margin-top: 20rpx; margin-top: 20rpx;
} }
.active {
color: #fa5151;
}
} }
} }
.right-details2 { .right-details2 {
......
...@@ -41,3 +41,38 @@ export function popularityPage(data) { ...@@ -41,3 +41,38 @@ export function popularityPage(data) {
data, data,
}); });
} }
// 团购主页推荐分类
export function getRecommList() {
return request({
url: `/sgyrdd/category/getRecommList`,
method: 'GET',
});
}
// 附近筛选-热门地点
export function getRegion(data) {
return request({
url: `/sgyrdd/area/hotArea`,
method: 'GET',
data,
});
}
// 附近筛选-行政区
export function administration(data) {
return request({
url: `/sgyrdd/area/tree`,
method: 'GET',
data,
});
}
// 商家列表分页-搜索列表
export function merchantList(data) {
return request({
url: `/sgyrdd/shop/page`,
method: 'POST',
data,
});
}
...@@ -7,3 +7,11 @@ export function getProdDetail(data) { ...@@ -7,3 +7,11 @@ export function getProdDetail(data) {
method: 'GET', method: 'GET',
}); });
} }
// 套餐详情
export function getCollect(data) {
return request({
url: `/sgyrdd/shop/collect?shopId=${data}`,
method: 'GET',
});
}
@font-face { @font-face {
font-family: "iconfont"; /* Project id 4633414 */ font-family: "iconfont"; /* Project id 4633414 */
src: url('//at.alicdn.com/t/c/font_4633414_3k0ybwfc2l1.woff2?t=1722483682262') format('woff2'), src: url('//at.alicdn.com/t/c/font_4633414_jxzjjul419.woff2?t=1722502888587') format('woff2'),
url('//at.alicdn.com/t/c/font_4633414_3k0ybwfc2l1.woff?t=1722483682262') format('woff'), url('//at.alicdn.com/t/c/font_4633414_jxzjjul419.woff?t=1722502888587') format('woff'),
url('//at.alicdn.com/t/c/font_4633414_3k0ybwfc2l1.ttf?t=1722483682262') format('truetype'); url('//at.alicdn.com/t/c/font_4633414_jxzjjul419.ttf?t=1722502888587') format('truetype');
} }
.iconfont { .iconfont {
...@@ -13,6 +13,10 @@ ...@@ -13,6 +13,10 @@
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
} }
.icon-shuangxiajiantou:before {
content: "\e660";
}
.icon-dianzan:before { .icon-dianzan:before {
content: "\e602"; content: "\e602";
} }
......
This diff is collapsed.
...@@ -63,14 +63,33 @@ ...@@ -63,14 +63,33 @@
<!-- card-end --> <!-- card-end -->
<view class="rich-text-card"> <view class="rich-text-card">
<text class="title">商品详情</text> <text class="title">商品详情</text>
<rich-text :nodes="'nodes'"></rich-text> <rich-text :nodes="prodInfo.content"></rich-text>
</view> </view>
<view class="rich-text-card"> <view class="rich-text-card">
<text class="title">购买须知</text> <text class="title">购买须知</text>
<rich-text :nodes="'nodes'"></rich-text> <!-- <rich-text :nodes="'nodes'"></rich-text> -->
<view class="rich-more-btn"> <view class="purchase-information" v-if="showRlue">
收起 <view class="purchase-box">
<image src="@/static/shop/more.png"></image> <text class="title">开始时间</text>
<text class="content">{{ prodRlue.createTime }}</text>
</view>
<view class="purchase-box">
<text class="title">结束时间</text>
<text class="content">{{ prodRlue.endTime }}</text>
</view>
<view class="purchase-box">
<text class="title">标签</text>
<text class="content">{{ prodRlue.labelNames }}</text>
</view>
<view class="purchase-box">
<text class="title">规则</text>
<text class="content">{{ prodRlue.rule }}</text>
</view>
</view>
<view class="rich-more-btn" @click="showRlueFn">
{{ showRlue ? '收起' : '展开' }}
<i v-if="showRlue" class="iconfont icon-shuangshangjiantou-"></i>
<i v-else class="iconfont xia icon-shuangxiajiantou"></i>
</view> </view>
</view> </view>
<!-- 使用方法-start --> <!-- 使用方法-start -->
...@@ -102,21 +121,21 @@ ...@@ -102,21 +121,21 @@
<!-- 适用门店 --> <!-- 适用门店 -->
<view class="applicable-stores-card"> <view class="applicable-stores-card">
<text class="title">适用门店</text> <text class="title">适用门店</text>
<text class="goods-name">川心美蛙鱼头火锅(中环广场店)</text> <text class="goods-name">{{ shopInfo.shopName }}</text>
<view class="goods-pf-rs"> <view class="goods-pf-rs">
<text class="goods-fs">4.3</text> <text class="goods-fs">{{ shopInfo.grade }}</text>
<text class="goods-type">火锅</text> <text class="goods-type">火锅</text>
<text class="goods-rs">36/人</text> <!-- <text class="goods-rs">36/人</text> -->
</view> </view>
<text class="distance">距你129m</text> <text class="distance">距你{{ distance }}</text>
<text class="address">后巢乡花果园中环广场3号(M区4栋)3层114号</text> <text class="address">{{ shopInfo.shopAddress }}</text>
</view> </view>
<!-- 适用门店-end --> <!-- 适用门店-end -->
<!-- 底部 --> <!-- 底部 -->
<view class="bottom-operation-bar"> <view class="bottom-operation-bar">
<view class="start"> <view class="start" @click="collectionFn">
<image src="@/static/shop/start.png"></image> <image src="@/static/shop/start.png"></image>
241 {{ shopInfo.privateIntFcount }}
</view> </view>
<view class="start"> <view class="start">
<image src="@/static/shop/share.png"></image> <image src="@/static/shop/share.png"></image>
...@@ -129,45 +148,101 @@ ...@@ -129,45 +148,101 @@
</template> </template>
<script setup> <script setup>
import { getProdDetail } from '@/api/packageDetail'; import { getProdDetail, getCollect } from '@/api/packageDetail';
const swiperList = ref([ import { getStoreInformation } from '@/api/shop';
'https://registry.npmmirror.com/wot-design-uni-assets/*/files/redpanda.jpg',
'https://registry.npmmirror.com/wot-design-uni-assets/*/files/capybara.jpg',
'https://registry.npmmirror.com/wot-design-uni-assets/*/files/panda.jpg',
]);
const prodInfo = ref({}); const prodInfo = ref({});
const prodRlue = ref({});
const myProdId = ref(''); const myProdId = ref('');
const current = ref(0); const current = ref(0);
const showRlue = ref(true);
const imgUrl = import.meta.env.VITE_APP_IMG_URL; const imgUrl = import.meta.env.VITE_APP_IMG_URL;
const shopInfo = ref({});
const currentLatitudeAndLongitude = ref({});
const shopId = ref('');
onLoad((options) => { onLoad((options) => {
const { prodId } = options; const { prodId } = options;
myProdId.value = prodId; myProdId.value = prodId;
getProdDetailFn(prodId); getProdDetailFn(prodId).then((shopId) => {
getStoreInformationFn(shopId);
});
});
onShow(() => {
// 获取位置
getLocationFn();
}); });
/** /**
* 获取套餐详情 * 获取套餐详情
* @param {String} prodId * @param {String} prodId
*/ */
function getProdDetailFn(prodId) { function getProdDetailFn(prodId) {
getProdDetail(prodId).then((res) => { return new Promise((resolve, reject) => {
if (res.code === 0) { getProdDetail(prodId).then((res) => {
console.log('res', res); if (res.code === 0) {
res.data.data.prod.imgs = res.data.data.prod.imgs.split(','); res.data.data.prod.imgs = res.data.data.prod.imgs.split(',');
res.data.data.prod.imgs.push(res.data.data.prod.pic); res.data.data.prod.imgs.push(res.data.data.prod.pic);
res.data.data.prod.imgs = res.data.data.prod.imgs res.data.data.prod.imgs = res.data.data.prod.imgs
.map((item) => { .map((item) => {
if (item !== '') { if (item !== '') {
item = imgUrl + item; item = imgUrl + item;
} }
return item; return item;
}) })
.filter((item) => { .filter((item) => {
return item !== ''; return item !== '';
}); });
prodInfo.value = res.data.data.prod; prodInfo.value = res.data.data.prod;
} prodRlue.value = res.data.data.groupPurchasePackageRule;
shopId.value = res.data.data.prod.shopId;
resolve(res.data.data.prod.shopId);
}
});
});
}
/**
* 获取收藏
*/
function getCollectFn(shopId) {
if (shopInfo.value.isCollect === 0) {
shopInfo.value.privateIntFcount++;
shopInfo.value.isCollect = 1;
} else {
shopInfo.value.privateIntFcount--;
shopInfo.value.isCollect = 0;
}
shopInfo.value.console.log('111');
// getCollect(shopId).then((res) => {
// if (res.code === 0) {
// if (shopInfo.value.isCollect === 0) {
// shopInfo.value.privateIntFcount++;
// shopInfo.value.isCollect = 1;
// } else {
// shopInfo.value.privateIntFcount--;
// shopInfo.value.isCollect = 0;
// }
// shopInfo.value.console.log('111');
// }
// });
}
function collectionFn() {
getCollectFn(shopId.value);
}
function getLocationFn() {
xma.getLocation({
type: 'wgs84',
success: function (res) {
const myLatitude = currentLatitudeAndLongitude.value.latitude;
const myLongitude = currentLatitudeAndLongitude.value.longitude;
const distance = getDistance(res.latitude, res.longitude, myLatitude, myLongitude, 1);
shopInfo.value.distance = distance;
},
fail: function (err) {
return err;
},
}); });
} }
const showRlueFn = () => {
showRlue.value = !showRlue.value;
};
const handleClick = (e) => { const handleClick = (e) => {
const { index } = e; const { index } = e;
const imgSrc = prodInfo.value.imgs[index]; const imgSrc = prodInfo.value.imgs[index];
...@@ -183,6 +258,20 @@ function previewImage(imgSrc) { ...@@ -183,6 +258,20 @@ function previewImage(imgSrc) {
urls: [imgSrc], // 需要预览的图片链接列表 urls: [imgSrc], // 需要预览的图片链接列表
}); });
} }
// 获取店铺信息
const getStoreInformationFn = (id) => {
return new Promise((resolve, reject) => {
getStoreInformation(id).then((res) => {
if (res.code === 0) {
shopInfo.value = res.data.shop;
shopInfo.value.tagList = res.data.shop.labels.split(',');
currentLatitudeAndLongitude.value.latitude = res.data.shop.location.lat;
currentLatitudeAndLongitude.value.longitude = res.data.shop.location.lon;
resolve();
}
});
});
};
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
...@@ -332,11 +421,37 @@ page { ...@@ -332,11 +421,37 @@ page {
margin-top: 10rpx; margin-top: 10rpx;
border-radius: 8 * 2rpx; border-radius: 8 * 2rpx;
box-shadow: 0 -8rpx 22 * 2rpx 0 rgba(255, 255, 255, 0.6); box-shadow: 0 -8rpx 22 * 2rpx 0 rgba(255, 255, 255, 0.6);
.purchase-information {
display: flex;
flex-direction: column;
align-content: flex-start;
.purchase-box {
display: flex;
flex-wrap: wrap;
margin-top: 20rpx;
.title {
font-size: 11 * 2rpx;
color: #767676;
}
.content {
font-size: 11 * 2rpx;
margin-left: 32rpx;
color: #3d3d3d;
}
}
}
.title { .title {
font-size: 13 * 2rpx; font-size: 13 * 2rpx;
color: #151515; color: #151515;
font-weight: 500; font-weight: 500;
} }
img {
width: 100%;
height: auto;
}
p {
font-size: 22rpx;
}
.rich-more-btn { .rich-more-btn {
width: 315 * 2rpx; width: 315 * 2rpx;
display: flex; display: flex;
...@@ -348,6 +463,10 @@ page { ...@@ -348,6 +463,10 @@ page {
box-sizing: border-box; box-sizing: border-box;
padding: 20rpx 0 0 0; padding: 20rpx 0 0 0;
margin-top: 20rpx; margin-top: 20rpx;
.xia {
font-size: 20rpx;
margin-left: 10rpx;
}
image { image {
width: 18rpx; width: 18rpx;
height: 18rpx; height: 18rpx;
...@@ -415,7 +534,7 @@ page { ...@@ -415,7 +534,7 @@ page {
} }
} }
.bottom-operation-bar { .bottom-operation-bar {
width: 100%; width: 750rpx;
background: #fff; background: #fff;
border-radius: 16rpx 16rpx 0 0; border-radius: 16rpx 16rpx 0 0;
display: flex; display: flex;
......
...@@ -247,8 +247,8 @@ ...@@ -247,8 +247,8 @@
<!-- <text class="goods-rs">36/人</text> --> <!-- <text class="goods-rs">36/人</text> -->
</view> </view>
<view class="tag-list"> <view class="tag-list">
<view class="tag" v-for="item in tagList2" :key="item.id"> <view class="tag" v-for="(el, i) in item.labels" :key="i">
{{ item.name }} {{ el }}
</view> </view>
</view> </view>
</view> </view>
...@@ -302,12 +302,6 @@ const isLoadReachBottom = ref(null); ...@@ -302,12 +302,6 @@ const isLoadReachBottom = ref(null);
const commentList = ref([]); const commentList = ref([]);
// 评论总数 // 评论总数
const commentTotal = ref(0); const commentTotal = ref(0);
const tagList = ref([
{ name: '美食', id: 1 },
{ name: '休闲娱乐', id: 2 },
{ name: '景点', id: 3 },
{ name: '生活服务', id: 4 },
]);
// 周边推荐类型列表 // 周边推荐类型列表
const recommendedTypesOfPeripherals = ref([]); const recommendedTypesOfPeripherals = ref([]);
// 商户id // 商户id
...@@ -366,8 +360,17 @@ function sgyrddShopPageFn(categoryIds) { ...@@ -366,8 +360,17 @@ function sgyrddShopPageFn(categoryIds) {
}; };
sgyrddShopPage(params).then((res) => { sgyrddShopPage(params).then((res) => {
if (res.code === 0) { if (res.code === 0) {
res.data.content = res.data.content
.map((el) => {
if (el.labels && el.labels !== '') {
el.labels = el.labels.split(',');
}
return el;
})
.filter((item) => {
return item !== '';
});
recommendedListOfPeripherals.value = res.data.content; recommendedListOfPeripherals.value = res.data.content;
console.log('res', res);
} }
}); });
} }
...@@ -377,7 +380,7 @@ function getLocationFn() { ...@@ -377,7 +380,7 @@ function getLocationFn() {
success: function (res) { success: function (res) {
const myLatitude = currentLatitudeAndLongitude.value.latitude; const myLatitude = currentLatitudeAndLongitude.value.latitude;
const myLongitude = currentLatitudeAndLongitude.value.longitude; const myLongitude = currentLatitudeAndLongitude.value.longitude;
const distance = getDistance(res.latitude, res.longitude, myLatitude, myLongitude); const distance = getDistance(res.latitude, res.longitude, myLatitude, myLongitude, 1);
shopInfo.value.distance = distance; shopInfo.value.distance = distance;
}, },
fail: function (err) { fail: function (err) {
...@@ -1223,7 +1226,7 @@ page { ...@@ -1223,7 +1226,7 @@ page {
box-sizing: border-box; box-sizing: border-box;
padding: 6rpx; padding: 6rpx;
font-size: 8 * 2rpx; font-size: 8 * 2rpx;
margin-right: 20rpx; margin-right: 10rpx;
} }
} }
} }
......
export function timeConversion(diffInMilliseconds) {
// 计算总秒数
const totalSeconds = Math.abs(Math.floor(diffInMilliseconds / 1000));
// 计算天数、小时数和分钟数
const days = Math.floor(totalSeconds / (24 * 60 * 60));
const hours = Math.floor((totalSeconds % (24 * 60 * 60)) / (60 * 60));
const minutes = Math.floor((totalSeconds % (60 * 60)) / 60);
// 返回包含天数、小时数和分钟数的对象
if (hours === 0) {
return `${minutes}分钟`;
} else if (days === 0) {
return `${hours}小时${minutes}分钟`;
} else {
return `${days}${hours}小时${minutes}分钟`;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment