新增点餐首页和商品列表的轮播图

This commit is contained in:
gyq
2025-12-10 09:13:23 +08:00
parent 1e43269f65
commit 43e9f544e4
4 changed files with 802 additions and 815 deletions

View File

@@ -1,13 +1,14 @@
<template> <template>
<view class="content"> <view class="content">
<view <view class="contentbox">
class="contentbox" <template v-if="shopExtend.length">
:style=" <image class="bg" :src="shopExtend[0].value" mode="aspectFill" v-if="!isJsonArrayString(shopExtend[0].value)"></image>
'background:url(' + <swiper class="swiper" autoplay circular v-else>
(shopExtend ? shopExtend[0].value : 'https://czg-qr-order.oss-cn-beijing.aliyuncs.com/indexs/shuangbackground.png') + <swiper-item class="swiper-item" v-for="item in JSON.parse(shopExtend[0].value)">
') no-repeat center center / cover' <image class="swiper-bg" :src="item"></image>
" </swiper-item>
> </swiper>
</template>
<view class="contentboxitem flex-between"> <view class="contentboxitem flex-between">
<view class="contentboxitemleft flex-colum" @click="scanCodehandle(0)"> <view class="contentboxitemleft flex-colum" @click="scanCodehandle(0)">
<image src="https://czg-qr-order.oss-cn-beijing.aliyuncs.com/indexs/Xdiancan.png" mode="aspectFill"></image> <image src="https://czg-qr-order.oss-cn-beijing.aliyuncs.com/indexs/Xdiancan.png" mode="aspectFill"></image>
@@ -61,6 +62,7 @@
<script setup> <script setup>
import { getMemberConfig, getRechargeConfig } from '@/common/api/index/index.js'; import { getMemberConfig, getRechargeConfig } from '@/common/api/index/index.js';
import { ref, reactive, defineProps, defineEmits, onMounted } from 'vue'; import { ref, reactive, defineProps, defineEmits, onMounted } from 'vue';
import { isJsonArrayString } from '@/utils/util.js';
// 定义接收的属性 // 定义接收的属性
const props = defineProps({ const props = defineProps({
@@ -175,13 +177,31 @@ defineExpose({
page { page {
background: #f6f8fa; background: #f6f8fa;
} }
.swiper {
width: 100%;
height: 100%;
.swiper-item {
width: 100%;
height: 100%;
.swiper-bg {
width: 100%;
height: 100%;
}
}
}
.content { .content {
.contentbox { .contentbox {
position: relative; position: relative;
width: 100%; width: 100%;
height: 1046rpx; height: 1046rpx;
padding: 0 24rpx; .bg {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.contentboxitem { .contentboxitem {
position: absolute; position: absolute;

View File

@@ -3,11 +3,22 @@
<Nav /> <Nav />
<!-- 顶部面板 --> <!-- 顶部面板 -->
<view class="top--panel" :class="{ grayscale: !isBusinessTime }"> <view class="top--panel" :class="{ grayscale: !isBusinessTime }">
<template v-if="shopExtend">
<image <image
class="panelimgbackground" class="panelimgbackground"
:src="shopExtend ? shopExtend.value : 'https://czg-qr-order.oss-cn-beijing.aliyuncs.com/shopDetails/topBanner.png'" :src="shopExtend ? shopExtend.value : 'https://czg-qr-order.oss-cn-beijing.aliyuncs.com/shopDetails/topBanner.png'"
mode="aspectFill" mode="aspectFill"
v-if="!isJsonArrayString(shopExtend.value)"
></image> ></image>
<swiper class="panelimgbackground" autoplay indicator-dots circular v-else>
<swiper-item v-for="(item, index) in JSON.parse(shopExtend.value)" :key="index">
<image :src="item" mode="aspectFill"></image>
</swiper-item>
</swiper>
</template>
<template v-else>
<image class="panelimgbackground" src="https://czg-qr-order.oss-cn-beijing.aliyuncs.com/shopDetails/topBanner.png" mode="aspectFill"></image>
</template>
<view class="panelone flex-start"> <view class="panelone flex-start">
<view class="u-flex u-flex-y-center"> <view class="u-flex u-flex-y-center">
<text> <text>
@@ -556,7 +567,7 @@
import xbSwiperPreview from '@/components/xb-swiper-preview/index.vue'; import xbSwiperPreview from '@/components/xb-swiper-preview/index.vue';
//价格计算辅助函数 //价格计算辅助函数
// import * as limitUtils from '@/utils/order-utils.js'; // import * as limitUtils from '@/utils/order-utils.js';
import {limitUtils } from 'ysk-utils' import { limitUtils } from 'ysk-utils';
import BigNumber from 'bignumber.js'; import BigNumber from 'bignumber.js';
import GoodsPrice from '@/components/goods-price.vue'; import GoodsPrice from '@/components/goods-price.vue';
@@ -578,7 +589,7 @@ import Loading from '@/components/Loading.vue';
import dayjs from 'dayjs'; import dayjs from 'dayjs';
import isBetween from 'dayjs/plugin/isBetween'; import isBetween from 'dayjs/plugin/isBetween';
dayjs.extend(isBetween); dayjs.extend(isBetween);
import { filterNumberInput } from '@/utils/util.js'; import { filterNumberInput, isJsonArrayString } from '@/utils/util.js';
import { APIproductqueryShop } from '@/common/api/member.js'; import { APIproductqueryShop } from '@/common/api/member.js';
import { getDistance } from '@/utils/address.js'; import { getDistance } from '@/utils/address.js';
@@ -680,9 +691,18 @@ const callChildMethod = () => {
} }
}; };
try { // const shopExtend = ref(uni.cache.get('shopTable').shopExtendMap.shopinfo_bg);
const shopExtend = uni.cache.get('shopTable').shopExtendMap.shopinfo_bg; // console.log('shopExtend', shopExtend);
} catch (error) {}
// 分步取值 + 每层兜底,避免某一环不存在导致 undefined
const shopExtendShopTable = uni.cache.get('shopTable') || {}; // 兜底空对象
const shopExtendMap = shopExtendShopTable.shopExtendMap || {}; // 兜底空对象
// 最终声明:即使 shopinfo_bg 不存在,也兜底为空字符串/默认值
const shopExtend = ref(shopExtendMap.shopinfo_bg || '');
// try {
// const shopExtend = uni.cache.get('shopTable').shopExtendMap.shopinfo_bg;
// } catch (error) {}
// 计算高度 // 计算高度
const navScroll = ref(null); const navScroll = ref(null);
@@ -1342,7 +1362,7 @@ const singleclick = async (item, i) => {
} else if (item.suitNum >= cartNumberFloat && i === '-') { } else if (item.suitNum >= cartNumberFloat && i === '-') {
suitNum = item.cartNumber; suitNum = item.cartNumber;
} }
const sendMsg={ const sendMsg = {
type: 'shopping', type: 'shopping',
suitNum: item.suitNum, suitNum: item.suitNum,
table_code: uni.cache.get('tableCode'), table_code: uni.cache.get('tableCode'),
@@ -1355,9 +1375,9 @@ const singleclick = async (item, i) => {
is_print: 1, is_print: 1,
product_type: item.type, product_type: item.type,
is_time_discount: item.is_time_discount is_time_discount: item.is_time_discount
} };
if(item.cartListId){ if (item.cartListId) {
sendMsg.id=item.cartListId; sendMsg.id = item.cartListId;
} }
websocketsendMessage(sendMsg); websocketsendMessage(sendMsg);
}; };
@@ -2102,7 +2122,7 @@ function returnLimitPrice(item) {
} }
onShow(async () => { onShow(async () => {
isAutoClose=true isAutoClose = true;
// 监听页面显示和隐藏 // 监听页面显示和隐藏
useSocket.setOnMessage(onMessage); useSocket.setOnMessage(onMessage);
useSocket.onShowconnect(); useSocket.onShowconnect();
@@ -2124,21 +2144,20 @@ onShow(async () => {
//是否自动关闭socket //是否自动关闭socket
let isAutoClose = true; let isAutoClose = true;
function closeSocket(){ function closeSocket() {
if(isAutoClose){ if (isAutoClose) {
useSocket.closeSocket(); useSocket.closeSocket();
} }
useSocket.setOnMessage(() => {}); useSocket.setOnMessage(() => {});
} }
onHide(() => { onHide(() => {
closeSocket() closeSocket();
}); });
onUnload(() => { onUnload(() => {
closeSocket() closeSocket();
}); });
const oldOrder=ref(null) const oldOrder = ref(null);
onMounted(async () => { onMounted(async () => {
await proxy.$onLaunched; await proxy.$onLaunched;
// 获取当前页面栈 // 获取当前页面栈
@@ -2195,9 +2214,9 @@ function toHistory() {
isAutoClose = false; isAutoClose = false;
const tableCode = uni.cache.get('tableCode'); const tableCode = uni.cache.get('tableCode');
const shopId = uni.cache.get('shopId'); const shopId = uni.cache.get('shopId');
let url= `/pages/order/confirm-order?tableCode=${tableCode}&shopId=${shopId}` let url = `/pages/order/confirm-order?tableCode=${tableCode}&shopId=${shopId}`;
const res=oldOrder.value; const res = oldOrder.value;
console.log('toHistory',res); console.log('toHistory', res);
// if (res && res.id && shopInfo.registerType == 'after') { // if (res && res.id && shopInfo.registerType == 'after') {
// url+='&orderId='+res.id // url+='&orderId='+res.id
// } // }

775
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -306,12 +306,16 @@ export function checkPermission(permissionType) {
success: (res) => { success: (res) => {
const authSetting = res.authSetting || {}; const authSetting = res.authSetting || {};
const isGranted = authSetting[platformPermission] === true; const isGranted = authSetting[platformPermission] === true;
const status = isGranted const status = isGranted ?
? "granted" "granted" :
: authSetting[platformPermission] === false authSetting[platformPermission] === false ?
? "denied" "denied" :
: "undetermined"; "undetermined";
resolve({ granted: isGranted, status, platform: "weixin" }); resolve({
granted: isGranted,
status,
platform: "weixin"
});
}, },
fail: (err) => reject(err), fail: (err) => reject(err),
}); });
@@ -342,7 +346,11 @@ export function checkPermission(permissionType) {
else if (platform === "ios" && typeof plus !== "undefined") { else if (platform === "ios" && typeof plus !== "undefined") {
try { try {
// iOS 权限需通过原生 API 检查(以相机为例,其他权限类似) // iOS 权限需通过原生 API 检查(以相机为例,其他权限类似)
const result = { granted: false, status: "denied", platform: "ios" }; const result = {
granted: false,
status: "denied",
platform: "ios"
};
if (permissionType === "camera") { if (permissionType === "camera") {
// 相机权限检查iOS 需调用 AVCaptureDevice // 相机权限检查iOS 需调用 AVCaptureDevice
@@ -353,11 +361,11 @@ export function checkPermission(permissionType) {
// 0: notDetermined未请求, 1: restricted受限制, 2: denied拒绝, 3: authorized授权 // 0: notDetermined未请求, 1: restricted受限制, 2: denied拒绝, 3: authorized授权
result.granted = authStatus === 3; result.granted = authStatus === 3;
result.status = result.status =
authStatus === 3 authStatus === 3 ?
? "granted" "granted" :
: authStatus === 0 authStatus === 0 ?
? "undetermined" "undetermined" :
: "denied"; "denied";
} }
// 可扩展其他 iOS 权限(如定位、麦克风等) // 可扩展其他 iOS 权限(如定位、麦克风等)
else if (permissionType === "location") { else if (permissionType === "location") {
@@ -366,11 +374,11 @@ export function checkPermission(permissionType) {
// CLAuthorizationStatus 枚举值: // CLAuthorizationStatus 枚举值:
// 0: notDetermined, 1: restricted, 2: denied, 3: authorizedAlways, 4: authorizedWhenInUse // 0: notDetermined, 1: restricted, 2: denied, 3: authorizedAlways, 4: authorizedWhenInUse
result.granted = authStatus === 3 || authStatus === 4; result.granted = authStatus === 3 || authStatus === 4;
result.status = result.granted result.status = result.granted ?
? "granted" "granted" :
: authStatus === 0 authStatus === 0 ?
? "undetermined" "undetermined" :
: "denied"; "denied";
} }
resolve(result); resolve(result);
@@ -381,7 +389,9 @@ export function checkPermission(permissionType) {
// 4. H5 平台(浏览器权限) // 4. H5 平台(浏览器权限)
else if (typeof navigator !== "undefined" && navigator.permissions) { else if (typeof navigator !== "undefined" && navigator.permissions) {
navigator.permissions navigator.permissions
.query({ name: platformPermission }) .query({
name: platformPermission
})
.then((permissionStatus) => { .then((permissionStatus) => {
resolve({ resolve({
granted: permissionStatus.state === "granted", granted: permissionStatus.state === "granted",
@@ -397,3 +407,30 @@ export function checkPermission(permissionType) {
} }
}); });
} }
/**
* 判断字符串是否为合法的 JSON 数组
* @param {string} str - 待判断的字符串
* @returns {boolean} true=是JSON数组字符串 / false=普通字符串/其他
*/
export function isJsonArrayString(str) {
// 1. 非字符串直接返回 false
if (typeof str !== 'string') {
return false;
}
// 2. 空字符串返回 false根据业务可调整
if (str.trim() === '') {
return false;
}
try {
// 3. 尝试解析 JSON
const parsed = JSON.parse(str);
// 4. 校验解析结果是否为数组
return Array.isArray(parsed);
} catch (e) {
// 解析失败(普通字符串/非法 JSON→ 返回 false
return false;
}
}