From a6877b3684f54f2ac8be851e7321c29c09087370 Mon Sep 17 00:00:00 2001 From: liyj <1617420630@qq.com> Date: Wed, 29 Oct 2025 10:20:02 +0800 Subject: [PATCH 01/35] =?UTF-8?q?=E6=80=9D=E8=BF=85=E8=AE=BE=E7=BD=AE?= =?UTF-8?q?=E7=94=A8=E6=88=B7=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/small/client/service/imp/SxDataServiceImp.java | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/main/java/com/small/client/service/imp/SxDataServiceImp.java b/client/src/main/java/com/small/client/service/imp/SxDataServiceImp.java index afb3e193..50ff39db 100644 --- a/client/src/main/java/com/small/client/service/imp/SxDataServiceImp.java +++ b/client/src/main/java/com/small/client/service/imp/SxDataServiceImp.java @@ -716,6 +716,7 @@ public class SxDataServiceImp extends SxDataAbstService implements SxDataService DataBaseInfo dataBaseInfo=new DataBaseInfo(); if(null!=storeDbConfig){ dataBaseInfo.setIp(storeDbConfig.getDbIp()); + dataBaseInfo.setUserName(storeDbConfig.getDbUsername()); dataBaseInfo.setPassword(storeDbConfig.getDbPassword()); dataBaseInfo.setDataBaseName(storeDbConfig.getDbName()); dataBaseInfo.setDbPort(storeDbConfig.getDbPort()); From 8815fb9d94fff2b01972ff659eef25ecc6627395 Mon Sep 17 00:00:00 2001 From: liyj <1617420630@qq.com> Date: Wed, 29 Oct 2025 10:41:14 +0800 Subject: [PATCH 02/35] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=95=86=E5=93=81?= =?UTF-8?q?=E8=B4=A7=E6=9E=B6=E5=8F=B7=E5=90=8C=E6=AD=A5=E5=88=B0base?= =?UTF-8?q?=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../shop/product/service/impl/ShopProductBaseServiceImpl.java | 1 + 1 file changed, 1 insertion(+) diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/product/service/impl/ShopProductBaseServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/product/service/impl/ShopProductBaseServiceImpl.java index fc762497..ea32f864 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/product/service/impl/ShopProductBaseServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/product/service/impl/ShopProductBaseServiceImpl.java @@ -818,6 +818,7 @@ public class ShopProductBaseServiceImpl extends BaseServiceImpl Date: Wed, 29 Oct 2025 12:10:45 +0800 Subject: [PATCH 03/35] =?UTF-8?q?=E8=A7=A3=E5=86=B3=E7=BA=BF=E7=A8=8B?= =?UTF-8?q?=E4=B8=8D=E5=AE=89=E5=85=A8=E7=9A=84=E6=97=B6=E9=97=B4=E6=93=8D?= =?UTF-8?q?=E4=BD=9C=EF=BC=8C=E9=98=B2=E6=AD=A2=E6=97=B6=E9=97=B4=E6=BA=A2?= =?UTF-8?q?=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../product/service/impl/ShopProductBaseServiceImpl.java | 4 ++-- .../mall/shop/sync/service/impl/SyncBaseThirdSxAbstract.java | 5 ++--- .../shop/sync/service/impl/SyncThirdDataServiceImpl.java | 2 ++ 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/product/service/impl/ShopProductBaseServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/product/service/impl/ShopProductBaseServiceImpl.java index ea32f864..ae63a1b1 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/product/service/impl/ShopProductBaseServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/product/service/impl/ShopProductBaseServiceImpl.java @@ -5373,7 +5373,7 @@ public class ShopProductBaseServiceImpl extends BaseServiceImpl Date: Wed, 29 Oct 2025 15:47:05 +0800 Subject: [PATCH 04/35] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=88=86=E7=B1=BB?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E6=8E=92=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../base/service/impl/ShopBaseProductCategoryServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/base/service/impl/ShopBaseProductCategoryServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/base/service/impl/ShopBaseProductCategoryServiceImpl.java index 8342d4b6..651162e3 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/base/service/impl/ShopBaseProductCategoryServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/base/service/impl/ShopBaseProductCategoryServiceImpl.java @@ -963,7 +963,7 @@ public class ShopBaseProductCategoryServiceImpl extends BaseServiceImpl getTree(Integer pid, Boolean onlyEnable, String categoryName) { QueryWrapper objectQueryWrapper = new QueryWrapper<>(); - + objectQueryWrapper.orderByAsc("category_order"); if (CheckUtil.isNotEmpty(categoryName)) { objectQueryWrapper.like("category_name", categoryName); } From 7810340cde0446092e29bf6ea97b45a4125ed9f2 Mon Sep 17 00:00:00 2001 From: liyj <1617420630@qq.com> Date: Wed, 29 Oct 2025 16:20:41 +0800 Subject: [PATCH 05/35] =?UTF-8?q?=E5=90=8C=E6=AD=A5=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E4=B8=8D=E6=9B=B4=E6=96=B0=E5=95=86=E5=93=81=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mall/common/modules/product/ShopProductIndex.java | 5 ++++- .../product/service/impl/ShopProductBaseServiceImpl.java | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/mall-common/src/main/java/com/suisung/mall/common/modules/product/ShopProductIndex.java b/mall-common/src/main/java/com/suisung/mall/common/modules/product/ShopProductIndex.java index b85fb9c0..2b07f1ee 100644 --- a/mall-common/src/main/java/com/suisung/mall/common/modules/product/ShopProductIndex.java +++ b/mall-common/src/main/java/com/suisung/mall/common/modules/product/ShopProductIndex.java @@ -10,6 +10,8 @@ import lombok.experimental.Accessors; import java.io.Serializable; import java.math.BigDecimal; +import static com.baomidou.mybatisplus.annotation.FieldStrategy.NOT_EMPTY; + /** *

* 产品索引表-不读取数据只读主键 @@ -33,10 +35,11 @@ public class ShopProductIndex implements Serializable { private Long product_id; @ApiModelProperty(value = "产品名称:店铺平台先在对用表中检索后通过id检索,检索使用") - + @TableField(updateStrategy=NOT_EMPTY) private String product_name; @ApiModelProperty(value = "名称索引关键字(DOT)") + @TableField(updateStrategy=NOT_EMPTY) private String product_name_index; @ApiModelProperty(value = "店铺编号") diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/product/service/impl/ShopProductBaseServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/product/service/impl/ShopProductBaseServiceImpl.java index ae63a1b1..0da88460 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/product/service/impl/ShopProductBaseServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/product/service/impl/ShopProductBaseServiceImpl.java @@ -5364,11 +5364,14 @@ public class ShopProductBaseServiceImpl extends BaseServiceImpl Date: Thu, 30 Oct 2025 01:01:40 +0800 Subject: [PATCH 06/35] =?UTF-8?q?=E9=A2=84=E8=AE=A2=E5=8D=95=E6=97=B6?= =?UTF-8?q?=E9=97=B4=E6=A7=BD=E5=88=97=E8=A1=A8=E9=80=BB=E8=BE=91=E8=B0=83?= =?UTF-8?q?=E6=95=B4=EF=BC=8C=E5=88=86=E8=B4=A6=E3=80=81=E6=8F=90=E7=8E=B0?= =?UTF-8?q?=20=E6=8A=A5=E6=96=87=E5=AD=97=E6=AE=B5=20=E4=BF=9D=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../common/modules/lakala/LklOrderDraw.java | 3 + .../modules/lakala/LklOrderSeparate.java | 3 + .../mall/common/utils/DateTimeUtils.java | 121 +++++++- .../ShopActivityGroupbookingServiceImpl.java | 20 +- .../shop/lakala/service/LakalaApiService.java | 14 +- .../service/impl/LakalaApiServiceImpl.java | 273 +----------------- .../mobile/UserOrderController.java | 2 +- .../order/service/ShopOrderInfoService.java | 4 +- .../impl/ShopOrderInfoServiceImpl.java | 119 ++++++-- .../user/service/ShopUserVoucherService.java | 2 +- .../impl/ShopUserVoucherServiceImpl.java | 11 +- 11 files changed, 243 insertions(+), 329 deletions(-) diff --git a/mall-common/src/main/java/com/suisung/mall/common/modules/lakala/LklOrderDraw.java b/mall-common/src/main/java/com/suisung/mall/common/modules/lakala/LklOrderDraw.java index 0a3afff3..0a7dce49 100644 --- a/mall-common/src/main/java/com/suisung/mall/common/modules/lakala/LklOrderDraw.java +++ b/mall-common/src/main/java/com/suisung/mall/common/modules/lakala/LklOrderDraw.java @@ -155,6 +155,9 @@ public class LklOrderDraw { @ApiModelProperty(value = "异步通知地址", example = "https://api.example.com/notify") private String notify_url; + @ApiModelProperty(value = "接口请求报文") + private String lkl_req; + /** * 异步通知返回的JSON数据 */ diff --git a/mall-common/src/main/java/com/suisung/mall/common/modules/lakala/LklOrderSeparate.java b/mall-common/src/main/java/com/suisung/mall/common/modules/lakala/LklOrderSeparate.java index 46536d69..c14720c3 100644 --- a/mall-common/src/main/java/com/suisung/mall/common/modules/lakala/LklOrderSeparate.java +++ b/mall-common/src/main/java/com/suisung/mall/common/modules/lakala/LklOrderSeparate.java @@ -94,6 +94,9 @@ public class LklOrderSeparate { @ApiModelProperty(value = "处理状态:ACCEPTED-已受理, PROCESSING-处理中, FAIL-失败, SUCCESS-成功") private String final_status; + @ApiModelProperty(value = "接口请求报文") + private String lkl_req; + @ApiModelProperty(value = "异步通知数据") private String notify_resp; diff --git a/mall-common/src/main/java/com/suisung/mall/common/utils/DateTimeUtils.java b/mall-common/src/main/java/com/suisung/mall/common/utils/DateTimeUtils.java index c94b058c..499e9f8f 100644 --- a/mall-common/src/main/java/com/suisung/mall/common/utils/DateTimeUtils.java +++ b/mall-common/src/main/java/com/suisung/mall/common/utils/DateTimeUtils.java @@ -10,8 +10,7 @@ import java.time.format.DateTimeFormatter; import java.time.format.DateTimeFormatterBuilder; import java.time.format.DateTimeParseException; import java.time.temporal.ChronoField; -import java.util.Calendar; -import java.util.Date; +import java.util.*; @Slf4j public class DateTimeUtils { @@ -363,6 +362,76 @@ public class DateTimeUtils { return count; } + /** + * 计算多个时间段之间的交集(不跨天) + *

+ * 算法逻辑: + * 1. 遍历所有时间段,找到最晚的开始时间和最早的结束时间 + * 2. 如果最晚开始时间小于等于最早结束时间,则存在交集 + * 3. 如果最晚开始时间大于最早结束时间,则不存在交集 + * + * @param timeList 时间段列表,每个时间段是一个Map,包含开始时间startTimeStr和结束时间endTimeStr + * startTimeStr 开始时间字符串,支持格式如 HH:mm, HH:mm:ss, HH:mm:ss.SSS 等 + * endTimeStr 结束时间字符串,支持格式如 HH:mm, HH:mm:ss, HH:mm:ss.SSS 等 + * @return 返回一个Map,包含交集的时间段(startTimeStr和endTimeStr),如果无交集则返回空Map + */ + public static Map findTimeInterSection(List> timeList) { + // 参数校验 + if (timeList == null || timeList.isEmpty()) { + log.warn("时间段列表为空或null,无法计算交集"); + return new HashMap<>(); + } + + try { + LocalTime latestStartTime = null; + LocalTime earliestEndTime = null; + + // 遍历所有时间段 + for (Map timeMap : timeList) { + if (timeMap == null || !timeMap.containsKey("startTimeStr") || !timeMap.containsKey("endTimeStr")) { + log.warn("时间段数据不完整或格式不正确: {}", timeMap); + continue; + } + + String startTimeStr = timeMap.get("startTimeStr"); + String endTimeStr = timeMap.get("endTimeStr"); + + if (startTimeStr == null || endTimeStr == null) { + log.warn("时间段的开始或结束时间为空: startTime={}, endTime={}", startTimeStr, endTimeStr); + continue; + } + + LocalTime startTime = parseTime(startTimeStr); + LocalTime endTime = parseTime(endTimeStr); + + // 更新最晚开始时间和最早结束时间 + if (latestStartTime == null || startTime.isAfter(latestStartTime)) { + latestStartTime = startTime; + } + + if (earliestEndTime == null || endTime.isBefore(earliestEndTime)) { + earliestEndTime = endTime; + } + } + + // 检查是否存在交集 + if (latestStartTime != null && earliestEndTime != null && !latestStartTime.isAfter(earliestEndTime)) { + Map result = new HashMap<>(); + result.put("startTimeStr", latestStartTime.toString()); + result.put("endTimeStr", earliestEndTime.toString()); + return result; + } else { + // 无交集情况 + log.debug("给定的时间段列表无交集"); + return new HashMap<>(); + } + } catch (Exception e) { + log.error("计算时间段交集时发生异常", e); + return new HashMap<>(); + } + } + + /** * 判断指定时间是否在两个时间点之间(包含边界) * @@ -537,14 +606,52 @@ public class DateTimeUtils { // System.out.println(formatLocalDate(LocalDate.now(), "yyyy-MM-dd")); // 判断当前时间是否在工作时间(9:00-18:00)内 - boolean isWorkTime = isCurrentTimeInRange("09:00", "22:36"); +// boolean isWorkTime = isCurrentTimeInRange("09:00", "22:36"); // 判断特定时间是否在夜间时间(22:00-06:00)内 // LocalDateTime testTime = LocalDateTime.of(2025, 1, 1, 23, 30); - Date testTime = Date.from(LocalDateTime.of(2025, 10, 23, 21, 30).atZone(ZoneId.systemDefault()).toInstant()); - boolean isNight = isTimeInRange("08:30", "22:20", testTime); +// Date testTime = Date.from(LocalDateTime.of(2025, 10, 23, 21, 30).atZone(ZoneId.systemDefault()).toInstant()); +// boolean isNight = isTimeInRange("08:30", "22:20", testTime); + +// System.out.println("当前时间是否在工作时间内:" + isWorkTime); +// System.out.println("多个时间段的交集结果:" + isNight); + + System.out.println("=== 测试 findTimeIntersection ==="); + + // 测试正常交集情况 + List> timeList1 = new ArrayList<>(); + Map range1 = new HashMap<>(); + range1.put("startTimeStr", "06:00"); + range1.put("endTimeStr", "17:00"); + timeList1.add(range1); + + Map range2 = new HashMap<>(); + range2.put("startTimeStr", "06:00"); + range2.put("endTimeStr", "17:00"); + timeList1.add(range2); + + Map intersection1 = findTimeInterSection(timeList1); + System.out.println("交集结果1: " + intersection1); // 应该是 10:00 - 17:00 + + // 测试无交集情况 + List> timeList2 = new ArrayList<>(); + Map range3 = new HashMap<>(); + range3.put("startTimeStr", "09:00"); + range3.put("endTimeStr", "12:00"); + timeList2.add(range3); + + Map range4 = new HashMap<>(); + range4.put("startTimeStr", "13:00"); + range4.put("endTimeStr", "17:00"); + timeList2.add(range4); + + Map intersection2 = findTimeInterSection(timeList2); + System.out.println("交集结果2: " + intersection2); // 应该是空Map + + // 测试空列表 + Map intersection3 = findTimeInterSection(null); + System.out.println("交集结果3 (null输入): " + intersection3); // 应该是空Map + - System.out.println("当前时间是否在工作时间内:" + isWorkTime); - System.out.println("特定时间是否在夜间时间段内:" + isNight); } } \ No newline at end of file diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/activity/service/impl/ShopActivityGroupbookingServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/activity/service/impl/ShopActivityGroupbookingServiceImpl.java index bb547180..fd33a9a4 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/activity/service/impl/ShopActivityGroupbookingServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/activity/service/impl/ShopActivityGroupbookingServiceImpl.java @@ -13,6 +13,7 @@ import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.suisung.mall.common.api.ResultCode; import com.suisung.mall.common.api.StateCode; +import com.suisung.mall.common.constant.CommonConstant; import com.suisung.mall.common.domain.UserDto; import com.suisung.mall.common.exception.ApiException; import com.suisung.mall.common.exception.ApiUserException; @@ -648,8 +649,10 @@ public class ShopActivityGroupbookingServiceImpl extends BaseServiceImpl order_ids = Convert.toList(String.class, history.getOrder_id()); //只有一条记录 List shopOrderInfos = shopOrderInfoService.gets(order_ids); List rows = Convert.toList(Map.class, shopOrderInfos); + // 取消订单 flag = shopOrderBaseService.cancel(order_ids, rows, false); //已经调用cancelActivity, 重复 if (flag) { // 改变参团人员拼单状态 ShopActivityGroupbookingHistory groupbookingHistory = new ShopActivityGroupbookingHistory(); groupbookingHistory.setGbh_id(history.getGbh_id()); - groupbookingHistory.setGb_enable(0); + groupbookingHistory.setGb_enable(CommonConstant.Disable); if (!shopActivityGroupbookingHistoryService.edit(groupbookingHistory)) { throw new ApiException(I18nUtil._("改变参团人员拼单状态失败!")); } @@ -727,12 +733,10 @@ public class ShopActivityGroupbookingServiceImpl extends BaseServiceImpl innerDoOrderSeparate(String orderId, String storeId); - + /** * 根据商户号、交易号和收货流水号执行订单分账操作 *

diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/lakala/service/impl/LakalaApiServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/lakala/service/impl/LakalaApiServiceImpl.java index 22ca1c65..97423d30 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/lakala/service/impl/LakalaApiServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/lakala/service/impl/LakalaApiServiceImpl.java @@ -65,7 +65,6 @@ import java.time.LocalDateTime; import java.util.ArrayList; import java.util.Date; import java.util.List; -import java.util.Map; @Slf4j @@ -1838,7 +1837,7 @@ public class LakalaApiServiceImpl implements LakalaApiService { // 10. 检查商户绑定状态是否完成, 更改总的审核状态 shopMchEntryService.checkMerchEntryFinished(mchId); - + // 11. 日志记录并返回成功响应 log.info("商家绑定分账接收方异步通知处理完成,mchId:{} merCupNo:{}", mchId, merCupNo); return JSONUtil.createObj().set("code", "SUCCESS").set("message", "分账接收方绑定成功"); @@ -2265,270 +2264,6 @@ public class LakalaApiServiceImpl implements LakalaApiService { } - /** - * 执行拉卡拉订单分账操作 - *

- * 用户确认收货成功之后(大约15秒后),进行分账操作。 - * 分账指令是异步处理模式,响应报文成功时,指令状态是"status": "PROCESSING", - * 需要等待分账结果通知,或者主动发起查询。 - * 建议主动发起查询与分账指令动作之间间隔15秒以上。 - *

- *

- * 参考文档:https://o.lakala.com/#/home/document/detail?id=389 - *

- * - * @param orderId 平台订单Id - * @param storeId 店铺Id,可为空 - * @return Pair 处理结果对,first为是否成功,second为结果描述信息 - */ - @Override - public Pair innerDoOrderSeparate(String orderId, String storeId) { - // 1. 输入参数校验 - if (StrUtil.isBlank(orderId)) { - log.warn("[分账操作] 参数校验失败:订单号为空"); - return Pair.of(false, "订单号不能为空"); - } - - try { - // TODO 检查可分账余额是否足够? - - // 2. 查询订单信息 - log.info("[分账操作] 开始执行订单[{}]分账操作", orderId); - List shopOrderLklList = shopOrderLklService.selectByOrderId(orderId, "", storeId); - if (CollectionUtil.isEmpty(shopOrderLklList)) { - log.warn("[分账操作] 失败:订单[{}]不存在", orderId); - return Pair.of(false, "订单不存在"); - } - - int totalCount = shopOrderLklList.size(); - int successCount = 0; - StringBuilder errorMessages = new StringBuilder(); - - // 3. 初始化拉卡拉SDK - initLKLSDK(); - - // 4. 遍历处理每个店铺订单的分账 - log.info("[分账操作] 订单[{}]包含{}个子订单,开始逐一处理", orderId, totalCount); - for (ShopOrderLkl shopOrderLkl : shopOrderLklList) { - log.debug("[分账操作] 处理子订单:storeId={}, subLogNo={}, receive_log_no={}", shopOrderLkl.getStore_id(), shopOrderLkl.getLkl_sub_log_no(), shopOrderLkl.getLkl_receive_log_no()); - - if (!CommonConstant.Enable.equals(shopOrderLkl.getReceive_status()) || StrUtil.isBlank(shopOrderLkl.getLkl_receive_log_no())) { - log.warn("[分账操作] 订单[{}]对账流水号[{}]未被确认收货,跳过处理", orderId, shopOrderLkl.getLkl_receive_log_no()); - continue; - } - - // 5. 检查分账状态,避免重复处理 - LklOrderSeparate existingSeparateRecord = lklOrderSeparateService.getByLogNoAndOutTradeNo(shopOrderLkl.getLkl_sub_log_no(), orderId); - if (existingSeparateRecord != null) { - String status = existingSeparateRecord.getStatus(); - if ("SUCCESS".equals(status)) { - log.info("[分账操作] 订单[{}]交易对账流水号[{}]已完成分账,跳过处理", orderId, shopOrderLkl.getLkl_sub_log_no()); - successCount++; - continue; - } - if ("PROCESSING".equals(status) || "ACCEPTED".equals(status)) { - log.info("[分账操作] 订单[{}]交易对账流水号[{}]分账处理中或已受理,跳过处理", orderId, shopOrderLkl.getLkl_sub_log_no()); - successCount++; - continue; - } - } - - // 6. 获取订单分账相关参数 - String merchantNo = shopOrderLkl.getLkl_merchant_no(); - - // 分账金额 = 应付总金额-运费(支付时已计算好) - Integer splitAmount = shopOrderLkl.getSplit_amt(); - splitAmount = CheckUtil.isEmpty(splitAmount) ? 0 : splitAmount; - - // 7. 分账金额校验 - if (splitAmount < 1) { - String errorMsg = String.format("[分账操作] 店铺[%s]订单[%s]分账金额[%d]低于1分钱,跳过分账", - shopOrderLkl.getStore_id(), orderId, splitAmount); - log.error(errorMsg); - errorMessages.append(errorMsg).append("; "); - if (existingSeparateRecord != null) { - lklOrderSeparateService.updateRemark(existingSeparateRecord.getId(), errorMsg); - } - continue; - } - - // 获取分账平台接收方信息 - LklLedgerMerReceiverBind platformReceiver = lklLedgerMerReceiverBindService.getPlatformByMerCupNo(merchantNo); - - if (platformReceiver == null) { - String errorMsg = String.format("[分账操作] 店铺[%s]未绑定平台方接收账户,跳过分账", shopOrderLkl.getStore_id()); - log.error(errorMsg); - errorMessages.append(errorMsg).append("; "); - continue; - } - - // 8. 构建分账接收方列表 - List recvDatas = new ArrayList<>(); - - // 9. 获取商家分账比例并校验 - BigDecimal merchantSplitRatioRaw = shopOrderLkl.getSplit_ratio(); // 如:94 代表94% - // 判断商家分账比例是否有效(必须在(0, 100]范围内) - boolean canSplitForMerchant = merchantSplitRatioRaw != null - && merchantSplitRatioRaw.compareTo(BigDecimal.ZERO) > 0 - && merchantSplitRatioRaw.compareTo(new BigDecimal(100)) <= 0; - if (!canSplitForMerchant) { - String errorMsg = String.format("[分账操作] 店铺[%s]商家分账比例[%s]不在(0-100]范围内,无法分账", - shopOrderLkl.getStore_id(), merchantSplitRatioRaw); - log.error(errorMsg); - errorMessages.append(errorMsg).append("; "); - continue; - } - // 商家分账 - BigDecimal merchantSplitRatio = merchantSplitRatioRaw.divide(new BigDecimal(100)); // 比如:94% - - BigDecimal distributorSplitRatio = BigDecimal.ZERO; - BigDecimal platformSplitRatio = BigDecimal.ONE; - // 分账代理商接收方信息 - List distributorReceivers = lklLedgerMerReceiverBindService.selectAgentByMerCupNo(merchantNo); - if (distributorReceivers != null && !distributorReceivers.isEmpty()) { - distributorSplitRatio = new BigDecimal("0.8"); - platformSplitRatio = new BigDecimal("0.2"); - } - - // 记录关键分账参数,便于问题排查 - log.info("[分账操作] 参数信息:订单={}, 商户={}, 总金额={}分, 商家比例={}, 平台比例={}, 代理商比例={}, 是否有代理商={}", - orderId, merchantNo, splitAmount, merchantSplitRatio, platformSplitRatio, distributorSplitRatio, - (distributorReceivers != null && !distributorReceivers.isEmpty())); - - // 返回值如下:{platformAmount=6, merchantAmount=94, agentAmount=0} - Map splitAmountMap = CommonUtil.calculateProfitSharing(splitAmount, merchantSplitRatio, platformSplitRatio, distributorSplitRatio); - Integer merchantAmount = splitAmountMap.get("merchantAmount"); - Integer platformAmount = splitAmountMap.get("platformAmount"); - Integer agentAmount = splitAmountMap.get("agentAmount"); - - // 记录分账结果,便于问题排查 - log.info("[分账操作] 金额计算结果:订单={}, 商户={}, 总金额={}分, 商家分得={}分, 平台分得={}分, 代理商分得={}分", - orderId, merchantNo, splitAmount, merchantAmount, platformAmount, agentAmount); - - if (merchantAmount > 0) { - V3SacsSeparateRecvDatas receiver = new V3SacsSeparateRecvDatas(); - receiver.setRecvMerchantNo(merchantNo); - receiver.setSeparateValue(merchantAmount.toString()); - recvDatas.add(receiver); - } - - if (platformAmount > 0) { - V3SacsSeparateRecvDatas receiver = new V3SacsSeparateRecvDatas(); - receiver.setRecvNo(platformReceiver.getReceiver_no()); - receiver.setSeparateValue(platformAmount.toString()); - recvDatas.add(receiver); - } - - if (agentAmount > 0 && distributorReceivers != null && !distributorReceivers.isEmpty()) { - V3SacsSeparateRecvDatas receiver = new V3SacsSeparateRecvDatas(); - receiver.setRecvNo(distributorReceivers.get(0).getReceiver_no()); - receiver.setSeparateValue(agentAmount.toString()); - recvDatas.add(receiver); - } - - // 14. 构建分账请求对象 - V3SacsSeparateRequest separateRequest = new V3SacsSeparateRequest(); - separateRequest.setMerchantNo(merchantNo); - separateRequest.setLogNo(shopOrderLkl.getLkl_receive_log_no()); // 合单和非合单的流水号保存在此字段 - separateRequest.setLogDate(shopOrderLkl.getLkl_log_date()); - separateRequest.setOutSeparateNo(shopOrderLkl.getOut_separate_no()); - separateRequest.setTotalAmt(splitAmount.toString()); - separateRequest.setLklOrgNo(orgCode); - separateRequest.setCalType("0"); // 0- 按照指定金额,1- 按照指定比例。默认 0 - separateRequest.setNotifyUrl(projectDomain + "/api/mobile/shop/lakala/sacs/separateNotify"); - - // 15. 设置分账接收方列表 - separateRequest.setRecvDatas(recvDatas); - log.info("[分账操作] 请求参数: 订单={}, 商户={}, 金额={}分, 分账接收方数量={}", - orderId, merchantNo, splitAmount, recvDatas.size()); - - log.debug("[分账操作] 请求详细参数: {}", JSONUtil.toJsonStr(separateRequest)); - - // 16. 发送分账请求 - log.info("[分账操作] 向拉卡拉发送分账请求:订单={}, 商户={}, 分账流水号={}", - orderId, merchantNo, shopOrderLkl.getLkl_sub_log_no()); - String response = LKLSDK.httpPost(separateRequest); - if (StrUtil.isBlank(response)) { - String errorMsg = String.format("[分账操作] 拉卡拉无响应,订单=%s,商户=%s,分账流水号=%s", - orderId, merchantNo, shopOrderLkl.getLkl_sub_log_no()); - log.error(errorMsg); - errorMessages.append(errorMsg).append("; "); - continue; - } - - log.debug("[分账操作] 响应结果: {}", response); - - // 17. 解析响应结果 - JSONObject respJson = JSONUtil.parseObj(response); - if (respJson == null || !lklSacsSuccessCode.equals(respJson.getStr("code")) || respJson.getJSONObject("resp_data") == null) { - String errorMsg = String.format("[分账操作] 拉卡拉返回格式异常,订单=%s,商户=%s,分账流水号=%s,响应=%s,respJson=%s", - orderId, merchantNo, shopOrderLkl.getLkl_sub_log_no(), response, respJson); - log.error(errorMsg); - errorMessages.append(errorMsg).append("; "); - continue; - } - - // 18. 保存分账记录 - JSONObject respData = respJson.getJSONObject("resp_data"); - LklOrderSeparate separateRecord = new LklOrderSeparate(); - separateRecord.setSeparate_no(respData.getStr("separate_no")); - separateRecord.setOut_separate_no(separateRequest.getOutSeparateNo()); - separateRecord.setMerchant_no(merchantNo); - separateRecord.setLog_no(separateRequest.getLogNo()); // 发货完成交易流水号后14位 。分账商户用该流水号发起分账 - separateRecord.setLog_date(separateRequest.getLogDate()); - separateRecord.setOrder_id(shopOrderLkl.getOrder_id()); - separateRecord.setNotify_url(separateRequest.getNotifyUrl()); - separateRecord.setLkl_org_no(separateRequest.getLklOrgNo()); - separateRecord.setRecv_datas(JSONUtil.toJsonStr(separateRequest.getRecvDatas())); - separateRecord.setStatus(respData.getStr("status")); - separateRecord.setTotal_amt(separateRequest.getTotalAmt()); - separateRecord.setActual_separate_amt(Convert.toStr(shopOrderLkl.getSplit_amt())); - - try { - if (lklOrderSeparateService.addOrUpdateByReceiverNo(separateRecord)) { - log.info("[分账操作] 记录保存成功:订单={}, 分账单号={}, 状态={}, 分账流水号={}", - orderId, separateRecord.getSeparate_no(), separateRecord.getStatus(), separateRecord.getLog_no()); - successCount++; - } else { - String errorMsg = String.format("[分账操作] 保存分账记录失败,订单=%s,分账单号=%s,分账流水号=%s", - orderId, separateRecord.getSeparate_no(), separateRecord.getLog_no()); - log.error(errorMsg); - lklOrderSeparateService.updateRemark(separateRecord.getLog_no(), separateRecord.getSeparate_no(), errorMsg); - errorMessages.append(errorMsg).append("; "); - } - } catch (Exception e) { - String errorMsg = String.format("[分账操作] 保存分账记录异常,订单=%s,分账单号=%s,流水号=%s,错误=%s", - orderId, - separateRecord.getSeparate_no(), - separateRecord.getLog_no(), - e.getMessage()); - log.error(errorMsg, e); - errorMessages.append(errorMsg).append("; "); - } - } - - // 19. 返回最终处理结果 - log.info("[分账操作] 处理完成:总订单数={},成功处理数={}", orderId, totalCount, successCount); - if (successCount == 0) { - String result = "分账全部失败: " + errorMessages; - log.warn("[分账操作] 结果:订单[{}] {}", orderId, result); - return Pair.of(false, result); - } else if (successCount < totalCount) { - String result = "部分分账成功,处理中: " + errorMessages; - log.info("[分账操作] 结果:订单[{}] {}", orderId, result); - return Pair.of(true, result); - } else { - String result = "全部订单分账已提交处理"; - log.info("[分账操作] 结果:订单[{}] {}", orderId, result); - return Pair.of(true, result); - } - } catch (Exception e) { - String errorMsg = String.format("[分账操作] 系统异常,订单=%s,错误=%s", orderId, e.getMessage()); - log.error(errorMsg, e); - return Pair.of(false, "系统异常,请稍后重试"); - } - } - /** * 根据商户号、交易号和收货流水号执行订单分账操作 *

@@ -2838,6 +2573,9 @@ public class LakalaApiServiceImpl implements LakalaApiService { separateRecord.setTotal_amt(separateRequest.getTotalAmt()); separateRecord.setActual_separate_amt(Convert.toStr(refCanSeparateAmt)); separateRecord.setTotal_fee_amt(Convert.toStr(lklSeparateDTO.getLklAmount())); + if (separateRequest != null) { + separateRecord.setLkl_req(JSONUtil.toJsonStr(separateRequest)); + } if (lklOrderSeparateService.addOrUpdateByReceiverNo(separateRecord)) { log.info("[分账操作] 分账记录保存成功, orderId={}, separateNo={}, status={}, logNo={}", @@ -3798,6 +3536,9 @@ public class LakalaApiServiceImpl implements LakalaApiService { lklOrderDraw.setBatch_auto_settle(payType); lklOrderDraw.setNotify_url(request.getNotifyUrl()); lklOrderDraw.setNotify_resp(responseStr); + if (request != null) { + lklOrderDraw.setLkl_req(JSONUtil.toJsonStr(request)); + } lklOrderDraw.setRemark(remark); if (StrUtil.isNotBlank(summary)) { lklOrderDraw.setSummary(summary); diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/order/controller/mobile/UserOrderController.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/controller/mobile/UserOrderController.java index 6935b3a7..9d496ec8 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/order/controller/mobile/UserOrderController.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/order/controller/mobile/UserOrderController.java @@ -324,7 +324,7 @@ public class UserOrderController extends BaseControllerImpl { @ApiOperation(value = "可预约订单的时间槽", notes = "可预约订单的时间槽") @RequestMapping(value = "/booking_time_args", method = RequestMethod.GET) - public CommonResult listInvoice(@RequestParam(name = "store_id", defaultValue = "0") Integer store_id) { + public CommonResult listInvoice(@RequestParam(name = "store_id", defaultValue = "0") String store_id) { List list = shopOrderInfoService.genBookingOrderArgList(store_id); return CommonResult.success(list); } diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/ShopOrderInfoService.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/ShopOrderInfoService.java index 9f400d2a..b0027f30 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/ShopOrderInfoService.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/ShopOrderInfoService.java @@ -139,8 +139,8 @@ public interface ShopOrderInfoService extends IBaseService { /** * 根据店铺的营业时间范围生成可预约下单的参数 * - * @param storeId 店铺ID + * @param storeId 店铺ID,多个店铺,使用英文半角逗号隔开,如:57,58,59 * @return */ - List genBookingOrderArgList(Integer storeId); + List genBookingOrderArgList(String storeId); } diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java index 52af4f9b..a3837c5d 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java @@ -1,5 +1,6 @@ package com.suisung.mall.shop.order.service.impl; +import cn.hutool.core.collection.CollUtil; import cn.hutool.core.convert.Convert; import cn.hutool.core.date.DateUtil; import cn.hutool.core.util.NumberUtil; @@ -1017,36 +1018,20 @@ public class ShopOrderInfoServiceImpl extends BaseServiceImpl genBookingOrderArgList(Integer storeId) { + public List genBookingOrderArgList(String storeIds) { // 初始化默认营业时间 - String openingHours = "09:00"; - String closeHours = "18:00"; + Map timesMap = new HashMap<>(); // 如果storeId不为空,则尝试获取店铺信息 - if (storeId != null) { - try { - ShopStoreInfo shopStoreInfo = shopStoreInfoService.getShopStoreInfoByStoreId(storeId); - if (shopStoreInfo != null) { - // 检查并使用店铺设置的营业时间 - if (StrUtil.isNotBlank(shopStoreInfo.getStore_opening_hours())) { - openingHours = shopStoreInfo.getStore_opening_hours(); - } - if (StrUtil.isNotBlank(shopStoreInfo.getStore_close_hours())) { - closeHours = shopStoreInfo.getStore_close_hours(); - } - logger.debug("[生成预约参数] 使用店铺营业时间,storeId: {}, opening: {}, close: {}", storeId, openingHours, closeHours); - } else { - logger.warn("[生成预约参数] 未找到店铺信息,使用默认营业时间,storeId: {}", storeId); - } - } catch (Exception e) { - logger.error("[生成预约参数] 获取店铺信息异常,使用默认营业时间,storeId: {}", storeId, e); + if (StrUtil.isNotBlank(storeIds)) { + List> timesMapList = selStoreBizTimeMapList(storeIds); + if (!CollUtil.isEmpty(timesMapList)) { + timesMap = DateTimeUtils.findTimeInterSection(timesMapList); } - } else { - logger.warn("[生成预约参数] 店铺ID为空,使用默认营业时间"); } List result = new ArrayList<>(); @@ -1082,18 +1067,98 @@ public class ShopOrderInfoServiceImpl extends BaseServiceImpl items = generateTimeSlots(dateStr, openingHours, closeHours, i == 0); - bookingArgDTO.setItems(items != null ? items : new ArrayList<>()); + List items = new ArrayList<>(); + // 如果是今天,始终添加"立即送出"选项 + if (i == 0) { + BookingArgDTO.BookingArgItem immediateItem = new BookingArgDTO.BookingArgItem(); + immediateItem.setTime_title("立即送出"); + immediateItem.setBooking_at(0L); + immediateItem.setBooking_state(1); + immediateItem.setBooking_begin_time(""); + immediateItem.setBooking_end_time(""); + items.add(immediateItem); + } + + // 只有当timesMap不为空时才生成其他时间槽 + if (!ObjectUtil.isEmpty(timesMap) && StrUtil.isNotBlank(timesMap.get("startTimeStr")) && StrUtil.isNotBlank(timesMap.get("endTimeStr"))) { + List timeSlots = generateTimeSlots(dateStr, timesMap.get("startTimeStr"), timesMap.get("endTimeStr"), i == 0); + if (i == 0) { + // 对于今天,移除除"立即送出"外的所有时间槽 + items.addAll(timeSlots.stream().filter(item -> item.getBooking_state() != 1).collect(Collectors.toList())); + } else { + // 对于其他日期,添加所有时间槽 + items.addAll(timeSlots); + } + } else if (i == 0) { + // 如果timesMap为空,今天只保留"立即送出"选项 + logger.debug("[生成预约参数] timesMap为空,今天只生成立即送出选项"); + } else { + // 如果timesMap为空,其他日期不生成任何时间槽 + logger.debug("[生成预约参数] timesMap为空,不生成{}的预约时间槽", dateStr); + continue; // 跳过当前日期 + } + + bookingArgDTO.setItems(items); result.add(bookingArgDTO); } - logger.debug("[生成预约参数] 成功生成预约参数,storeId: {}, opening: {}, close: {}, 参数数量: {}", - storeId, openingHours, closeHours, result.size()); + logger.debug("[生成预约参数] 成功生成预约参数,storeId: {}, timesMap: {}, 参数数量: {}", + storeIds, timesMap, result.size()); return result; } + /** + * 根据 storeIds(一个或多个 storeid,如 34,23,43,23,),先对id去重,再获取多个店铺的营业时间 List 列表list + * + * @param storeIds 以逗号分隔的店铺ID字符串 + * @return 包含店铺营业时间信息的列表,每个元素为包含opening_hours和close_hours的Map + */ + private List> selStoreBizTimeMapList(String storeIds) { + // 参数校验 + if (StrUtil.isBlank(storeIds)) { + return Collections.emptyList(); + } + + try { + // 1. 解析并去重店铺ID + List uniqueStoreIds = Arrays.stream(storeIds.split(",")) + .map(String::trim) + .filter(StrUtil::isNotBlank) + .distinct() + .collect(Collectors.toList()); + + // 2. 如果没有有效的店铺ID,返回空列表 + if (uniqueStoreIds.isEmpty()) { + return Collections.emptyList(); + } + + // 3. 批量获取店铺信息 + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.select("store_opening_hours", "store_close_hours"); // 只查询必要字段 + queryWrapper.in("store_id", storeIds); + + List shopStoreInfos = shopStoreInfoService.find(queryWrapper); + + // 4. 转换为营业时间映射列表 + return shopStoreInfos.stream() + .filter(Objects::nonNull) + .map(storeInfo -> { + Map timeSlot = new HashMap<>(); + timeSlot.put("startTimeStr", storeInfo.getStore_opening_hours()); + timeSlot.put("endTimeStr", storeInfo.getStore_close_hours()); + return timeSlot; + }) + .collect(Collectors.toList()); + + } catch (Exception e) { + logger.error("[获取店铺营业时间] 处理店铺营业时间异常,storeIds: {}", storeIds, e); + return Collections.emptyList(); + } + } + + /** * 生成时间槽列表 * diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/user/service/ShopUserVoucherService.java b/mall-shop/src/main/java/com/suisung/mall/shop/user/service/ShopUserVoucherService.java index 0e946c25..3a46559a 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/user/service/ShopUserVoucherService.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/user/service/ShopUserVoucherService.java @@ -39,7 +39,7 @@ public interface ShopUserVoucherService extends IBaseService { Map getLists(QueryWrapper voucherQueryWrapper, int page, int rows); - boolean useNeedNotPin(Integer user_id, String order_id); + boolean tryUseFreeGroupVoucher(Integer user_id, String order_id); // 线下优惠券核销 boolean exitWriteoffUserVoucher(ShopUserVoucher shopUserVoucher); diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/user/service/impl/ShopUserVoucherServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/user/service/impl/ShopUserVoucherServiceImpl.java index 61236faf..19b0db7f 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/user/service/impl/ShopUserVoucherServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/user/service/impl/ShopUserVoucherServiceImpl.java @@ -65,7 +65,7 @@ public class ShopUserVoucherServiceImpl extends BaseServiceImpl queryWrapper = new QueryWrapper<>(); - queryWrapper.eq("voucher_type", 1).eq("user_id", user_id).eq("voucher_state_id", StateCode.VOUCHER_STATE_UNUSED).ge("voucher_end_date", date); + queryWrapper.eq("voucher_type", 1) + .eq("user_id", user_id) + .eq("voucher_state_id", StateCode.VOUCHER_STATE_UNUSED) + .ge("voucher_end_date", date); ShopUserVoucher user_voucher_row = findOne(queryWrapper); if (user_voucher_row != null) { From 6a335ef1aa570863d9aadfb0c3d98aaa3d599c96 Mon Sep 17 00:00:00 2001 From: Jack <46790855@qq.com> Date: Thu, 30 Oct 2025 01:22:17 +0800 Subject: [PATCH 07/35] =?UTF-8?q?=E9=A2=84=E8=AE=A2=E5=8D=95=E6=97=B6?= =?UTF-8?q?=E9=97=B4=E6=A7=BD=E5=88=97=E8=A1=A8=E9=80=BB=E8=BE=91=E8=B0=83?= =?UTF-8?q?=E6=95=B4=EF=BC=8C=E5=88=86=E8=B4=A6=E3=80=81=E6=8F=90=E7=8E=B0?= =?UTF-8?q?=20=E6=8A=A5=E6=96=87=E5=AD=97=E6=AE=B5=20=E4=BF=9D=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../shop/order/controller/mobile/UserOrderController.java | 4 ++-- .../shop/order/service/impl/ShopOrderInfoServiceImpl.java | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/order/controller/mobile/UserOrderController.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/controller/mobile/UserOrderController.java index 9d496ec8..416c76f4 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/order/controller/mobile/UserOrderController.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/order/controller/mobile/UserOrderController.java @@ -324,8 +324,8 @@ public class UserOrderController extends BaseControllerImpl { @ApiOperation(value = "可预约订单的时间槽", notes = "可预约订单的时间槽") @RequestMapping(value = "/booking_time_args", method = RequestMethod.GET) - public CommonResult listInvoice(@RequestParam(name = "store_id", defaultValue = "0") String store_id) { - List list = shopOrderInfoService.genBookingOrderArgList(store_id); + public CommonResult listInvoice(@RequestParam(name = "store_ids", defaultValue = "") String store_ids) { + List list = shopOrderInfoService.genBookingOrderArgList(store_ids); return CommonResult.success(list); } diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java index a3837c5d..a7a0134a 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java @@ -1123,9 +1123,10 @@ public class ShopOrderInfoServiceImpl extends BaseServiceImpl uniqueStoreIds = Arrays.stream(storeIds.split(",")) + List uniqueStoreIds = Arrays.stream(storeIds.split(",")) .map(String::trim) .filter(StrUtil::isNotBlank) + .map(Integer::valueOf) .distinct() .collect(Collectors.toList()); From 5ff094de7a11835dfd7cfd8d80b3d41dbbf5f323 Mon Sep 17 00:00:00 2001 From: Jack <46790855@qq.com> Date: Thu, 30 Oct 2025 10:47:14 +0800 Subject: [PATCH 08/35] =?UTF-8?q?=E9=A2=84=E8=AE=A2=E5=8D=95=E6=97=B6?= =?UTF-8?q?=E9=97=B4=E6=A7=BD=E5=88=97=E8=A1=A8=E9=80=BB=E8=BE=91=E8=B0=83?= =?UTF-8?q?=E6=95=B4=EF=BC=8C=E5=88=86=E8=B4=A6=E3=80=81=E6=8F=90=E7=8E=B0?= =?UTF-8?q?=20=E6=8A=A5=E6=96=87=E5=AD=97=E6=AE=B5=20=E4=BF=9D=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mall/common/pojo/dto/BookingArgDTO.java | 5 + .../impl/ShopOrderInfoServiceImpl.java | 112 +++++++++--------- .../service/SFExpressApiService.java | 8 +- .../service/impl/SFExpressApiServiceImpl.java | 97 +++++++++------ .../service/impl/ShopMchEntryServiceImpl.java | 22 +--- .../impl/ShopStoreBaseServiceImpl.java | 15 ++- 6 files changed, 133 insertions(+), 126 deletions(-) diff --git a/mall-common/src/main/java/com/suisung/mall/common/pojo/dto/BookingArgDTO.java b/mall-common/src/main/java/com/suisung/mall/common/pojo/dto/BookingArgDTO.java index 8b0457db..3cfd5f48 100644 --- a/mall-common/src/main/java/com/suisung/mall/common/pojo/dto/BookingArgDTO.java +++ b/mall-common/src/main/java/com/suisung/mall/common/pojo/dto/BookingArgDTO.java @@ -33,6 +33,11 @@ public class BookingArgDTO { @ApiModelProperty(value = "日期") private String date; + /** + * 工作时间依据(如"09:00-21:00") + */ + private String working_hours; + /** * 时间项列表 */ diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java index a7a0134a..f48b07d2 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java @@ -1046,8 +1046,9 @@ public class ShopOrderInfoServiceImpl extends BaseServiceImpl timeSlots = generateTimeSlots(dateStr, timesMap.get("startTimeStr"), timesMap.get("endTimeStr"), i == 0); + String startTimeStr = timesMap.get("startTimeStr"); + String endTimeStr = timesMap.get("endTimeStr"); + List timeSlots = generateTimeSlots(dateStr, startTimeStr, endTimeStr, i == 0); if (i == 0) { // 对于今天,移除除"立即送出"外的所有时间槽 items.addAll(timeSlots.stream().filter(item -> item.getBooking_state() != 1).collect(Collectors.toList())); @@ -1090,6 +1093,8 @@ public class ShopOrderInfoServiceImpl extends BaseServiceImpl 列表list - * - * @param storeIds 以逗号分隔的店铺ID字符串 - * @return 包含店铺营业时间信息的列表,每个元素为包含opening_hours和close_hours的Map - */ - private List> selStoreBizTimeMapList(String storeIds) { - // 参数校验 - if (StrUtil.isBlank(storeIds)) { - return Collections.emptyList(); - } - - try { - // 1. 解析并去重店铺ID - List uniqueStoreIds = Arrays.stream(storeIds.split(",")) - .map(String::trim) - .filter(StrUtil::isNotBlank) - .map(Integer::valueOf) - .distinct() - .collect(Collectors.toList()); - - // 2. 如果没有有效的店铺ID,返回空列表 - if (uniqueStoreIds.isEmpty()) { - return Collections.emptyList(); - } - - // 3. 批量获取店铺信息 - QueryWrapper queryWrapper = new QueryWrapper<>(); - queryWrapper.select("store_opening_hours", "store_close_hours"); // 只查询必要字段 - queryWrapper.in("store_id", storeIds); - - List shopStoreInfos = shopStoreInfoService.find(queryWrapper); - - // 4. 转换为营业时间映射列表 - return shopStoreInfos.stream() - .filter(Objects::nonNull) - .map(storeInfo -> { - Map timeSlot = new HashMap<>(); - timeSlot.put("startTimeStr", storeInfo.getStore_opening_hours()); - timeSlot.put("endTimeStr", storeInfo.getStore_close_hours()); - return timeSlot; - }) - .collect(Collectors.toList()); - - } catch (Exception e) { - logger.error("[获取店铺营业时间] 处理店铺营业时间异常,storeIds: {}", storeIds, e); - return Collections.emptyList(); - } - } - - /** * 生成时间槽列表 * @@ -1273,5 +1227,55 @@ public class ShopOrderInfoServiceImpl extends BaseServiceImpl 列表list + * + * @param storeIds 以逗号分隔的店铺ID字符串 + * @return 包含店铺营业时间信息的列表,每个元素为包含opening_hours和close_hours的Map + */ + private List> selStoreBizTimeMapList(String storeIds) { + // 参数校验 + if (StrUtil.isBlank(storeIds)) { + return Collections.emptyList(); + } + + try { + // 1. 解析并去重店铺ID + List uniqueStoreIds = Arrays.stream(storeIds.split(",")) + .map(String::trim) + .filter(StrUtil::isNotBlank) + .map(Integer::valueOf) + .distinct() + .collect(Collectors.toList()); + + // 2. 如果没有有效的店铺ID,返回空列表 + if (uniqueStoreIds.isEmpty()) { + return Collections.emptyList(); + } + + // 3. 批量获取店铺信息 + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.select("store_opening_hours", "store_close_hours"); // 只查询必要字段 + queryWrapper.in("store_id", storeIds); + + List shopStoreInfos = shopStoreInfoService.find(queryWrapper); + + // 4. 转换为营业时间映射列表 + return shopStoreInfos.stream() + .filter(Objects::nonNull) + .map(storeInfo -> { + Map timeSlot = new HashMap<>(); + timeSlot.put("startTimeStr", storeInfo.getStore_opening_hours()); + timeSlot.put("endTimeStr", storeInfo.getStore_close_hours()); + return timeSlot; + }) + .collect(Collectors.toList()); + + } catch (Exception e) { + logger.error("[获取店铺营业时间] 处理店铺营业时间异常,storeIds: {}", storeIds, e); + return Collections.emptyList(); + } + } + } diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/sfexpress/service/SFExpressApiService.java b/mall-shop/src/main/java/com/suisung/mall/shop/sfexpress/service/SFExpressApiService.java index 3bd8f276..c6898d0a 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/sfexpress/service/SFExpressApiService.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/sfexpress/service/SFExpressApiService.java @@ -31,16 +31,16 @@ public interface SFExpressApiService { * * @param mchId 商家入驻编号 * @param storeId 商家门店ID - * @param shopName 店名 - * @param cityName 城市 - * @param shopAddress 店铺详细地址 + * // * @param shopName 店名 + * // * @param cityName 城市 + * // * @param shopAddress 店铺详细地址 * @param contactName 店铺联系人 * @param contactPhone 店铺电话 * @param longitude 经度 * @param latitude 纬度 * @return */ - Pair createSfExpressShop(Long mchId, Integer storeId, String shopName, String cityName, String shopAddress, String contactName, String contactPhone, String longitude, String latitude); + Pair createSfExpressShop(Long mchId, Integer storeId, String contactName, String contactPhone, String longitude, String latitude); /** diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/sfexpress/service/impl/SFExpressApiServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/sfexpress/service/impl/SFExpressApiServiceImpl.java index f43aed70..94a7fc1c 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/sfexpress/service/impl/SFExpressApiServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/sfexpress/service/impl/SFExpressApiServiceImpl.java @@ -185,42 +185,42 @@ public class SFExpressApiServiceImpl implements SFExpressApiService { return Pair.of(false, "联系人手机号不能为空"); } - AddressParseResultTO addressParseResultTO = AddressUtil.parseAddress(shopMchEntry.getStore_address()); - // 解析城市名称 - String cityName = "桂平市"; // 默认城市 - - // 去掉省市区的详细地址 - String storeAddress = addressParseResultTO.getDetailAddress(); - - if (StrUtil.isNotBlank(shopMchEntry.getStore_area())) { - String[] areaNames = shopMchEntry.getStore_area().split("/"); - if (areaNames.length >= 3) { - cityName = areaNames[areaNames.length - 1]; - } else { - cityName = shopMchEntry.getStore_area().replace("/", ""); - } - } else { - cityName = addressParseResultTO.getCity(); - } - - // 如果解析后城市名为空,使用默认值 - if (StrUtil.isBlank(cityName)) { - cityName = "桂平市"; - logger.warn("[顺丰] 城市名为空,使用默认城市: {}", cityName); - } else { - logger.debug("[顺丰] 解析得到城市名: {}", cityName); - } - - // 为了其他顺丰店同名,店铺名称加上[门店ID]; 如:xxxx[xxxx] 聚万家生鲜超市[69] - String shopStoreName = String.format("%s[%s]", shopMchEntry.getStore_name(), shopMchEntry.getStore_id()); +// AddressParseResultTO addressParseResultTO = AddressUtil.parseAddress(shopMchEntry.getStore_address()); +// // 解析城市名称 +// String cityName = "桂平市"; // 默认城市 +// +// // 去掉省市区的详细地址 +// String storeAddress = addressParseResultTO.getDetailAddress(); +// +// if (StrUtil.isNotBlank(shopMchEntry.getStore_area())) { +// String[] areaNames = shopMchEntry.getStore_area().split("/"); +// if (areaNames.length >= 3) { +// cityName = areaNames[areaNames.length - 1]; +// } else { +// cityName = shopMchEntry.getStore_area().replace("/", ""); +// } +// } else { +// cityName = addressParseResultTO.getCity(); +// } +// +// // 如果解析后城市名为空,使用默认值 +// if (StrUtil.isBlank(cityName)) { +// cityName = "桂平市"; +// logger.warn("[顺丰] 城市名为空,使用默认城市: {}", cityName); +// } else { +// logger.debug("[顺丰] 解析得到城市名: {}", cityName); +// } +// +// // 为了其他顺丰店同名,店铺名称加上[门店ID]; 如:xxxx[xxxx] 聚万家生鲜超市[69] +// String shopStoreName = String.format("%s[%s]", shopMchEntry.getStore_name(), shopMchEntry.getStore_id()); // 调用创建店铺方法 Pair result = createSfExpressShop( mchId, Convert.toInt(shopMchEntry.getStore_id()), - shopStoreName, - cityName, - storeAddress, +// shopStoreName, +// cityName, +// storeAddress, shopMchEntry.getContact_name(), contactMobile, shopMchEntry.getStore_longitude(), @@ -237,9 +237,6 @@ public class SFExpressApiServiceImpl implements SFExpressApiService { * * @param mchId 商家入驻编号 * @param storeId 商家门店ID - * @param shopName 店名 - * @param cityName 城市 - * @param shopAddress 店铺详细地址 * @param contactName 店铺联系人 * @param contactPhone 店铺电话 * @param longitude 经度 @@ -247,17 +244,16 @@ public class SFExpressApiServiceImpl implements SFExpressApiService { * @return Pair 第一个元素表示是否成功,第二个元素表示结果信息或错误信息 */ @Override - public Pair createSfExpressShop(Long mchId, Integer storeId, String shopName, String cityName, - String shopAddress, String contactName, String contactPhone, + public Pair createSfExpressShop(Long mchId, Integer storeId, String contactName, String contactPhone, String longitude, String latitude) { logger.info("开始创建顺丰同城店铺, storeId: {}", storeId); try { // 1. 验证必要参数 if ((CheckUtil.isEmpty(mchId) && CheckUtil.isEmpty(storeId)) || - StringUtils.isAnyBlank(shopName, shopAddress, contactName, contactPhone)) { - logger.error("创建顺丰店铺,缺少必要参数!mchId:{}, storeId:{},shopName:{},shopAddress:{},contactName:{},contactPhone:{}", - mchId, storeId, shopName, shopAddress, contactName, contactPhone); + StringUtils.isAnyBlank(contactName, contactPhone)) { + logger.error("创建顺丰店铺,缺少必要参数!mchId:{}, storeId:{},contactName:{},contactPhone:{}", + mchId, storeId, contactName, contactPhone); return Pair.of(false, "创建顺丰店铺,缺少必要参数!"); } @@ -280,6 +276,29 @@ public class SFExpressApiServiceImpl implements SFExpressApiService { } } + AddressParseResultTO addressParseResultTO = AddressUtil.parseAddress(shopMchEntry.getStore_address()); + String cityName = "桂平市"; + String shopAddress = addressParseResultTO != null ? addressParseResultTO.getDetailAddress() : ""; + + if (StrUtil.isNotBlank(shopMchEntry.getStore_area())) { + String[] areaNames = shopMchEntry.getStore_area().split("/"); + cityName = areaNames.length >= 3 ? areaNames[2] : + areaNames.length > 0 ? areaNames[areaNames.length - 1] : cityName; + } else if (addressParseResultTO != null && StrUtil.isNotBlank(addressParseResultTO.getCity())) { + cityName = addressParseResultTO.getCity(); + } + + if (StrUtil.isBlank(cityName)) { + cityName = "桂平市"; + logger.warn("[顺丰] 城市名为空,使用默认城市: {}", cityName); + } else { + logger.debug("[顺丰] 解析得到城市名: {}", cityName); + } + + // 为了其他顺丰店同名,店铺名称加上[门店ID]; 如:xxxx[xxxx] 聚万家生鲜超市[69] + String shopName = String.format("%s[%s]", shopMchEntry.getStore_name(), shopMchEntry.getStore_id()); + + // 3. 获取或初始化商家配送信息 ShopStoreSameCityTransportBase transportBase = shopStoreSameCityTransportBaseService .getShopStoreSameCityTransportBaseById(Long.valueOf(storeId)); diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopMchEntryServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopMchEntryServiceImpl.java index 4e91b649..b51d3660 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopMchEntryServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopMchEntryServiceImpl.java @@ -646,27 +646,7 @@ public class ShopMchEntryServiceImpl extends BaseServiceImpl contractInfo = esignContractService.checkSignFlowStatus(record.getLogin_mobile()); -// if (contractInfo != null) { -// record.setSigned_status(contractInfo.getFirst()); -// record.setContract_download_url(contractInfo.getSecond()); -// -// // 更改同步合同审核状态和合同下载地址 -// taskService.executeTask(() -> { -// log.debug("###更改同步合同审核状态和下载地址###"); -// if (!updateMerchEntrySignedStatusAndContractDownloadUrl(record.getLogin_mobile(), record.getSigned_status(), record.getContract_download_url())) { -// log.error("###更改同步合同审核状态和下载地址失败###"); -// } -// }); -// } -// } - // === 拉卡拉签约逻辑 === - Long mchId = record.getId(); if (CommonConstant.Enable.equals(record.getHas_ec_signed())) { LklLedgerEc ec = lklLedgerEcService.getByMchId( @@ -830,7 +810,7 @@ public class ShopMchEntryServiceImpl extends BaseServiceImpl 0 ? areaNames[areaNames.length - 1] : storeArea.replace("/", ""); + // 创建顺丰店铺 +// if (storeArea != null) { +// String[] areaNames = storeArea.split("/"); +// String cityName = areaNames.length > 0 ? areaNames[areaNames.length - 1] : storeArea.replace("/", ""); - sfExpressApiService.createSfExpressShop(mchId, storeId, shopMchEntry.getStore_name(), - cityName, shopMchEntry.getStore_address(), shopMchEntry.getContact_name(), - contact_mobile, shopMchEntry.getStore_longitude(), shopMchEntry.getStore_latitude()); - } + sfExpressApiService.createSfExpressShop(mchId, storeId, shopMchEntry.getContact_name(), + contact_mobile, shopMchEntry.getStore_longitude(), shopMchEntry.getStore_latitude()); +// } return Pair.of(storeId, "新增成功"); } catch (Exception e) { From c3997d074f7d6edf66a06db8ecd7d46fbc617db7 Mon Sep 17 00:00:00 2001 From: liyj <1617420630@qq.com> Date: Thu, 30 Oct 2025 10:28:51 +0800 Subject: [PATCH 09/35] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=90=8C=E6=AD=A5?= =?UTF-8?q?=E7=9A=84=E5=8D=95=E4=BD=8D=E5=88=A4=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/SyncBaseThirdSxAbstract.java | 32 ++++++++++++++++--- 1 file changed, 28 insertions(+), 4 deletions(-) diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/sync/service/impl/SyncBaseThirdSxAbstract.java b/mall-shop/src/main/java/com/suisung/mall/shop/sync/service/impl/SyncBaseThirdSxAbstract.java index 7ac3e426..7f22cb9e 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/sync/service/impl/SyncBaseThirdSxAbstract.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/sync/service/impl/SyncBaseThirdSxAbstract.java @@ -829,8 +829,7 @@ public abstract class SyncBaseThirdSxAbstract{ } //商品总量 if(ObjectUtil.isNotEmpty(jsonObj.getStr("unit"))&&ObjectUtil.isNotEmpty(jsonObj.getStr("stock")) - && "KG,kg,公斤".contains(jsonObj.getStr("unit"))&&!(productName.contains("g")||productName.contains("ml")||productName.contains("ML")||productName.contains("kg")|| - productName.contains("KG")||productName.contains("L")||productName.contains("l")||productName.contains("斤")||productName.contains("袋"))){//这样做主要是有些超时有了kg,又打包成克来卖 + && checkUnit(jsonObj.getStr("unit"))&&!(checkProductContainUnits(productName))){//这样做主要是有些超时有了kg,又打包成克来卖 shopProductBase.setShop_weight(stock); shopProductBase.setUnit_name(jsonObj.getStr("unit")); shopProductBase.setProduct_state_id(StateCode.PRODUCT_STATE_OFF_THE_SHELF_UNCHECK); @@ -844,8 +843,7 @@ public abstract class SyncBaseThirdSxAbstract{ } shopProductBase.setProduct_state_id(StateCode.PRODUCT_STATE_OFF_THE_SHELF);//默认是下架 shopProductBase.setUnit_price(BigDecimal.valueOf(jsonObj.getDouble("retail_price"))); - if(!(productName.contains("g")||productName.contains("ml")||productName.contains("ML")||productName.contains("kg")|| - productName.contains("KG")||productName.contains("L")||productName.contains("l")||productName.contains("斤")||productName.contains("袋"))){ + if(!checkProductContainUnits(productName)){ String spectItem=StringUtils.isNotEmpty(shopProductBase.getSpecItem())?shopProductBase.getSpecItem():""; String unit=StringUtils.isNotEmpty(shopProductBase.getSpecUnit())?shopProductBase.getSpecUnit():""; if(StringUtils.isNotEmpty(spectItem)||StringUtils.isNotEmpty(unit)){ @@ -982,6 +980,32 @@ public abstract class SyncBaseThirdSxAbstract{ return resultCount.get(); } + /** + * 校验单位是否为公斤 + * @param checkUnit + * @return + */ + private boolean checkUnit(String checkUnit){ + checkUnit=checkUnit.trim(); + List units=Arrays.asList("KG","kg","公斤","Kg","kG"); + for(String unit:units){ + if(unit.equals(checkUnit)){ + return true; + } + } + return false; + } + + /** + * 校验商品是否包含单位 + * @param productName + * @return + */ + private boolean checkProductContainUnits(String productName){ + return productName.contains("g")||productName.contains("ml")||productName.contains("ML")||productName.contains("kg")|| + productName.contains("KG")||productName.contains("L")||productName.contains("l")||productName.contains("斤")||productName.contains("袋")|| + productName.contains("Kg")||productName.contains("kG"); + } public void syncPrimaryKey(){ From 6315b69246f16a51e28f7864136d770ead97b8ce Mon Sep 17 00:00:00 2001 From: liyj <1617420630@qq.com> Date: Thu, 30 Oct 2025 11:47:07 +0800 Subject: [PATCH 10/35] =?UTF-8?q?=E9=87=8D=E6=96=B0=E4=B8=8A=E6=9E=B6?= =?UTF-8?q?=EF=BC=8C=E4=B8=8A=E6=9E=B6=E6=97=B6=E9=97=B4=E6=94=B9=E4=B8=BA?= =?UTF-8?q?=E5=BD=93=E5=89=8D=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../shop/product/service/impl/ShopProductBaseServiceImpl.java | 1 + 1 file changed, 1 insertion(+) diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/product/service/impl/ShopProductBaseServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/product/service/impl/ShopProductBaseServiceImpl.java index 0da88460..e91ebb9a 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/product/service/impl/ShopProductBaseServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/product/service/impl/ShopProductBaseServiceImpl.java @@ -3535,6 +3535,7 @@ public class ShopProductBaseServiceImpl extends BaseServiceImpl Date: Thu, 30 Oct 2025 12:41:44 +0800 Subject: [PATCH 11/35] =?UTF-8?q?=E5=BA=97=E9=93=BA=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E8=A1=A8=E5=A2=9E=E5=8A=A0=20=E4=B8=A4=E4=B8=AA=E6=97=B6?= =?UTF-8?q?=E9=97=B4=E5=92=8C=E5=BA=97=E9=93=BA=E5=86=85=E9=83=A8=E8=BF=90?= =?UTF-8?q?=E8=B4=B9=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mall/common/modules/store/ShopStoreInfo.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/mall-common/src/main/java/com/suisung/mall/common/modules/store/ShopStoreInfo.java b/mall-common/src/main/java/com/suisung/mall/common/modules/store/ShopStoreInfo.java index 7dd53f4c..4d9136e1 100644 --- a/mall-common/src/main/java/com/suisung/mall/common/modules/store/ShopStoreInfo.java +++ b/mall-common/src/main/java/com/suisung/mall/common/modules/store/ShopStoreInfo.java @@ -3,11 +3,13 @@ package com.suisung.mall.common.modules.store; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; +import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.experimental.Accessors; +import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; import java.math.BigDecimal; @@ -121,5 +123,18 @@ public class ShopStoreInfo implements Serializable { @ApiModelProperty(value = "线下买单折扣:10代表原价") private BigDecimal store_discount; + @ApiModelProperty(value = "店铺内部运费,单位(分)0-使用平台的内部运费;>0 使用店铺的内部运费") + private Integer shopping_fee_inner; + + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") + @ApiModelProperty(value = "新增时间") + private Date created_at; + + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") + @ApiModelProperty(value = "最后更新时间") + private Date updated_at; + } From 621f557e34766c9def8185c3f6be610c1bca9a90 Mon Sep 17 00:00:00 2001 From: Jack <46790855@qq.com> Date: Thu, 30 Oct 2025 19:58:49 +0800 Subject: [PATCH 12/35] =?UTF-8?q?=E8=B0=83=E6=95=B4=E4=BA=86=E6=89=93?= =?UTF-8?q?=E7=A5=A8=E6=9C=BA=20=E8=AE=A2=E5=8D=95=E5=95=86=E5=93=81?= =?UTF-8?q?=E9=97=B4=E8=B7=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mobile/UserActivityController.java | 40 ++++++++++-------- .../impl/ShopActivityCutpriceServiceImpl.java | 9 +++- .../ShopActivityGroupbookingServiceImpl.java | 2 +- .../ShopActivityGroupbuyStoreServiceImpl.java | 2 +- ...vityPfGroupbuyStoreHistoryServiceImpl.java | 2 +- .../service/ShopStoreActivityBaseService.java | 2 +- .../ShopStoreActivityBaseServiceImpl.java | 41 +++++++++++++++---- .../resources/templates/order_printer.txt | 10 ++--- 8 files changed, 71 insertions(+), 37 deletions(-) diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/activity/controller/mobile/UserActivityController.java b/mall-shop/src/main/java/com/suisung/mall/shop/activity/controller/mobile/UserActivityController.java index c9d03e14..5315b485 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/activity/controller/mobile/UserActivityController.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/activity/controller/mobile/UserActivityController.java @@ -10,6 +10,7 @@ import com.suisung.mall.common.exception.ApiUserException; import com.suisung.mall.common.modules.activity.ShopActivityGroupbookingHistory; import com.suisung.mall.common.modules.activity.ShopActivityGroupbuyStoreHistory; import com.suisung.mall.common.service.impl.BaseControllerImpl; +import com.suisung.mall.common.utils.CheckUtil; import com.suisung.mall.common.utils.I18nUtil; import com.suisung.mall.shop.activity.service.ShopActivityCutpriceHistoryService; import com.suisung.mall.shop.activity.service.ShopActivityCutpriceService; @@ -64,6 +65,7 @@ public class UserActivityController extends BaseControllerImpl { @Autowired private ShopStoreActivityBaseService shopStoreActivityBaseService; + @ApiOperation(value = "列出我的团购", notes = "列出我的团购") @RequestMapping(value = "/listsUserGroupbooking", method = RequestMethod.GET) public CommonResult listsUserGroupbooking(@RequestParam(name = "page", defaultValue = "1") Integer page, @RequestParam(name = "rows", defaultValue = "10") Integer rows, @@ -96,6 +98,7 @@ public class UserActivityController extends BaseControllerImpl { return CommonResult.success(shopActivityGroupbookingService.listsUserGroupbooking(queryWrapper, page, rows)); } + @ApiOperation(value = "我的团购详情", notes = "我的团购详情") @RequestMapping(value = "/getUserGroupbooking", method = RequestMethod.GET) public CommonResult getUserGroupbooking(@RequestParam(name = "gb_id") Integer gb_id) { return CommonResult.success(shopActivityGroupbookingService.getUserGroupbooking(gb_id)); @@ -111,10 +114,28 @@ public class UserActivityController extends BaseControllerImpl { @ApiOperation(value = "砍价活动详情", notes = "砍价活动详情") @RequestMapping(value = "/getCutPriceActivity", method = RequestMethod.GET) - public CommonResult getCutPriceActivity() { + public CommonResult getCutPriceActivityDetail() { return CommonResult.success(shopActivityCutpriceService.getCutPriceActivity()); } + @ApiOperation(value = "立即砍价", notes = "自己砍价、要求朋友过来也能砍价") + @RequestMapping(value = "/doCutPrice", method = RequestMethod.GET) + public CommonResult doCutPrice(@RequestParam(name = "ac_id", defaultValue = "0") Integer ac_id) { + UserDto user = getCurrentUser(); + if (user == null || CheckUtil.isEmpty(user.getId())) { + throw new ApiException(ResultCode.NEED_LOGIN); + } + Integer user_id = user.getId(); + return shopActivityCutpriceService.doCutPrice(ac_id, user_id); + } + + @ApiOperation(value = "砍价历史记录", notes = "砍价历史记录(砍价排行榜)") + @RequestMapping(value = "/listsCutPriceHistory", method = RequestMethod.GET) + public CommonResult listsCutPriceHistory() { + return CommonResult.success(shopStoreActivityBaseService.listsCutPriceHistory()); + } + + @ApiOperation(value = "列出我的团购记录", notes = "列出我的团购记录") @RequestMapping(value = "/listsUserGroupbuyStore", method = RequestMethod.GET) public CommonResult listsUserGroupbuyStore(@RequestParam(name = "page", defaultValue = "1") Integer page, @@ -216,22 +237,6 @@ public class UserActivityController extends BaseControllerImpl { return CommonResult.success(shopStoreActivityBaseService.listsLotteryHistory()); } - @ApiOperation(value = "参加活动,并报名", notes = "参加活动,并报名") - @RequestMapping(value = "/doCutPrice", method = RequestMethod.GET) - public CommonResult doCutPrice(@RequestParam(name = "ac_id", defaultValue = "0") Integer ac_id) { - UserDto user = getCurrentUser(); - if (user == null) { - throw new ApiException(ResultCode.NEED_LOGIN); - } - Integer user_id = user.getId(); - return shopActivityCutpriceService.doCutPrice(ac_id, user_id); - } - - @ApiOperation(value = "砍价历史记录", notes = "砍价历史记录") - @RequestMapping(value = "/listsCutPriceHistory", method = RequestMethod.GET) - public CommonResult listsCutPriceHistory() { - return CommonResult.success(shopStoreActivityBaseService.listsCutPriceHistory()); - } @ApiOperation(value = "根据条件列出形成的团", notes = "根据条件列出形成的团") @RequestMapping(value = "/listsGroupbooking", method = RequestMethod.GET) @@ -246,6 +251,5 @@ public class UserActivityController extends BaseControllerImpl { public CommonResult getGiftbag(@RequestParam(name = "activity_id") Integer activity_id) { return CommonResult.success(shopStoreActivityBaseService.getGiftbag(activity_id)); } - // } diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/activity/service/impl/ShopActivityCutpriceServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/activity/service/impl/ShopActivityCutpriceServiceImpl.java index 8c3217c7..6c68b65a 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/activity/service/impl/ShopActivityCutpriceServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/activity/service/impl/ShopActivityCutpriceServiceImpl.java @@ -322,6 +322,13 @@ public class ShopActivityCutpriceServiceImpl extends BaseServiceImpl getActivityAllItemIds(Map activity_row); - boolean verifyActivity(Map activity_row); + boolean isActivityTimeValid(Map activity_row); Map listsMarketing(); diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopStoreActivityBaseServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopStoreActivityBaseServiceImpl.java index 08547d68..622ddbbc 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopStoreActivityBaseServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopStoreActivityBaseServiceImpl.java @@ -36,7 +36,10 @@ import com.suisung.mall.common.modules.product.ShopProductItem; import com.suisung.mall.common.modules.store.ShopStoreActivityBase; import com.suisung.mall.common.modules.store.ShopStoreActivityItem; import com.suisung.mall.common.modules.store.ShopStoreBase; -import com.suisung.mall.common.utils.*; +import com.suisung.mall.common.utils.CheckUtil; +import com.suisung.mall.common.utils.I18nUtil; +import com.suisung.mall.common.utils.StringUtils; +import com.suisung.mall.common.utils.UserInfoService; import com.suisung.mall.core.web.service.RedisService; import com.suisung.mall.core.web.service.impl.BaseServiceImpl; import com.suisung.mall.shop.activity.service.*; @@ -2046,13 +2049,33 @@ public class ShopStoreActivityBaseServiceImpl extends BaseServiceImpl可口可乐CocaC x110 8100.45
ola经典美味汽水1.2
5L/瓶
-6970448170051
+6970448170051

排骨约350g(默 1 150.13
认砍小块)
-6970448170053
+6970448170053

新鲜虫草花1包约2 x11 4.01
00g 韭菜1000g 鸡蛋
2003克
-6970448170054
+6970448170054

冰红茶风味饮料 1 13.24
-6970448170055
+6970448170055

--------------------------------
商品总件数:3
商品总额:¥18.7
@@ -61,4 +61,4 @@ ${store_name}
--------------------------------
#${order_pickup_num_str}
买家备注:${order_message!'-'}
配送时间:${payment_time?string('MM-dd HH:mm')}~${delivery_time?string('HH:mm')}
--------------------------------
订单编号:${order_id}
订单来源:微信小程序
支付方式:微信支付
配送来源:顺丰同城
付款时间:${payment_time?string('yyyy-MM-dd HH:mm:ss')}
--------------------------------
商品名称 数量 金额
--------------------------------
<#list order_items as item>${item.s_name}${item.s_quantity}${item.s_amount}
<#if item.s_name_segs??><#list item.s_name_segs as seg>${seg}
<#if item.product_sn?default("")?trim?length gt 1>${item.product_sn}
--------------------------------
商品总件数:${order_items_count!0}
商品总额:¥${order_product_amount?string('0.00')}
运费:¥${order_shipping_fee?string('0.00')}
<#if packing_fee?? && (packing_fee > 0)>打包费:¥${packing_fee?string('0.00')}
优惠金额:-¥${(quanyi!0)?string('0.00')}
实付金额:¥${order_payment_amount?string('0.00')}
<#if seller_message?default("")?trim?length gt 1>--------------------------------
商家备注:${seller_message!'-'}
--------------------------------
收货人:${buyer_user_name!''}
收货人手机:${da_mobile!'-'}
收货地址:${da_province!'-'}${da_city!'-'}${da_address!'-'}
--------------------------------
门店:${store_name}
门店电话:${store_tel!'-'}
收银员:${cashier!'店长'}
第三版带变量的模版(有预约订单) -${store_name}
<#if is_booking_order>预约订单
--------------------------------
#${order_pickup_num_str}
买家备注:${order_message!'-'}
配送时间:${payment_time?string('MM-dd HH:mm')}~${delivery_time?string('HH:mm')}
--------------------------------
订单编号:${order_id}
订单来源:微信小程序
支付方式:微信支付
配送来源:顺丰同城
付款时间:${payment_time?string('yyyy-MM-dd HH:mm:ss')}
--------------------------------
商品名称 数量 金额
--------------------------------
<#list order_items as item>${item.s_name}${item.s_quantity}${item.s_amount}
<#if item.s_name_segs??><#list item.s_name_segs as seg>${seg}
<#if item.product_sn?default("")?trim?length gt 1>${item.product_sn}
--------------------------------
商品总件数:${order_items_count!0}
商品总额:¥${order_product_amount?string('0.00')}
运费:¥${order_shipping_fee?string('0.00')}
<#if packing_fee?? && (packing_fee > 0)>打包费:¥${packing_fee?string('0.00')}
优惠金额:-¥${(quanyi!0)?string('0.00')}
实付金额:¥${order_payment_amount?string('0.00')}
<#if seller_message?default("")?trim?length gt 1>--------------------------------
商家备注:${seller_message!'-'}
--------------------------------
收货人:${buyer_user_name!''}
收货人手机:${da_mobile!'-'}
收货地址:${da_province!'-'}${da_city!'-'}${da_address!'-'}
--------------------------------
门店:${store_name}
门店电话:${store_tel!'-'}
收银员:${cashier!'店长'}
\ No newline at end of file +<#if is_booking_order>【预约订单】
${store_name}
--------------------------------
#${order_pickup_num_str}
买家备注:${order_message!'-'}
配送时间:${payment_time?string('MM-dd HH:mm')}~${delivery_time?string('HH:mm')}
--------------------------------
订单编号:${order_id}
订单来源:微信小程序
支付方式:微信支付
配送来源:顺丰同城
付款时间:${payment_time?string('yyyy-MM-dd HH:mm:ss')}
--------------------------------
商品名称 数量 金额
--------------------------------
<#list order_items as item>${item.s_name}${item.s_quantity}${item.s_amount}
<#if item.s_name_segs??><#list item.s_name_segs as seg>${seg}
<#if item.product_sn?default("")?trim?length gt 1>${item.product_sn}

--------------------------------
商品总件数:${order_items_count!0}
商品总额:¥${order_product_amount?string('0.00')}
运费:¥${order_shipping_fee?string('0.00')}
<#if packing_fee?? && (packing_fee > 0)>打包费:¥${packing_fee?string('0.00')}
优惠金额:-¥${(quanyi!0)?string('0.00')}
实付金额:¥${order_payment_amount?string('0.00')}
<#if seller_message?default("")?trim?length gt 1>--------------------------------
商家备注:${seller_message!'-'}
--------------------------------
收货人:${buyer_user_name!''}
收货人手机:${da_mobile!'-'}
收货地址:${da_province!'-'}${da_city!'-'}${da_address!'-'}
--------------------------------
门店:${store_name}
门店电话:${store_tel!'-'}
收银员:${cashier!'店长'}
\ No newline at end of file From a7f2a7ac14bc1bab7aab988240cde7f813387e73 Mon Sep 17 00:00:00 2001 From: Jack <46790855@qq.com> Date: Fri, 31 Oct 2025 08:55:15 +0800 Subject: [PATCH 13/35] =?UTF-8?q?=E8=B0=83=E6=95=B4=E4=BA=86=E6=89=93?= =?UTF-8?q?=E7=A5=A8=E6=9C=BA=20=E8=AE=A2=E5=8D=95=E5=95=86=E5=93=81?= =?UTF-8?q?=E9=97=B4=E8=B7=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ShopStoreActivityBaseServiceImpl.java | 31 +++++++++++++++++-- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopStoreActivityBaseServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopStoreActivityBaseServiceImpl.java index 622ddbbc..3008adcb 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopStoreActivityBaseServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopStoreActivityBaseServiceImpl.java @@ -3983,43 +3983,68 @@ public class ShopStoreActivityBaseServiceImpl extends BaseServiceImpl arr = randMoney(NumberUtil.sub(ac_sale_price, cut_down_min_limit_price), cut_down_user_num - ac_num); - Integer randPrice = arr.size() == 1 ? arr.get(0) : arr.get(RandomUtil.randomInt(0, arr.size() - 1)); + // 计算剩余可砍价金额和剩余次数 + List arr = randMoney( + NumberUtil.sub(ac_sale_price, cut_down_min_limit_price), + cut_down_user_num - ac_num + ); + + // 随机选择一个砍价金额 + Integer randPrice = arr.size() == 1 ? arr.get(0) : arr.get(RandomUtil.randomInt(0, arr.size())); price = NumberUtil.div(BigDecimal.valueOf(randPrice), 100, 2); break; + default: + // 未知砍价类型,返回0 + price = BigDecimal.ZERO; + break; } + // 5. 返回砍价金额,不超过可砍价的上限 return NumberUtil.min(NumberUtil.sub(ac_sale_price, ac_mix_limit_price), price); } + @Override public List getCouponsList(Integer activity_type_id) { QueryWrapper wrapper = new QueryWrapper<>(); From a0b92c219e8b980da2888a7aa1adbf269f0d29b4 Mon Sep 17 00:00:00 2001 From: liyj <1617420630@qq.com> Date: Fri, 31 Oct 2025 09:03:34 +0800 Subject: [PATCH 14/35] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=95=86=E5=93=81?= =?UTF-8?q?=E5=88=87=E5=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../shop/sync/service/impl/ProductMappingServiceImpl.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/sync/service/impl/ProductMappingServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/sync/service/impl/ProductMappingServiceImpl.java index 071750ed..3c317e5e 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/sync/service/impl/ProductMappingServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/sync/service/impl/ProductMappingServiceImpl.java @@ -106,7 +106,7 @@ public class ProductMappingServiceImpl extends BaseServiceImpl Date: Fri, 31 Oct 2025 10:22:41 +0800 Subject: [PATCH 15/35] =?UTF-8?q?=E5=8F=91=E5=B8=83=E5=90=8E=E6=9B=B4?= =?UTF-8?q?=E6=94=B9=E5=8F=91=E7=89=88=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mall/shop/sync/service/impl/ProductMappingServiceImpl.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/sync/service/impl/ProductMappingServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/sync/service/impl/ProductMappingServiceImpl.java index 3c317e5e..e281acca 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/sync/service/impl/ProductMappingServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/sync/service/impl/ProductMappingServiceImpl.java @@ -207,6 +207,7 @@ public class ProductMappingServiceImpl extends BaseServiceImpl shopProductBaseList,Map shopProductSpecItemMap,Map ShopBaseProductSpecMap, Map productMappingMap,boolean isUpdate,String isPublish){ + Date currentDate=new Date(); List shopProductItems=findShopProductItemsList(shopProductBaseList); Map shopProductItemCategoryIdMap=new HashMap<>(); shopProductItemCategoryIdMap=shopProductItems.stream().collect(Collectors.toMap(ShopProductItem::getItem_number,ShopProductItem::getCategory_id, @@ -243,8 +244,10 @@ public class ProductMappingServiceImpl extends BaseServiceImpl Date: Fri, 31 Oct 2025 16:05:08 +0800 Subject: [PATCH 16/35] =?UTF-8?q?=E6=B4=BB=E5=8A=A8=E9=80=BB=E8=BE=91?= =?UTF-8?q?=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/ShopActivityCutpriceService.java | 10 +++++ .../impl/ShopActivityCutpriceServiceImpl.java | 38 +++++++++++++++++++ .../impl/ShopOrderInfoServiceImpl.java | 4 +- .../service/ShopStoreActivityBaseService.java | 12 ++++++ .../ShopStoreActivityBaseServiceImpl.java | 18 +++++++++ 5 files changed, 80 insertions(+), 2 deletions(-) diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/activity/service/ShopActivityCutpriceService.java b/mall-shop/src/main/java/com/suisung/mall/shop/activity/service/ShopActivityCutpriceService.java index 7c01ae50..fc346813 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/activity/service/ShopActivityCutpriceService.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/activity/service/ShopActivityCutpriceService.java @@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.suisung.mall.common.api.CommonResult; import com.suisung.mall.common.modules.activity.ShopActivityCutprice; import com.suisung.mall.core.web.service.IBaseService; +import org.springframework.data.util.Pair; import java.util.Map; @@ -28,4 +29,13 @@ public interface ShopActivityCutpriceService extends IBaseService canDoOrderCutPriceActivity(Integer ac_id, Integer order_user_id); + } diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/activity/service/impl/ShopActivityCutpriceServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/activity/service/impl/ShopActivityCutpriceServiceImpl.java index 6c68b65a..8d7460be 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/activity/service/impl/ShopActivityCutpriceServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/activity/service/impl/ShopActivityCutpriceServiceImpl.java @@ -35,6 +35,7 @@ import com.suisung.mall.shop.base.service.AccountBaseConfigService; import com.suisung.mall.shop.store.service.ShopStoreActivityBaseService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Lazy; +import org.springframework.data.util.Pair; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; @@ -397,4 +398,41 @@ public class ShopActivityCutpriceServiceImpl extends BaseServiceImpl + * 判断逻辑: + * 1、活动是否过期 + * 2、活动是否是下单用户的 + * 3、活动是否是砍到最低价 + * @return + */ + @Override + public Pair canDoOrderCutPriceActivity(Integer activity_id, Integer order_user_id) { + QueryWrapper params = new QueryWrapper<>(); + params.eq("activity_id", activity_id); + ShopStoreActivityBase storeActivityBase = shopStoreActivityBaseService.getOne(params); + if (storeActivityBase == null) { + return Pair.of(false, I18nUtil._("该活动不存在!")); + } + + if (!shopStoreActivityBaseService.isActivityTimeValid(storeActivityBase.getActivity_starttime(), storeActivityBase.getActivity_endtime())) { + return Pair.of(false, I18nUtil._("该活动已过期!")); + } + + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.eq("activity_id", activity_id); + queryWrapper.eq("user_id", order_user_id); + queryWrapper.orderByDesc("ac_id"); + ShopActivityCutprice shopActivityCutprice = getOne(queryWrapper); + if (shopActivityCutprice == null) { + return Pair.of(false, I18nUtil._("未找到用户发起的砍价活动!")); + } + + return null; + } + } diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java index f48b07d2..5b86dfd9 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java @@ -1155,13 +1155,13 @@ public class ShopOrderInfoServiceImpl extends BaseServiceImpl getActivityAllItemIds(Map activity_row); boolean isActivityTimeValid(Map activity_row); + + /** + * 验证活动时间是否有效 + * + * @param starTime 活动开始时间 + * @param endTime 活动结束时间 + * @return 时间是否有效 + */ + boolean isActivityTimeValid(Date starTime, Date endTime); Map listsMarketing(); @@ -169,4 +179,6 @@ public interface ShopStoreActivityBaseService extends IBaseService Date: Fri, 31 Oct 2025 21:58:43 +0800 Subject: [PATCH 17/35] =?UTF-8?q?=E9=A2=84=E8=AE=A2=E5=8D=95=E9=80=BB?= =?UTF-8?q?=E8=BE=91=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mall/common/constant/CommonConstant.java | 7 +++ .../listener/RedisKeyExpiredListener.java | 1 + .../order/service/ShopOrderBaseService.java | 9 +++ .../service/ShopOrderBookingService.java | 11 +--- .../impl/ShopOrderBaseServiceImpl.java | 57 ++++++++++++++++++- .../impl/ShopOrderBookingServiceImpl.java | 47 +++++++-------- .../impl/ShopOrderInfoServiceImpl.java | 15 ++--- 7 files changed, 99 insertions(+), 48 deletions(-) diff --git a/mall-common/src/main/java/com/suisung/mall/common/constant/CommonConstant.java b/mall-common/src/main/java/com/suisung/mall/common/constant/CommonConstant.java index 88e641ce..be4ba04b 100644 --- a/mall-common/src/main/java/com/suisung/mall/common/constant/CommonConstant.java +++ b/mall-common/src/main/java/com/suisung/mall/common/constant/CommonConstant.java @@ -125,4 +125,11 @@ public class CommonConstant { public static final Integer Order_Booking_State_LJ = 1; public static final Integer Order_Booking_State_YY = 2; + // 预约下单从当前时间延迟的最小分钟数(单位分钟),不能低于35分钟 + public final static Integer MIN_DELAY_MINUTES_FOR_BOOKING_ORDER = 46; + + // 预约订单创建提前分钟数(用于提前创建顺丰订单) +// public final static Integer MIN_DELAY_MINUTES_FOR_SF_EXPRESS_ORDER = 35; + + } diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/order/listener/RedisKeyExpiredListener.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/listener/RedisKeyExpiredListener.java index b21fa126..a6ed7962 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/order/listener/RedisKeyExpiredListener.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/order/listener/RedisKeyExpiredListener.java @@ -96,6 +96,7 @@ public class RedisKeyExpiredListener implements MessageListener { // orderId String orderId = expiredKey.replace(RedisConstant.Order_Booking_Task_Key, ""); + log.info("[预约订单顺丰同城下单Redis过期监听] 处理预约订单顺丰同城下单超时消息. 订单号: {}", orderId); if (StrUtil.isBlank(orderId)) { log.error("[预约订单顺丰同城下单Redis过期监听] 键: {} 不符合预期格式,无法解析订单号", expiredKey); return; diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/ShopOrderBaseService.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/ShopOrderBaseService.java index d3b7965d..e0212547 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/ShopOrderBaseService.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/ShopOrderBaseService.java @@ -607,4 +607,13 @@ public interface ShopOrderBaseService extends IBaseService { * @return */ Long sameCityOrderExpireSeconds(Long defaultValue); + + /** + * 更新订单下单时间 + * + * @param orderId + * @param orderTime + * @return + */ + Boolean updateOrderTime(String orderId, Date orderTime); } diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/ShopOrderBookingService.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/ShopOrderBookingService.java index 8fa70126..1443c4e0 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/ShopOrderBookingService.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/ShopOrderBookingService.java @@ -8,7 +8,6 @@ package com.suisung.mall.shop.order.service; -import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.suisung.mall.common.modules.order.ShopOrderBooking; import com.suisung.mall.core.web.service.IBaseService; @@ -40,15 +39,7 @@ public interface ShopOrderBookingService extends IBaseService * @return 分页结果 */ Page findValidBookingList(Integer pageNum, Integer pageSize); - - /** - * 更新预约订单任务 - * - * @param updateWrapper 更新条件包装器 - * @return 是否更新成功 - */ - Boolean update(UpdateWrapper updateWrapper); - + /** * 更改预约订单任务下单完成状态(同时删除 redis 的定时任务) * diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderBaseServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderBaseServiceImpl.java index 78991b42..765b6420 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderBaseServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderBaseServiceImpl.java @@ -6675,15 +6675,22 @@ public class ShopOrderBaseServiceImpl extends BaseServiceImpl updateWrapper = new UpdateWrapper<>(); + updateWrapper.eq("order_id", orderId) + .set("order_time", orderTime); + + // 3. 执行更新操作 + boolean result = update(updateWrapper); + + if (result) { + log.info("[更新订单时间] 订单时间更新成功, orderId={}, orderTime={}", orderId, orderTime); + } else { + log.warn("[更新订单时间] 订单时间更新失败, 可能订单不存在, orderId={}", orderId); + } + + return result; + } catch (Exception e) { + // 4. 异常处理 + log.error("[更新订单时间] 更新订单时间时发生异常, orderId={}, orderTime={}", orderId, orderTime, e); + return false; + } + } + } diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderBookingServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderBookingServiceImpl.java index 67a7ff14..f801672c 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderBookingServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderBookingServiceImpl.java @@ -21,6 +21,7 @@ import com.suisung.mall.common.utils.CheckUtil; import com.suisung.mall.core.web.service.RedisService; import com.suisung.mall.core.web.service.impl.BaseServiceImpl; import com.suisung.mall.shop.order.mapper.ShopOrderBookingMapper; +import com.suisung.mall.shop.order.service.ShopOrderBaseService; import com.suisung.mall.shop.order.service.ShopOrderBookingService; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; @@ -30,17 +31,18 @@ import org.springframework.util.StringUtils; import javax.annotation.Resource; import java.util.List; -import java.util.concurrent.TimeUnit; @Slf4j @Service public class ShopOrderBookingServiceImpl extends BaseServiceImpl implements ShopOrderBookingService { - private static final Long MINUTES_BEFORE_BOOKING = 35L; - @Resource private ShopOrderBookingMapper shopOrderBookingMapper; + @Lazy + @Resource + private ShopOrderBaseService shopOrderBaseService; + @Lazy @Autowired private RedisService redisService; @@ -64,7 +66,8 @@ public class ShopOrderBookingServiceImpl extends BaseServiceImpl 0) { - redisService.set(redisKey, Convert.toStr(shopOrderBooking.getRun_at()), runAt); + if (remainingSeconds > 0) { + redisService.set(redisKey, Convert.toStr(shopOrderBooking.getRun_at()), remainingSeconds); log.debug("Redis键设置成功: key={}, bookingAt={}, runAt={}", redisKey, bookingAt, runAt); } else { log.warn("过期时间无效,未设置Redis键: key={}, bookingAt={}, runAt={}", redisKey, bookingAt, runAt); @@ -111,7 +115,7 @@ public class ShopOrderBookingServiceImpl extends BaseServiceImpl updateWrapper) { - log.debug("更新预约订单任务"); - if (updateWrapper == null) { - log.warn("更新条件不能为空"); - return false; - } - - try { - return this.update(updateWrapper); - } catch (Exception e) { - log.error("更新预约订单任务时发生异常", e); - return false; - } - } - /** * 更改预约订单任务下单完成状态(同时删除 redis 的定时任务) * @@ -205,7 +193,7 @@ public class ShopOrderBookingServiceImpl extends BaseServiceImpl 0) { + redisService.set(redisKey, Convert.toStr(shopOrderBooking.getRun_at()), remainingSeconds); + count++; + } } return count; diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java index 5b86dfd9..f7e63ebc 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java @@ -119,27 +119,21 @@ public class ShopOrderInfoServiceImpl extends BaseServiceImpl sfResult = sfExpressApiService.innerCreateSfExpressOrder(orderId, 0L); if (sfResult == null) { @@ -1161,7 +1154,7 @@ public class ShopOrderInfoServiceImpl extends BaseServiceImpl Date: Sat, 1 Nov 2025 10:49:46 +0800 Subject: [PATCH 18/35] =?UTF-8?q?=E6=80=9D=E8=BF=85=E5=90=8C=E6=AD=A5?= =?UTF-8?q?=E5=9C=B0=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/src/main/java/com/small/client/Utils/HttpUtils.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/src/main/java/com/small/client/Utils/HttpUtils.java b/client/src/main/java/com/small/client/Utils/HttpUtils.java index 1d626aa5..ae226d61 100644 --- a/client/src/main/java/com/small/client/Utils/HttpUtils.java +++ b/client/src/main/java/com/small/client/Utils/HttpUtils.java @@ -36,6 +36,8 @@ public class HttpUtils { public static final String URL_SYNC_GET_STOR_DATA_RELEASE="/shop/sync/third/syncStoreDataRelease";//库存同步 + public static final String URL_SYNC_POST_STORE_DATA_RESPONSE="/shop/sync/third/syncStoreDataReleaseResponse";//等待服务器相应消费 + public static final String URL_SYNC_GOODS_NOTICE_UPLOAD_TO_OSS="/shop/sync/third/uploudToCos";//通知上传文件到cos public static final String URL_SYNC_ACTIVE="/shop/sync/third/syncAtive";//同步活动到服务器 From 60c4df7625e0be7e1ccfe56078f6ee13e86fbb36 Mon Sep 17 00:00:00 2001 From: Jack <46790855@qq.com> Date: Sat, 1 Nov 2025 11:00:39 +0800 Subject: [PATCH 19/35] =?UTF-8?q?=E5=86=85=E9=83=A8=E8=BF=90=E8=B4=B9?= =?UTF-8?q?=E7=9A=84=E4=BC=98=E5=8C=96=EF=BC=8C=E5=A2=9E=E5=8A=A0=E5=BA=97?= =?UTF-8?q?=E9=93=BA=E5=8F=AF=E4=BB=A5=E8=AE=BE=E7=BD=AE=E5=86=85=E9=83=A8?= =?UTF-8?q?=E8=BF=90=E8=B4=B9=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mall/common/constant/CommonConstant.java | 7 +-- .../mall/common/feignService/ShopService.java | 11 ++++ .../pay/service/AccountBaseConfigService.java | 7 ++- .../impl/AccountBaseConfigServiceImpl.java | 42 +++++++++++-- .../service/impl/LakalaPayServiceImpl.java | 9 +-- .../service/impl/PayUserPayServiceImpl.java | 7 +-- .../service/AccountBaseConfigService.java | 7 ++- .../impl/AccountBaseConfigServiceImpl.java | 41 ++++++++++-- .../impl/ShopOrderBaseServiceImpl.java | 2 +- .../impl/ShopOrderBookingServiceImpl.java | 2 - .../admin/ShopStoreInfoController.java | 13 ++++ .../store/service/ShopStoreInfoService.java | 9 +++ .../impl/ShopStoreInfoServiceImpl.java | 63 ++++++++++++++++--- .../service/impl/ShopUserCartServiceImpl.java | 2 +- 14 files changed, 181 insertions(+), 41 deletions(-) diff --git a/mall-common/src/main/java/com/suisung/mall/common/constant/CommonConstant.java b/mall-common/src/main/java/com/suisung/mall/common/constant/CommonConstant.java index be4ba04b..db946b39 100644 --- a/mall-common/src/main/java/com/suisung/mall/common/constant/CommonConstant.java +++ b/mall-common/src/main/java/com/suisung/mall/common/constant/CommonConstant.java @@ -126,10 +126,5 @@ public class CommonConstant { public static final Integer Order_Booking_State_YY = 2; // 预约下单从当前时间延迟的最小分钟数(单位分钟),不能低于35分钟 - public final static Integer MIN_DELAY_MINUTES_FOR_BOOKING_ORDER = 46; - - // 预约订单创建提前分钟数(用于提前创建顺丰订单) -// public final static Integer MIN_DELAY_MINUTES_FOR_SF_EXPRESS_ORDER = 35; - - + public final static Integer MIN_DELAY_MINUTES_FOR_BOOKING_ORDER = 50; } diff --git a/mall-common/src/main/java/com/suisung/mall/common/feignService/ShopService.java b/mall-common/src/main/java/com/suisung/mall/common/feignService/ShopService.java index fe102c61..b6140c37 100644 --- a/mall-common/src/main/java/com/suisung/mall/common/feignService/ShopService.java +++ b/mall-common/src/main/java/com/suisung/mall/common/feignService/ShopService.java @@ -326,5 +326,16 @@ public interface ShopService { BigDecimal getOrderShippingFee(@RequestParam(name = "order_id") String order_id); + /** + * 获取店铺的内部运费 shopping_fee_inner (远程调用用途) + * + * @param store_id + * @return + */ + @ApiOperation(value = "获取店铺的内部运费 shopping_fee_inner", notes = "获取店铺的内部运费 shopping_fee_inner (远程调用用途)") + @RequestMapping(value = "/admin/shop/shop-store-info/shopping-fee-inner", method = RequestMethod.POST) + Integer storeShoppingFeeInner(@RequestParam(name = "store_id") Integer store_id); + + } diff --git a/mall-pay/src/main/java/com/suisung/mall/pay/service/AccountBaseConfigService.java b/mall-pay/src/main/java/com/suisung/mall/pay/service/AccountBaseConfigService.java index 7236c9f7..2521325a 100644 --- a/mall-pay/src/main/java/com/suisung/mall/pay/service/AccountBaseConfigService.java +++ b/mall-pay/src/main/java/com/suisung/mall/pay/service/AccountBaseConfigService.java @@ -48,10 +48,11 @@ public interface AccountBaseConfigService extends IBaseService 0 ? fee : 0; + } + + /** * 交易模式 2直接交易:商家直接收款; 1担保交易:平台收款,平台和商家结算。 */ diff --git a/mall-pay/src/main/java/com/suisung/mall/pay/service/impl/LakalaPayServiceImpl.java b/mall-pay/src/main/java/com/suisung/mall/pay/service/impl/LakalaPayServiceImpl.java index 14cace25..ef3c9dde 100644 --- a/mall-pay/src/main/java/com/suisung/mall/pay/service/impl/LakalaPayServiceImpl.java +++ b/mall-pay/src/main/java/com/suisung/mall/pay/service/impl/LakalaPayServiceImpl.java @@ -251,8 +251,8 @@ public class LakalaPayServiceImpl implements LakalaPayService { } // 平台最低配送费,单位(分) - Integer innerMinDeliverFee = accountBaseConfigService.getInnerMinDeliveryFee(); - reqData.set("shopping_fee_inner", innerMinDeliverFee); // 平台内部最低配送费,单位(分) + Integer innerMinDeliverFee = accountBaseConfigService.getInnerMinDeliveryFee(Convert.toInt(storeId)); + reqData.set("shopping_fee_inner", innerMinDeliverFee); // 重要:平台内部最低配送费,单位(分) log.info("[拉卡拉预下单] 支付成功,准备保存订单记录, orderId={}", orderId); // 新增一个拉卡拉订单记录 shop_order_lkl 表 @@ -280,7 +280,7 @@ public class LakalaPayServiceImpl implements LakalaPayService { /** - * 拉卡拉合单预下单(主要有运费的订单使用合单) + * 【暂时废弃】拉卡拉合单预下单(主要有运费的订单使用合单) * 参考:https://o.lakala.com/#/home/document/detail?id=208 * * @param merchantNo 商户号(商城商家) @@ -299,6 +299,7 @@ public class LakalaPayServiceImpl implements LakalaPayService { * @param remark 备注 * @return 拉卡拉合单预下单响应结果 **/ + @Deprecated @Override public JSONObject lklTransMergePreOrder(String merchantNo, String termNo, String agentMerchantNo, String agentTermNo, String xcxAppId, String openId, String storeId, String orderId, String subject, String totalAmount, String agentAmount, String notifyURL, String requestIP, String remark) { log.info("[拉卡拉合单预下单] 开始处理请求, merchantNo={}, termNo={}, agentMerchantNo={}, agentTermNo={}, orderId={}", @@ -558,7 +559,7 @@ public class LakalaPayServiceImpl implements LakalaPayService { log.warn("[拉卡拉退款] 退款金额不合法: refundAmount={}", refundAmount); return Pair.of(false, I18nUtil._("退款金额不合法!")); } - + if (StrUtil.hasBlank(lklMerchantNo, lklTermNo)) { // 4. 获取店铺的拉卡拉商户号和终端号 ShopStoreBase shopStoreBase = shopService.getLklMerchantNoAndTermNo(storeId); diff --git a/mall-pay/src/main/java/com/suisung/mall/pay/service/impl/PayUserPayServiceImpl.java b/mall-pay/src/main/java/com/suisung/mall/pay/service/impl/PayUserPayServiceImpl.java index c45bc05d..fa3472dc 100644 --- a/mall-pay/src/main/java/com/suisung/mall/pay/service/impl/PayUserPayServiceImpl.java +++ b/mall-pay/src/main/java/com/suisung/mall/pay/service/impl/PayUserPayServiceImpl.java @@ -671,15 +671,14 @@ public class PayUserPayServiceImpl extends BaseServiceImpl 0 ? fee : 0; } diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderBaseServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderBaseServiceImpl.java index 765b6420..b6d9d768 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderBaseServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderBaseServiceImpl.java @@ -7763,7 +7763,7 @@ public class ShopOrderBaseServiceImpl extends BaseServiceImpl { */ List getStoreKeeperMobile(Integer storeId); + /** + * 获取店铺的内部运费 shopping_fee_inner + *

+ * 店铺内部运费,单位(分)0-使用平台的内部运费;>0 使用店铺的内部运费 + * + * @param storeId + * @return + */ + Integer getStoreShippingFeeInner(Integer storeId); } diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopStoreInfoServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopStoreInfoServiceImpl.java index 7cc18e27..5c9631ae 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopStoreInfoServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopStoreInfoServiceImpl.java @@ -8,19 +8,18 @@ import com.suisung.mall.common.feignService.AccountService; import com.suisung.mall.common.modules.account.AccountUserBase; import com.suisung.mall.common.modules.store.ShopStoreAnalytics; import com.suisung.mall.common.modules.store.ShopStoreInfo; +import com.suisung.mall.common.utils.CheckUtil; import com.suisung.mall.core.web.service.impl.BaseServiceImpl; import com.suisung.mall.shop.store.mapper.ShopStoreInfoMapper; import com.suisung.mall.shop.store.service.ShopStoreAnalyticsService; import com.suisung.mall.shop.store.service.ShopStoreBaseService; import com.suisung.mall.shop.store.service.ShopStoreInfoService; +import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Lazy; import org.springframework.stereotype.Service; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.Optional; +import java.util.*; import java.util.stream.Collectors; @@ -32,6 +31,7 @@ import java.util.stream.Collectors; * @author Xinze * @since 2021-06-16 */ +@Slf4j @Service public class ShopStoreInfoServiceImpl extends BaseServiceImpl implements ShopStoreInfoService { @@ -101,15 +101,64 @@ public class ShopStoreInfoServiceImpl extends BaseServiceImpl getStoreKeeperMobile(Integer storeId) { + // 参数校验 + if (storeId == null) { + return null; + } + QueryWrapper queryWrapper = new QueryWrapper<>(); queryWrapper.eq("store_id", storeId).select("store_tel"); - return null; + List list = find(queryWrapper); + + // 空值检查优化 + if (list == null || list.isEmpty()) { + return null; + } + + // 使用方法引用简化代码 + return list.stream() + .map(ShopStoreInfo::getStore_tel) + .filter(Objects::nonNull) // 过滤掉null值 + .collect(Collectors.toList()); } + /** + * 获取店铺的内部运费 shopping_fee_inner + *

+ * 店铺内部运费,单位(分)0-使用平台的内部运费;>0 使用店铺的内部运费 + * + * @param storeId 店铺ID + * @return 内部运费,单位分 + */ + @Override + public Integer getStoreShippingFeeInner(Integer storeId) { + // 参数校验 + if (storeId == null) { + return 0; + } + + try { + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.eq("store_id", storeId).select("shopping_fee_inner"); + ShopStoreInfo shopStoreInfo = getOne(queryWrapper); + + if (shopStoreInfo == null || CheckUtil.isEmpty(shopStoreInfo.getShopping_fee_inner())) { + return 0; + } + + return shopStoreInfo.getShopping_fee_inner(); + } catch (Exception e) { + // 记录日志或打印错误信息 + log.error("获取店铺内部运费失败,storeId: {}", storeId, e); + // 返回默认值,避免影响主流程 + return 0; + } + } + } diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/user/service/impl/ShopUserCartServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/user/service/impl/ShopUserCartServiceImpl.java index a0061a14..5514fbb7 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/user/service/impl/ShopUserCartServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/user/service/impl/ShopUserCartServiceImpl.java @@ -2670,7 +2670,7 @@ public class ShopUserCartServiceImpl extends BaseServiceImpl Date: Sat, 1 Nov 2025 14:39:19 +0800 Subject: [PATCH 20/35] =?UTF-8?q?=E6=8E=A8=E9=80=81=E6=B6=88=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mall/shop/order/listener/OrderPayedListener.java | 7 ++++--- .../shop/order/service/impl/ShopOrderInfoServiceImpl.java | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/order/listener/OrderPayedListener.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/listener/OrderPayedListener.java index 9787b2a1..8ba50cb9 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/order/listener/OrderPayedListener.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/order/listener/OrderPayedListener.java @@ -187,12 +187,13 @@ public class OrderPayedListener { continue; } - // 同城配送或普通快递,都发送 unipush 推送:您有一个新的订单,请查收! + // 同城配送或普通快递,都发送 unipush 推送:您有一个新的[同城][预约]订单,请及时拣货配送[请及时查看预约订单]。 String bookingTip = isBookingOrder ? "预约" : ""; + String bookingTiP2 = isBookingOrder ? "请及时查看预约订单。" : "请及时拣货配送。"; String orderType = orderInfoOld.getDelivery_type_id() == StateCode.DELIVERY_TYPE_SAME_CITY ? "同城" + bookingTip : bookingTip; - String title = String.format("您有一笔新的%s订单,请注意查收。", orderType); - String content = String.format("这笔新的%s订单:%s,用户于%s下的单,请注意查收。", orderType, orderId, DateTimeUtils.formatDateTime(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss")); + String title = String.format("您有一笔新的%s订单,%s", orderType, bookingTiP2); + String content = String.format("这笔新的%s订单:%s,用户于%s下的单,%s", orderType, orderId, DateTimeUtils.formatDateTime(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss"), bookingTiP2); JSONObject payload = new JSONObject(); payload.put("category", CommonConstant.PUSH_MSG_CATE_MCH_ONLINE_ORDER_LIST); payload.put("orderId", orderId); diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java index f7e63ebc..6cecc67f 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java @@ -991,8 +991,8 @@ public class ShopOrderInfoServiceImpl extends BaseServiceImpl Date: Sat, 1 Nov 2025 16:49:39 +0800 Subject: [PATCH 21/35] =?UTF-8?q?=E7=A0=8D=E4=BB=B7=E8=AF=A6=E6=83=85?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=20=E5=88=A4=E6=96=AD=E5=8F=AF=E4=BB=A5?= =?UTF-8?q?=E7=AB=8B=E5=8D=B3=E5=87=BA=E6=89=8B=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../impl/ShopActivityCutpriceServiceImpl.java | 98 +++++++++++++++---- .../order/listener/OrderPayedListener.java | 10 +- 2 files changed, 83 insertions(+), 25 deletions(-) diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/activity/service/impl/ShopActivityCutpriceServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/activity/service/impl/ShopActivityCutpriceServiceImpl.java index 8d7460be..6c97c0f4 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/activity/service/impl/ShopActivityCutpriceServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/activity/service/impl/ShopActivityCutpriceServiceImpl.java @@ -13,6 +13,7 @@ import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.suisung.mall.common.api.CommonResult; import com.suisung.mall.common.api.StateCode; +import com.suisung.mall.common.constant.CommonConstant; import com.suisung.mall.common.domain.UserDto; import com.suisung.mall.common.exception.ApiException; import com.suisung.mall.common.exception.ApiUserException; @@ -33,6 +34,7 @@ import com.suisung.mall.shop.activity.service.ShopActivityGroupbookingHistorySer import com.suisung.mall.shop.activity.service.ShopActivityGroupbookingService; import com.suisung.mall.shop.base.service.AccountBaseConfigService; import com.suisung.mall.shop.store.service.ShopStoreActivityBaseService; +import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Lazy; import org.springframework.data.util.Pair; @@ -55,6 +57,7 @@ import static com.suisung.mall.common.utils.ContextUtil.getCurrentUser; * @author Xinze * @since 2021-07-12 */ +@Slf4j @Service public class ShopActivityCutpriceServiceImpl extends BaseServiceImpl implements ShopActivityCutpriceService { @@ -320,6 +323,20 @@ public class ShopActivityCutpriceServiceImpl extends BaseServiceImpl 第一个值表示是否可以下单,第二个值是相关信息或错误信息 */ @Override public Pair canDoOrderCutPriceActivity(Integer activity_id, Integer order_user_id) { - QueryWrapper params = new QueryWrapper<>(); - params.eq("activity_id", activity_id); - ShopStoreActivityBase storeActivityBase = shopStoreActivityBaseService.getOne(params); - if (storeActivityBase == null) { - return Pair.of(false, I18nUtil._("该活动不存在!")); - } + try { + // 参数校验 + if (activity_id == null || activity_id <= 0) { + return Pair.of(false, I18nUtil._("活动ID无效。")); + } - if (!shopStoreActivityBaseService.isActivityTimeValid(storeActivityBase.getActivity_starttime(), storeActivityBase.getActivity_endtime())) { - return Pair.of(false, I18nUtil._("该活动已过期!")); - } + if (order_user_id == null || order_user_id <= 0) { + return Pair.of(false, I18nUtil._("用户ID无效。")); + } - QueryWrapper queryWrapper = new QueryWrapper<>(); - queryWrapper.eq("activity_id", activity_id); - queryWrapper.eq("user_id", order_user_id); - queryWrapper.orderByDesc("ac_id"); - ShopActivityCutprice shopActivityCutprice = getOne(queryWrapper); - if (shopActivityCutprice == null) { - return Pair.of(false, I18nUtil._("未找到用户发起的砍价活动!")); - } + // 1. 检查活动是否存在 + QueryWrapper params = new QueryWrapper<>(); + params.eq("activity_id", activity_id); + ShopStoreActivityBase storeActivityBase = shopStoreActivityBaseService.getOne(params); + if (storeActivityBase == null) { + return Pair.of(false, I18nUtil._("抱歉,系统未找到活动记录。")); + } - return null; + // 2. 检查活动是否在有效期内 + if (!shopStoreActivityBaseService.isActivityTimeValid(storeActivityBase.getActivity_starttime(), storeActivityBase.getActivity_endtime())) { + return Pair.of(false, I18nUtil._("该活动已过期,请检查。")); + } + + // 3. 检查用户是否有发起的砍价记录 + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.eq("activity_id", activity_id); + queryWrapper.eq("user_id", order_user_id); + queryWrapper.orderByDesc("ac_id"); + ShopActivityCutprice shopActivityCutprice = getOne(queryWrapper); + if (shopActivityCutprice == null) { + return Pair.of(false, I18nUtil._("系统未找到您发起的砍价记录。")); + } + + // 4. 检查是否已砍到最低价 + // 砍价底价 + BigDecimal mixSalePrice = shopActivityCutprice.getAc_mix_limit_price(); + // 当前最终被砍价后的最新价格 + BigDecimal currPrice = shopActivityCutprice.getAc_sale_price(); + + // 还剩多少到底价 = 当前价格 - 活动底价 + BigDecimal subPrice = NumberUtil.sub(currPrice, mixSalePrice); + // 当前价格已经等于或低于底价,可以立即出手下单 + if (NumberUtil.isGreater(subPrice, BigDecimal.ZERO)) { + return Pair.of(false, String.format(I18nUtil._("还剩%.2f元可达活动底价,请继续加油。"), subPrice)); + } + // 5. 检查是否存在砍价历史记录 + QueryWrapper queryWrapperHistory = new QueryWrapper<>(); + queryWrapperHistory.eq("ac_id", shopActivityCutprice.getAc_id()); + queryWrapperHistory.eq("activity_id", shopActivityCutprice.getActivity_id()); + List shopActivityCutpriceHistoryList = shopActivityCutpriceHistoryService.list(queryWrapperHistory); + if (CollUtil.isEmpty(shopActivityCutpriceHistoryList)) { + return Pair.of(false, I18nUtil._("未找到砍价记录,请检查")); + } + + // 所有条件都满足,可以下单 + return Pair.of(true, ""); + } catch (Exception e) { + // 异常处理,防止影响主流程 + log.error("检查砍价活动是否可下单时发生异常,activity_id={}, order_user_id={}", activity_id, order_user_id, e); + return Pair.of(false, I18nUtil._("系统繁忙,请稍后再试。")); + } } + } diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/order/listener/OrderPayedListener.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/listener/OrderPayedListener.java index 8ba50cb9..bc45b8ad 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/order/listener/OrderPayedListener.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/order/listener/OrderPayedListener.java @@ -189,11 +189,11 @@ public class OrderPayedListener { // 同城配送或普通快递,都发送 unipush 推送:您有一个新的[同城][预约]订单,请及时拣货配送[请及时查看预约订单]。 String bookingTip = isBookingOrder ? "预约" : ""; - String bookingTiP2 = isBookingOrder ? "请及时查看预约订单。" : "请及时拣货配送。"; - - String orderType = orderInfoOld.getDelivery_type_id() == StateCode.DELIVERY_TYPE_SAME_CITY ? "同城" + bookingTip : bookingTip; - String title = String.format("您有一笔新的%s订单,%s", orderType, bookingTiP2); - String content = String.format("这笔新的%s订单:%s,用户于%s下的单,%s", orderType, orderId, DateTimeUtils.formatDateTime(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss"), bookingTiP2); + String actionTip = isBookingOrder ? "请及时检查预约订单信息" : "请及时拣货配送"; + String orderType = (orderInfoOld.getDelivery_type_id() == StateCode.DELIVERY_TYPE_SAME_CITY ? "同城" : "") + bookingTip; + String title = String.format("您有一笔新的%s订单,%s。", orderType, actionTip); + String content = String.format("这笔新的%s订单:%s,用户于%s下的单,%s。", orderType, orderId, + DateTimeUtils.formatDateTime(LocalDateTime.now(), "yyyy-MM-dd HH:mm:ss"), actionTip); JSONObject payload = new JSONObject(); payload.put("category", CommonConstant.PUSH_MSG_CATE_MCH_ONLINE_ORDER_LIST); payload.put("orderId", orderId); From 2af8bc966a4746078933c73c32812dc1c295f948 Mon Sep 17 00:00:00 2001 From: Jack <46790855@qq.com> Date: Sat, 1 Nov 2025 17:48:20 +0800 Subject: [PATCH 22/35] =?UTF-8?q?=E7=A0=8D=E4=BB=B7=E4=B8=8B=E5=8D=95?= =?UTF-8?q?=E9=AA=8C=E8=AF=81=E6=98=AF=E5=90=A6=E8=BE=BE=E6=A0=87=EF=BC=8C?= =?UTF-8?q?=E4=B8=8D=E8=BE=BE=E6=A0=87=E4=B8=8D=E5=85=81=E8=AE=B8=E4=B8=8B?= =?UTF-8?q?=E5=8D=95=E8=B4=AD=E4=B9=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mobile/UserOrderController.java | 2 +- .../impl/ShopOrderBaseServiceImpl.java | 15 ++++++++--- .../impl/ShopOrderInfoServiceImpl.java | 20 +++++++------- .../service/ShopStoreActivityBaseService.java | 10 ++++++- .../ShopStoreActivityBaseServiceImpl.java | 27 +++++++++++++++++++ 5 files changed, 59 insertions(+), 15 deletions(-) diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/order/controller/mobile/UserOrderController.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/controller/mobile/UserOrderController.java index 416c76f4..d45ca781 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/order/controller/mobile/UserOrderController.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/order/controller/mobile/UserOrderController.java @@ -322,7 +322,7 @@ public class UserOrderController extends BaseControllerImpl { return CommonResult.success(data); } - @ApiOperation(value = "可预约订单的时间槽", notes = "可预约订单的时间槽") + @ApiOperation(value = "可预约订单的时间槽", notes = "结算中心页面,可预约订单的时间槽") @RequestMapping(value = "/booking_time_args", method = RequestMethod.GET) public CommonResult listInvoice(@RequestParam(name = "store_ids", defaultValue = "") String store_ids) { List list = shopOrderInfoService.genBookingOrderArgList(store_ids); diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderBaseServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderBaseServiceImpl.java index b6d9d768..0b0ab4c6 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderBaseServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderBaseServiceImpl.java @@ -1395,8 +1395,8 @@ public class ShopOrderBaseServiceImpl extends BaseServiceImpl canDoOrderCutPriceActivity = shopActivityCutpriceService.canDoOrderCutPriceActivity(acId, userId); + if (!canDoOrderCutPriceActivity.getFirst()) { + logger.error(canDoOrderCutPriceActivity.getSecond()); + throw new ApiException(I18nUtil._("砍价活动未达标,请继续努力,再提交订单。")); + } } // 注:(重要)邮费检测和计算 diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java index 6cecc67f..fe787058 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderInfoServiceImpl.java @@ -865,55 +865,55 @@ public class ShopOrderInfoServiceImpl extends BaseServiceImpl checkBookingOrderArgs(Integer storeId, Integer bookingState, String bookingBeginTimeStr, String bookingEndTimeStr) { // 1. 必填参数检查 if (CheckUtil.isEmpty(storeId) || CheckUtil.isEmpty(bookingState)) { - return Pair.of(false, "[预约订单校验] 缺少必要参数"); + return Pair.of(false, "[预约单校验] 缺少必要参数"); } // 2. 预约状态检查 if (!CommonConstant.Order_Booking_State_YY.equals(bookingState)) { - return Pair.of(true, "[预约订单校验] 非预订单,跳过验证"); + return Pair.of(true, "[预约单校验] 非预订单,跳过验证"); } // 3. 时间格式检查 if (StrUtil.isBlank(bookingBeginTimeStr)) { - return Pair.of(false, "[预约订单校验] 预约时间不能为空"); + return Pair.of(false, "[预约单校验] 预约时间不能为空"); } Date bookingBeginTime = DateTimeUtils.tryParseDateTimeToDate(bookingBeginTimeStr); Date bookingEndTime = DateTimeUtils.tryParseDateTimeToDate(bookingEndTimeStr); if (bookingBeginTime == null) { - return Pair.of(false, "[预约订单校验] 预约时间格式有误"); + return Pair.of(false, "[预约单校验] 预约时间格式有误"); } // 4. 时间逻辑检查 - 开始时间不能晚于结束时间 if (bookingEndTime != null && bookingBeginTime.after(bookingEndTime)) { - return Pair.of(false, "[预约订单校验] 开始时间不能晚于截止时间"); + return Pair.of(false, "[预约单校验] 开始时间不能晚于截止时间"); } // 5. 店铺信息检查 ShopStoreInfo shopStoreInfo = shopStoreInfoService.getShopStoreInfoByStoreId(storeId); if (shopStoreInfo == null) { - return Pair.of(false, "[预约订单校验] 店铺信息有误"); + return Pair.of(false, "[预约单校验] 店铺信息有误"); } if (StrUtil.isBlank(shopStoreInfo.getStore_opening_hours()) || StrUtil.isBlank(shopStoreInfo.getStore_close_hours())) { shopStoreInfo.setStore_opening_hours("09:00"); shopStoreInfo.setStore_close_hours("06:00"); - logger.warn("[预约订单校验] 店铺营业时间未设置,请联系商家,默认指定 {}-{}", shopStoreInfo.getStore_opening_hours(), shopStoreInfo.getStore_close_hours()); + logger.warn("[预约单校验] 店铺营业时间未设置,请联系商家,默认指定 {}-{}", shopStoreInfo.getStore_opening_hours(), shopStoreInfo.getStore_close_hours()); } // 6. 店铺营业时间检查 if (!DateTimeUtils.isTimeInRange(shopStoreInfo.getStore_opening_hours(), shopStoreInfo.getStore_close_hours(), bookingBeginTime)) { - String message = StrUtil.format("[预约订单校验] 请在 {}-{} 店铺营业时间内预约下单", shopStoreInfo.getStore_opening_hours(), shopStoreInfo.getStore_close_hours()); + String message = StrUtil.format("[预约单校验] 请在 {}-{} 店铺营业时间内预约下单", shopStoreInfo.getStore_opening_hours(), shopStoreInfo.getStore_close_hours()); return Pair.of(false, message); } // 7. 预约时间范围检查 - 仅能预约50分钟后的订单(防止用户在下单页面停留太长,45分钟也是可以通过的) Date fortyFiveMinutesLater = DateUtil.offsetMinute(new Date(), CommonConstant.MIN_DELAY_MINUTES_FOR_BOOKING_ORDER - 5); if (bookingBeginTime.before(fortyFiveMinutesLater)) { - return Pair.of(false, String.format("[预约订单校验] 请预约%d分后的订单", CommonConstant.MIN_DELAY_MINUTES_FOR_BOOKING_ORDER)); + return Pair.of(false, String.format("[预约单校验] 请预约%d分后的订单", CommonConstant.MIN_DELAY_MINUTES_FOR_BOOKING_ORDER)); } - return Pair.of(true, "[预约订单校验] 成功"); + return Pair.of(true, "[预约单校验] 成功"); } /** diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/store/service/ShopStoreActivityBaseService.java b/mall-shop/src/main/java/com/suisung/mall/shop/store/service/ShopStoreActivityBaseService.java index 970db688..82329b93 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/store/service/ShopStoreActivityBaseService.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/store/service/ShopStoreActivityBaseService.java @@ -59,7 +59,7 @@ public interface ShopStoreActivityBaseService extends IBaseService getActivityAllItemIds(Map activity_row); boolean isActivityTimeValid(Map activity_row); - + /** * 验证活动时间是否有效 * @@ -180,5 +180,13 @@ public interface ShopStoreActivityBaseService extends IBaseService queryWrapper = new QueryWrapper<>(); + queryWrapper.eq("activity_id", activity_id); + queryWrapper.eq("activity_type_id", StateCode.ACTIVITY_TYPE_CUTPRICE); + return shopStoreActivityBaseMapper.selectCount(queryWrapper) > 0; + } catch (Exception e) { + // 异常处理,防止影响主流程 + logger.error("判断是否为砍价活动时发生异常,activity_id={}", activity_id, e); + return false; + } + } + + @Transactional public boolean removeActivityBase(Integer activity_id, ShopStoreActivityBase activity_row) { From 3d31e4cd74b32a515cfef8e151d2d9e15e0a427e Mon Sep 17 00:00:00 2001 From: Jack <46790855@qq.com> Date: Sun, 2 Nov 2025 00:09:09 +0800 Subject: [PATCH 23/35] =?UTF-8?q?=E7=A0=8D=E4=BB=B7=E4=B8=8B=E5=8D=95?= =?UTF-8?q?=E9=AA=8C=E8=AF=81=E6=98=AF=E5=90=A6=E8=BE=BE=E6=A0=87=EF=BC=8C?= =?UTF-8?q?=E4=B8=8D=E8=BE=BE=E6=A0=87=E4=B8=8D=E5=85=81=E8=AE=B8=E4=B8=8B?= =?UTF-8?q?=E5=8D=95=E8=B4=AD=E4=B9=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../order/service/ShopOrderReturnService.java | 2 +- .../impl/ShopOrderBaseServiceImpl.java | 42 ++++++--- .../impl/ShopOrderReturnServiceImpl.java | 89 ++++++++++--------- 3 files changed, 80 insertions(+), 53 deletions(-) diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/ShopOrderReturnService.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/ShopOrderReturnService.java index a64e8d7c..211916bc 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/ShopOrderReturnService.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/ShopOrderReturnService.java @@ -171,7 +171,7 @@ public interface ShopOrderReturnService extends IBaseService { * @param productId 商品ID * @return boolean true表示禁止退货,false表示允许退货 */ - boolean ifOrderItemDenyReturn(String orderId, Long productId); + boolean isOrderItemDenyReturn(String orderId, Long productId); /** * 判断订单是否禁止退货 diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderBaseServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderBaseServiceImpl.java index 0b0ab4c6..8cdf0518 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderBaseServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderBaseServiceImpl.java @@ -9070,13 +9070,22 @@ public class ShopOrderBaseServiceImpl extends BaseServiceImpl { - item.setIs_deny_return(isOrderDenyReturn); - }); + if (CollUtil.isNotEmpty(order.getOrder_items())) { + if (!isOrderDenyReturn) { // 允许退款的订单,再进一步检查每个商品是否不能退款 + // 订单商品列表是否禁止退款 + order.getOrder_items().forEach(item -> { + // 注意:应该使用 order_item_id 而不是 product_id + boolean isOrderItemDenyReturn = shopOrderReturnService.isOrderItemDenyReturn(order.getOrder_id(), item.getProduct_id()); + item.setIs_deny_return(isOrderItemDenyReturn ? CommonConstant.Enable : CommonConstant.Disable2); + }); + } else { + // 如果整个订单都禁止退款,则所有商品都禁止退款 + order.getOrder_items().forEach(item -> item.setIs_deny_return(CommonConstant.Enable)); + } + } }); @@ -9177,13 +9186,22 @@ public class ShopOrderBaseServiceImpl extends BaseServiceImpl { - item.setIs_deny_return(isOrderDenyReturn); - }); + if (CollUtil.isNotEmpty(orderDetail.getOrder_items())) { + if (!isOrderDenyReturn) { // 允许退款的订单,再进一步检查每个商品是否不能退款 + // 订单商品列表是否禁止退款 + orderDetail.getOrder_items().forEach(item -> { + // 注意:应该使用 order_item_id 而不是 product_id + boolean isOrderItemDenyReturn = shopOrderReturnService.isOrderItemDenyReturn(orderId, item.getProduct_id()); + item.setIs_deny_return(isOrderItemDenyReturn ? CommonConstant.Enable : CommonConstant.Disable2); + }); + } else { + // 如果整个订单都禁止退款,则所有商品都禁止退款 + orderDetail.getOrder_items().forEach(item -> item.setIs_deny_return(CommonConstant.Enable)); + } + } return orderDetail; } diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderReturnServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderReturnServiceImpl.java index c5af168c..28ef1596 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderReturnServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderReturnServiceImpl.java @@ -1512,7 +1512,7 @@ public class ShopOrderReturnServiceImpl extends BaseServiceImpl 0) { - log.debug("[是否禁止退货] 订单已超过退货期限,不允许退货,order_id: {}", orderId); + log.debug("[是否禁止退货] 订单已超过退货期限,禁止退货,order_id: {}, orderDealTime: {}, withdrawTime: {}", + orderId, orderDealTime, withdrawTime); return true; } } catch (Exception e) { - log.error("[是否禁止退货] 检查订单退货期限时发生异常,不允许退货,order_id: {}", orderId, e); + log.error("[是否禁止退货] 检查订单退货期限时发生异常,禁止退货,order_id: {}", orderId, e); + return true; } } @@ -2165,32 +2162,40 @@ public class ShopOrderReturnServiceImpl extends BaseServiceImpl contractTypeIds = Convert.toList(Integer.class, contractTypeIdsStr); if (contractTypeIds != null && contractTypeIds.contains(StateCode.CONTRACT_TYPE_DENY_RETURN)) { - log.debug("[是否禁止退货] 商品设置了禁止退货标识,不允许退货,order_id: {}, product_id: {}", orderId, productId); + log.debug("[是否禁止退货] 商品设置了禁止退货标识,禁止退货,order_id: {}, product_id: {}", orderId, productIndex.getProduct_id()); return true; } } catch (Exception e) { - log.error("[是否禁止退货] 解析商品保障类型失败,不允许退货,order_id: {}, product_id: {}", orderId, productId, e); - return true; + log.error("[是否禁止退货] 解析商品保障类型失败,允许退货,order_id: {}, product_id: {}", orderId, productIndex.getProduct_id(), e); + return false; } } // 默认允许退货 - log.debug("[是否禁止退货] 允许退货}"); + log.debug("[是否禁止退货] 商品允许退货,order_id: {}, product_id: {}", orderId, productIndex.getProduct_id()); return false; } @@ -2226,7 +2231,7 @@ public class ShopOrderReturnServiceImpl extends BaseServiceImpl 0) { - log.debug("[订单是否禁止退货] 订单:{} 已过退货期,不允许退货", orderId); + log.debug("[订单是否禁止退货] 订单已超过退货期限,禁止退货,orderId: {}, orderDealTime: {}, withdrawTime: {}", + orderId, orderDealTime, withdrawTime); return true; } } // 检查拉卡拉分账和提现状态 - if (lklOrderSeparateService.isOrderSeparated(orderId) && - lklOrderDrawService.isOrderDrawed(orderId)) { - log.debug("[订单是否禁止退货] 订单[{}]已提现,不允许退货", orderId); + boolean isLklSeparated = lklOrderSeparateService.isOrderSeparated(orderId); + boolean isLklDrawed = lklOrderDrawService.isOrderDrawed(orderId); + boolean isLklProcessed = isLklSeparated && isLklDrawed; + + if (isLklProcessed) { + log.debug("[订单是否禁止退货] 拉卡拉分账订单已提现,禁止退货,orderId: {}, separated: {}, drawed: {}", + orderId, isLklSeparated, isLklDrawed); return true; } - // 默认允许退货 + // 允许退货 + log.debug("[订单是否禁止退货] 订单允许退货,orderId: {}", orderId); return false; } catch (Exception e) { - log.error("[订单是否禁止退货] 查询订单{}退货状态异常,不允许退货", orderId, e); + log.error("[订单是否禁止退货] 查询订单退货状态异常,禁止退货,orderId: {}", orderId, e); return true; } } From ee3437005bf07f21add5e4a713e04328b0dcc481 Mon Sep 17 00:00:00 2001 From: Jack <46790855@qq.com> Date: Mon, 3 Nov 2025 08:44:31 +0800 Subject: [PATCH 24/35] =?UTF-8?q?docker=20=E9=95=9C=E5=83=8F=E6=89=93?= =?UTF-8?q?=E5=8C=85=E5=88=B0=20registry=20=EF=BC=8C=E6=94=B9=E5=8F=98?= =?UTF-8?q?=E5=8E=9F=E6=9D=A5=E7=9A=84=E5=81=9A=E6=B3=95=EF=BC=8C=E6=9C=AA?= =?UTF-8?q?=E5=8F=8C=E6=9C=BA=E9=83=A8=E7=BD=B2=EF=BC=8C=E5=81=9A=E5=A5=BD?= =?UTF-8?q?=E5=87=86=E5=A4=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3915a243..b6da0baf 100644 --- a/pom.xml +++ b/pom.xml @@ -552,13 +552,22 @@ - mall/${project.artifactId}:${project.version} + + + + + 172.16.0.11:5000/mall/${project.artifactId}:${project.version} ${docker.host} + true + openjdk:8-jre + + docker-registry + ["sh", "-c", "mkdir -p /tmp /app/temp /root/nacos/naming/public && chmod -R 777 /tmp /app/temp /root/nacos && java -Djava.io.tmpdir=/app/temp -Dnacos.naming.cache.dir=/root/nacos/naming -jar -Xms256m -Xmx512m -XX:MetaspaceSize=256m -XX:MaxMetaspaceSize=256m -XX:+UseContainerSupport -XX:MaxRAMPercentage=60.0 -XX:+UseSerialGC -XX:MinHeapFreeRatio=40 -XX:MaxHeapFreeRatio=60 -XX:+PrintGCDetails -XX:+PrintGCDateStamps -Xloggc:./gc.log -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=5 -XX:GCLogFileSize=10M -Dspring.profiles.active=${spring.profile} -Duser.timezone=Asia/Shanghai /${project.build.finalName}.jar"] From 98f5a160afbce9d13853750be50e1a0448d0d4d9 Mon Sep 17 00:00:00 2001 From: Jack <46790855@qq.com> Date: Mon, 3 Nov 2025 14:16:56 +0800 Subject: [PATCH 25/35] =?UTF-8?q?docker=20=E9=95=9C=E5=83=8F=E6=89=93?= =?UTF-8?q?=E5=8C=85=E5=88=B0=20registry=20=EF=BC=8C=E6=94=B9=E5=8F=98?= =?UTF-8?q?=E5=8E=9F=E6=9D=A5=E7=9A=84=E5=81=9A=E6=B3=95=EF=BC=8C=E6=9C=AA?= =?UTF-8?q?=E5=8F=8C=E6=9C=BA=E9=83=A8=E7=BD=B2=EF=BC=8C=E5=81=9A=E5=A5=BD?= =?UTF-8?q?=E5=87=86=E5=A4=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/pom.xml b/pom.xml index b6da0baf..4329fa4e 100644 --- a/pom.xml +++ b/pom.xml @@ -306,6 +306,7 @@ local https://114.132.210.208:2375 + 10.1.8.3:5000 /Users/panjunjie/code/docker_registry_ca_dev 114.132.210.208:8848 @@ -363,6 +364,7 @@ dev https://114.132.210.208:2375 + 10.1.8.3:5000 /Users/panjunjie/code/docker_registry_ca_dev 114.132.210.208:8848 @@ -414,6 +416,7 @@ test https://114.132.210.208:2375 + 10.1.8.3:5000 /Users/panjunjie/code/docker_registry_ca_dev 10.1.8.3:8848 @@ -465,6 +468,7 @@ prod https://159.75.249.163:2275 + 172.16.0.11:5000 /Users/panjunjie/code/docker_registry_ca_prod 172.16.0.11:8848 @@ -556,25 +560,26 @@ - 172.16.0.11:5000/mall/${project.artifactId}:${project.version} + ${docker.registry}/mall/${project.artifactId}:${project.version} ${docker.host} + + + ${docker.ca} + true - + openjdk:8-jre - + docker-registry ["sh", "-c", "mkdir -p /tmp /app/temp /root/nacos/naming/public && chmod -R 777 /tmp /app/temp /root/nacos && java -Djava.io.tmpdir=/app/temp -Dnacos.naming.cache.dir=/root/nacos/naming -jar -Xms256m -Xmx512m -XX:MetaspaceSize=256m -XX:MaxMetaspaceSize=256m -XX:+UseContainerSupport -XX:MaxRAMPercentage=60.0 -XX:+UseSerialGC -XX:MinHeapFreeRatio=40 -XX:MaxHeapFreeRatio=60 -XX:+PrintGCDetails -XX:+PrintGCDateStamps -Xloggc:./gc.log -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=5 -XX:GCLogFileSize=10M -Dspring.profiles.active=${spring.profile} -Duser.timezone=Asia/Shanghai /${project.build.finalName}.jar"] - - ${docker.ca} - rm -rf /root/.m2 && rm -rf /tmp/* && rm -rf /var/cache/* From 3b7a9231094b0e625321f7f1a8e6279604f7b1f4 Mon Sep 17 00:00:00 2001 From: liyj <1617420630@qq.com> Date: Mon, 3 Nov 2025 15:44:20 +0800 Subject: [PATCH 26/35] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=8D=95=E4=BB=B7?= =?UTF-8?q?=E8=90=A5=E4=B8=9A=E5=91=98=E7=9B=B8=E5=85=B3=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=EF=BC=8C=E5=AE=9E=E7=8E=B0=E6=80=9D=E8=BF=85=E6=B5=81=E6=B0=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../common/modules/sync/ProductQuantityConsumption.java | 4 ++++ .../suisung/mall/common/modules/sync/StoreDbConfig.java | 4 ++++ .../shop/sync/service/impl/SyncThirdDataServiceImpl.java | 9 ++++++--- sql/shop/dev/20251103_dml.sql | 3 +++ 4 files changed, 17 insertions(+), 3 deletions(-) create mode 100644 sql/shop/dev/20251103_dml.sql diff --git a/mall-common/src/main/java/com/suisung/mall/common/modules/sync/ProductQuantityConsumption.java b/mall-common/src/main/java/com/suisung/mall/common/modules/sync/ProductQuantityConsumption.java index ddfdc6a7..108ca004 100644 --- a/mall-common/src/main/java/com/suisung/mall/common/modules/sync/ProductQuantityConsumption.java +++ b/mall-common/src/main/java/com/suisung/mall/common/modules/sync/ProductQuantityConsumption.java @@ -28,6 +28,10 @@ public class ProductQuantityConsumption { @ApiModelProperty("商品编号") private String productNumber; + @TableField(value = "unit_price", updateStrategy = FieldStrategy.NOT_EMPTY) + @ApiModelProperty("商品单价") + private BigDecimal unitPrice; + @ApiModelProperty("数量(正数表示入库/增加,负数表示出库/减少)") @TableField(value = "quantity",updateStrategy = FieldStrategy.NOT_EMPTY) private BigDecimal quantity; diff --git a/mall-common/src/main/java/com/suisung/mall/common/modules/sync/StoreDbConfig.java b/mall-common/src/main/java/com/suisung/mall/common/modules/sync/StoreDbConfig.java index 7d136962..18923329 100644 --- a/mall-common/src/main/java/com/suisung/mall/common/modules/sync/StoreDbConfig.java +++ b/mall-common/src/main/java/com/suisung/mall/common/modules/sync/StoreDbConfig.java @@ -126,4 +126,8 @@ public class StoreDbConfig implements Serializable { @TableField(value = "shop_gap_time",updateStrategy = FieldStrategy.NOT_EMPTY) @NotBlank(message = "商品同步间隔时间不能为空") private String shopGapTime; + + @TableField(value = "sale_account",updateStrategy = FieldStrategy.NOT_EMPTY) + @NotBlank(message = "营业员账号") + private String saleAccount; } \ No newline at end of file diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/sync/service/impl/SyncThirdDataServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/sync/service/impl/SyncThirdDataServiceImpl.java index aaf88e8f..e36e93ba 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/sync/service/impl/SyncThirdDataServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/sync/service/impl/SyncThirdDataServiceImpl.java @@ -902,17 +902,19 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements ProductQuantityConsumption productQuantityConsumption=new ProductQuantityConsumption(); String productKey= (String) k; String[] productKeyArrys=productKey.split("-"); - if(productKeyArrys.length!=2){ + if(productKeyArrys.length!=3){ return; } String productNumber=productKeyArrys[0]; String orderId=productKeyArrys[1]; + String unitPrice=productKeyArrys[2]; productQuantityConsumption.setConsumeId(IdUtil.getSnowflakeNextIdStr()); productQuantityConsumption.setOrderId(orderId); productQuantityConsumption.setProductNumber(productNumber); productQuantityConsumption.setQuantity(Convert.toBigDecimal(v)); productQuantityConsumption.setStoreId(Integer.valueOf(storeId)); productQuantityConsumption.setStatus(0); + productQuantityConsumption.setUnitPrice(new BigDecimal(unitPrice)); productQuantityConsumptionList.add(productQuantityConsumption); }); return productQuantityConsumptionList; @@ -971,8 +973,9 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements cn.hutool.json.JSONArray array_item_spec= JSONUtil.parseArray(spuItem.getItem_spec()); logger.info("array_item_spec:{}",array_item_spec); logger.info("key:{},Product_number:{}",key,itemId); + String unitPrice= String.valueOf(spuItem.getItem_unit_price()); if(array_item_spec.isEmpty()){ - redisTemplate.opsForHash().increment(key, itemId+"-"+orderId, delta.doubleValue()); + redisTemplate.opsForHash().increment(key, itemId+"-"+orderId+"-"+unitPrice, delta.doubleValue()); logger.info("存储无规格库存成功"); continue; } @@ -980,7 +983,7 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements String name = Convert.toStr(item.get("name")); BigDecimal itemQuaryty = getBigDecimal(delta, name); // 使用 Redis 的 HINCRBY 保证原子性和高性能 - redisTemplate.opsForHash().increment(key, itemId+"-"+orderId, itemQuaryty.doubleValue()); + redisTemplate.opsForHash().increment(key, itemId+"-"+orderId+"-"+unitPrice, itemQuaryty.doubleValue()); logger.info("存储有规格库存成功"); } catch (Exception e) { logger.error("库存累计失败,productKey={}, delta={}, error={}", productKey, delta, e.getMessage(), e); diff --git a/sql/shop/dev/20251103_dml.sql b/sql/shop/dev/20251103_dml.sql new file mode 100644 index 00000000..8c2a29c7 --- /dev/null +++ b/sql/shop/dev/20251103_dml.sql @@ -0,0 +1,3 @@ +alter table product_quantity_consumption add column unit_price decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '商品单价'; + +ALTER table store_db_config add column `sale_account` varchar(8) NOT NULL default '8080' COMMENT '营业员账号'; \ No newline at end of file From 7932c2cdf7e21e81dda4b743f78548cfc9bb73f0 Mon Sep 17 00:00:00 2001 From: liyj <1617420630@qq.com> Date: Sat, 1 Nov 2025 11:16:53 +0800 Subject: [PATCH 27/35] =?UTF-8?q?=E6=80=9D=E8=BF=85=E5=90=8C=E6=AD=A5?= =?UTF-8?q?=E9=94=80=E5=94=AE=E6=B5=81=E6=B0=B4=E5=92=8C=E6=94=AF=E4=BB=98?= =?UTF-8?q?=E6=B5=81=E6=B0=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/small/client/Utils/SqlBuilder.java | 38 ++ .../java/com/small/client/dao/SxDataDao.java | 362 +++++++++++++++++- .../java/com/small/client/dto/ItemInfo.java | 45 +++ .../dto/ProductQuantityConsumptionDto.java | 3 + .../java/com/small/client/dto/RmSaleflow.java | 41 ++ .../java/com/small/client/dto/TRmPayflow.java | 173 +++++++++ .../client/service/imp/SxDataServiceImp.java | 11 +- 7 files changed, 668 insertions(+), 5 deletions(-) create mode 100644 client/src/main/java/com/small/client/Utils/SqlBuilder.java create mode 100644 client/src/main/java/com/small/client/dto/ItemInfo.java create mode 100644 client/src/main/java/com/small/client/dto/RmSaleflow.java create mode 100644 client/src/main/java/com/small/client/dto/TRmPayflow.java diff --git a/client/src/main/java/com/small/client/Utils/SqlBuilder.java b/client/src/main/java/com/small/client/Utils/SqlBuilder.java new file mode 100644 index 00000000..b42b8842 --- /dev/null +++ b/client/src/main/java/com/small/client/Utils/SqlBuilder.java @@ -0,0 +1,38 @@ +package com.small.client.Utils; + +import java.util.Collection; +import java.util.Iterator; + +public class SqlBuilder { + /** + * 构建IN查询条件 + * @param fieldName 字段名 + * @param values 值集合 + * @return IN条件字符串 + */ + public static String buildInCondition(String fieldName, Collection values) { + if (values == null || values.isEmpty()) { + return ""; + } + + StringBuilder sb = new StringBuilder(); + sb.append(" ").append(fieldName).append(" in ("); + + Iterator iterator = values.iterator(); + while (iterator.hasNext()) { + Object value = iterator.next(); + if (value instanceof String) { + sb.append("'").append(value).append("'"); + } else { + sb.append(value); + } + + if (iterator.hasNext()) { + sb.append(","); + } + } + sb.append(")"); + + return sb.toString(); + } +} diff --git a/client/src/main/java/com/small/client/dao/SxDataDao.java b/client/src/main/java/com/small/client/dao/SxDataDao.java index 5329c644..fb915c71 100644 --- a/client/src/main/java/com/small/client/dao/SxDataDao.java +++ b/client/src/main/java/com/small/client/dao/SxDataDao.java @@ -9,6 +9,7 @@ import com.google.gson.Gson; import com.small.client.Utils.BigDecimalFormatter; import com.small.client.Utils.CommonUtil; import com.small.client.Utils.HttpUtils; +import com.small.client.Utils.SqlBuilder; import com.small.client.dto.*; import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang3.math.NumberUtils; @@ -20,6 +21,7 @@ import org.springframework.web.client.RestTemplate; import java.math.BigDecimal; import java.math.RoundingMode; import java.sql.*; +import java.sql.Date; import java.util.*; import java.util.stream.Collectors; @@ -50,6 +52,8 @@ public class SxDataDao extends BaseDao{ //private final static String T_IM_BRANCH_STOCK="t_im_branch_stock";//库存表 + private final static String T_BD_BRANCH_INFO="t_bd_branch_info";//仓库表 + private final static String T_IM_BRANCH_STOCK="(" + "select * from( " + " select ROW_NUMBER() OVER( " + @@ -470,17 +474,21 @@ public class SxDataDao extends BaseDao{ * @param dataBaseInfo * @param map */ - public void updateStoreData(DataBaseInfo dataBaseInfo, Map map,List productQuantityConsumptionDtoList, + public void updateStoreData(DataBaseInfo dataBaseInfo, Map map,Map pqMap,List productQuantityConsumptionDtoList, CommentModel commentModel){ if(CollectionUtil.isEmpty(map)){ log.info("同步数据为空"); return; } - Connection conn =getConnection(dataBaseInfo.getIp(),dataBaseInfo.getUserName(), + String brachNo=getLocalBranch(dataBaseInfo);//获取总店铺分仓编号 + Map itemInfoMap= findItemInfoList(dataBaseInfo,map);//查询商品信息 + Connection conn =getConnection(dataBaseInfo.getIp(),dataBaseInfo.getUserName(), dataBaseInfo.getPassword(), dataBaseInfo.getDbPort(),dataBaseInfo.getDataBaseName()); try { conn.setAutoCommit(false); // 关闭自动提交,开启事务 //String sql = "update t_im_branch_stock set stock_qty= stock_qty+(?),oper_date=? where item_no=?"; + List rmSaleflowList=new ArrayList<>(); + List tRmPayflowList=new ArrayList<>(); String sql = "WITH TopStock AS ( " + " SELECT TOP(1) * " + " FROM t_im_branch_stock " + @@ -491,15 +499,29 @@ public class SxDataDao extends BaseDao{ " SET stock_qty = stock_qty+(?),oper_date=?;"; Timestamp timestamp = new Timestamp(System.currentTimeMillis()); try (PreparedStatement ps = conn.prepareStatement(sql)) { - int batchSize = 1000; // 每批处理1000条 + int batchSize = 100; // 每批处理1000条 int count = 0; Set sme=map.entrySet(); for (Map.Entry entry : sme) { + BigDecimal stock_qty= (BigDecimal) entry.getValue(); if(stock_qty.compareTo(BigDecimal.ZERO)==0){ continue; } - ps.setString(1, (String) entry.getKey()); + String itemNo = (String) entry.getKey(); + ProductQuantityConsumptionDto productQuantityConsumptionDto=pqMap.get(itemNo); + BigDecimal unitPrice = productQuantityConsumptionDto.getUnitPrice(); + RmSaleflow rmSaleflow=new RmSaleflow(); + rmSaleflow.setItemNo(itemNo); + rmSaleflow.setSalePrice(unitPrice); + rmSaleflow.setSaleQnty(stock_qty); + rmSaleflow.setFlownoRand(productQuantityConsumptionDto.getOrderId());//随机子单号 设置网上订单号 + rmSaleflow= fixRmSaleFlow(rmSaleflow,brachNo,itemInfoMap); + TRmPayflow trmPayflow=fixTRmPayflow(rmSaleflow); + + rmSaleflowList.add(rmSaleflow); + + ps.setString(1, itemNo); ps.setDouble(2, stock_qty.doubleValue()); ps.setTimestamp(3, timestamp); ps.addBatch(); // 添加至批处理 @@ -513,6 +535,9 @@ public class SxDataDao extends BaseDao{ // 执行剩余未满 batchSize 的批次 int[] remainingCounts = ps.executeBatch(); + //todo 新增流水 + updateStoreSaleFlow(dataBaseInfo,rmSaleflowList,tRmPayflowList); + List consumIds=productQuantityConsumptionDtoList .stream() .map(ProductQuantityConsumptionDto::getConsumeId) @@ -548,6 +573,310 @@ public class SxDataDao extends BaseDao{ } } + /** + * 补充字段 + * @param rmSaleflow + * @return + */ + public RmSaleflow fixRmSaleFlow(RmSaleflow rmSaleflow,String branchNo,Map itemInfoMap){ + //自定义单号 start + rmSaleflow.setFlowId(1); + String orderId=rmSaleflow.getFlownoRand(); + String[] orderIdSplits= orderId.split("_"); + String DateStr=DateUtil.format(new java.util.Date(),"yyyyMMdd"); + String flowNo="99"+DateStr+orderIdSplits[orderIdSplits.length-1]; + rmSaleflow.setFlowNo(flowNo);//订单号 todo + //自定义 单号 end + + //判断取值 start + rmSaleflow.setSellWay("A"); + rmSaleflow.setRetQnty(rmSaleflow.getSaleQnty()); + if(rmSaleflow.getSaleQnty().compareTo(BigDecimal.ZERO)<0){ + rmSaleflow.setSellWay("B"); + BigDecimal saleQnty=rmSaleflow.getSaleQnty();//销售数量 + rmSaleflow.setSaleQnty(saleQnty); + rmSaleflow.setRetQnty(BigDecimal.ZERO); + } + //判断取值 end + + //数据库查询取值start todo + ItemInfo itemInfo=itemInfoMap.get(rmSaleflow.getItemNo()); + if(itemInfo!=null){ + rmSaleflow.setInPrice(itemInfo.getPrice()); + rmSaleflow.setOperDate(new Date(System.currentTimeMillis())); + } + rmSaleflow.setBranchNo(branchNo); + + //数据库查询取值end + + //远程配置取值start todo + rmSaleflow.setOperId("9999"); + rmSaleflow.setSaleMan("9999"); + rmSaleflow.setCounterNo("9999"); + //远程配置取值end + + //统一默认值 start + rmSaleflow.setNStan(BigDecimal.ZERO); + rmSaleflow.setChrStan("0"); + rmSaleflow.setFlownoType("0"); + rmSaleflow.setPrefAmt(BigDecimal.ZERO); + rmSaleflow.setComFlag("0"); + rmSaleflow.setRemoteFlag("0"); + //统一默认值 end + return rmSaleflow; + } + + /** + * 支付流水赋值 + * @return + */ + public TRmPayflow fixTRmPayflow(RmSaleflow rmSaleflow){ + TRmPayflow rmPayflow=new TRmPayflow(); + rmPayflow.setFlowId(rmSaleflow.getFlowId()); + rmPayflow.setFlowNo(rmSaleflow.getFlowNo()); + BigDecimal saleAmount=rmSaleflow.getSalePrice().multiply(rmSaleflow.getSaleQnty()).setScale(2, RoundingMode.HALF_UP); + rmPayflow.setSaleAmount(saleAmount); + rmPayflow.setBranchNo(rmSaleflow.getBranchNo()); + rmPayflow.setPayWay("RMB");//人民币 + rmPayflow.setSellWay(rmSaleflow.getSellWay()); + rmPayflow.setCardNo(""); + rmPayflow.setVipNo(null); + rmPayflow.setCoinNo("RMB");// + rmPayflow.setCoinRate(new BigDecimal("1"));//利率 + rmPayflow.setPayAmount(saleAmount); + rmPayflow.setOperDate(rmSaleflow.getOperDate()); + rmPayflow.setOperId(rmSaleflow.getOperId()); + rmPayflow.setCounterNo(rmSaleflow.getCounterNo()); + rmPayflow.setSaleMan(rmSaleflow.getSaleMan()); + rmPayflow.setMemo(""); + rmPayflow.setVoucherNo("");//退货单号 退货时要填 + rmPayflow.setRemoteFlag("0"); + rmPayflow.setExchangeFlag(null); + rmPayflow.setShiftNo(""); + rmPayflow.setComFlag("0"); + rmPayflow.setPosid("01"); + rmPayflow.setUptime(null); + rmPayflow.setFlownoRand(rmSaleflow.getFlownoRand()); + rmPayflow.setCiceroniNo("0"); + rmPayflow.setCiceroniId(null); + rmPayflow.setFlownoType(rmSaleflow.getFlownoType()); + rmPayflow.setTransType(null); + rmPayflow.setUpBatchno("");//todo + rmPayflow.setUpVipacc("0"); + rmPayflow.setCashNo("00"); + if("B".equals(rmSaleflow.getSellWay())){//退货 + rmPayflow.setMemo("正常退货"); + rmPayflow.setVoucherNo("");//退货单号 退货时要填 + rmPayflow.setRemoteFlag(""); + rmPayflow.setExchangeFlag("0"); + rmPayflow.setUpVipacc(null); + } + + return rmPayflow; + } + + /** + * 查询商品,返回map + * @param dataBaseInfo + * @param map + * @return + */ + public Map findItemInfoList(DataBaseInfo dataBaseInfo,Map map){ + if(CollectionUtil.isEmpty(map)){ + return null; + } + Map resultMap=new HashMap<>(); + Set sme=map.entrySet(); + String where = "where 1=1"; + List itemNos = sme.stream() + .map(entry -> (String) entry.getKey()) + .collect(Collectors.toList()); + where += SqlBuilder.buildInCondition("item_no", itemNos); + ResultDto resultDto= this.baseFindList(dataBaseInfo.getIp(),dataBaseInfo.getUserName(),dataBaseInfo.getPassword(), + dataBaseInfo.getDbPort(),dataBaseInfo.getDataBaseName(),T_BD_ITEM_INFO,where); + ResultSet rs= resultDto.getResultSet(); + try { + while (rs.next()) { + ItemInfo itemInfo=new ItemInfo(); + String itemNo=rs.getString("item_no"); + itemInfo.setItemNo(itemNo);// + itemInfo.setItemSubno(rs.getString("item_subno")); + itemInfo.setItemName(rs.getString("item_name")); + itemInfo.setItemBrand(rs.getString("item_brand"));//品牌 + itemInfo.setPrice(rs.getBigDecimal("price"));//进货价 + itemInfo.setItemClsno(rs.getString("item_clsno")); + resultMap.put(itemNo,itemInfo); + } + } catch (SQLException e) { + throw new RuntimeException(e); + } finally { + try { + resultDto.getConnection().close(); + } catch (SQLException e) { + throw new RuntimeException(e); + } + } + return resultMap; + } + + /** + * 批量新增销售流水 + * @param dataBaseInfo + * @param rmSaleflowList + */ + public void updateStoreSaleFlow(DataBaseInfo dataBaseInfo,List rmSaleflowList,List payflowList){ + if(CollectionUtil.isEmpty(rmSaleflowList)){ + log.info("销售流水记录为空"); + return; + } + Connection conn =getConnection(dataBaseInfo.getIp(),dataBaseInfo.getUserName(), + dataBaseInfo.getPassword(), dataBaseInfo.getDbPort(),dataBaseInfo.getDataBaseName()); + try { + conn.setAutoCommit(false); // 关闭自动提交,开启事务 + String sql = "INSERT INTO t_rm_saleflow (" + + "flow_id, flow_no, branch_no, item_no, source_price, sale_price, " + + "sale_qnty, sale_money, sell_way, oper_id, sale_man, counter_no, " + + "oper_date, remote_flag, shift_no, com_flag, spec_flag, pref_amt, " + + "in_price, n_stan, chr_stan, posid, uptime, flowno_rand, ret_qnty, " + + "flowno_type, spec_sheet_no, cic_sheet_no, share_cardid, item_no_Fresh" + + ") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"; + String sql2 = "INSERT INTO t_rm_payflow (" + + "flow_id, flow_no, sale_amount, branch_no, pay_way, sell_way, " + + "card_no, vip_no, coin_no, coin_rate, pay_amount, oper_date, " + + "oper_id, counter_no, sale_man, memo,remote_flag, " + + "exchange_flag, shift_no, com_flag, uptime, flowno_rand, " + + "ciceroni_no, ciceroni_id, flowno_type, trans_type, up_batchno, " + + "remark, cash_no" + + ") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"; + try { + PreparedStatement ps = conn.prepareStatement(sql);//销售流水 + PreparedStatement ps2 = conn.prepareStatement(sql2);//资金流水 + int batchSize = 10; // 每批处理10条 + int count = 0; + for (int i=0;i productQuantityConsumptionDtoMap=new HashMap<>(); + + productQuantityConsumptionDtoList.forEach(productQuantityConsumptionDto -> { + productQuantityConsumptionDtoMap.put(productQuantityConsumptionDto.getProductNumber(),productQuantityConsumptionDto); + }); + + sxDataDao.updateStoreData(dataBaseInfo,map,productQuantityConsumptionDtoMap,productQuantityConsumptionDtoList,commentModel); } } @@ -812,6 +818,9 @@ public class SxDataServiceImp extends SxDataAbstService implements SxDataService dataBaseInfo.setWhere(where); total = sxDataDao.getTotalSpecShop(dataBaseInfo); if(total==0){ + HttpUtils.postData(restTemplate,remoteIp+HttpUtils.URL_SYNC_REFRESH + +"?appKey="+commentModel.getAppKey() + +"&sign="+commentModel.getAppId(), new JSONArray()); log.info("暂无活动商品同步"); return; } From 2746f11442bb56384a6128196b501417b0d98100 Mon Sep 17 00:00:00 2001 From: liyj <1617420630@qq.com> Date: Mon, 3 Nov 2025 16:10:53 +0800 Subject: [PATCH 28/35] =?UTF-8?q?=E6=80=9D=E8=BF=85=E5=90=8C=E6=AD=A5?= =?UTF-8?q?=E9=94=80=E5=94=AE=E6=B5=81=E6=B0=B4=E5=92=8C=E6=94=AF=E4=BB=98?= =?UTF-8?q?=E6=B5=81=E6=B0=B4,=E8=B0=83=E4=BB=B7=E6=97=B6=E9=97=B4?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E6=96=B0=E5=A2=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../client/Schedule/DynamicTaskScheduler.java | 6 +- .../java/com/small/client/dao/BaseDao.java | 27 +++-- .../java/com/small/client/dao/SxDataDao.java | 113 +++++++++++++----- .../com/small/client/dto/DataBaseInfo.java | 9 ++ .../java/com/small/client/dto/RmSaleflow.java | 4 +- .../com/small/client/dto/StoreDbConfig.java | 3 + .../java/com/small/client/dto/TRmPayflow.java | 3 +- .../client/service/imp/SxDataServiceImp.java | 48 ++++++-- 8 files changed, 159 insertions(+), 54 deletions(-) diff --git a/client/src/main/java/com/small/client/Schedule/DynamicTaskScheduler.java b/client/src/main/java/com/small/client/Schedule/DynamicTaskScheduler.java index 941406c0..996ff29a 100644 --- a/client/src/main/java/com/small/client/Schedule/DynamicTaskScheduler.java +++ b/client/src/main/java/com/small/client/Schedule/DynamicTaskScheduler.java @@ -47,9 +47,9 @@ public class DynamicTaskScheduler { } public void refreshTasks() { - if(!isRuning){ - sxDataService.checkForUpdates();//检查app更新 - } +// if(!isRuning){ +// sxDataService.checkForUpdates();//检查app更新 +// } CommentModel commentModel =sxDataService.getCommentModel(); DataBaseInfo enabledTask = sxDataService.getDataBaseInfo(commentModel); if(enabledTask == null){ diff --git a/client/src/main/java/com/small/client/dao/BaseDao.java b/client/src/main/java/com/small/client/dao/BaseDao.java index 68643583..4be3935a 100644 --- a/client/src/main/java/com/small/client/dao/BaseDao.java +++ b/client/src/main/java/com/small/client/dao/BaseDao.java @@ -266,7 +266,7 @@ public class BaseDao { return total; } - public Integer getBaseGoodsJoinTotal(String ip, String username, String password,Integer portNumber, String dataBaseName,String where){ + public Integer getBaseGoodsJoinTotal(String ip, String username, String password,Integer portNumber, String dataBaseName,String where,String stockOperateWhere){ int total=0; Connection connection=getConnection(ip,username,password,portNumber,dataBaseName); try { @@ -278,19 +278,18 @@ public class BaseDao { " ROW_NUMBER() OVER(PARTITION BY tib.item_no ORDER BY tib.oper_date DESC) AS rn " + " FROM t_im_branch_stock tib\n" + ") " + - "SELECT " + - " b.*, " + - " ls.stock_qty, " + - " ls.oper_date " + + "SELECT count(1) " + +// " b.*, " + +// " ls.stock_qty, " + +// " ls.oper_date " + "FROM ( " + " SELECT " + " ROW_NUMBER() OVER(ORDER BY item_clsno) AS rowId, " + " * " + - " FROM t_bd_item_info " + + " FROM t_bd_item_info shop %s" + ") b " + - "LEFT JOIN LatestStock ls ON b.item_no = ls.item_no AND ls.rn = 1 " + - " %s"; - sql=String.format(sql,where); + "LEFT JOIN LatestStock ls ON b.item_no = ls.item_no AND ls.rn = 1 %s"; + sql=String.format(sql,where,stockOperateWhere); log.info(sql); PreparedStatement ps= connection.prepareStatement(sql); ResultSet rs=ps.executeQuery(); @@ -344,7 +343,8 @@ public class BaseDao { return resultDto; } - public ResultDto baseFindGoodsListJoinPage(String ip, String username, String password,Integer portNumber, String dataBaseName, int pageNo, int pageSize,String where){ + public ResultDto baseFindGoodsListJoinPage(String ip, String username, String password,Integer portNumber, String dataBaseName, int pageNo, int pageSize, + String where,String stockOperateWhere){ Connection connection=getConnection(ip,username,password,portNumber,dataBaseName); int start=(pageNo-1)*pageSize+1; int end=pageNo*pageSize; @@ -357,6 +357,7 @@ public class BaseDao { " FROM t_im_branch_stock tib " + ") " + "SELECT " + + "ROW_NUMBER() OVER (ORDER BY b.rowId) AS rowId, "+//-- 这里重新生成从1开始连续的行号 " b.*, " + " ls.stock_qty, " + " ls.oper_date " + @@ -364,11 +365,11 @@ public class BaseDao { " SELECT " + " ROW_NUMBER() OVER(ORDER BY item_clsno) AS rowId ," + " * " + - " FROM t_bd_item_info\n" + + " FROM t_bd_item_info shop %s" + ") b " + "LEFT JOIN LatestStock ls ON b.item_no = ls.item_no AND ls.rn = 1 " + - " %s b.rowId BETWEEN %s AND %s "; - sql=String.format(sql,where,start,end); + " where b.rowId BETWEEN %s AND %s %s"; + sql=String.format(sql,where,start,end,stockOperateWhere); log.info(sql); ResultDto resultDto=new ResultDto(); ResultSet rs=null; diff --git a/client/src/main/java/com/small/client/dao/SxDataDao.java b/client/src/main/java/com/small/client/dao/SxDataDao.java index fb915c71..2ce7534f 100644 --- a/client/src/main/java/com/small/client/dao/SxDataDao.java +++ b/client/src/main/java/com/small/client/dao/SxDataDao.java @@ -12,6 +12,7 @@ import com.small.client.Utils.HttpUtils; import com.small.client.Utils.SqlBuilder; import com.small.client.dto.*; import lombok.extern.slf4j.Slf4j; +import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.math.NumberUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; @@ -22,6 +23,7 @@ import java.math.BigDecimal; import java.math.RoundingMode; import java.sql.*; import java.sql.Date; +import java.time.LocalDateTime; import java.util.*; import java.util.stream.Collectors; @@ -54,6 +56,8 @@ public class SxDataDao extends BaseDao{ private final static String T_BD_BRANCH_INFO="t_bd_branch_info";//仓库表 + private final static String T_RM_CASHIER="t_rm_cashier";//小发收银账号 + private final static String T_IM_BRANCH_STOCK="(" + "select * from( " + " select ROW_NUMBER() OVER( " + @@ -175,7 +179,7 @@ public class SxDataDao extends BaseDao{ */ public int getTBditemInfoJoninTotal(DataBaseInfo dataBaseInfo){ return getBaseGoodsJoinTotal(dataBaseInfo.getIp(),dataBaseInfo.getUserName(),dataBaseInfo.getPassword(),dataBaseInfo.getDbPort(),dataBaseInfo.getDataBaseName() - ,dataBaseInfo.getWhere()==null?DEFALTWHERE:dataBaseInfo.getWhere()); + ,dataBaseInfo.getWhere()==null?DEFALTWHERE:dataBaseInfo.getWhere(),"where "+dataBaseInfo.getStockOperateWhere()); } /** @@ -197,7 +201,7 @@ public class SxDataDao extends BaseDao{ */ public List findBditemInfoListPage(DataBaseInfo dataBaseInfo,int pageNo,int pageSize){ ResultDto resultDto=baseFindGoodsListJoinPage(dataBaseInfo.getIp(),dataBaseInfo.getUserName(),dataBaseInfo.getPassword(),dataBaseInfo.getDbPort(),dataBaseInfo.getDataBaseName() - ,pageNo,pageSize,dataBaseInfo.getWhere()==null?DEFALTWHERE:dataBaseInfo.getWhere()); + ,pageNo,pageSize,dataBaseInfo.getWhere()==null?DEFALTWHERE:dataBaseInfo.getWhere()," and "+dataBaseInfo.getStockOperateWhere()); ResultSet rs= resultDto.getResultSet(); List sxSyncGoodses=new ArrayList<>(); SxSyncGoods sxSyncGoods=null; @@ -515,11 +519,13 @@ public class SxDataDao extends BaseDao{ rmSaleflow.setItemNo(itemNo); rmSaleflow.setSalePrice(unitPrice); rmSaleflow.setSaleQnty(stock_qty); + rmSaleflow.setSourcePrice(unitPrice); rmSaleflow.setFlownoRand(productQuantityConsumptionDto.getOrderId());//随机子单号 设置网上订单号 - rmSaleflow= fixRmSaleFlow(rmSaleflow,brachNo,itemInfoMap); + rmSaleflow= fixRmSaleFlow(rmSaleflow,brachNo,itemInfoMap,dataBaseInfo.getSaleAccount()); TRmPayflow trmPayflow=fixTRmPayflow(rmSaleflow); rmSaleflowList.add(rmSaleflow); + tRmPayflowList.add(trmPayflow); ps.setString(1, itemNo); ps.setDouble(2, stock_qty.doubleValue()); @@ -578,41 +584,47 @@ public class SxDataDao extends BaseDao{ * @param rmSaleflow * @return */ - public RmSaleflow fixRmSaleFlow(RmSaleflow rmSaleflow,String branchNo,Map itemInfoMap){ + public RmSaleflow fixRmSaleFlow(RmSaleflow rmSaleflow,String branchNo,Map itemInfoMap,String saleAccount){ //自定义单号 start rmSaleflow.setFlowId(1); String orderId=rmSaleflow.getFlownoRand(); String[] orderIdSplits= orderId.split("_"); String DateStr=DateUtil.format(new java.util.Date(),"yyyyMMdd"); - String flowNo="99"+DateStr+orderIdSplits[orderIdSplits.length-1]; + String number= String.format("%04d", Integer.valueOf(orderIdSplits[orderIdSplits.length-1])); + String flowNo="99"+DateStr+number; rmSaleflow.setFlowNo(flowNo);//订单号 todo //自定义 单号 end //判断取值 start - rmSaleflow.setSellWay("A"); + rmSaleflow.setSellWay("B"); rmSaleflow.setRetQnty(rmSaleflow.getSaleQnty()); if(rmSaleflow.getSaleQnty().compareTo(BigDecimal.ZERO)<0){ - rmSaleflow.setSellWay("B"); + rmSaleflow.setSellWay("A"); BigDecimal saleQnty=rmSaleflow.getSaleQnty();//销售数量 rmSaleflow.setSaleQnty(saleQnty); rmSaleflow.setRetQnty(BigDecimal.ZERO); } + BigDecimal saleMoney=rmSaleflow.getSalePrice().multiply(rmSaleflow.getSaleQnty()); + if(rmSaleflow.getSaleQnty().compareTo(BigDecimal.ZERO)<0){ + saleMoney=saleMoney.multiply(new BigDecimal("-1")); + } + rmSaleflow.setSaleMoney(saleMoney); //判断取值 end //数据库查询取值start todo ItemInfo itemInfo=itemInfoMap.get(rmSaleflow.getItemNo()); if(itemInfo!=null){ rmSaleflow.setInPrice(itemInfo.getPrice()); - rmSaleflow.setOperDate(new Date(System.currentTimeMillis())); + rmSaleflow.setOperDate(new Timestamp(System.currentTimeMillis())); } rmSaleflow.setBranchNo(branchNo); //数据库查询取值end //远程配置取值start todo - rmSaleflow.setOperId("9999"); - rmSaleflow.setSaleMan("9999"); - rmSaleflow.setCounterNo("9999"); + rmSaleflow.setOperId(saleAccount); + rmSaleflow.setSaleMan(saleAccount); + rmSaleflow.setCounterNo(saleAccount); //远程配置取值end //统一默认值 start @@ -635,6 +647,9 @@ public class SxDataDao extends BaseDao{ rmPayflow.setFlowId(rmSaleflow.getFlowId()); rmPayflow.setFlowNo(rmSaleflow.getFlowNo()); BigDecimal saleAmount=rmSaleflow.getSalePrice().multiply(rmSaleflow.getSaleQnty()).setScale(2, RoundingMode.HALF_UP); + if(saleAmount.compareTo(BigDecimal.ZERO)<0){ + saleAmount=saleAmount.multiply(new BigDecimal("-1")); + } rmPayflow.setSaleAmount(saleAmount); rmPayflow.setBranchNo(rmSaleflow.getBranchNo()); rmPayflow.setPayWay("RMB");//人民币 @@ -644,14 +659,14 @@ public class SxDataDao extends BaseDao{ rmPayflow.setCoinNo("RMB");// rmPayflow.setCoinRate(new BigDecimal("1"));//利率 rmPayflow.setPayAmount(saleAmount); - rmPayflow.setOperDate(rmSaleflow.getOperDate()); + rmPayflow.setOperDate(new Timestamp(System.currentTimeMillis())); rmPayflow.setOperId(rmSaleflow.getOperId()); rmPayflow.setCounterNo(rmSaleflow.getCounterNo()); rmPayflow.setSaleMan(rmSaleflow.getSaleMan()); rmPayflow.setMemo(""); rmPayflow.setVoucherNo("");//退货单号 退货时要填 rmPayflow.setRemoteFlag("0"); - rmPayflow.setExchangeFlag(null); + rmPayflow.setExchangeFlag("0"); rmPayflow.setShiftNo(""); rmPayflow.setComFlag("0"); rmPayflow.setPosid("01"); @@ -687,7 +702,7 @@ public class SxDataDao extends BaseDao{ } Map resultMap=new HashMap<>(); Set sme=map.entrySet(); - String where = "where 1=1"; + String where = "where 1=1 and "; List itemNos = sme.stream() .map(entry -> (String) entry.getKey()) .collect(Collectors.toList()); @@ -698,13 +713,23 @@ public class SxDataDao extends BaseDao{ try { while (rs.next()) { ItemInfo itemInfo=new ItemInfo(); - String itemNo=rs.getString("item_no"); + String itemNo=rs.getString("item_no").trim(); itemInfo.setItemNo(itemNo);// - itemInfo.setItemSubno(rs.getString("item_subno")); - itemInfo.setItemName(rs.getString("item_name")); - itemInfo.setItemBrand(rs.getString("item_brand"));//品牌 - itemInfo.setPrice(rs.getBigDecimal("price"));//进货价 - itemInfo.setItemClsno(rs.getString("item_clsno")); + if(StringUtils.isNotEmpty(rs.getString("item_subno"))){ + itemInfo.setItemSubno(rs.getString("item_subno").trim()); + } + if(StringUtils.isNotEmpty(rs.getString("item_name"))){ + itemInfo.setItemName(rs.getString("item_name").trim()); + } + if(StringUtils.isNotEmpty(rs.getString("item_brand"))){ + itemInfo.setItemBrand(rs.getString("item_brand").trim());//品牌 + } + if(StringUtils.isNotEmpty(rs.getString("price"))){ + itemInfo.setPrice(rs.getBigDecimal("price"));//进货价 + } + if(StringUtils.isNotEmpty(rs.getString("item_clsno"))){ + itemInfo.setItemClsno(rs.getString("item_clsno").trim()); + } resultMap.put(itemNo,itemInfo); } } catch (SQLException e) { @@ -747,7 +772,7 @@ public class SxDataDao extends BaseDao{ "exchange_flag, shift_no, com_flag, uptime, flowno_rand, " + "ciceroni_no, ciceroni_id, flowno_type, trans_type, up_batchno, " + "remark, cash_no" + - ") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"; + ") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"; try { PreparedStatement ps = conn.prepareStatement(sql);//销售流水 PreparedStatement ps2 = conn.prepareStatement(sql2);//资金流水 @@ -763,18 +788,23 @@ public class SxDataDao extends BaseDao{ ps.setBigDecimal(5, rmSaleflow.getSourcePrice()); ps.setBigDecimal(6, rmSaleflow.getSalePrice()); - ps.setBigDecimal(7, rmSaleflow.getSaleQnty()); + BigDecimal saleQnty=rmSaleflow.getSaleQnty(); + if(saleQnty.compareTo(BigDecimal.ZERO)<0){ + saleQnty=saleQnty.multiply(new BigDecimal("-1")); + } + ps.setBigDecimal(7,saleQnty); + ps.setBigDecimal(8, rmSaleflow.getSaleMoney()); ps.setString(9, rmSaleflow.getSellWay()); ps.setString(10, rmSaleflow.getOperId()); ps.setString(11, rmSaleflow.getSaleMan()); ps.setString(12, rmSaleflow.getCounterNo()); - ps.setDate(13, rmSaleflow.getOperDate());//OperDate + ps.setTimestamp(13, rmSaleflow.getOperDate());//OperDate ps.setString(14, rmSaleflow.getRemoteFlag()); - ps.setString(15, rmSaleflow.getShiftNo()); + ps.setString(15, "");//ShiftNo ps.setString(16, rmSaleflow.getComFlag()); - ps.setString(17, rmSaleflow.getSpecFlag()); + ps.setString(17, "");//SpecFlag ps.setBigDecimal(18, rmSaleflow.getPrefAmt()); ps.setBigDecimal(19, rmSaleflow.getInPrice()); @@ -787,7 +817,7 @@ public class SxDataDao extends BaseDao{ ps.setString(26, rmSaleflow.getFlownoType()); ps.setString(27, rmSaleflow.getSpecSheetNo()); - ps.setString(28, rmSaleflow.getCicSheetNo()); + ps.setString(28, "");//CicSheetNo ps.setString(29, rmSaleflow.getShareCardid()); ps.setString(30, rmSaleflow.getItemNoFresh()); @@ -810,7 +840,7 @@ public class SxDataDao extends BaseDao{ ps2.setString(9, rmPayflow.getCoinNo()); ps2.setBigDecimal(10, rmPayflow.getCoinRate()); ps2.setBigDecimal(11, rmPayflow.getPayAmount()); - ps2.setDate(12, rmPayflow.getOperDate()); + ps2.setTimestamp(12, rmPayflow.getOperDate()); ps2.setString(13, rmPayflow.getOperId());//OperDate ps2.setString(14, rmPayflow.getCounterNo()); @@ -820,7 +850,7 @@ public class SxDataDao extends BaseDao{ ps2.setString(17, rmPayflow.getRemoteFlag()); ps2.setString(18, rmPayflow.getExchangeFlag()); - ps2.setString(29, rmPayflow.getShiftNo()); + ps2.setString(19, rmPayflow.getShiftNo()); ps2.setString(20, rmPayflow.getComFlag()); //ps2.setString(22, rmPayflow.getPosid()); ps2.setTimestamp(21, null);//Uptime @@ -853,7 +883,7 @@ public class SxDataDao extends BaseDao{ int[] remainingCounts = ps.executeBatch(); int[] remainingCounts2 = ps2.executeBatch(); log.info("销售流水记录剩余批次更新数: {}", Arrays.toString(remainingCounts)); - log.info("支付流水记录剩余批次更新数: {}", Arrays.toString(remainingCounts)); + log.info("支付流水记录剩余批次更新数: {}", Arrays.toString(remainingCounts2)); conn.commit(); // 最终提交事务 log.info("销售-支付-流水记录批量更新完成,总记录数: {}" , count); //baseUpdateImBrancStock(dataBaseInfo); @@ -1249,4 +1279,29 @@ public class SxDataDao extends BaseDao{ } return branch_no; } + + /** + * 获取小发账号 + * @return + */ + public String getTRmCashier(DataBaseInfo dataBaseInfo,String accountNo){ + ResultDto resultDto= this.baseFindList(dataBaseInfo.getIp(),dataBaseInfo.getUserName(),dataBaseInfo.getPassword(), + dataBaseInfo.getDbPort(),dataBaseInfo.getDataBaseName(),T_RM_CASHIER,"where cashier_id='"+accountNo+"'"); + ResultSet rs= resultDto.getResultSet(); + String cashier_id = ""; + try { + while (rs.next()) { + cashier_id=rs.getString("cashier_id");// + } + } catch (SQLException e) { + throw new RuntimeException(e); + } finally { + try { + resultDto.getConnection().close(); + } catch (SQLException e) { + throw new RuntimeException(e); + } + } + return cashier_id; + } } diff --git a/client/src/main/java/com/small/client/dto/DataBaseInfo.java b/client/src/main/java/com/small/client/dto/DataBaseInfo.java index f19bfbb3..bfe770c3 100644 --- a/client/src/main/java/com/small/client/dto/DataBaseInfo.java +++ b/client/src/main/java/com/small/client/dto/DataBaseInfo.java @@ -41,4 +41,13 @@ public class DataBaseInfo { @ApiModelProperty(value = "间隔时间") private String shopGapTime; + + @ApiModelProperty(value = "调价时间") + private String priceOperatiem; + + @ApiModelProperty(value = "库存条件") + private String stockOperateWhere; + + @ApiModelProperty(value = "营业员账号") + private String saleAccount; } diff --git a/client/src/main/java/com/small/client/dto/RmSaleflow.java b/client/src/main/java/com/small/client/dto/RmSaleflow.java index 09f99b6d..56c0e2e6 100644 --- a/client/src/main/java/com/small/client/dto/RmSaleflow.java +++ b/client/src/main/java/com/small/client/dto/RmSaleflow.java @@ -4,6 +4,7 @@ import lombok.Data; import java.math.BigDecimal; import java.sql.Date; +import java.sql.Timestamp; @Data public class RmSaleflow { @@ -20,7 +21,7 @@ public class RmSaleflow { private String operId; private String saleMan; private String counterNo; - private Date operDate; + private Timestamp operDate; private String remoteFlag; private String shiftNo; private String comFlag; @@ -38,4 +39,5 @@ public class RmSaleflow { private String cicSheetNo; private String shareCardid; private String itemNoFresh; + } diff --git a/client/src/main/java/com/small/client/dto/StoreDbConfig.java b/client/src/main/java/com/small/client/dto/StoreDbConfig.java index 7aead91d..780178ee 100644 --- a/client/src/main/java/com/small/client/dto/StoreDbConfig.java +++ b/client/src/main/java/com/small/client/dto/StoreDbConfig.java @@ -71,4 +71,7 @@ public class StoreDbConfig implements Serializable { @ApiModelProperty("商品同步间隔时间") private String shopGapTime; + + @ApiModelProperty(value = "营业员账号") + private String saleAccount; } diff --git a/client/src/main/java/com/small/client/dto/TRmPayflow.java b/client/src/main/java/com/small/client/dto/TRmPayflow.java index 436ac351..1faf7f23 100644 --- a/client/src/main/java/com/small/client/dto/TRmPayflow.java +++ b/client/src/main/java/com/small/client/dto/TRmPayflow.java @@ -4,6 +4,7 @@ import lombok.Data; import java.math.BigDecimal; import java.sql.Date; +import java.sql.Timestamp; @Data public class TRmPayflow { @@ -70,7 +71,7 @@ public class TRmPayflow { /** * 操作时间 */ - private Date operDate; + private Timestamp operDate; /** * 操作员ID diff --git a/client/src/main/java/com/small/client/service/imp/SxDataServiceImp.java b/client/src/main/java/com/small/client/service/imp/SxDataServiceImp.java index 344a8cda..9ac6cad1 100644 --- a/client/src/main/java/com/small/client/service/imp/SxDataServiceImp.java +++ b/client/src/main/java/com/small/client/service/imp/SxDataServiceImp.java @@ -142,9 +142,11 @@ public class SxDataServiceImp extends SxDataAbstService implements SxDataService syncAllGoods(dataBaseInfo, commentModel); break; case "02"://增量 todo test + String sycnTime=commentModel.getSyncTime(); syncIncrementAddGoods(dataBaseInfo, commentModel); - syncIncrementModifyGoods(dataBaseInfo, commentModel); + // syncIncrementModifyGoods(dataBaseInfo, commentModel); syncIncrementStock(dataBaseInfo, commentModel); + syncFlowPrice(dataBaseInfo, commentModel,sycnTime); break; } @@ -324,21 +326,37 @@ public class SxDataServiceImp extends SxDataAbstService implements SxDataService */ private void syncAllGoods(DataBaseInfo dataBaseInfo, CommentModel commentModel){ //String where="where 1=1"; - String where="where b.status='1'"; + String where="where shop.status='1'"; Integer total =0; String parentId=getAndCacheTree(dataBaseInfo,dataBaseInfo.getCategoryName());//加载缓存用的 if(DicEnum.SYNCTYPE_02.getCode().equals(dataBaseInfo.getSyncType())){ if (StringUtils.isNotEmpty(dataBaseInfo.getCategoryName())) { //syncGoodsSearchModel.setItemClsno(childrens); String childrens= commonCache.get(CommonCache.CACHE_CATEGROY+parentId); - where += " and b.item_clsno in ('" + childrens + "')"; + where += " and shop.item_clsno in ('" + childrens + "')"; } if(StringUtils.isNotEmpty(commentModel.getSyncTime())){ - where+=" and b.modify_date>'"+commentModel.getSyncTime()+"' "; - where+=" or b.build_date>'"+commentModel.getSyncTime()+"' "; + where+=" and shop.modify_date>'"+commentModel.getSyncTime()+"' "; + where+=" or shop.build_date>'"+commentModel.getSyncTime()+"' "; } if(StringUtils.isNotEmpty(dataBaseInfo.getOperDate())){ - where+=" and ls.oper_date>'"+dataBaseInfo.getOperDate()+"' "; + String stockOperateWhere=" ls.oper_date>'"+dataBaseInfo.getOperDate()+"' "; + dataBaseInfo.setStockOperateWhere(stockOperateWhere); + } + if(StringUtils.isNotEmpty(dataBaseInfo.getPriceOperatiem())){ + where+=" and EXISTS ( " + + " select " + + " shop.item_no " + + " from " + + " t_pc_price_flow_detail tpfd " + + " inner join t_pc_price_flow_master tppfm " + + " on " + + " tpfd.sheet_no = tppfm.sheet_no " + + " where " + + " tppfm.valid_flag = '1' " +//有效 + " and shop.item_no=tpfd.item_no " + + " and tppfm.oper_date >'"+dataBaseInfo.getPriceOperatiem()+"' " + + " )"; } dataBaseInfo.setWhere(where); // 记录总数 @@ -351,7 +369,7 @@ public class SxDataServiceImp extends SxDataAbstService implements SxDataService log.info("暂无商品同步"); return; } - where+=" and"; + //where+=" and"; dataBaseInfo.setWhere(where); // 总页数 @@ -458,6 +476,16 @@ public class SxDataServiceImp extends SxDataAbstService implements SxDataService syncAllGoods(dataBaseInfo,commentModel); } + /** + * 增量同步 调价单变化 + */ + private void syncFlowPrice(DataBaseInfo dataBaseInfo, CommentModel commentModel,String sycnTime){ + dataBaseInfo.setPriceOperatiem(sycnTime); + commentModel.setSyncTime(""); + dataBaseInfo.setOperDate(""); + syncAllGoods(dataBaseInfo,commentModel); + } + /** *获取特价商品 * @param dataBaseInfo @@ -726,6 +754,7 @@ public class SxDataServiceImp extends SxDataAbstService implements SxDataService dataBaseInfo.setRefreshTime(storeDbConfig.getRefreshTime()); dataBaseInfo.setIsTowSync(storeDbConfig.getIsTowSync()); dataBaseInfo.setShopGapTime(storeDbConfig.getShopGapTime()); + dataBaseInfo.setSaleAccount(storeDbConfig.getSaleAccount()); return dataBaseInfo; } return new DataBaseInfo(); @@ -737,6 +766,11 @@ public class SxDataServiceImp extends SxDataAbstService implements SxDataService log.info("不做双向同步数据库"); return; } + String saleAccount= sxDataDao.getTRmCashier(dataBaseInfo,dataBaseInfo.getSaleAccount()); + if(StringUtils.isEmpty(saleAccount)){ + log.error("需要配置商城收银人员"); + return; + } JSONObject jsonObject= restTemplate.getForObject(remoteIp+HttpUtils.URL_SYNC_GET_STOR_DATA_RELEASE +"?appKey="+commentModel.getAppKey() +"&sign="+commentModel.getAppId(),JSONObject.class); From d3790fae0d06c23f72335bfc8eda59009a4fd3a0 Mon Sep 17 00:00:00 2001 From: liyj <1617420630@qq.com> Date: Mon, 3 Nov 2025 17:58:06 +0800 Subject: [PATCH 29/35] =?UTF-8?q?=E4=B8=BB=E9=A2=98=E6=B4=BB=E5=8A=A8?= =?UTF-8?q?=E5=90=8C=E6=AD=A5=E6=94=B9=E5=90=8C=E6=AD=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sync/service/impl/SyncThirdDataServiceImpl.java | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/sync/service/impl/SyncThirdDataServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/sync/service/impl/SyncThirdDataServiceImpl.java index e36e93ba..d197fc38 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/sync/service/impl/SyncThirdDataServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/sync/service/impl/SyncThirdDataServiceImpl.java @@ -1118,13 +1118,14 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements return; } String storeId = syncAppO.getStore_id(); + batchSaveShopStoreActivityBase(activeJsonArray, Integer.valueOf(storeId)); //活动逻辑 - new Thread(new Runnable() { - @Override - public void run() { - batchSaveShopStoreActivityBase(activeJsonArray, Integer.valueOf(storeId)); - } - }).start(); +// new Thread(new Runnable() { +// @Override +// public void run() { +// batchSaveShopStoreActivityBase(activeJsonArray, Integer.valueOf(storeId)); +// } +// }).start(); } /** From 88e9a520711a08179d41d2da2654de8fa9b034ab Mon Sep 17 00:00:00 2001 From: liyj <1617420630@qq.com> Date: Mon, 3 Nov 2025 18:00:47 +0800 Subject: [PATCH 30/35] =?UTF-8?q?=E6=B4=BB=E5=8A=A8=E5=90=8C=E6=AD=A5?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/small/client/dao/BaseDao.java | 4 +- .../java/com/small/client/dao/SxDataDao.java | 14 ++++-- .../client/service/imp/SxDataServiceImp.java | 45 ++----------------- 3 files changed, 16 insertions(+), 47 deletions(-) diff --git a/client/src/main/java/com/small/client/dao/BaseDao.java b/client/src/main/java/com/small/client/dao/BaseDao.java index 4be3935a..f73f2dcd 100644 --- a/client/src/main/java/com/small/client/dao/BaseDao.java +++ b/client/src/main/java/com/small/client/dao/BaseDao.java @@ -186,8 +186,8 @@ public class BaseDao { int total=0; Connection connection=getConnection(ip,username,password,portNumber,dataBaseName); try { - String sql="select count(1) from t_pub_plan_detail_b d left join t_pub_plan_master m on " + - " d.plan_no =m.plan_no %s"; + String sql="select count(1) from t_pub_plan_detail_b d left join t_pub_plan_master t on " + + " d.plan_no =t.plan_no %s"; sql=String.format(sql,where); log.info(sql); PreparedStatement ps= connection.prepareStatement(sql); diff --git a/client/src/main/java/com/small/client/dao/SxDataDao.java b/client/src/main/java/com/small/client/dao/SxDataDao.java index 2ce7534f..2a7a6e3d 100644 --- a/client/src/main/java/com/small/client/dao/SxDataDao.java +++ b/client/src/main/java/com/small/client/dao/SxDataDao.java @@ -178,8 +178,12 @@ public class SxDataDao extends BaseDao{ * @return */ public int getTBditemInfoJoninTotal(DataBaseInfo dataBaseInfo){ + String stockOperateWhere=""; + if(StringUtils.isNotEmpty(dataBaseInfo.getStockOperateWhere())){ + stockOperateWhere="where "+dataBaseInfo.getStockOperateWhere(); + } return getBaseGoodsJoinTotal(dataBaseInfo.getIp(),dataBaseInfo.getUserName(),dataBaseInfo.getPassword(),dataBaseInfo.getDbPort(),dataBaseInfo.getDataBaseName() - ,dataBaseInfo.getWhere()==null?DEFALTWHERE:dataBaseInfo.getWhere(),"where "+dataBaseInfo.getStockOperateWhere()); + ,dataBaseInfo.getWhere()==null?DEFALTWHERE:dataBaseInfo.getWhere(),stockOperateWhere); } /** @@ -200,8 +204,12 @@ public class SxDataDao extends BaseDao{ * @param pageSize */ public List findBditemInfoListPage(DataBaseInfo dataBaseInfo,int pageNo,int pageSize){ + String stockOperateWhere=""; + if(StringUtils.isNotEmpty(dataBaseInfo.getStockOperateWhere())){ + stockOperateWhere=" and "+dataBaseInfo.getStockOperateWhere(); + } ResultDto resultDto=baseFindGoodsListJoinPage(dataBaseInfo.getIp(),dataBaseInfo.getUserName(),dataBaseInfo.getPassword(),dataBaseInfo.getDbPort(),dataBaseInfo.getDataBaseName() - ,pageNo,pageSize,dataBaseInfo.getWhere()==null?DEFALTWHERE:dataBaseInfo.getWhere()," and "+dataBaseInfo.getStockOperateWhere()); + ,pageNo,pageSize,dataBaseInfo.getWhere()==null?DEFALTWHERE:dataBaseInfo.getWhere(),stockOperateWhere); ResultSet rs= resultDto.getResultSet(); List sxSyncGoodses=new ArrayList<>(); SxSyncGoods sxSyncGoods=null; @@ -1134,7 +1142,7 @@ public class SxDataDao extends BaseDao{ ,dataBaseInfo.getPassword() ,dataBaseInfo.getDbPort() ,dataBaseInfo.getDataBaseName() - ,T_PUB_PLAN_MASTER + ,T_PUB_PLAN_MASTER +" b" ,PLAN_NO ,pageNo ,pageSize diff --git a/client/src/main/java/com/small/client/service/imp/SxDataServiceImp.java b/client/src/main/java/com/small/client/service/imp/SxDataServiceImp.java index 9ac6cad1..5a0c1735 100644 --- a/client/src/main/java/com/small/client/service/imp/SxDataServiceImp.java +++ b/client/src/main/java/com/small/client/service/imp/SxDataServiceImp.java @@ -22,31 +22,22 @@ import com.small.client.service.WebClientService; import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang3.StringUtils; -import org.apache.http.client.config.RequestConfig; -import org.apache.http.impl.client.CloseableHttpClient; -import org.apache.http.impl.client.HttpClients; -import org.apache.http.impl.client.LaxRedirectStrategy; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.core.io.Resource; import org.springframework.http.*; -import org.springframework.http.client.HttpComponentsClientHttpRequestFactory; import org.springframework.stereotype.Service; import org.springframework.util.MultiValueMap; import org.springframework.util.StreamUtils; import org.springframework.web.client.RestTemplate; import org.springframework.web.util.UriComponentsBuilder; -import javax.net.ssl.SSLContext; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.math.BigDecimal; import java.nio.charset.StandardCharsets; import java.nio.file.Files; -import java.security.KeyManagementException; -import java.security.KeyStoreException; -import java.security.NoSuchAlgorithmException; import java.time.Instant; import java.util.*; import java.util.stream.Collectors; @@ -694,7 +685,8 @@ public class SxDataServiceImp extends SxDataAbstService implements SxDataService log.error("文件下载失败:{}",e.getMessage()); return null; } - return downloadDirectory+originalFileName; + File file=new File(downloadDirectory+originalFileName); + return file.length()>0?downloadDirectory+originalFileName:null; } @@ -845,7 +837,7 @@ public class SxDataServiceImp extends SxDataAbstService implements SxDataService String where="where 1=1"; Integer total =0; if(StringUtils.isNotEmpty(commentModel.getSyncTime())){ - where+=" and m.oper_date>'"+commentModel.getSyncTime()+"' "; + where+=" and t.oper_date>'"+commentModel.getSyncTime()+"' "; // where+=" or m.oper_date>'"+commentModel.getSyncTime()+"') "; } @@ -898,35 +890,4 @@ public class SxDataServiceImp extends SxDataAbstService implements SxDataService return map; } - /** - * 创建跳过SSL验证的RestTemplate - * 仅用于测试环境,生产环境不安全 - */ - private RestTemplate createUnsafeRestTemplate() throws KeyStoreException, NoSuchAlgorithmException, KeyManagementException { - // 配置请求参数 - RequestConfig config = RequestConfig.custom() - .setConnectTimeout(30000) - .setSocketTimeout(30000) - .setRedirectsEnabled(true) - .setMaxRedirects(10) - .build(); - - // 创建SSL上下文(信任所有证书 - 仅测试环境使用) - SSLContext sslContext = org.apache.http.ssl.SSLContexts.custom() - .loadTrustMaterial((chain, authType) -> true) - .build(); - - // 创建HttpClient,配置SSL和重定向 - CloseableHttpClient httpClient = HttpClients.custom() - .setDefaultRequestConfig(config) - .setSSLContext(sslContext) - .setRedirectStrategy(new LaxRedirectStrategy()) - .build(); - - // 创建请求工厂 - HttpComponentsClientHttpRequestFactory factory = new HttpComponentsClientHttpRequestFactory(httpClient); - - return new RestTemplate(factory); - } - } From f7a6cecd315c194c64accc23b8f7a91738863749 Mon Sep 17 00:00:00 2001 From: liyj <1617420630@qq.com> Date: Mon, 3 Nov 2025 18:01:03 +0800 Subject: [PATCH 31/35] =?UTF-8?q?=E6=B4=BB=E5=8A=A8=E5=90=8C=E6=AD=A5?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/small/client/Schedule/DynamicTaskScheduler.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/main/java/com/small/client/Schedule/DynamicTaskScheduler.java b/client/src/main/java/com/small/client/Schedule/DynamicTaskScheduler.java index 996ff29a..941406c0 100644 --- a/client/src/main/java/com/small/client/Schedule/DynamicTaskScheduler.java +++ b/client/src/main/java/com/small/client/Schedule/DynamicTaskScheduler.java @@ -47,9 +47,9 @@ public class DynamicTaskScheduler { } public void refreshTasks() { -// if(!isRuning){ -// sxDataService.checkForUpdates();//检查app更新 -// } + if(!isRuning){ + sxDataService.checkForUpdates();//检查app更新 + } CommentModel commentModel =sxDataService.getCommentModel(); DataBaseInfo enabledTask = sxDataService.getDataBaseInfo(commentModel); if(enabledTask == null){ From ddd20b825e015648636b0deb2e1f81a8f8ab5f9d Mon Sep 17 00:00:00 2001 From: liyj <1617420630@qq.com> Date: Tue, 4 Nov 2025 11:17:37 +0800 Subject: [PATCH 32/35] =?UTF-8?q?=E5=90=8C=E6=AD=A5=E4=BB=B7=E6=94=B9?= =?UTF-8?q?=E4=B8=BA=E8=AE=A2=E5=8D=95=E4=BB=B7=E6=A0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../shop/order/service/impl/ShopOrderReturnServiceImpl.java | 2 +- .../shop/sfexpress/service/impl/SFExpressApiServiceImpl.java | 4 ++-- .../mall/shop/sync/service/impl/SyncThirdDataServiceImpl.java | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderReturnServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderReturnServiceImpl.java index 28ef1596..00e6234b 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderReturnServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderReturnServiceImpl.java @@ -1525,7 +1525,7 @@ public class ShopOrderReturnServiceImpl extends BaseServiceImpl stockDeltaMap = new HashMap<>(); String item_src_id = productItem.getItem_src_id(); - stockDeltaMap.put(item_src_id + "-" + shopOrderItem.getOrder_id(), returnNum); + stockDeltaMap.put(item_src_id + "-" + shopOrderItem.getOrder_id()+"-"+shopOrderItem.getItem_unit_price(), returnNum); syncThirdDataService.incrProductStockToRedis(stockDeltaMap); logger.info("退货返回给思迅,存入redis成功,item_src_id:{},订单号:{},数量:{}", item_src_id, shopOrderReturn.getOrder_id(), returnNum); } else { diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/sfexpress/service/impl/SFExpressApiServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/sfexpress/service/impl/SFExpressApiServiceImpl.java index 94a7fc1c..154f917d 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/sfexpress/service/impl/SFExpressApiServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/sfexpress/service/impl/SFExpressApiServiceImpl.java @@ -1178,7 +1178,7 @@ public class SFExpressApiServiceImpl implements SFExpressApiService { Map stockDeltaMap = new HashMap<>(); String item_src_id = shopOrderItem.getItem_src_id(); Integer order_item_quantity = shopOrderItem.getOrder_item_quantity(); - stockDeltaMap.put(item_src_id + "-" + shopStoreSfOrder.getShop_order_id(), -order_item_quantity); + stockDeltaMap.put(item_src_id + "-" + shopStoreSfOrder.getShop_order_id()+"-"+shopOrderItem.getItem_unit_price(), -order_item_quantity); syncThirdDataService.incrProductStockToRedis(stockDeltaMap); } } @@ -1347,7 +1347,7 @@ public class SFExpressApiServiceImpl implements SFExpressApiService { Map stockDeltaMap = new HashMap<>(); String item_src_id = shopOrderItem.getItem_src_id(); Integer order_item_quantity = shopOrderItem.getOrder_item_quantity(); - stockDeltaMap.put(item_src_id + "-" + shopOrderItem.getOrder_id(), -order_item_quantity); + stockDeltaMap.put(item_src_id + "-" + shopOrderItem.getOrder_id()+"-"+shopOrderItem.getItem_unit_price(), -order_item_quantity); syncThirdDataService.incrProductStockToRedis(stockDeltaMap); } } diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/sync/service/impl/SyncThirdDataServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/sync/service/impl/SyncThirdDataServiceImpl.java index d197fc38..23ea828f 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/sync/service/impl/SyncThirdDataServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/sync/service/impl/SyncThirdDataServiceImpl.java @@ -938,12 +938,13 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements continue; } String[] productKeyArrys=productKey.split("-"); - if(productKeyArrys.length!=2){ + if(productKeyArrys.length!=3){ continue; } try { String item_src_id=productKeyArrys[0]; String orderId=productKeyArrys[1]; + String unitPrice=productKeyArrys[2]; QueryWrapper queryWrapper = new QueryWrapper<>(); queryWrapper.eq("item_src_id", item_src_id); List shopProductItems=shopProductItemService.list(queryWrapper); @@ -973,7 +974,6 @@ public class SyncThirdDataServiceImpl extends SyncBaseThirdSxAbstract implements cn.hutool.json.JSONArray array_item_spec= JSONUtil.parseArray(spuItem.getItem_spec()); logger.info("array_item_spec:{}",array_item_spec); logger.info("key:{},Product_number:{}",key,itemId); - String unitPrice= String.valueOf(spuItem.getItem_unit_price()); if(array_item_spec.isEmpty()){ redisTemplate.opsForHash().increment(key, itemId+"-"+orderId+"-"+unitPrice, delta.doubleValue()); logger.info("存储无规格库存成功"); From eb5ddd03dfc3e9567f20c53506e947cad5029313 Mon Sep 17 00:00:00 2001 From: liyj <1617420630@qq.com> Date: Tue, 4 Nov 2025 11:42:08 +0800 Subject: [PATCH 33/35] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E4=BA=8B=E5=8A=A1?= =?UTF-8?q?=E6=96=B9=E6=A1=88=E4=BF=AE=E5=A4=8D=E6=8E=89=E7=BA=BF=E9=97=AE?= =?UTF-8?q?=E9=A2=98=E5=AF=BC=E8=87=B4=E7=9A=84=E9=87=8D=E5=A4=8D=E6=B6=88?= =?UTF-8?q?=E8=B4=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/small/client/dao/SxDataDao.java | 37 +++++++------------ .../client/service/imp/SxDataServiceImp.java | 2 +- 2 files changed, 15 insertions(+), 24 deletions(-) diff --git a/client/src/main/java/com/small/client/dao/SxDataDao.java b/client/src/main/java/com/small/client/dao/SxDataDao.java index 2a7a6e3d..2eab7769 100644 --- a/client/src/main/java/com/small/client/dao/SxDataDao.java +++ b/client/src/main/java/com/small/client/dao/SxDataDao.java @@ -550,7 +550,7 @@ public class SxDataDao extends BaseDao{ int[] remainingCounts = ps.executeBatch(); //todo 新增流水 - updateStoreSaleFlow(dataBaseInfo,rmSaleflowList,tRmPayflowList); + updateStoreSaleFlow(conn,rmSaleflowList,tRmPayflowList); List consumIds=productQuantityConsumptionDtoList .stream() @@ -566,7 +566,7 @@ public class SxDataDao extends BaseDao{ if (!HttpUtils.SUCCESSCODE.equals(code)) { throw new Exception("服务器异常"); } - log.info("剩余批次更新数: {}", Arrays.toString(remainingCounts)); + log.info("库存更新剩余批次更新数: {}", Arrays.toString(remainingCounts)); conn.commit(); // 最终提交事务 log.info("批量更新完成,总记录数: {}" , count); //baseUpdateImBrancStock(dataBaseInfo); @@ -754,18 +754,18 @@ public class SxDataDao extends BaseDao{ /** * 批量新增销售流水 - * @param dataBaseInfo + * @param conn * @param rmSaleflowList */ - public void updateStoreSaleFlow(DataBaseInfo dataBaseInfo,List rmSaleflowList,List payflowList){ + public void updateStoreSaleFlow(Connection conn,List rmSaleflowList,List payflowList){ if(CollectionUtil.isEmpty(rmSaleflowList)){ log.info("销售流水记录为空"); return; } - Connection conn =getConnection(dataBaseInfo.getIp(),dataBaseInfo.getUserName(), - dataBaseInfo.getPassword(), dataBaseInfo.getDbPort(),dataBaseInfo.getDataBaseName()); - try { - conn.setAutoCommit(false); // 关闭自动提交,开启事务 +// Connection conn =getConnection(dataBaseInfo.getIp(),dataBaseInfo.getUserName(), +// dataBaseInfo.getPassword(), dataBaseInfo.getDbPort(),dataBaseInfo.getDataBaseName()); + //try { + //conn.setAutoCommit(false); // 关闭自动提交,开启事务 String sql = "INSERT INTO t_rm_saleflow (" + "flow_id, flow_no, branch_no, item_no, source_price, sale_price, " + "sale_qnty, sale_money, sell_way, oper_id, sale_man, counter_no, " + @@ -892,27 +892,18 @@ public class SxDataDao extends BaseDao{ int[] remainingCounts2 = ps2.executeBatch(); log.info("销售流水记录剩余批次更新数: {}", Arrays.toString(remainingCounts)); log.info("支付流水记录剩余批次更新数: {}", Arrays.toString(remainingCounts2)); - conn.commit(); // 最终提交事务 + //conn.commit(); // 最终提交事务 log.info("销售-支付-流水记录批量更新完成,总记录数: {}" , count); //baseUpdateImBrancStock(dataBaseInfo); } catch (Exception e) { - conn.rollback(); // 出错时回滚整个事务 + // conn.rollback(); // 出错时回滚整个事务 log.info("销售支付流水记录业务失败:: {}", e.getMessage()); throw new RuntimeException("销售支付流水记录业务失败:: {}"+e.getMessage()); } - } catch (SQLException e) { - log.info("sql失败:: {}", e.getMessage()); - throw new RuntimeException("sql失败:: {}"+e.getMessage()); - }finally { - if(conn!=null){ - try { - conn.close(); - } catch (SQLException e) { - log.info("最后sql失败:: {}", e.getMessage()); - throw new RuntimeException("sql关闭失败:: {}"+e.getMessage()); - } - } - } +// } catch (SQLException e) { +// log.info("sql失败:: {}", e.getMessage()); +// throw new RuntimeException("sql失败:: {}"+e.getMessage()); +// } } /** diff --git a/client/src/main/java/com/small/client/service/imp/SxDataServiceImp.java b/client/src/main/java/com/small/client/service/imp/SxDataServiceImp.java index 5a0c1735..5189b4f9 100644 --- a/client/src/main/java/com/small/client/service/imp/SxDataServiceImp.java +++ b/client/src/main/java/com/small/client/service/imp/SxDataServiceImp.java @@ -397,7 +397,7 @@ public class SxDataServiceImp extends SxDataAbstService implements SxDataService +"&syncType="+DicEnum.MUAL_1.getCode() +"&refreshDateStr="+refreshDate, JSONUtil.parseArray(folders)); - log.info("商品分类总共有{}条数据,同步完成{}条",total,syncCount); + log.info("商品总共有{}条数据,同步完成{}条",total,syncCount); String code= HttpUtils.postData(restTemplate,remoteIp+HttpUtils.URL_SYNC_GOODS_READ +"?appKey="+commentModel.getAppKey() +"&sign="+commentModel.getAppId() From 81fe3a88b8ba60780f782226efb02a37f19eba64 Mon Sep 17 00:00:00 2001 From: Jack <46790855@qq.com> Date: Tue, 4 Nov 2025 14:34:20 +0800 Subject: [PATCH 34/35] =?UTF-8?q?=E6=9B=B4=E6=94=B9=20diy=20=E8=A3=85?= =?UTF-8?q?=E4=BF=AE=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/static/diy/js/diy.js | 36 +-- .../src/main/resources/templates/diy.html | 260 +++++++++--------- 2 files changed, 148 insertions(+), 148 deletions(-) diff --git a/mall-shop/src/main/resources/static/diy/js/diy.js b/mall-shop/src/main/resources/static/diy/js/diy.js index 5eeb33f6..3fe8121c 100644 --- a/mall-shop/src/main/resources/static/diy/js/diy.js +++ b/mall-shop/src/main/resources/static/diy/js/diy.js @@ -20686,7 +20686,7 @@ 14 == t[_x41903[4420]] && t[_x41903[124]] == a && publicFun[_x41903[4586]]($(n[_x41903[476]])[_x41903[217]](_x41903[124]), function(e) { 250 == e[_x41903[686]] && $[_x41903[2030]][_x41903[4089]](e[_x41903[4587]] || __(_x41903[4592])), t[_x41903[4594]][_x41903[4593]] = e[_x41903[473]][_x41903[688]], - c(), s = r = o = 100; + c(), s = r = o = 10240; }, s, o, r); }) : 5 == e && $[_x41903[39]](l[_x41903[820]], function(e, t) { 15 == t[_x41903[4420]] && t[_x41903[124]] == a && publicFun[_x41903[4586]]($(n[_x41903[476]])[_x41903[217]](_x41903[124]), function(e) { @@ -20700,39 +20700,39 @@ if (i[_x41903[124]] == $(n[_x41903[476]])[_x41903[217]](_x41903[4584])) { switch (parseInt(i[_x41903[4488]][_x41903[4596]])) { case 1: - r = o = 750, s = 300; + r = o = 750, s = 10240; break; case 2: - o = 750, r = 375, s = 300; + o = 750, r = 375, s = 10240; break; case 3: - o = 375, r = 750, s = 300; + o = 375, r = 750, s = 10240; break; case 4: - o = 750, r = 188, s = 300; + o = 750, r = 188, s = 10240; break; case 5: - r = o = 375, s = 300; + r = o = 375, s = 10240; break; case 6: - o = 375, r = 188, s = 300; + o = 375, r = 188, s = 10240; break; case 7: - o = 188, r = 375, s = 300; + o = 188, r = 375, s = 10240; break; case 8: - r = o = 188, s = 300; + r = o = 188, s = 10240; break; case 9: - o = 750, r = 500, s = 300; + o = 750, r = 500, s = 10240; } publicFun[_x41903[4586]]($(n[_x41903[476]])[_x41903[217]](_x41903[124]), function(e) { 250 == e[_x41903[686]] && $[_x41903[2030]][_x41903[4089]](e[_x41903[4587]] || __(_x41903[4597])), @@ -20750,19 +20750,19 @@ if (t[_x41903[124]] == $(n[_x41903[476]])[_x41903[217]](_x41903[4584])) { switch (parseInt(i[_x41903[4600]][_x41903[4601]])) { case 1: - r = o = 350, s = 200; + r = o = 350, s = 10240; break; case 2: - r = o = 180, s = 200; + r = o = 180, s = 10240; break; case 3: - o = 355, r = 166, s = 200; + o = 355, r = 166, s = 10240; break; case 4: - r = o = 140, s = 150; + r = o = 140, s = 10240; } publicFun[_x41903[4586]]($(n[_x41903[476]])[_x41903[217]](_x41903[124]), function(e) { 250 == e[_x41903[686]] && $[_x41903[2030]][_x41903[4089]](e[_x41903[4587]] || __(_x41903[4602])), @@ -20791,13 +20791,13 @@ i[_x41903[4612]][_x41903[4611]] = e[_x41903[473]][_x41903[688]], c(); }, 1e3, 700, 700) : 14 == i[_x41903[4420]] ? $[_x41903[39]](i[_x41903[4594]][_x41903[473]], function(e, t) { - t[_x41903[124]] == $(n[_x41903[476]])[_x41903[217]](_x41903[4584]) && (s = r = o = 100, + t[_x41903[124]] == $(n[_x41903[476]])[_x41903[217]](_x41903[4584]) && (s = r = o = 10240, publicFun[_x41903[4586]]($(n[_x41903[476]])[_x41903[217]](_x41903[124]), function(e) { 250 == e[_x41903[686]] && $[_x41903[2030]][_x41903[4089]](e[_x41903[4587]] || __(_x41903[4613])), t[_x41903[2345]] = e[_x41903[473]][_x41903[688]], c(); }, s, o, r)); - }) : 15 == i[_x41903[4420]] ? i[_x41903[4478]][_x41903[473]][_x41903[124]] == a && (s = r = o = 100, + }) : 15 == i[_x41903[4420]] ? i[_x41903[4478]][_x41903[473]][_x41903[124]] == a && (s = r = o = 10240, publicFun[_x41903[4586]]($(n[_x41903[476]])[_x41903[217]](_x41903[124]), function(e) { 250 == e[_x41903[686]] && $[_x41903[2030]][_x41903[4089]](e[_x41903[4587]] || __(_x41903[4614])), i[_x41903[4478]][_x41903[473]][_x41903[2345]] = e[_x41903[473]][_x41903[688]], @@ -20820,11 +20820,11 @@ 250 == e[_x41903[686]] && $[_x41903[2030]][_x41903[4089]](e[_x41903[4587]] || __(_x41903[4619])), t[_x41903[4555]] = e[_x41903[473]][_x41903[688]], c(); - }, 40) : e + 12 == $(n[_x41903[476]])[_x41903[217]](_x41903[4584]) && publicFun[_x41903[4586]]($(n[_x41903[476]])[_x41903[217]](_x41903[124]), function(e) { + }, 10240) : e + 12 == $(n[_x41903[476]])[_x41903[217]](_x41903[4584]) && publicFun[_x41903[4586]]($(n[_x41903[476]])[_x41903[217]](_x41903[124]), function(e) { 250 == e[_x41903[686]] && $[_x41903[2030]][_x41903[4089]](e[_x41903[4587]] || __(_x41903[4620])), t[_x41903[4556]] = e[_x41903[473]][_x41903[688]], c(); - }, 40); + }, 10240); }), _x41903[4621] == $(n[_x41903[476]])[_x41903[217]](_x41903[4584]) && publicFun[_x41903[4586]]($(n[_x41903[476]])[_x41903[217]](_x41903[4584]), function(e) { 250 == e[_x41903[686]] && $[_x41903[2030]][_x41903[4089]](e[_x41903[4587]] || __(_x41903[4622])), l[_x41903[4458]][_x41903[4623]][_x41903[2345]] = e[_x41903[473]][_x41903[688]], diff --git a/mall-shop/src/main/resources/templates/diy.html b/mall-shop/src/main/resources/templates/diy.html index ba2362b5..59a5c53d 100644 --- a/mall-shop/src/main/resources/templates/diy.html +++ b/mall-shop/src/main/resources/templates/diy.html @@ -7,18 +7,18 @@ - + @@ -356,7 +356,7 @@ v-on:change="uploadImage" :fileId="item.Id" :imgSize="800" :uptype="1"/> -

@@ -432,123 +432,123 @@
  • - +

    轮播

  • - +

    图片

  • - +

    图片组

  • - +

    商品列表

  • - +

    功能入口

  • - +

    辅助空白

  • - +

    搜索

  • - +

    电话

  • - +

    背景

  • - +

    客服

  • - +

    视频

  • - +

    视频

  • - +

    动态表单

  • - +

    动态表单

  • - +

    通告栏

  • - +

    标题

  • - +

    营销活动

  • - +

    优惠券

  • - +

    公众号关注

  • @@ -556,33 +556,33 @@
  • - +

    猜你喜欢

  • - +

    附近店铺

  • - +

    秒杀商品

  • - +

    分类商品

  • - +

    测试组件

  • @@ -605,7 +605,7 @@
    - @@ -613,7 +613,7 @@
    - @@ -642,13 +642,13 @@
    + style="background:url(https://mall.gpxscs.cn/api/shop/static/diy/img/photo.png);background-size: cover;">
    + style="background:url(https://mall.gpxscs.cn/api/shop/static/diy/img/photo.png);background-size: cover;">
    @@ -729,23 +729,23 @@ backgroundColor:item.bgColor }"> + :src="item.eltm1.data.path || 'https://mall.gpxscs.cn/api/shop/static/diy/img/750x750.png'"/> + :src="item.eltm1.data.path || 'https://mall.gpxscs.cn/api/shop/static/diy/img/750x375.png'"/> + :src="item.eltm1.data.path || 'https://mall.gpxscs.cn/api/shop/static/diy/img/375x750.png'"/> + :src="item.eltm1.data.path || 'https://mall.gpxscs.cn/api/shop/static/diy/img/750x188.png'"/> + :src="item.eltm1.data.path || 'https://mall.gpxscs.cn/api/shop/static/diy/img/375x375.png'"/> + :src="item.eltm1.data.path || 'https://mall.gpxscs.cn/api/shop/static/diy/img/375x188.png'"/> + :src="item.eltm1.data.path || 'https://mall.gpxscs.cn/api/shop/static/diy/img/188x375.png'"/> + :src="item.eltm1.data.path || 'https://mall.gpxscs.cn/api/shop/static/diy/img/188x188.png'"/> + :src="item.eltm1.data.path || 'https://mall.gpxscs.cn/api/shop/static/diy/img/750x500.png'"/>
      @@ -808,9 +808,9 @@ borderBottomLeftRadius: (item.borderBottomLeftRadius||0) + 'px', borderBottomRightRadius: (item.borderBottomRightRadius||0) + 'px'}"> + src="https://mall.gpxscs.cn/api/shop/static/diy/img/375x200.png"/>
      @@ -841,15 +841,15 @@
      + src="https://mall.gpxscs.cn/api/shop/static/diy/img/350x350.png"/> + src="https://mall.gpxscs.cn/api/shop/static/diy/img/180x180.png"/> + src="https://mall.gpxscs.cn/api/shop/static/diy/img/355x166.png"/> + src="https://mall.gpxscs.cn/api/shop/static/diy/img/140x140.png"/> + src="https://mall.gpxscs.cn/api/shop/static/diy/img/140x140.png"/>
      @@ -892,15 +892,15 @@
      + src="https://mall.gpxscs.cn/api/shop/static/diy/img/350x350.png"/> + src="https://mall.gpxscs.cn/api/shop/static/diy/img/180x180.png"/> + src="https://mall.gpxscs.cn/api/shop/static/diy/img/355x166.png"/> + src="https://mall.gpxscs.cn/api/shop/static/diy/img/140x140.png"/> + src="https://mall.gpxscs.cn/api/shop/static/diy/img/140x140.png"/>
      @@ -1022,7 +1022,7 @@ {{items.name || '请输入文字'}}
      - +
      - +
      -

      {{items.name || '功能入口'}}

      @@ -1084,7 +1084,7 @@ v-if="item.eltm7.data.length>0" v-for="items in item.eltm7.data" v-bind:style="{width:(100/item.eltm7.column)+'%',paddingTop:item.eltm7.paddingTop+'px',paddingBottom:item.eltm7.paddingBottom+'px',paddingLeft:item.eltm7.paddingLeft+'px',paddingRight:item.eltm7.paddingRight+'px',backgroundColor:item.bgColor}">
      - +

      功能入口

      @@ -1250,7 +1250,7 @@ v-if="items.timeTitle!='已结束'">{{items.h}}:{{items.m}}:{{items.s}}
      - Alternate Text
      @@ -1277,13 +1277,13 @@
      + src="https://mall.gpxscs.cn/api/shop/static/diy/img/180x180.png"/>
      距结束 00:00:00
      - Alternate Text
      @@ -1316,7 +1316,7 @@ v-if="items.timeTitle!='已结束'">{{items.h}}:{{items.m}}:{{items.s}}
      - Alternate Text
      @@ -1342,14 +1342,14 @@
      - Alternate Text
      距结束 00:00:00
      - Alternate Text
      @@ -1402,7 +1402,7 @@
      {{items.ProductTips}}
      - Alternate Text
      @@ -1412,7 +1412,7 @@
      满减金额
    - Alternate Text
    @@ -1576,7 +1576,7 @@ borderTopRightRadius: (item.borderTopRightRadius||0) + 'px', borderBottomLeftRadius: (item.borderBottomLeftRadius||0) + 'px', borderBottomRightRadius: (item.borderBottomRightRadius||0) + 'px',paddingTop:item.eltm18.paddingTop+ 'px',paddingBottom:item.eltm18.paddingBottom+ 'px'}"> - +
    @@ -1600,7 +1600,7 @@ borderBottomLeftRadius: (item.borderBottomLeftRadius||0) + 'px', borderBottomRightRadius: (item.borderBottomRightRadius||0) + 'px'}"> - +
    @@ -1624,7 +1624,7 @@ borderBottomLeftRadius: (item.borderBottomLeftRadius||0) + 'px', borderBottomRightRadius: (item.borderBottomRightRadius||0) + 'px'}"> - +
    @@ -1649,7 +1649,7 @@ borderBottomLeftRadius: (item.borderBottomLeftRadius||0) + 'px', borderBottomRightRadius: (item.borderBottomRightRadius||0) + 'px'}"> - + @@ -1676,7 +1676,7 @@ borderBottomLeftRadius: (item.borderBottomLeftRadius||0) + 'px', borderBottomRightRadius: (item.borderBottomRightRadius||0) + 'px'}"> - +
    @@ -1700,7 +1700,7 @@ borderBottomLeftRadius: (item.borderBottomLeftRadius||0) + 'px', borderBottomRightRadius: (item.borderBottomRightRadius||0) + 'px'}"> - +
    @@ -1831,7 +1831,7 @@
  • {{item.name}}
    + :src="item.path || 'https://mall.gpxscs.cn/api/shop/static/diy/img/up_img.png' "/>
    {{item.name}}
    + :src="item.path || 'https://mall.gpxscs.cn/api/shop/static/diy/img/up_img.png' "/>
    {{item.name}}
    + :src="item.path || 'https://mall.gpxscs.cn/api/shop/static/diy/img/up_img.png' "/>
    {{item.name}} @@ -1897,7 +1897,7 @@
    + :src="item.path || 'https://mall.gpxscs.cn/api/shop/static/diy/img/up_img.png' "/>
    {{item.name}} @@ -1919,7 +1919,7 @@
    + :src="item.path || 'https://mall.gpxscs.cn/api/shop/static/diy/img/up_img.png' "/>
    {{item.product_name}} @@ -1941,7 +1941,7 @@
    + :src="item.path || 'https://mall.gpxscs.cn/api/shop/static/diy/img/up_img.png' "/>
    {{item.name}} @@ -2621,7 +2621,7 @@ v-model="item.eltm4.listTyle" value="1"/>
    @@ -2631,7 +2631,7 @@ v-model="item.eltm4.listTyle" value="2"/>
    @@ -2641,7 +2641,7 @@ v-model="item.eltm4.listTyle" value="3"/>
    @@ -2651,7 +2651,7 @@ v-model="item.eltm4.listTyle" value="4"/>
    @@ -2661,7 +2661,7 @@ v-model="item.eltm4.listTyle" value="5"/>
    @@ -2684,7 +2684,7 @@ v-model="item.eltm4.btnType" value="1"/>
    @@ -2694,7 +2694,7 @@ v-model="item.eltm4.btnType" value="2"/>
  • @@ -2704,7 +2704,7 @@ v-model="item.eltm4.btnType" value="3"/>
    @@ -2714,7 +2714,7 @@ v-model="item.eltm4.btnType" value="4"/>
    @@ -2856,7 +2856,7 @@ :fileId="item.id" :uptype="3" :msType="12" :imgwidth="750" :imgheight="200" :imgSize="400"/> - @@ -3284,7 +3284,7 @@ v-on:change="uploadImage" :fileId="item.id" :uptype="2" :msType="12"/> -
@@ -3410,7 +3410,7 @@ :msType="14" :imgwidth="100" :imgheight="100" :imgSize="40"/> - @@ -3486,11 +3486,11 @@ - + :msType="15" :imgwidth="10240" :imgheight="10240" + :imgSize="10240"/> +
@@ -3616,7 +3616,7 @@ v-model="item.eltm16.layout" value="1"/>
@@ -3626,7 +3626,7 @@ v-model="item.eltm16.layout" value="2"/> @@ -3636,7 +3636,7 @@ v-model="item.eltm16.layout" value="3"/> @@ -4223,7 +4223,7 @@ :uptype="3" :imgwidth="750" :imgheight="1334" :size="400"/> - @@ -4253,7 +4253,7 @@ - @@ -4268,7 +4268,7 @@ v-on:change="uploadImage" :fileId="index+12" :imgwidth="100" :imgheight="100" :imgSize="40"/> - @@ -4628,7 +4628,7 @@ v-on:change="uploadImage" :fileId="mskData.id" :uptype="2" :msType="msType"/> -
@@ -4991,7 +4991,7 @@ v-on:change="uploadImage" :fileId="item.id"/> -
@@ -5049,7 +5049,7 @@ v-model="item.type" value="1"/> @@ -5060,7 +5060,7 @@ v-model="item.type" value="2"/> @@ -5071,7 +5071,7 @@ v-model="item.type" value="3"/> @@ -5082,7 +5082,7 @@ v-model="item.type" value="4"/> @@ -5093,7 +5093,7 @@ v-model="item.type" value="5"/> @@ -5104,7 +5104,7 @@ v-model="item.type" value="6"/> @@ -5331,7 +5331,7 @@ :fileId="item.id" :uptype="2" :msType="msType"/> -
@@ -5448,35 +5448,35 @@
- + - - - - + + + + - - - + value='[{"IsHome":0,"ShareImg":"","SecondKill":0,"PageConfig":"{\"BackgroundObj\":{\"type\":\"0\",\"bgColor\":\"#f8f8f8\",\"pathColor\":\"#f8f8f8\",\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240904/a46e07ff6b5447a19e5ffa856f7d4f36.jpg\"}}","ShareTitle":"小发同城 30分钟送货到家","PageNav":"{\"window\":{\"navigationBarBackgroundColor\":\"#f9372b\",\"navigationBarTextStyle\":\"white\",\"navigationBarTitleText\":\"\",\"backgroundColor\":\"#f8f8f8\",\"backgroundTextStyle\":\"dark\"},\"tabBar\":{\"color\":\"#999999\",\"selectedColor\":\"#DB384C\",\"backgroundColor\":\"#ffffff\",\"borderStyle\":\"white\",\"position\":\"bottom\",\"list\":[{\"pagePath\":\"pages/index/index\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/aa07e66f-d4fb-4a2b-bc4c-67ed9aace69b.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/2840118f-dd01-471a-a749-d910905cefc3.png\",\"text\":\"首页\"},{\"pagePath\":\"pages/category/category\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/16ff7864-3513-4ff8-bf12-a9a9808d39e5.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/cdb5e3df-9d40-42ef-a46a-686dac547fd8.png\",\"text\":\"分类\"},{\"pagePath\":\"pages/cart/cart\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/63d2f0b9-7059-4b06-b170-d3b93a749f99.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/ea018028-20c0-4f1d-a914-3bfc55c8f13f.png\",\"text\":\"购物车\"},{\"pagePath\":\"pages/UserCenter/UserCenter\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/50737e26-52e6-4c10-858a-ae2c025c2ebc.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/462eb69a-b3ec-446c-9997-c9f1e3212bcb.png\",\"text\":\"我的\"}]}}","IsGb":0,"PageTitle":"综合风格模板","IsActivity":0,"IsUpgrade":0,"IsArticle":0,"PageCode":"[{\"id\":1727143525549,\"eltmType\":\"3\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm3\":{\"showNbg\":true,\"align\":1,\"padding\":0,\"width\":375,\"height\":\"120\",\"borderRadius\":\"8\",\"progress\":true,\"color\":\"#ffffff\",\"activeColor\":\"#fb1313\",\"autoplay\":true,\"data\":[{\"id\":1727143558682,\"did\":1718952676637,\"ids\":\"\",\"name\":\"数码办公模板\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240924/35a83f96db514e5189d107fd34627d1e.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"8\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1727143662115,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240924/176399338dee401683813fb0091e8776.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1727143947862,\"did\":1,\"ids\":\"\",\"name\":\"数码家电\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240924/8a1021f4acf54beba43ed2c83c67c2fc.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1727145227704,\"eltmType\":\"3\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm3\":{\"showNbg\":false,\"align\":1,\"padding\":0,\"width\":\"375\",\"height\":\"91\",\"borderRadius\":0,\"progress\":false,\"color\":\"#ffffff\",\"activeColor\":\"#000000\",\"autoplay\":false,\"data\":[{\"id\":1727145254736,\"did\":1,\"ids\":\"\",\"name\":\"数码家电\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240924/b6761b0d63254c68a23a55911e0c8fe2.gif\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1727145312942,\"eltmType\":\"6\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm6\":{\"paddingTop\":10,\"paddingRight\":\"2\",\"paddingBottom\":\"4\",\"paddingLeft\":\"2\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":0,\"alignItems\":0,\"type\":0,\"isSwiper\":0,\"width\":0,\"height\":0,\"data\":[{\"id\":1727145367912,\"did\":36,\"ids\":\"\",\"name\":\"限时折扣\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240924/d1ca1cb3ca754d4cbddbcc54c27b7637.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/pages/product/list?activity_type_id=1103&cname=限时折扣\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1727145429932,\"did\":4,\"ids\":\"\",\"name\":\"服装鞋帽\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240924/edd43ff0ef744cbfaba65109d86903ef.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1727145505968,\"eltmType\":\"6\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm6\":{\"paddingTop\":\"0\",\"paddingRight\":\"2\",\"paddingBottom\":\"4\",\"paddingLeft\":\"2\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":0,\"alignItems\":0,\"type\":0,\"isSwiper\":0,\"width\":0,\"height\":0,\"data\":[{\"id\":1727145551660,\"did\":255,\"ids\":\"\",\"name\":\"无线耳机xiaomi \",\"ItemSalePrice\":29,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240924/121dfb39326045129b29e8fd7631ab86.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"超长待机 音质卓越 超高性价比\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1727145605013,\"did\":24,\"ids\":\"\",\"name\":\"数码配件\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240924/78dc78b33acd45e0bf11ca3f8bff16fd.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1727147477185,\"eltmType\":\"1\",\"bgColor\":\"rgba(0,0,0,0)\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":false,\"layout\":\"4\",\"width\":750,\"height\":\"65\",\"paddingTop\":\"0\",\"paddingRight\":\"17\",\"paddingBottom\":0,\"paddingLeft\":\"0\",\"data\":{\"id\":\"1727147477185\",\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240924/08b1fad2ea3a4acc91c7afb48d6734e4.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}}},{\"id\":1760578986908,\"eltmType\":\"104\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm104\":{\"height\":316,\"title\":\"200,300,500\",\"titleColor\":\"#bfbfbf\",\"options\":\"{}\",\"isShowFilter\":0,\"isShowLoading\":0,\"viewtype\":1,\"data\":[{\"id\":1760578993039,\"did\":260243,\"ids\":\"260243\",\"name\":\"新品推荐\",\"ItemSalePrice\":6.98,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002812/20251014/6dd7b14957d64d0191ccc80744b97ab4.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":104,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1760579059926,\"did\":260237,\"ids\":\"260241,260237\",\"name\":\"热卖\",\"ItemSalePrice\":19.8,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002812/20251014/c0d22bb4e0f540ae88e2da74a89ff0d4.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":104,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}}]","PageQRCode":"","StoreId":0,"IsSns":0,"IsRelease":true,"IsPoint":0,"IsLikeYou":0,"Id":1716437417160,"TemplateWarehouseId":1022,"StoreIndex":0},{"IsHome":0,"ShareImg":"","SecondKill":0,"PageConfig":"{\"BackgroundObj\":{\"type\":1,\"bgColor\":\"#f8f8f8\",\"pathColor\":\"#f8f8f8\",\"path\":\"\"}}","ShareTitle":"小发同城 同城零售","PageNav":"{\"window\":{\"navigationBarBackgroundColor\":\"#f41323\",\"navigationBarTextStyle\":\"white\",\"navigationBarTitleText\":\"\",\"backgroundColor\":\"#f8f8f8\",\"backgroundTextStyle\":\"dark\"},\"tabBar\":{\"color\":\"#999999\",\"selectedColor\":\"#DB384C\",\"backgroundColor\":\"#ffffff\",\"borderStyle\":\"white\",\"position\":\"bottom\",\"list\":[{\"pagePath\":\"pages/index/index\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/aa07e66f-d4fb-4a2b-bc4c-67ed9aace69b.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/2840118f-dd01-471a-a749-d910905cefc3.png\",\"text\":\"首页\"},{\"pagePath\":\"pages/category/category\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/16ff7864-3513-4ff8-bf12-a9a9808d39e5.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/cdb5e3df-9d40-42ef-a46a-686dac547fd8.png\",\"text\":\"分类\"},{\"pagePath\":\"pages/cart/cart\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/63d2f0b9-7059-4b06-b170-d3b93a749f99.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/ea018028-20c0-4f1d-a914-3bfc55c8f13f.png\",\"text\":\"购物车\"},{\"pagePath\":\"pages/UserCenter/UserCenter\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/50737e26-52e6-4c10-858a-ae2c025c2ebc.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/462eb69a-b3ec-446c-9997-c9f1e3212bcb.png\",\"text\":\"我的\"}]}}","IsGb":0,"PageTitle":"汽车服务模板","IsActivity":0,"IsUpgrade":0,"IsArticle":0,"PageCode":"[{\"id\":1718607324861,\"eltmType\":\"3\",\"bgColor\":\"rgba(0,0,0,0)\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm3\":{\"showNbg\":true,\"align\":1,\"padding\":0,\"width\":\"375\",\"height\":\"142\",\"borderRadius\":\"8\",\"progress\":true,\"color\":\"#ffffff\",\"activeColor\":\"#f70808\",\"autoplay\":true,\"data\":[{\"id\":1718607331097,\"did\":158,\"ids\":\"\",\"name\":\"\",\"ItemSalePrice\":589,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240617afae72d366964d4ebe8a57e60736df05.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718607428884,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240617de06cfa02f684637afd3e801c01b2f6a.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718607766946,\"eltmType\":\"7\",\"bgColor\":\"#ffffff\",\"paddingTop\":\"10\",\"paddingRight\":\"8\",\"paddingBottom\":\"7\",\"paddingLeft\":\"8\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm7\":{\"column\":\"5\",\"bgColor\":\"#fff\",\"paddingTop\":\"10\",\"paddingRight\":10,\"paddingBottom\":\"8\",\"paddingLeft\":10,\"border\":false,\"data\":[{\"id\":1718607872213,\"did\":23,\"ids\":\"\",\"name\":\"换轮胎\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240617d4a59900b8c74597ab46ea780272fcdd.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"1\",\"AppUrl\":\"/chain/chain/scan\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718608293180,\"did\":0,\"ids\":\"\",\"name\":\"做保养\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406178abfd5a31c414920a0aea322b26e998b.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718608319162,\"did\":0,\"ids\":\"\",\"name\":\"特惠洗车\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024061787e055a0ff4749abaccdb20c691d8a5f.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718608343711,\"did\":0,\"ids\":\"\",\"name\":\"爱车升级\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406170958d47de048409494755afe938b80e5.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718608365451,\"did\":115,\"ids\":\"\",\"name\":\"故障维修\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406172a35596afb0e4a7e972789eb1e6ffce4.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"1\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718609000387,\"did\":0,\"ids\":\"\",\"name\":\"蓄电池\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240617264c2c9b325d4d25a69a213b80e72bbb.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"电池\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718609220180,\"did\":0,\"ids\":\"\",\"name\":\"刹车\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240617b18d96384efc478083f97fab002b955b.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"刹车\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718609254363,\"did\":0,\"ids\":\"\",\"name\":\"润滑油\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024061709d3d73b20a34ee3b951955198c0df21.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"润滑油\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718609307045,\"did\":0,\"ids\":\"\",\"name\":\"安全检测\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406179201193a5e3d40cfb5ad18e36aa00e00.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"检测\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718609343700,\"did\":0,\"ids\":\"\",\"name\":\"道路救援\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406178f8263e2f2b0419fbc9fdf97b3e8a2c4.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"救援\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718609662581,\"eltmType\":\"3\",\"bgColor\":\"\",\"paddingTop\":\"0\",\"paddingRight\":0,\"paddingBottom\":\"0\",\"paddingLeft\":0,\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm3\":{\"showNbg\":false,\"align\":1,\"padding\":0,\"width\":\"375\",\"height\":\"89\",\"borderRadius\":\"8\",\"progress\":true,\"color\":\"#ffffff\",\"activeColor\":\"#f70808\",\"autoplay\":true,\"data\":[{\"id\":1718609669684,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024061760182fa672e442fda0a639eda74aa698.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718609687081,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240617adb5052f80b14749a9a40a5593c04e5a.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718609708149,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240617f48c58b56c9043cf96f272080412a537.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718610258214,\"eltmType\":\"5\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm5\":{\"height\":\"1\"}},{\"id\":1718609611913,\"eltmType\":\"3\",\"bgColor\":\"\",\"paddingTop\":\"5\",\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm3\":{\"showNbg\":false,\"align\":1,\"padding\":0,\"width\":375,\"height\":\"159\",\"borderRadius\":0,\"progress\":false,\"color\":\"#ffffff\",\"activeColor\":\"#000000\",\"autoplay\":false,\"data\":[{\"id\":1718609620705,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240617e0111054796447258d31f1ae2c8e38b1.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718610323475,\"eltmType\":\"6\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"borderTopLeftRadius\":\"0\",\"borderTopRightRadius\":\"0\",\"borderBottomLeftRadius\":\"0\",\"borderBottomRightRadius\":\"0\",\"eltm6\":{\"paddingTop\":10,\"paddingRight\":\"2\",\"paddingBottom\":\"4\",\"paddingLeft\":\"2\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":\"2\",\"alignItems\":\"2\",\"type\":0,\"isSwiper\":false,\"width\":0,\"height\":0,\"data\":[{\"id\":1718610336045,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240617ac63a873df6b4298ad3fb7a9e7ea9b6e.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718610348054,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406174c21c2a6253d40bd827a597d5f91b003.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718610948297,\"eltmType\":\"6\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm6\":{\"paddingTop\":\"0\",\"paddingRight\":\"2\",\"paddingBottom\":\"1\",\"paddingLeft\":\"2\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":0,\"alignItems\":0,\"type\":0,\"isSwiper\":0,\"width\":0,\"height\":0,\"data\":[{\"id\":1718610974363,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240617eb8c01719c2348b1b90b4d6fc4c9832f.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718610982722,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406179aab7e6d28814895abc88ed27c022cbe.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718611425710,\"eltmType\":\"3\",\"bgColor\":\"\",\"paddingTop\":\"0\",\"paddingRight\":\"0\",\"paddingBottom\":0,\"paddingLeft\":\"0\",\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm3\":{\"showNbg\":false,\"align\":\"1\",\"padding\":0,\"width\":\"328\",\"height\":\"32\",\"borderRadius\":\"8\",\"progress\":false,\"color\":\"#ffffff\",\"activeColor\":\"#000000\",\"autoplay\":false,\"data\":[{\"id\":1718611436433,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240617869e61e1c4654ec4939f1982b99ecbef.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"0\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718611630922,\"eltmType\":\"4\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm4\":{\"shadow\":true,\"btnType\":0,\"listTyle\":\"2\",\"isPrice\":true,\"isProductTips\":true,\"btnColor\":\"#DB384C\",\"btnText\":\"购买\",\"priceColor\":\"#f41f38\",\"btnFontColor\":\"#fff\",\"data\":[{\"id\":1718611670519,\"did\":176,\"ids\":\"\",\"name\":\"辉兰奇瑞风云T9专用中控排挡保护内饰贴膜 进口\",\"ItemSalePrice\":88,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10005/202406140bad0059030e4beeaf34dce56eaa3209.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"屏幕钢化膜汽车改装用品\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718611686059,\"did\":171,\"ids\":\"\",\"name\":\"智国者车载吸尘器大吸力功率手持家用无线桌面便携 进口\",\"ItemSalePrice\":69,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10005/20240614e97cf9cc27e44c2c8c126bbf2af92e2d.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"升级强劲金属电机,飓风吸力 【车家两用】\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718611707557,\"did\":165,\"ids\":\"\",\"name\":\"玛丽 重型气撑气弹簧床用液压杆汽车液压 进口\",\"ItemSalePrice\":40,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10005/2024061471e5039e53a544e7b099465479c88d28.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"中心距500默认50kg\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718611754457,\"did\":158,\"ids\":\"\",\"name\":\"德国马牌(Continental)轮胎/汽车轮胎 225/65R17 进口\",\"ItemSalePrice\":589,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10005/202406143072556ef1f64414b75556b274b165b8.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"102V FR UC6 SUV适配CR-V/RAV4/CX-5\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718611762339,\"did\":156,\"ids\":\"\",\"name\":\"美孚(Mobil)美孚1号银美孚 先进全合成汽机油5W-40 进口\",\"ItemSalePrice\":219,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10005/20240614a5d9a651700a499b8a5b650e47fdc187.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"保养爱车,选美孚,“孚”利享不停,可搭配机油滤清器使用,全面养护!\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718611780487,\"did\":155,\"ids\":\"\",\"name\":\"澜驰养车汽车精致洗车服务 五座轿车 \",\"ItemSalePrice\":999,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10005/2024061425c2abdc98504ff695f6f2e44e0f9f5a.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"到店服务 纯服务\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718611915300,\"did\":151,\"ids\":\"\",\"name\":\"得力(deli)无线车载吸尘器手持 进口\",\"ItemSalePrice\":599,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10005/20240614156d91c5ff0d418a8f17bbb24e4935d1.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"车家两用大功率大吸力汽车随手吸\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718611928056,\"did\":149,\"ids\":\"\",\"name\":\"汽车喷枪HVLP3000汽车面漆喷枪 进口\",\"ItemSalePrice\":149,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10005/2024061443ef702aa8bf47219ae186134f0e5fc2.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"气动高雾化钣金喷漆水油专用喷漆枪\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718611953613,\"did\":146,\"ids\":\"\",\"name\":\"龟牌(Turtle Wax)大力橙多功能泡沫清洁剂 进口\",\"ItemSalePrice\":68,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10005/20240614be94ad7459cb41e6be22a872213ab58d.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"汽车内饰皮革护理清洗剂650ml\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718611970233,\"did\":144,\"ids\":\"\",\"name\":\"史维克斯SWISSVAX汽车内饰皮革养护套装 进口\",\"ItemSalePrice\":1878,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10005/20240614a96bb7d49beb4feaa28b7888f6da59f7.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"皮革加量套装(加象脂膏大瓶)\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}],\"charLine\":\"1\"}}]","PageQRCode":"","StoreId":0,"IsSns":0,"IsRelease":true,"IsPoint":0,"IsLikeYou":0,"Id":1718607055225,"TemplateWarehouseId":1022,"StoreIndex":0},{"IsHome":0,"ShareImg":"","SecondKill":0,"PageConfig":"{\"BackgroundObj\":{\"type\":1,\"bgColor\":\"#f8f8f8\",\"pathColor\":\"#f8f8f8\",\"path\":\"\"}}","ShareTitle":"线上超市 30分钟生鲜送到家","PageNav":"{\"window\":{\"navigationBarBackgroundColor\":\"#00c33d\",\"navigationBarTextStyle\":\"white\",\"navigationBarTitleText\":\"\",\"backgroundColor\":\"#f8f8f8\",\"backgroundTextStyle\":\"dark\"},\"tabBar\":{\"color\":\"#999999\",\"selectedColor\":\"#DB384C\",\"backgroundColor\":\"#ffffff\",\"borderStyle\":\"white\",\"position\":\"bottom\",\"list\":[{\"pagePath\":\"pages/index/index\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/aa07e66f-d4fb-4a2b-bc4c-67ed9aace69b.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/2840118f-dd01-471a-a749-d910905cefc3.png\",\"text\":\"首页\"},{\"pagePath\":\"pages/category/category\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/16ff7864-3513-4ff8-bf12-a9a9808d39e5.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/cdb5e3df-9d40-42ef-a46a-686dac547fd8.png\",\"text\":\"分类\"},{\"pagePath\":\"pages/cart/cart\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/63d2f0b9-7059-4b06-b170-d3b93a749f99.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/ea018028-20c0-4f1d-a914-3bfc55c8f13f.png\",\"text\":\"购物车\"},{\"pagePath\":\"pages/UserCenter/UserCenter\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/50737e26-52e6-4c10-858a-ae2c025c2ebc.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/462eb69a-b3ec-446c-9997-c9f1e3212bcb.png\",\"text\":\"我的\"}]}}","IsGb":0,"PageTitle":"生鲜农产品模板","IsActivity":0,"IsUpgrade":0,"IsArticle":0,"PageCode":"[{\"id\":1718613055780,\"eltmType\":\"3\",\"bgColor\":\"rgba(0,0,0,0)\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":\"0\",\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm3\":{\"showNbg\":1,\"align\":1,\"padding\":0,\"width\":375,\"height\":\"172\",\"borderRadius\":\"8\",\"progress\":true,\"color\":\"#ffffff\",\"activeColor\":\"#00ce70\",\"autoplay\":true,\"data\":[{\"id\":1718613075749,\"did\":0,\"ids\":\"\",\"name\":\"肉\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240617f2583153e49340ae80b353a5d82f328f.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718613102217,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240617a64e12de7e2a4511945bfab2fdc17af1.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"水果\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718613132385,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406171f5db7a5c9b042388711efecda4c9f3e.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"海鲜\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718616696129,\"eltmType\":\"6\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm6\":{\"paddingTop\":\"8\",\"paddingRight\":\"1\",\"paddingBottom\":\"0\",\"paddingLeft\":\"1\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":\"2\",\"alignItems\":\"2\",\"type\":0,\"isSwiper\":true,\"width\":0,\"height\":0,\"data\":[{\"id\":1718616811993,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024061787f1bf47b3a943d995eb63b1f2f89684.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718616843271,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240617d5c1cc5e502448efa96490e97589b32c.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718617361226,\"eltmType\":\"3\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":\"0\",\"paddingBottom\":\"0\",\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm3\":{\"showNbg\":false,\"align\":1,\"padding\":0,\"width\":\"338\",\"height\":\"42\",\"borderRadius\":0,\"progress\":false,\"color\":\"#ffffff\",\"activeColor\":\"#000000\",\"autoplay\":false,\"data\":[{\"id\":1718617374415,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406172aec9e8496f34784a2b43b9d239f09d7.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"0\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718617563533,\"eltmType\":\"4\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm4\":{\"shadow\":true,\"btnType\":\"1\",\"listTyle\":\"2\",\"isPrice\":true,\"isProductTips\":true,\"btnColor\":\"#DB384C\",\"btnText\":\"购买\",\"priceColor\":\"#f2213a\",\"btnFontColor\":\"#fff\",\"data\":[{\"id\":1718617634732,\"did\":241452,\"ids\":\"\",\"name\":\"无籽红提 无籽红提750g\",\"ItemSalePrice\":14.97,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250927/473b753de0cc48f0984727dd727e3e96.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718617644413,\"did\":241636,\"ids\":\"\",\"name\":\"脆梨 脆梨500g\",\"ItemSalePrice\":4.98,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250927/e03f8fba96a140a1abb8f6d971666cb4.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718617655083,\"did\":241524,\"ids\":\"\",\"name\":\"金色年华 3500g 金色年华500g\",\"ItemSalePrice\":24.8,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250927/de78095e1ec44207b412abfe7822c99d.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718617661891,\"did\":241518,\"ids\":\"\",\"name\":\"红心蜜柚 红心蜜柚1500g\",\"ItemSalePrice\":7.74,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250926/42b02d791b1d41ceb678b024896d8293.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718617669936,\"did\":252701,\"ids\":\"\",\"name\":\"凯特芒 凯特芒1000g\",\"ItemSalePrice\":7.96,\"path\":\"https://static.gpxscs.cn/media/images/goods_library/20250726/859dff185a25422fa4441604b52b92f0.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718617676182,\"did\":241765,\"ids\":\"\",\"name\":\"西贡蕉 西贡蕉500g\",\"ItemSalePrice\":2.98,\"path\":\"https://static.gpxscs.cn/media/images/goods_library/3323/445039e4cb80be974388c6ab683c0ac5.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718617705821,\"did\":252664,\"ids\":\"\",\"name\":\"手指黑提 1000g 手指黑提1000g\",\"ItemSalePrice\":10,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250928/9a16dae883e74548962b9b9c03444da2.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718617717332,\"did\":256902,\"ids\":\"\",\"name\":\"黄桃 黄桃500g\",\"ItemSalePrice\":5.98,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250927/152ec09e5a7645fdaa9de01a79aee53f.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718617727243,\"did\":254632,\"ids\":\"\",\"name\":\"阳光提 1000g 阳光提500g\",\"ItemSalePrice\":11.58,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250927/b71219631cfc46b89038dadf683fa66a.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718617744054,\"did\":238433,\"ids\":\"\",\"name\":\"红心火龙果 1000g \",\"ItemSalePrice\":5.16,\"path\":\"https://static.gpxscs.cn/media/images/goods_library/3646/062bc82383d681ec90ea4c405713d707.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718617758606,\"did\":241748,\"ids\":\"\",\"name\":\"排骨 排骨500g\",\"ItemSalePrice\":17.8,\"path\":\"https://static.gpxscs.cn/media/images/goods_library/20250726/99717804c342432185f68b17ac677a4c.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718617830394,\"did\":241756,\"ids\":\"\",\"name\":\"猪脚(后) 猪脚(后)1000g\",\"ItemSalePrice\":19.8,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250926/a2f5f4293da248888d151d8afc3d80a8.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}}]","PageQRCode":"","StoreId":0,"IsSns":0,"IsRelease":true,"IsPoint":0,"IsLikeYou":0,"Id":1718612701772,"TemplateWarehouseId":1022,"StoreIndex":0},{"IsHome":0,"ShareImg":"","SecondKill":0,"PageConfig":"{\"BackgroundObj\":{\"type\":1,\"bgColor\":\"#f8f8f8\",\"pathColor\":\"#f8f8f8\",\"path\":\"\"}}","ShareTitle":"挑好物,逛新鲜超市","PageNav":"{\"window\":{\"navigationBarBackgroundColor\":\"#3a79f8\",\"navigationBarTextStyle\":\"white\",\"navigationBarTitleText\":\"\",\"backgroundColor\":\"#f8f8f8\",\"backgroundTextStyle\":\"dark\"},\"tabBar\":{\"color\":\"#999999\",\"selectedColor\":\"#DB384C\",\"backgroundColor\":\"#ffffff\",\"borderStyle\":\"white\",\"position\":\"bottom\",\"list\":[{\"pagePath\":\"pages/index/index\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/aa07e66f-d4fb-4a2b-bc4c-67ed9aace69b.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/2840118f-dd01-471a-a749-d910905cefc3.png\",\"text\":\"首页\"},{\"pagePath\":\"pages/category/category\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/16ff7864-3513-4ff8-bf12-a9a9808d39e5.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/cdb5e3df-9d40-42ef-a46a-686dac547fd8.png\",\"text\":\"分类\"},{\"pagePath\":\"pages/cart/cart\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/63d2f0b9-7059-4b06-b170-d3b93a749f99.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/ea018028-20c0-4f1d-a914-3bfc55c8f13f.png\",\"text\":\"购物车\"},{\"pagePath\":\"pages/UserCenter/UserCenter\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/50737e26-52e6-4c10-858a-ae2c025c2ebc.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/462eb69a-b3ec-446c-9997-c9f1e3212bcb.png\",\"text\":\"我的\"}]}}","IsGb":0,"PageTitle":"生活超市","IsActivity":0,"IsUpgrade":0,"IsArticle":0,"PageCode":"[{\"id\":1718697530792,\"eltmType\":\"3\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm3\":{\"showNbg\":1,\"align\":1,\"padding\":0,\"width\":375,\"height\":\"142\",\"borderRadius\":\"8\",\"progress\":true,\"color\":\"#ffffff\",\"activeColor\":\"#fa3f38\",\"autoplay\":true,\"data\":[{\"id\":1718697617239,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406184cf55b0d648c446e8ba964bd9c1c3884.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"酒\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718697799475,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240618bbb0417d3d60401dbef9d18a5787c4d9.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"食\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718697835918,\"did\":82,\"ids\":\"\",\"name\":\"女士护肤\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406186becd5458fda4cf4a292f3db8700d607.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"3\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0,\"keyWord\":\"肉\"}]}},{\"id\":1718697884110,\"eltmType\":\"7\",\"bgColor\":\"#ffffff\",\"paddingTop\":\"10\",\"paddingRight\":\"8\",\"paddingBottom\":\"7\",\"paddingLeft\":\"8\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm7\":{\"column\":\"5\",\"bgColor\":\"#fff\",\"paddingTop\":\"10\",\"paddingRight\":\"0\",\"paddingBottom\":\"7\",\"paddingLeft\":\"0\",\"border\":false,\"data\":[{\"id\":1718697972009,\"did\":1754292818093,\"ids\":\"\",\"name\":\"生鲜卖场\",\"ItemSalePrice\":0,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/20251012/524363849073422aad06a9b932458afd.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"9\",\"AppUrl\":\"/pagesub/index/store?store_id=69\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718698139623,\"did\":725,\"ids\":\"\",\"name\":\"闪送到家\",\"ItemSalePrice\":0,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/20251012/18db191177634c27b45bf9c6cae92383.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"3\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0,\"keyWord\":\"肉\"},{\"id\":1718698532005,\"did\":139,\"ids\":\"\",\"name\":\"牛奶饮品\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406189494eecd69fa455bb552a7cd0ecd4a00.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"3\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0,\"keyWord\":\"牛奶\"},{\"id\":1718699023476,\"did\":0,\"ids\":\"\",\"name\":\"母婴玩具\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406189189889c4fdc405cb72886637758b830.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"奶粉\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718699068106,\"did\":0,\"ids\":\"\",\"name\":\"口腔健康\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240618d1b6ee5dc59f4271880ce529facac851.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"牙\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718699583025,\"did\":142,\"ids\":\"\",\"name\":\"果蔬生鲜\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024061839a933c216e34eb784fd50a5c590f1b2.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"3\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0,\"keyWord\":\"果\"},{\"id\":1718699689072,\"did\":153,\"ids\":\"\",\"name\":\"食品乳饮\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240618ede58438750d4cfc88bd7ac4033074bb.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"3\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0,\"keyWord\":\"食\"},{\"id\":1718699754812,\"did\":183,\"ids\":\"\",\"name\":\"日用洗护\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240618bb723273753c4f28a96f8cdcd2bdd9ab.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"3\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0,\"keyWord\":\"日\"},{\"id\":1718699805682,\"did\":170,\"ids\":\"\",\"name\":\"宜品\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240618cfc6b0a02f234704bc10dc6004a062bb.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"3\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0,\"keyWord\":\"家\"},{\"id\":1718699895980,\"did\":146,\"ids\":\"\",\"name\":\"特色馆\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406187538b1078c9c43878923bcab1f1f1979.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"3\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0,\"keyWord\":\"酒\"}]}},{\"id\":1718699949732,\"eltmType\":\"3\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm3\":{\"showNbg\":false,\"align\":1,\"padding\":0,\"width\":375,\"height\":\"99\",\"borderRadius\":0,\"progress\":false,\"color\":\"#ffffff\",\"activeColor\":\"#000000\",\"autoplay\":false,\"data\":[{\"id\":1718700004566,\"did\":2,\"ids\":\"\",\"name\":\"优惠红包\",\"ItemSalePrice\":10,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406187b6dce11342443109f51959395e260c8.gif\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"17\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718700122389,\"eltmType\":\"6\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm6\":{\"paddingTop\":\"8\",\"paddingRight\":\"2\",\"paddingBottom\":\"0\",\"paddingLeft\":\"2\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":0,\"alignItems\":0,\"type\":0,\"isSwiper\":0,\"width\":0,\"height\":0,\"data\":[{\"id\":1718700192303,\"did\":95,\"ids\":\"\",\"name\":\"家庭清洁\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406188272053b589a4f058203a6d12fef342e.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"3\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0,\"keyWord\":\"纸\"},{\"id\":1718700274422,\"did\":180,\"ids\":\"\",\"name\":\"增强免疫\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240618edc92603773e4a2f95b06381ea19c2da.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/pagesub/index/store?store_id=69\",\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718700334701,\"eltmType\":\"3\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm3\":{\"showNbg\":false,\"align\":1,\"padding\":0,\"width\":\"311\",\"height\":\"36\",\"borderRadius\":0,\"progress\":false,\"color\":\"#ffffff\",\"activeColor\":\"#000000\",\"autoplay\":false,\"data\":[{\"id\":1718700355253,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024061825a35115315d476cb0f03d88703c5a0a.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"0\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718700398439,\"eltmType\":\"6\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm6\":{\"paddingTop\":\"8\",\"paddingRight\":\"2\",\"paddingBottom\":\"0\",\"paddingLeft\":\"2\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":0,\"alignItems\":0,\"type\":0,\"isSwiper\":0,\"width\":0,\"height\":0,\"data\":[{\"id\":1718700444673,\"did\":95,\"ids\":\"\",\"name\":\"家庭清洁\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406188ebaa0edd1e349b6a506205c5f73627b.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"3\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0,\"keyWord\":\"立白\"},{\"id\":1718700488029,\"did\":145,\"ids\":\"\",\"name\":\"进口食品\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240618abb1c685dd7544dc8efa1386ebfd2df4.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"3\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0,\"keyWord\":\"面\"}]}},{\"id\":1718700525291,\"eltmType\":\"6\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm6\":{\"paddingTop\":\"5\",\"paddingRight\":\"2\",\"paddingBottom\":\"0\",\"paddingLeft\":\"2\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":0,\"alignItems\":0,\"type\":0,\"isSwiper\":0,\"width\":0,\"height\":0,\"data\":[{\"id\":1718700678388,\"did\":46,\"ids\":\"\",\"name\":\"家居日用\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024061865891b0480944fbcb93a43bfc614f37d.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"3\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0,\"keyWord\":\"油\"},{\"id\":1718700709193,\"did\":153,\"ids\":\"\",\"name\":\"牛奶酸奶\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406186f1ee9db66e0430c9eab473c8133e02a.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"3\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0,\"keyWord\":\"菜\"}]}},{\"id\":1718700740788,\"eltmType\":\"3\",\"bgColor\":\"\",\"paddingTop\":\"6\",\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm3\":{\"showNbg\":false,\"align\":1,\"padding\":0,\"width\":\"338\",\"height\":\"32\",\"borderRadius\":0,\"progress\":false,\"color\":\"#ffffff\",\"activeColor\":\"#000000\",\"autoplay\":false,\"data\":[{\"id\":1718700757397,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406184a3c0d4203a24b2da5b1b0087e30be71.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"0\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1760263581258,\"eltmType\":\"4\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm4\":{\"shadow\":true,\"btnType\":\"1\",\"listTyle\":\"2\",\"isPrice\":true,\"isProductTips\":true,\"btnColor\":\"#DB384C\",\"btnText\":\"购买\",\"priceColor\":\"#DB384C\",\"btnFontColor\":\"#fff\",\"data\":[{\"id\":1760263603384,\"did\":241515,\"ids\":\"\",\"name\":\"软籽石榴 软籽石榴500g\",\"ItemSalePrice\":3.58,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250926/657cf07ba1b146cbb6e48c32e8d4288a.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1760263659087,\"did\":256902,\"ids\":\"\",\"name\":\"黄桃 黄桃500g\",\"ItemSalePrice\":6.58,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250927/152ec09e5a7645fdaa9de01a79aee53f.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1760263672895,\"did\":256807,\"ids\":\"\",\"name\":\"红富士 红富士500g\",\"ItemSalePrice\":6.58,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250927/50e42b9c16514d959f42a2e31ebec913.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1760263704279,\"did\":256906,\"ids\":\"\",\"name\":\"脆柿 脆柿500g\",\"ItemSalePrice\":3.58,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250927/d1abdb20370a4d81908965f61af560e4.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1760263738198,\"did\":254632,\"ids\":\"\",\"name\":\"阳光提 1000g 阳光提500g\",\"ItemSalePrice\":9.98,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250927/b71219631cfc46b89038dadf683fa66a.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1760263768471,\"did\":252701,\"ids\":\"\",\"name\":\"凯特芒 凯特芒1000g\",\"ItemSalePrice\":8.76,\"path\":\"https://static.gpxscs.cn/media/images/goods_library/20250726/859dff185a25422fa4441604b52b92f0.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1760263786526,\"did\":242065,\"ids\":\"\",\"name\":\"香梨 香梨500g\",\"ItemSalePrice\":3.98,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250927/ff0431d1f6fb4b5da9effeca4f447558.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1760263808671,\"did\":241773,\"ids\":\"\",\"name\":\"蜜梨 蜜梨500g\",\"ItemSalePrice\":2.58,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250926/24e8aeb28d2a40d88f6f61c665ac42af.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1760263840847,\"did\":241761,\"ids\":\"\",\"name\":\"香蕉 香蕉500g\",\"ItemSalePrice\":1.98,\"path\":\"https://static.gpxscs.cn/media/images/goods_library/20250726/4771ac8714204537958c73a484cefb8a.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1760263871127,\"did\":241765,\"ids\":\"\",\"name\":\"西贡蕉 西贡蕉500g\",\"ItemSalePrice\":2.98,\"path\":\"https://static.gpxscs.cn/media/images/goods_library/3323/445039e4cb80be974388c6ab683c0ac5.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1760263885919,\"did\":241452,\"ids\":\"\",\"name\":\"无籽红提 无籽红提750g\",\"ItemSalePrice\":14.97,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250927/473b753de0cc48f0984727dd727e3e96.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1760263939078,\"did\":241509,\"ids\":\"\",\"name\":\"人参果 人参果500g\",\"ItemSalePrice\":5.98,\"path\":\"https://static.gpxscs.cn/media/images/goods_library/2451/21ba4359a65a0f8c3cb29412868a5db6.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1760264000399,\"did\":241501,\"ids\":\"\",\"name\":\"麒麟瓜 麒麟瓜6000g\",\"ItemSalePrice\":40.56,\"path\":\"https://static.gpxscs.cn/media/images/goods_library/20250726/9ec548f08696482f8e97adb91db64ded.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1760264019830,\"did\":241524,\"ids\":\"\",\"name\":\"金色年华 3500g 金色年华500g\",\"ItemSalePrice\":24.8,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250927/de78095e1ec44207b412abfe7822c99d.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1760264058894,\"did\":241518,\"ids\":\"\",\"name\":\"红心蜜柚 红心蜜柚1500g\",\"ItemSalePrice\":7.74,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250926/42b02d791b1d41ceb678b024896d8293.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1760264081183,\"did\":241424,\"ids\":\"\",\"name\":\"金枕榴莲A果 金枕榴莲A果400g\",\"ItemSalePrice\":15.84,\"path\":\"https://static.gpxscs.cn/media/images/goods_library/20250720/f7573480420d405497e60293792ae575.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1760264130925,\"did\":241421,\"ids\":\"\",\"name\":\"圣女果 圣女果500g\",\"ItemSalePrice\":4.98,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250927/7b33b4aa97f44de4942f0e8a3f221ea8.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1760264160734,\"did\":241427,\"ids\":\"\",\"name\":\"百香果 百香果500g\",\"ItemSalePrice\":6.98,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250927/c956730a79d849ee86a9ed256f956c17.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1760264199926,\"did\":241444,\"ids\":\"\",\"name\":\"柑桔 柑桔500g\",\"ItemSalePrice\":2.38,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250927/3e9a2c4b65a7420fac6cf857dba9f337.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1760264266557,\"did\":241425,\"ids\":\"\",\"name\":\"猕猴桃 猕猴桃500g\",\"ItemSalePrice\":5.58,\"path\":\"https://static.gpxscs.cn/media/images/goods_library/20250726/e2017995d6f649989be00e90cfa427f3.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1760264300085,\"did\":238433,\"ids\":\"\",\"name\":\"红心火龙果 1000g \",\"ItemSalePrice\":5.16,\"path\":\"https://static.gpxscs.cn/media/images/goods_library/3646/062bc82383d681ec90ea4c405713d707.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1760264331750,\"did\":241418,\"ids\":\"\",\"name\":\"白心火龙果 白心火龙果500g\",\"ItemSalePrice\":4.38,\"path\":\"https://static.gpxscs.cn/media/images/goods_library/3645/2034d50070380fa1a2a4827f35f77272.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}],\"charLine\":\"2\"}},{\"id\":1760264452726,\"eltmType\":\"101\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm101\":{\"height\":316,\"title\":\"猜你喜欢\",\"titleColor\":\"#bfbfbf\",\"options\":\"{}\",\"isShowFilter\":0,\"isShowLoading\":0,\"viewtype\":1,\"data\":[]}}]","PageQRCode":"","StoreId":0,"IsSns":0,"IsRelease":true,"IsPoint":0,"IsLikeYou":0,"Id":1718696669270,"TemplateWarehouseId":1022,"StoreIndex":0},{"IsHome":0,"ShareImg":"","SecondKill":0,"PageConfig":"{\"BackgroundObj\":{\"type\":1,\"bgColor\":\"#f8f8f8\",\"pathColor\":\"#f8f8f8\",\"path\":\"\"}}","ShareTitle":"一站式工业品数字化采购平台","PageNav":"{\"window\":{\"navigationBarBackgroundColor\":\"#e83046\",\"navigationBarTextStyle\":\"white\",\"navigationBarTitleText\":\"\",\"backgroundColor\":\"#f8f8f8\",\"backgroundTextStyle\":\"dark\"},\"tabBar\":{\"color\":\"#999999\",\"selectedColor\":\"#DB384C\",\"backgroundColor\":\"#ffffff\",\"borderStyle\":\"white\",\"position\":\"bottom\",\"list\":[{\"pagePath\":\"pages/index/index\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/aa07e66f-d4fb-4a2b-bc4c-67ed9aace69b.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/2840118f-dd01-471a-a749-d910905cefc3.png\",\"text\":\"首页\"},{\"pagePath\":\"pages/category/category\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/16ff7864-3513-4ff8-bf12-a9a9808d39e5.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/cdb5e3df-9d40-42ef-a46a-686dac547fd8.png\",\"text\":\"分类\"},{\"pagePath\":\"pages/cart/cart\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/63d2f0b9-7059-4b06-b170-d3b93a749f99.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/ea018028-20c0-4f1d-a914-3bfc55c8f13f.png\",\"text\":\"购物车\"},{\"pagePath\":\"pages/UserCenter/UserCenter\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/50737e26-52e6-4c10-858a-ae2c025c2ebc.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/462eb69a-b3ec-446c-9997-c9f1e3212bcb.png\",\"text\":\"我的\"}]}}","IsGb":0,"PageTitle":"工业品商城模板","IsActivity":0,"IsUpgrade":0,"IsArticle":0,"PageCode":"[{\"id\":1718877952454,\"eltmType\":\"3\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm3\":{\"showNbg\":1,\"align\":1,\"padding\":0,\"width\":375,\"height\":\"142\",\"borderRadius\":\"8\",\"progress\":true,\"color\":\"#e6e6e6\",\"activeColor\":\"#f50f0f\",\"autoplay\":true,\"data\":[{\"id\":1718878050083,\"did\":228,\"ids\":\"\",\"name\":\"个人防护\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062095c8a989fb654210a63b4bf9f9e071f4.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718878164543,\"did\":225,\"ids\":\"\",\"name\":\"电动工具\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406207d3e895846114f5c9b1c37cef3417c04.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718878234700,\"did\":14,\"ids\":\"\",\"name\":\"亚德客(AirTAC) 气源处理元件,过滤减压阀(附表,附支架);GFR20008F1 \",\"ItemSalePrice\":48.8,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062001e5f4cb95c6426eaa4bfe8adac001ce.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"清仓特卖,限时低价,企业采购享优惠\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718878457971,\"eltmType\":\"7\",\"bgColor\":\"#ffffff\",\"paddingTop\":\"10\",\"paddingRight\":\"8\",\"paddingBottom\":\"7\",\"paddingLeft\":\"8\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm7\":{\"column\":\"5\",\"bgColor\":\"#fff\",\"paddingTop\":\"10\",\"paddingRight\":\"0\",\"paddingBottom\":\"8\",\"paddingLeft\":\"0\",\"border\":false,\"data\":[{\"id\":1718878742922,\"did\":3,\"ids\":\"\",\"name\":\"电动工具\",\"ItemSalePrice\":139,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062135eddcce106d446085a26d3ab4c9b3bb.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"2种工具夹头可选,金属开孔\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718878783402,\"did\":169,\"ids\":\"\",\"name\":\"手动工具\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621f15db22f3b3746fda40629640239539f.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"便宜又好用,京东急速配送!\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718878829656,\"did\":9,\"ids\":\"\",\"name\":\"气动工具\",\"ItemSalePrice\":3395,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406217757d642956c434aa5cfe4c77d24371e.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"货叉尺寸:550*1500mm;CBK5T-550*1500NTN\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718878886330,\"did\":236,\"ids\":\"\",\"name\":\"焊接设备\",\"ItemSalePrice\":479,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621562dd27a177b4ea58e6ffba66a8b2e0d.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"健身运动腰腿颈肩按摩放松\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718878918962,\"did\":9,\"ids\":\"\",\"name\":\"物料搬运\",\"ItemSalePrice\":3395,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062167c618d7abfd4471b9da79f1b226fa12.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"货叉尺寸:550*1500mm;CBK5T-550*1500NTN\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718879266760,\"did\":5,\"ids\":\"\",\"name\":\"机电设备\",\"ItemSalePrice\":299,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406214f0322675b4e4eae9f194b3561ac80a2.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"空载电压高,输出能力强,加长200米焊把线,可稳定焊接4.0焊条\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718879336247,\"did\":235,\"ids\":\"\",\"name\":\"劳保用品\",\"ItemSalePrice\":29.9,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621b7341d30c9b74dbe86b555c1c46278f2.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"防护面屏防灰尘飞沫液体喷溅全脸护目镜\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718879363312,\"did\":11,\"ids\":\"\",\"name\":\"机械设备\",\"ItemSalePrice\":835,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621194dd83136db483aa13a5fe7dd5ddd52.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"一机多用 横扫积雪升级生产工具一机多能 提高生产力\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718879485027,\"did\":48,\"ids\":\"\",\"name\":\"水电建材\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621d9bbc21716ab4b2e9fe4789059ac898f.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718879534377,\"did\":1718877219670,\"ids\":\"\",\"name\":\"全部分类\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621ced2eecaa45c4047b2af5886341331e0.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"8\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718879749686,\"eltmType\":\"6\",\"bgColor\":\"#f8f8f8\",\"paddingTop\":0,\"paddingRight\":\"8\",\"paddingBottom\":\"5\",\"paddingLeft\":\"8\",\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm6\":{\"paddingTop\":\"2\",\"paddingRight\":\"1\",\"paddingBottom\":\"0\",\"paddingLeft\":\"1\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":\"2\",\"alignItems\":0,\"type\":0,\"isSwiper\":0,\"width\":0,\"height\":0,\"data\":[{\"id\":1718880042694,\"did\":13,\"ids\":\"\",\"name\":\"工业品\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240620e0512c5bbb28459a8723a87efe1d5c66.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718880087914,\"did\":226,\"ids\":\"\",\"name\":\"手动工具\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406205ffad274ea3745d5b5745cb9541a7ba3.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718936745154,\"eltmType\":\"3\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":\"0\",\"paddingBottom\":0,\"paddingLeft\":\"0\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm3\":{\"showNbg\":false,\"align\":\"2\",\"padding\":0,\"width\":375,\"height\":\"149\",\"borderRadius\":\"8\",\"progress\":false,\"color\":\"#ffffff\",\"activeColor\":\"#000000\",\"autoplay\":false,\"data\":[{\"id\":1718936768569,\"did\":9,\"ids\":\"\",\"name\":\"领券中心\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406217cb69b21f5064bbdbd442cbaa6c939ea.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/activity/coupon/list\",\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718935795546,\"eltmType\":\"6\",\"bgColor\":\"rgba(0,0,0,0)\",\"paddingTop\":\"8\",\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm6\":{\"paddingTop\":\"1\",\"paddingRight\":\"8\",\"paddingBottom\":\"0\",\"paddingLeft\":\"8\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":0,\"alignItems\":0,\"type\":0,\"isSwiper\":0,\"width\":\"0\",\"height\":0,\"data\":[{\"id\":1718935817150,\"did\":221,\"ids\":\"\",\"name\":\"五金机电\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406211808767eb7dc45d7931b73776245cd90.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718937096779,\"eltmType\":\"6\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm6\":{\"paddingTop\":\"4\",\"paddingRight\":\"8\",\"paddingBottom\":\"0\",\"paddingLeft\":\"8\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":0,\"alignItems\":0,\"type\":0,\"isSwiper\":0,\"width\":0,\"height\":0,\"data\":[{\"id\":1718937132000,\"did\":228,\"ids\":\"\",\"name\":\"个人防护\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621fc02c64ab8594216bfd120fe42f4e537.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718937362286,\"eltmType\":\"3\",\"bgColor\":\"\",\"paddingTop\":\"10\",\"paddingRight\":\"1\",\"paddingBottom\":\"0\",\"paddingLeft\":\"8\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm3\":{\"showNbg\":false,\"align\":1,\"padding\":0,\"width\":\"361\",\"height\":\"36\",\"borderRadius\":\"0\",\"progress\":false,\"color\":\"#ffffff\",\"activeColor\":\"#000000\",\"autoplay\":false,\"data\":[{\"id\":1718937375176,\"did\":232,\"ids\":\"\",\"name\":\"货架\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621ec0eeed4703c444a8d5203443c6356f5.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718937610245,\"eltmType\":\"4\",\"bgColor\":\"#ffffff\",\"paddingTop\":\"0\",\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm4\":{\"shadow\":true,\"btnType\":0,\"listTyle\":\"5\",\"isPrice\":true,\"isProductTips\":true,\"btnColor\":\"#DB384C\",\"btnText\":\"购买\",\"priceColor\":\"#fb2323\",\"btnFontColor\":\"#fff\",\"data\":[{\"id\":1718937717798,\"did\":3,\"ids\":\"\",\"name\":\"GBM 400 手电钻铁夹头多功能400瓦电动螺丝刀手枪钻升级版GBM400 \",\"ItemSalePrice\":139,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10003/20240612289af95128c44d3e9c5099cf1aa1ba50.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"2种工具夹头可选,金属开孔\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718937741356,\"did\":11,\"ids\":\"\",\"name\":\"博赫尔(POHIR) 手推式扫雪机市政环卫扫雪除雪机抛雪机物业小区街道扫雪车PHR-6.5P(电启)+抛雪头+推雪头 \",\"ItemSalePrice\":835,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10003/202406128440a1b4ee4b4a91af121ffc08a9cc83.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"一机多用 横扫积雪升级生产工具一机多能 提高生产力\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718937756911,\"did\":12,\"ids\":\"\",\"name\":\"施耐德电气 国产 XB2B系列复位按钮头(平头),绿色;ZB2BA3C \",\"ItemSalePrice\":7.54,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10003/20240612f18161bc26494e9cb68e52941f683a76.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"符合IEC 60947-5-1附录C。应用范围 AC-15 和 DC-13.\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718937772193,\"did\":4,\"ids\":\"\",\"name\":\"德力西8件套螺丝刀套装电脑维修工具组套 \",\"ItemSalePrice\":98.58,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10003/2024062181021e45805c443fb2d26007805810dc.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"自营商品,厂家配送,支持七天无理由退换货\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718938468288,\"eltmType\":\"3\",\"bgColor\":\"\",\"paddingTop\":\"10\",\"paddingRight\":\"0\",\"paddingBottom\":0,\"paddingLeft\":\"2\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm3\":{\"showNbg\":false,\"align\":1,\"padding\":0,\"width\":\"368\",\"height\":\"32\",\"borderRadius\":0,\"progress\":false,\"color\":\"#ffffff\",\"activeColor\":\"#000000\",\"autoplay\":false,\"data\":[{\"id\":1718938559554,\"did\":235,\"ids\":\"\",\"name\":\"元器件\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062102cd3ef3d25e4334a9cc08e7b69fac6e.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718938626295,\"eltmType\":\"4\",\"bgColor\":\"#fcfcfc\",\"paddingTop\":0,\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm4\":{\"shadow\":true,\"btnType\":0,\"listTyle\":\"5\",\"isPrice\":true,\"isProductTips\":true,\"btnColor\":\"#DB384C\",\"btnText\":\"购买\",\"priceColor\":\"#fb2323\",\"btnFontColor\":\"#fff\",\"data\":[{\"id\":1718938712211,\"did\":5,\"ids\":\"\",\"name\":\"佳士(JASIC)ZX7-400(Z298Ⅱ)电焊机400工业级大功率纯铜焊铁碳钢不锈钢焊条焊机 \",\"ItemSalePrice\":299,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10003/202406124bc972f1a3ab4053be84b41e0cdf4460.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"空载电压高,输出能力强,加长200米焊把线,可稳定焊接4.0焊条\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718938748945,\"did\":6,\"ids\":\"\",\"name\":\"Ansell安思尔 一次性丁腈橡胶手套 绿色(M),无粉,工业级,0.12mm厚,24cm长 \",\"ItemSalePrice\":69.9,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10003/202406219534825248fb4e6b920cff749bdca6cf.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"CE认证,FDA,IOS,100只/盒;92-600-M\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718938766741,\"did\":8,\"ids\":\"\",\"name\":\"洪湖二氧化碳灭火器3公斤验收套装【3kg*2+箱子组合】手提式机房精密仪器用国家消防认证 红色\",\"ItemSalePrice\":302,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10003/20240612e9792e49e81d4adaa78ef4a63d3813f9.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"大容量可放两瓶手提灭火器\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718938792989,\"did\":13,\"ids\":\"\",\"name\":\"菲尼克斯 二极管端子;EMG 45-DIO14M/LP \",\"ItemSalePrice\":544,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10003/20240612ba07c8cd39ba413aa439c2bd907c6c71.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"测试灯模块,2个二极管,共阴极:7对,同时触发\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718938808436,\"did\":10,\"ids\":\"\",\"name\":\"蓝色轻型蝴蝶孔货架主架 外径1500*500*2000*4层,单层承重100kg \",\"ItemSalePrice\":268.99,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10003/202406123c4c3550503d40f4b432d2d22b4651e7.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"精选优质冷轧钢材 工艺升级\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718938906687,\"eltmType\":\"3\",\"bgColor\":\"#f2f1ef\",\"paddingTop\":\"8\",\"paddingRight\":0,\"paddingBottom\":\"0\",\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm3\":{\"showNbg\":false,\"align\":1,\"padding\":0,\"width\":375,\"height\":\"82\",\"borderRadius\":0,\"progress\":false,\"color\":\"#ffffff\",\"activeColor\":\"#000000\",\"autoplay\":false,\"data\":[{\"id\":1718938924217,\"did\":58,\"ids\":\"\",\"name\":\"五金电工\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406216ac36c07412f4156a7a66548adeb1e90.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}}]","PageQRCode":"","StoreId":0,"IsSns":0,"IsRelease":true,"IsPoint":0,"IsLikeYou":0,"Id":1718877219670,"TemplateWarehouseId":1022,"StoreIndex":0},{"IsHome":0,"ShareImg":"","SecondKill":0,"PageConfig":"{\"BackgroundObj\":{\"type\":1,\"bgColor\":\"#f8f8f8\",\"pathColor\":\"#f8f8f8\",\"path\":\"\"}}","ShareTitle":"心选好券 品牌好药","PageNav":"{\"window\":{\"navigationBarBackgroundColor\":\"#ea4541\",\"navigationBarTextStyle\":\"white\",\"navigationBarTitleText\":\"\",\"backgroundColor\":\"#f8f8f8\",\"backgroundTextStyle\":\"dark\"},\"tabBar\":{\"color\":\"#999999\",\"selectedColor\":\"#DB384C\",\"backgroundColor\":\"#ffffff\",\"borderStyle\":\"white\",\"position\":\"bottom\",\"list\":[{\"pagePath\":\"pages/index/index\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/aa07e66f-d4fb-4a2b-bc4c-67ed9aace69b.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/2840118f-dd01-471a-a749-d910905cefc3.png\",\"text\":\"首页\"},{\"pagePath\":\"pages/category/category\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/16ff7864-3513-4ff8-bf12-a9a9808d39e5.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/cdb5e3df-9d40-42ef-a46a-686dac547fd8.png\",\"text\":\"分类\"},{\"pagePath\":\"pages/cart/cart\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/63d2f0b9-7059-4b06-b170-d3b93a749f99.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/ea018028-20c0-4f1d-a914-3bfc55c8f13f.png\",\"text\":\"购物车\"},{\"pagePath\":\"pages/UserCenter/UserCenter\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/50737e26-52e6-4c10-858a-ae2c025c2ebc.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/462eb69a-b3ec-446c-9997-c9f1e3212bcb.png\",\"text\":\"我的\"}]}}","IsGb":0,"PageTitle":"医药健康","IsActivity":0,"IsUpgrade":0,"IsArticle":0,"PageCode":"[{\"id\":1718949460453,\"eltmType\":\"3\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm3\":{\"showNbg\":1,\"align\":1,\"padding\":0,\"width\":375,\"height\":\"122\",\"borderRadius\":\"8\",\"progress\":true,\"color\":\"#ffffff\",\"activeColor\":\"#f91f1f\",\"autoplay\":true,\"data\":[{\"id\":1718949519312,\"did\":230,\"ids\":\"\",\"name\":\"全科智能检测仪一体机MJ-1000A型 \",\"ItemSalePrice\":1088,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621fef9bc1152194fc8906eeff977b3ea83.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"微量元素分析仪 骨密度测试夹子\",\"selectType\":\"1\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718949800142,\"did\":238,\"ids\":\"\",\"name\":\"VIKpro升级奶蓟草护肝胶囊60粒 330倍水飞蓟宾 家庭装(3盒)\",\"ItemSalePrice\":759,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621d461c8a05c174e9d81c02a7d5fcfd45e.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"姜黄素甘草成人加班熬夜喝酒 德国品质\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718949827086,\"eltmType\":\"7\",\"bgColor\":\"#ffffff\",\"paddingTop\":\"10\",\"paddingRight\":\"8\",\"paddingBottom\":\"7\",\"paddingLeft\":\"8\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm7\":{\"column\":\"5\",\"bgColor\":\"#fff\",\"paddingTop\":\"10\",\"paddingRight\":\"0\",\"paddingBottom\":\"7\",\"paddingLeft\":\"0\",\"border\":false,\"data\":[{\"id\":1718949893264,\"did\":173,\"ids\":\"\",\"name\":\"自营药房\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406211c6c1973999c4176a98938d462c1c927.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718950604045,\"did\":205,\"ids\":\"\",\"name\":\"慢病用药\",\"ItemSalePrice\":9.9,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406214cba466276d34e9a8b8f8a4453afa60e.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"中药消炎,缓解宝宝手足口病、咽峡炎、咽喉肿痛\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718950673149,\"did\":180,\"ids\":\"\",\"name\":\"万店好药\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621c91931ff1aa34f13810e06f91401ab54.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718950704620,\"did\":173,\"ids\":\"\",\"name\":\"中药房\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406214644eadacb624bfbaf001e88c98554fd.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718950747486,\"did\":221,\"ids\":\"\",\"name\":\"进口药品\",\"ItemSalePrice\":179,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406214b79773334c648619ea82fffe4d2ba21.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"呵护肝脏 维持中老年身体健康 澳洲进口\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718950775583,\"did\":183,\"ids\":\"\",\"name\":\"大牌专区\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406212189394152ca48ffa6c3754fbbb59271.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718950799943,\"did\":221,\"ids\":\"\",\"name\":\"补气补血\",\"ItemSalePrice\":179,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621829d0ae8a5534e7ca74c9e5f08c054f9.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"呵护肝脏 维持中老年身体健康 澳洲进口\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718951012519,\"did\":206,\"ids\":\"\",\"name\":\"感冒用药\",\"ItemSalePrice\":26.9,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621f4714c7e809d4f2997599ff3f8839353.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"中药消炎,缓解宝宝手足口病、咽峡炎、咽喉肿痛\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718951135720,\"did\":221,\"ids\":\"\",\"name\":\"维生素类\",\"ItemSalePrice\":179,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062135658dbdeb61431baef3b39599ab3971.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"呵护肝脏 维持中老年身体健康 澳洲进口\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718951158337,\"did\":183,\"ids\":\"\",\"name\":\"关爱中心\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406214de9c397492b40c59d4b59ac210ae047.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718951247745,\"eltmType\":\"1\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":false,\"layout\":\"4\",\"width\":750,\"height\":\"191\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"data\":{\"id\":\"1718951247745\",\"did\":173,\"ids\":\"\",\"name\":\"中西药品\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621957ca953f6fa4782a5d351011ae56fd8.gif\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}}},{\"id\":1718951313249,\"eltmType\":\"6\",\"bgColor\":\"\",\"paddingTop\":\"8\",\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm6\":{\"paddingTop\":\"8\",\"paddingRight\":\"2\",\"paddingBottom\":\"0\",\"paddingLeft\":\"2\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":0,\"alignItems\":0,\"type\":0,\"isSwiper\":true,\"width\":0,\"height\":0,\"data\":[{\"id\":1718951379335,\"did\":38,\"ids\":\"\",\"name\":\"平台秒杀\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621b8cc7f0c64f34e59ab9f37f24ace9d30.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/activity/plantform/secondlist?cname=限时秒杀\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718951427130,\"did\":217,\"ids\":\"\",\"name\":\"康麦斯牛初乳粉免疫球蛋白长片含片 单盒\",\"ItemSalePrice\":199,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062180eca733fea8433c94b654695d0f9a82.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"【含免疫球蛋白】大人小孩都能吃\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718951665244,\"eltmType\":\"6\",\"bgColor\":\"\",\"paddingTop\":\"5\",\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm6\":{\"paddingTop\":\"8\",\"paddingRight\":\"2\",\"paddingBottom\":\"0\",\"paddingLeft\":\"2\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":0,\"alignItems\":0,\"type\":0,\"isSwiper\":0,\"width\":0,\"height\":0,\"data\":[{\"id\":1718951711405,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062141f7cc2011814512a3760fbd9b9bcc17.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"杜蕾斯\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718951738480,\"did\":230,\"ids\":\"\",\"name\":\"全科智能检测仪一体机MJ-1000A型 \",\"ItemSalePrice\":1088,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062140d5fef4074947eab0cd5fd3aef4ef20.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"微量元素分析仪 骨密度测试夹子\",\"selectType\":\"1\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718951766316,\"did\":180,\"ids\":\"\",\"name\":\"增强免疫\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062171bafef3cbfd48e980333be24eba8acc.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718952019429,\"eltmType\":\"3\",\"bgColor\":\"\",\"paddingTop\":\"8\",\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm3\":{\"showNbg\":false,\"align\":1,\"padding\":0,\"width\":\"354\",\"height\":\"42\",\"borderRadius\":0,\"progress\":false,\"color\":\"#ffffff\",\"activeColor\":\"#000000\",\"autoplay\":false,\"data\":[{\"id\":1718952045661,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062122cc73ed99284d099de1c7b173ebba23.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"0\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718952078985,\"eltmType\":\"4\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm4\":{\"shadow\":true,\"btnType\":\"2\",\"listTyle\":\"2\",\"isPrice\":true,\"isProductTips\":true,\"btnColor\":\"#DB384C\",\"btnText\":\"购买\",\"priceColor\":\"#ea4541\",\"btnFontColor\":\"#fff\",\"data\":[{\"id\":1718952110212,\"did\":230,\"ids\":\"\",\"name\":\"全科智能检测仪一体机MJ-1000A型 \",\"ItemSalePrice\":1088,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10004/202406197ff57ac6e0ec4b78bc06dd094eda0536.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"微量元素分析仪 骨密度测试夹子\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718952136812,\"did\":238,\"ids\":\"\",\"name\":\"VIKpro升级奶蓟草护肝胶囊60粒 330倍水飞蓟宾 家庭装(3盒)\",\"ItemSalePrice\":759,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10004/20240619b24f4f4c318449f0a60597dca16c2b23.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"姜黄素甘草成人加班熬夜喝酒 德国品质\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718952144379,\"did\":217,\"ids\":\"\",\"name\":\"康麦斯牛初乳粉免疫球蛋白长片含片 单盒\",\"ItemSalePrice\":199,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10004/202406196147b9886c6b4f5180d31181d44985e6.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"【含免疫球蛋白】大人小孩都能吃\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718952159519,\"did\":233,\"ids\":\"\",\"name\":\"温迪熊体温计医用耳温枪(wendybear) \",\"ItemSalePrice\":129,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10004/20240619cb46db5d12a84eb7888abbcd85b5fb66.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"搭载德国进口探头,测量精度高;一键测温,1s出值\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718952168720,\"did\":212,\"ids\":\"\",\"name\":\"999糠酸莫米松乳膏0.1% 10g 单盒\",\"ItemSalePrice\":9.9,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10004/20240619bfbd2567f656487797da781a998dfecb.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"湿疹 神经性皮炎 异位性皮炎及皮肤瘙痒症\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718952192563,\"did\":208,\"ids\":\"\",\"name\":\"仁和 布洛芬缓释胶囊22粒/盒止痛药 家庭装(3盒)\",\"ItemSalePrice\":36.8,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10004/202406194e5c2c32119a4d2c86461e755084d9c0.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"痛经退烧药成人牙痛肌肉关节痛神经痛头痛\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718952207503,\"did\":205,\"ids\":\"\",\"name\":\"999三九小儿氨酚黄那敏颗粒6g*10袋 单盒\",\"ItemSalePrice\":9.9,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10004/20240619a3449d6c1e0f4e5eaef61da393086156.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"中药消炎,缓解宝宝手足口病、咽峡炎、咽喉肿痛\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718952218992,\"did\":221,\"ids\":\"\",\"name\":\"Swisse斯维诗 大豆卵磷脂胶囊1200mg 120粒/瓶 单盒\",\"ItemSalePrice\":179,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10004/202406193f557ad80c43402fb128bcfb1c745088.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"呵护肝脏 维持中老年身体健康 澳洲进口\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}}]","PageQRCode":"","StoreId":0,"IsSns":0,"IsRelease":true,"IsPoint":0,"IsLikeYou":0,"Id":1718949361799,"TemplateWarehouseId":1022,"StoreIndex":0},{"IsHome":0,"ShareImg":"","SecondKill":0,"PageConfig":"{\"BackgroundObj\":{\"type\":1,\"bgColor\":\"#f8f8f8\",\"pathColor\":\"#f8f8f8\",\"path\":\"\"}}","ShareTitle":"潮流品质,数码3C热销榜首","PageNav":"{\"window\":{\"navigationBarBackgroundColor\":\"#ea4541\",\"navigationBarTextStyle\":\"white\",\"navigationBarTitleText\":\"\",\"backgroundColor\":\"#f8f8f8\",\"backgroundTextStyle\":\"dark\"},\"tabBar\":{\"color\":\"#999999\",\"selectedColor\":\"#DB384C\",\"backgroundColor\":\"#ffffff\",\"borderStyle\":\"white\",\"position\":\"bottom\",\"list\":[{\"pagePath\":\"pages/index/index\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/aa07e66f-d4fb-4a2b-bc4c-67ed9aace69b.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/2840118f-dd01-471a-a749-d910905cefc3.png\",\"text\":\"首页\"},{\"pagePath\":\"pages/category/category\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/16ff7864-3513-4ff8-bf12-a9a9808d39e5.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/cdb5e3df-9d40-42ef-a46a-686dac547fd8.png\",\"text\":\"分类\"},{\"pagePath\":\"pages/cart/cart\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/63d2f0b9-7059-4b06-b170-d3b93a749f99.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/ea018028-20c0-4f1d-a914-3bfc55c8f13f.png\",\"text\":\"购物车\"},{\"pagePath\":\"pages/UserCenter/UserCenter\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/50737e26-52e6-4c10-858a-ae2c025c2ebc.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/462eb69a-b3ec-446c-9997-c9f1e3212bcb.png\",\"text\":\"我的\"}]}}","IsGb":0,"PageTitle":"数码办公","IsActivity":0,"IsUpgrade":0,"IsArticle":0,"PageCode":"[{\"id\":1718956254964,\"eltmType\":\"3\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":\"0\",\"paddingBottom\":0,\"paddingLeft\":\"0\",\"borderTopLeftRadius\":\"0\",\"borderTopRightRadius\":\"0\",\"borderBottomLeftRadius\":\"0\",\"borderBottomRightRadius\":\"0\",\"eltm3\":{\"showNbg\":1,\"align\":1,\"padding\":0,\"width\":\"375\",\"height\":\"119\",\"borderRadius\":\"8\",\"progress\":true,\"color\":\"#ffffff\",\"activeColor\":\"#000000\",\"autoplay\":true,\"data\":[{\"id\":1718957204570,\"did\":14,\"ids\":\"\",\"name\":\"家用电器\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062128fddbb8b8cc450e868552339f1439f2.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718957335403,\"did\":108,\"ids\":\"\",\"name\":\"Apple MacBook Air/Pro系列二手苹果笔记本电脑 \",\"ItemSalePrice\":1399,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621c070dfa68ac74db980a38a0000cbc806.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"优品 标配 95新Air17款13寸i5银 8G+256G\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718957376094,\"did\":46,\"ids\":\"\",\"name\":\"Buds 4 活力版耳机 256G\",\"ItemSalePrice\":129,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621a1fb3a95677d42f68bf4c3dd954b7756.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"12mm大动圈 28小时超长续航 蓝牙5.3\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718957401563,\"eltmType\":\"7\",\"bgColor\":\"#ffffff\",\"paddingTop\":\"8\",\"paddingRight\":\"8\",\"paddingBottom\":\"2\",\"paddingLeft\":\"8\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm7\":{\"column\":\"5\",\"bgColor\":\"#fff\",\"paddingTop\":\"8\",\"paddingRight\":\"0\",\"paddingBottom\":\"8\",\"paddingLeft\":\"0\",\"border\":false,\"data\":[{\"id\":1718957564412,\"did\":37,\"ids\":\"\",\"name\":\"显示器\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062166b8fc533f2f47d69ceaebc41bd4e9e3.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718961252234,\"did\":30,\"ids\":\"\",\"name\":\"台式机\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621f4d07c0068b04bf7a4f0aaaf932d6494.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718961285986,\"did\":108,\"ids\":\"\",\"name\":\"游戏本\",\"ItemSalePrice\":1399,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621a50a873f26784e4184fafa288c8fd66a.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"优品 标配 95新Air17款13寸i5银 8G+256G\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718961320771,\"did\":53,\"ids\":\"\",\"name\":\"轻薄本\",\"ItemSalePrice\":3599,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062141745e810d6e404b9ff424c0e26d1e56.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"锐龙7|2.5K超视网膜全面屏\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718961437345,\"did\":63,\"ids\":\"\",\"name\":\"平板电脑\",\"ItemSalePrice\":2099,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621719f65658c324e72ba584f24008e2644.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"12.4英寸大屏 2.5K超清护眼 | 骁龙870旗舰处理器 \",\"selectType\":\"1\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718961482451,\"did\":21,\"ids\":\"\",\"name\":\"手机通讯\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406217616baaac2f54d3fbc86a6f859511bda.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718961522098,\"did\":40,\"ids\":\"\",\"name\":\"办公设备\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621c06bfdad642141938eab78d4bdfdb39e.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718961561668,\"did\":24,\"ids\":\"\",\"name\":\"数码配件\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621dd101842ea1b476f9bfc95a268738ac9.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718961583823,\"did\":0,\"ids\":\"\",\"name\":\"特惠卡号\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621f12d53e58bbd453885897af95d203d98.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"卡号\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718961617051,\"did\":108,\"ids\":\"\",\"name\":\"二手回收\",\"ItemSalePrice\":1399,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406213966dabeea3344e18af5b728be883419.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"优品 标配 95新Air17款13寸i5银 8G+256G\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718961736402,\"eltmType\":\"1\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":false,\"layout\":\"4\",\"width\":\"750\",\"height\":\"218\",\"paddingTop\":0,\"paddingRight\":\"7\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"data\":{\"id\":\"1718961736402\",\"did\":30,\"ids\":\"\",\"name\":\"电脑整机\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621aa08ec64520d4fcd8701851cb019ad24.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}}},{\"id\":1718961814733,\"eltmType\":\"6\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":\"8\",\"paddingBottom\":\"0\",\"paddingLeft\":\"8\",\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm6\":{\"paddingTop\":\"0\",\"paddingRight\":\"0\",\"paddingBottom\":\"2\",\"paddingLeft\":\"0\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":0,\"alignItems\":0,\"type\":0,\"isSwiper\":0,\"width\":0,\"height\":0,\"data\":[{\"id\":1718961847340,\"did\":21,\"ids\":\"\",\"name\":\"智能手机\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621c4b2bd328b92431b877316fea788d69f.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718961879418,\"did\":34,\"ids\":\"\",\"name\":\"笔记本\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621e1d01ce0e7c04ec99d1e4405250a26d8.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718961916132,\"eltmType\":\"6\",\"bgColor\":\"\",\"paddingTop\":\"5\",\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm6\":{\"paddingTop\":\"0\",\"paddingRight\":\"3\",\"paddingBottom\":\"13\",\"paddingLeft\":\"3\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":0,\"alignItems\":0,\"type\":0,\"isSwiper\":0,\"width\":0,\"height\":0,\"data\":[{\"id\":1718961979683,\"did\":36,\"ids\":\"\",\"name\":\"小米手机Xiaomi MIX Fold 3 256G\",\"ItemSalePrice\":6999,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621a299bfec915343308905019d9ef23a3c.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"轻薄折叠屏丨第二代骁龙8领先版丨徕卡光学全焦段四摄\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718962031005,\"did\":108,\"ids\":\"\",\"name\":\"Apple MacBook Air/Pro系列二手苹果笔记本电脑 \",\"ItemSalePrice\":1399,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621a388d364b7ee4d23b020a7f282132d33.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"优品 标配 95新Air17款13寸i5银 8G+256G\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718962059399,\"did\":30,\"ids\":\"\",\"name\":\"电脑整机\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621c24f469cd8164b71a30bb8a720250fcc.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718962638684,\"eltmType\":\"3\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":\"0\",\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm3\":{\"showNbg\":false,\"align\":1,\"padding\":0,\"width\":375,\"height\":\"295\",\"borderRadius\":0,\"progress\":true,\"color\":\"#ffffff\",\"activeColor\":\"#9a7bff\",\"autoplay\":true,\"data\":[{\"id\":1718962651631,\"did\":108,\"ids\":\"\",\"name\":\"Apple MacBook Air/Pro系列二手苹果笔记本电脑 \",\"ItemSalePrice\":1399,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240621c7bf4378caf6428da6c1cc117d55fee7.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"优品 标配 95新Air17款13寸i5银 8G+256G\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718963007171,\"did\":58,\"ids\":\"\",\"name\":\"AOC 台式电脑一体机 台式机 15.6英寸\",\"ItemSalePrice\":2399,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062166d421a1dc0a462f92cb8c64faa1d21a.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"23.8英寸窄边框 高速固态+高功率立体音箱\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1718963080419,\"did\":45,\"ids\":\"\",\"name\":\"Buds 4 活力版耳机 128G\",\"ItemSalePrice\":89,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406219738ec0bdf49487ba51870c78b33584f.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"12mm大动圈 28小时超长续航 蓝牙5.3\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1718963847477,\"eltmType\":\"5\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm5\":{\"height\":\"11\"}},{\"id\":1718963696316,\"eltmType\":\"1\",\"bgColor\":\"rgba(0,0,0,0)\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":false,\"layout\":\"4\",\"width\":\"742\",\"height\":\"65\",\"paddingTop\":\"0\",\"paddingRight\":\"56\",\"paddingBottom\":0,\"paddingLeft\":0,\"data\":{\"id\":\"1718963696316\",\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406213a223d89743746149649b1c38825b2f6.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"0\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}}}]","PageQRCode":"","StoreId":0,"IsSns":0,"IsRelease":true,"IsPoint":0,"IsLikeYou":0,"Id":1718952676637,"TemplateWarehouseId":1022,"StoreIndex":0},{"IsHome":0,"ShareImg":"","SecondKill":0,"PageConfig":"{\"BackgroundObj\":{\"type\":1,\"bgColor\":\"#f8f8f8\",\"pathColor\":\"#f8f8f8\",\"path\":\"\"}}","ShareTitle":"专注鲜花速递服务","PageNav":"{\"window\":{\"navigationBarBackgroundColor\":\"#ff6d64\",\"navigationBarTextStyle\":\"white\",\"navigationBarTitleText\":\"\",\"backgroundColor\":\"#f8f8f8\",\"backgroundTextStyle\":\"dark\"},\"tabBar\":{\"color\":\"#999999\",\"selectedColor\":\"#DB384C\",\"backgroundColor\":\"#ffffff\",\"borderStyle\":\"white\",\"position\":\"bottom\",\"list\":[{\"pagePath\":\"pages/index/index\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/aa07e66f-d4fb-4a2b-bc4c-67ed9aace69b.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/2840118f-dd01-471a-a749-d910905cefc3.png\",\"text\":\"首页\"},{\"pagePath\":\"pages/category/category\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/16ff7864-3513-4ff8-bf12-a9a9808d39e5.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/cdb5e3df-9d40-42ef-a46a-686dac547fd8.png\",\"text\":\"分类\"},{\"pagePath\":\"pages/cart/cart\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/63d2f0b9-7059-4b06-b170-d3b93a749f99.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/ea018028-20c0-4f1d-a914-3bfc55c8f13f.png\",\"text\":\"购物车\"},{\"pagePath\":\"pages/UserCenter/UserCenter\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/50737e26-52e6-4c10-858a-ae2c025c2ebc.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/462eb69a-b3ec-446c-9997-c9f1e3212bcb.png\",\"text\":\"我的\"}]}}","IsGb":0,"PageTitle":"鲜花首页","IsActivity":0,"IsUpgrade":0,"IsArticle":0,"PageCode":"[{\"id\":1719224248995,\"eltmType\":\"3\",\"bgColor\":\"rgba(0,0,0,0)\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm3\":{\"showNbg\":1,\"align\":1,\"padding\":0,\"width\":375,\"height\":\"172\",\"borderRadius\":\"8\",\"progress\":true,\"color\":\"#ffffff\",\"activeColor\":\"#fd3030\",\"autoplay\":true,\"data\":[{\"id\":1719224703576,\"did\":161,\"ids\":\"\",\"name\":\"礼品鲜花\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240624a9ef6b7b13194c4a90183764af11164f.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719224775969,\"did\":187,\"ids\":\"\",\"name\":\"毕业季鲜花同城配送玫瑰花鲜花花束生日礼物鲜花速递全国花店送花 33朵红玫瑰花束 时尚混搭\",\"ItemSalePrice\":108,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240624480191ad154e4711873e47446931e728.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"【下单备注送货日期】3W+合作门店全国配送!新鲜直达!售后无忧!\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1719224458600,\"eltmType\":\"7\",\"bgColor\":\"#ffffff\",\"paddingTop\":\"10\",\"paddingRight\":\"8\",\"paddingBottom\":\"7\",\"paddingLeft\":\"8\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm7\":{\"column\":\"5\",\"bgColor\":\"#fff\",\"paddingTop\":\"10\",\"paddingRight\":\"0\",\"paddingBottom\":\"7\",\"paddingLeft\":\"0\",\"border\":false,\"data\":[{\"id\":1719224576801,\"did\":157,\"ids\":\"\",\"name\":\"鲜花\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406247bdb7fcdb3174c6cbc1a8b096a70e2c1.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719224630211,\"did\":198,\"ids\":\"\",\"name\":\"蛋糕\",\"ItemSalePrice\":108,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240624d9bfab7f24fe4a2c9a2cdd889a4e45bb.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"新鲜水果奶油蛋糕 酸甜可口 丰富滋味\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719224885961,\"did\":199,\"ids\":\"\",\"name\":\"永生花\",\"ItemSalePrice\":19.9,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062444b9569d1e6e4962b486e29afacdb4ab.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"成品 抱抱桶花束-勿忘我\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719224931204,\"did\":194,\"ids\":\"\",\"name\":\"礼品\",\"ItemSalePrice\":79,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240624a5676fc898054115a85448be04d48cde.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"进口高端植物干花,永不凋零的唯美艺术,定格美好记忆\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719225015427,\"did\":201,\"ids\":\"\",\"name\":\"巧克力\",\"ItemSalePrice\":119,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240624d4e8dce3ec1b4227b135711a7358d85a.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"表白成功的秘密 打动TA就是一盒糖果巧克力浪漫礼盒\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719225053467,\"did\":187,\"ids\":\"\",\"name\":\"生日祝福\",\"ItemSalePrice\":108,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062570b5c0aa5fce4797b4f94c5c680ba888.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"【下单备注送货日期】3W+合作门店全国配送!新鲜直达!售后无忧!\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719226031595,\"did\":183,\"ids\":\"\",\"name\":\"表白求婚\",\"ItemSalePrice\":99,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625aa844f2b3d474963a14e89629d5493bc.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"向日葵香槟混搭花束—欧雅款\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719226551810,\"did\":191,\"ids\":\"\",\"name\":\"商务开业\",\"ItemSalePrice\":9.9,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062543742758bc33423393bc6a78921f3da1.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"我们是配塑料花盆,款式都是随机的\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719226595345,\"did\":186,\"ids\":\"\",\"name\":\"周年纪念\",\"ItemSalePrice\":99,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625b0b05154b22d47fdb0843b79d23c20aa.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"鲜花自营,全国同城配送\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719226651203,\"did\":157,\"ids\":\"\",\"name\":\"公司团购\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625b00f865074b640789936b2df89eb89cf.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1719284710005,\"eltmType\":\"3\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":\"0\",\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm3\":{\"showNbg\":false,\"align\":1,\"padding\":0,\"width\":375,\"height\":\"232\",\"borderRadius\":0,\"progress\":false,\"color\":\"#ffffff\",\"activeColor\":\"#000000\",\"autoplay\":false,\"data\":[{\"id\":1719284722859,\"did\":9,\"ids\":\"\",\"name\":\"领券中心\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625a50df8967576497e8557ab55b3125568.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/activity/coupon/list\",\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1719285465573,\"eltmType\":\"5\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm5\":{\"height\":\"8\"}},{\"id\":1719284797403,\"eltmType\":\"1\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":false,\"layout\":\"6\",\"width\":\"384\",\"height\":\"364\",\"paddingTop\":\"0\",\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":\"8\",\"data\":{\"id\":\"1719284797403\",\"did\":199,\"ids\":\"\",\"name\":\"永生花玫瑰花生日礼物女六一儿童节针编织毛线花送女朋友闺蜜 时尚混搭\",\"ItemSalePrice\":19.9,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625bc927016fba64d84bfe30b914f9b0428.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"成品 抱抱桶花束-勿忘我\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}}},{\"id\":1719285064933,\"eltmType\":\"1\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":false,\"layout\":8,\"width\":\"357\",\"height\":\"184\",\"paddingTop\":0,\"paddingRight\":\"0\",\"paddingBottom\":\"0\",\"paddingLeft\":\"5\",\"data\":{\"id\":\"1719285064933\",\"did\":187,\"ids\":\"\",\"name\":\"毕业季鲜花同城配送玫瑰花鲜花花束生日礼物鲜花速递全国花店送花 33朵红玫瑰花束 时尚混搭\",\"ItemSalePrice\":108,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625ba29b76376ce48ca8f3fdad07df66171.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"【下单备注送货日期】3W+合作门店全国配送!新鲜直达!售后无忧!\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}}},{\"id\":1719285192305,\"eltmType\":\"1\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":false,\"layout\":8,\"width\":\"357\",\"height\":\"184\",\"paddingTop\":\"5\",\"paddingRight\":0,\"paddingBottom\":\"0\",\"paddingLeft\":\"5\",\"data\":{\"id\":\"1719285192305\",\"did\":185,\"ids\":\"\",\"name\":\"绿琦轩鲜花速递同城配送小时达向日葵玫瑰父亲节生日礼物送朋友老师女友 时尚混搭\",\"ItemSalePrice\":99,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062546d3981534f9486cb893d335297fea19.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"鲜花自营,全国同城配送\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}}},{\"id\":1719289790204,\"eltmType\":\"5\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm5\":{\"height\":\"8\"}},{\"id\":1719289331286,\"eltmType\":\"1\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":true,\"layout\":8,\"width\":\"244\",\"height\":\"284\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":\"8\",\"data\":{\"id\":\"1719289331286\",\"did\":9,\"ids\":\"\",\"name\":\"鲜花绿植\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625ae643ee8dd4742a5a3eef8a366ccba7f.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}}},{\"id\":1719289431607,\"eltmType\":\"1\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":true,\"layout\":8,\"width\":\"244\",\"height\":\"284\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"data\":{\"id\":\"1719289431607\",\"did\":163,\"ids\":\"\",\"name\":\"婚庆鲜花\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062530b6a3096ba34fdab3f41de7c849d1a8.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}}},{\"id\":1719289495540,\"eltmType\":\"1\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":true,\"layout\":8,\"width\":\"244\",\"height\":\"284\",\"paddingTop\":0,\"paddingRight\":\"4\",\"paddingBottom\":0,\"paddingLeft\":0,\"data\":{\"id\":\"1719289495540\",\"did\":161,\"ids\":\"\",\"name\":\"礼品鲜花\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625b728cf03e44b43649bac671524e29912.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}}},{\"id\":1719294121446,\"eltmType\":\"15\",\"bgColor\":\"\",\"paddingTop\":\"8\",\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm15\":{\"isIcon\":true,\"icon\":\"https://demo.lancerdt.com/xcxfile/appicon/auth/titleline.png\",\"title\":\"热销推荐\",\"titleColor\":\"#333333\",\"isLink\":true,\"linkText\":\"更多\",\"fontColor\":\"#9B9B9B\",\"arrowColor\":\"#9B9B9B\",\"isCountdown\":false,\"cssType\":1,\"startTime\":\"\",\"endTime\":\"\",\"margin_top\":0,\"margin_bottom\":0,\"timeTitle\":\"距开始\",\"clearIntervalTime\":null,\"day\":0,\"h\":0,\"m\":0,\"s\":0,\"data\":{\"id\":\"1719294121446\",\"selectType\":\"3\",\"keyWord\":\"鲜花\"}}},{\"id\":1719294709780,\"eltmType\":\"4\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm4\":{\"shadow\":true,\"btnType\":\"4\",\"listTyle\":\"2\",\"isPrice\":true,\"isProductTips\":true,\"btnColor\":\"#DB384C\",\"btnText\":\"购买\",\"priceColor\":\"#fd6258\",\"btnFontColor\":\"#fff\",\"data\":[{\"id\":1719294778506,\"did\":200,\"ids\":\"\",\"name\":\"永生花玫瑰花生日礼物女六一儿童节针编织毛线花送女朋友闺蜜 阳光款\",\"ItemSalePrice\":22.9,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10004/20240619f2584881fe144c6dafed31db1a7ebc69.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"成品 抱抱桶花束-勿忘我\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719294790662,\"did\":186,\"ids\":\"\",\"name\":\"绿琦轩鲜花速递同城配送小时达向日葵玫瑰父亲节生日礼物送朋友老师女友 阳光款\",\"ItemSalePrice\":99,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10004/202406191cc0c13ea609488ab1928d9c3b85997a.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"鲜花自营,全国同城配送\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719294802886,\"did\":183,\"ids\":\"\",\"name\":\"插画鲜花速递向日葵玫瑰混搭花束表白送女友老婆生日礼物全国同城配送 时尚混搭\",\"ItemSalePrice\":99,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10004/20240619d7c3b786c01d472198577cbab4c2a89d.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"向日葵香槟混搭花束—欧雅款\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719294812536,\"did\":187,\"ids\":\"\",\"name\":\"毕业季鲜花同城配送玫瑰花鲜花花束生日礼物鲜花速递全国花店送花 33朵红玫瑰花束 时尚混搭\",\"ItemSalePrice\":108,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10004/20240619728450983ae44e598febc67ace0ccf55.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"【下单备注送货日期】3W+合作门店全国配送!新鲜直达!售后无忧!\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719294826235,\"did\":193,\"ids\":\"\",\"name\":\"新洋丰缓释肥兰花专用 有机君子兰蝴蝶兰肥料盆栽植物园艺用品庭院 \",\"ItemSalePrice\":9.9,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10004/20240619ee45140799684bee99a711d77b639eab.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"专业缓释技术 可降解生物包膜材料对植物安全\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719294838019,\"did\":191,\"ids\":\"\",\"name\":\"泰西丝大型植物辫子发财树盆栽开业乔迁送礼盆景大叶绿萝客厅花卉办公室 带盆\",\"ItemSalePrice\":9.9,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10004/20240619915011df163f4ae784805adf33d4f0e1.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"我们是配塑料花盆,款式都是随机的\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719294847901,\"did\":190,\"ids\":\"\",\"name\":\"爱你一万年竹柏水培绿植驱蚊竹办公室内花卉绿植四季好养白掌水培红掌盆栽 阳光款\",\"ItemSalePrice\":9.9,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10004/20240619478457ac66cf4612a7f2fcbd84a86465.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"【热卖】特级白掌+早安盆吸水盆\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719294856039,\"did\":130,\"ids\":\"\",\"name\":\"绽芳致盛·原创樱花玛瑙十二生辰花神手串 \",\"ItemSalePrice\":399,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10004/2024061428c92b651499463b867418e44af0becc.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"甄选马达加斯加樱花玛瑙,原创设计将中国生肖文化中的生辰花神设计成串\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719294871525,\"did\":194,\"ids\":\"\",\"name\":\"真花,创意花艺永生花干花花瓶组合摆件礼物 \",\"ItemSalePrice\":79,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10004/20240619e5e44231506945999ef1b9803e415c01.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"进口高端植物干花,永不凋零的唯美艺术,定格美好记忆\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719294897389,\"did\":193,\"ids\":\"\",\"name\":\"新洋丰缓释肥兰花专用 有机君子兰蝴蝶兰肥料盆栽植物园艺用品庭院 \",\"ItemSalePrice\":9.9,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10004/20240619ee45140799684bee99a711d77b639eab.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"专业缓释技术 可降解生物包膜材料对植物安全\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}}]","PageQRCode":"","StoreId":0,"IsSns":0,"IsRelease":true,"IsPoint":0,"IsLikeYou":0,"Id":1719224119799,"TemplateWarehouseId":1022,"StoreIndex":0},{"IsHome":0,"ShareImg":"","SecondKill":0,"PageConfig":"{\"BackgroundObj\":{\"type\":1,\"bgColor\":\"#f8f8f8\",\"pathColor\":\"#f8f8f8\",\"path\":\"\"}}","ShareTitle":"装修建材家居家具一体化购物平台","PageNav":"{\"window\":{\"navigationBarBackgroundColor\":\"#fd9760\",\"navigationBarTextStyle\":\"white\",\"navigationBarTitleText\":\"\",\"backgroundColor\":\"#f8f8f8\",\"backgroundTextStyle\":\"dark\"},\"tabBar\":{\"color\":\"#999999\",\"selectedColor\":\"#DB384C\",\"backgroundColor\":\"#ffffff\",\"borderStyle\":\"white\",\"position\":\"bottom\",\"list\":[{\"pagePath\":\"pages/index/index\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/aa07e66f-d4fb-4a2b-bc4c-67ed9aace69b.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/2840118f-dd01-471a-a749-d910905cefc3.png\",\"text\":\"首页\"},{\"pagePath\":\"pages/category/category\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/16ff7864-3513-4ff8-bf12-a9a9808d39e5.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/cdb5e3df-9d40-42ef-a46a-686dac547fd8.png\",\"text\":\"分类\"},{\"pagePath\":\"pages/cart/cart\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/63d2f0b9-7059-4b06-b170-d3b93a749f99.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/ea018028-20c0-4f1d-a914-3bfc55c8f13f.png\",\"text\":\"购物车\"},{\"pagePath\":\"pages/UserCenter/UserCenter\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/50737e26-52e6-4c10-858a-ae2c025c2ebc.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/462eb69a-b3ec-446c-9997-c9f1e3212bcb.png\",\"text\":\"我的\"}]}}","IsGb":0,"PageTitle":"家居建材模板","IsActivity":0,"IsUpgrade":0,"IsArticle":0,"PageCode":"[{\"id\":1719296002751,\"eltmType\":\"3\",\"bgColor\":\"#f2f2f2\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm3\":{\"showNbg\":true,\"align\":1,\"padding\":0,\"width\":375,\"height\":\"354\",\"borderRadius\":\"8\",\"progress\":true,\"color\":\"#ffffff\",\"activeColor\":\"#e22238\",\"autoplay\":true,\"data\":[{\"id\":1719296053704,\"did\":3,\"ids\":\"\",\"name\":\"家居建材\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406259d2e48041dbe4b0f83e67956c761bbfe.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719296135077,\"did\":14,\"ids\":\"\",\"name\":\"家用电器\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625d5d232cc86834bd690c30d059404076d.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1719298873814,\"eltmType\":\"1\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":false,\"layout\":\"4\",\"width\":750,\"height\":188,\"paddingTop\":\"4\",\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"data\":{\"id\":\"1719298873814\",\"did\":9,\"ids\":\"\",\"name\":\"领券中心\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625a6f1d3c072ef486e9d5fd59df7624536.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/activity/coupon/list\",\"UserLimit\":0,\"OrderCount\":0}}},{\"id\":1719298978333,\"eltmType\":\"6\",\"bgColor\":\"\",\"paddingTop\":\"10\",\"paddingRight\":\"8\",\"paddingBottom\":\"7\",\"paddingLeft\":\"6\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm6\":{\"paddingTop\":\"5\",\"paddingRight\":\"2\",\"paddingBottom\":\"2\",\"paddingLeft\":\"2\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":0,\"alignItems\":0,\"type\":0,\"isSwiper\":0,\"width\":\"0\",\"height\":\"0\",\"data\":[{\"id\":1719299021544,\"did\":53,\"ids\":\"\",\"name\":\"家用家具\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625d07e52b692a948cfa1365f3c467ac236.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719299046914,\"did\":54,\"ids\":\"\",\"name\":\"灯具灯饰\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625ef72dcc382f3456eb8dd6bb45b62fe31.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719301507502,\"did\":48,\"ids\":\"\",\"name\":\"家装建材\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062503f41b0e90fe47e7bfdbe14d2e9f4f0c.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1719299199221,\"eltmType\":\"1\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":false,\"layout\":\"4\",\"width\":750,\"height\":\"72\",\"paddingTop\":0,\"paddingRight\":\"31\",\"paddingBottom\":0,\"paddingLeft\":\"0\",\"data\":{\"id\":\"1719299199221\",\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625eb97d3f1e2c9415899f42ec650df4e79.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"0\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}}},{\"id\":1719299349347,\"eltmType\":\"6\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm6\":{\"paddingTop\":\"0\",\"paddingRight\":\"2\",\"paddingBottom\":\"4\",\"paddingLeft\":\"2\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":0,\"alignItems\":0,\"type\":0,\"isSwiper\":true,\"width\":\"0\",\"height\":0,\"data\":[{\"id\":1719299356095,\"did\":25,\"ids\":\"\",\"name\":\"无极调光 三段折叠 国AA级护眼台灯 绿色\",\"ItemSalePrice\":119,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062535d214af95f04e33a34d32bb870bb266.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"无蓝光频闪危害,触碰无极调光\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719299393023,\"did\":23,\"ids\":\"\",\"name\":\"意式极简豆腐块真皮布艺沙发羽绒直排客厅 \",\"ItemSalePrice\":3780,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406252677132b24ba4d6da52d8af52efd2e71.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"精选优质磨砂布面料,海绵+羽绒填充座包 进口落叶松实木框架,时尚不锈钢枪灰沙发脚\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719299426783,\"did\":3,\"ids\":\"\",\"name\":\"家居建材\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406257892e6d1cf8c4ce4b50046ce5568db01.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1719301659341,\"eltmType\":\"1\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":false,\"layout\":\"4\",\"width\":750,\"height\":\"91\",\"paddingTop\":0,\"paddingRight\":\"3\",\"paddingBottom\":0,\"paddingLeft\":0,\"data\":{\"id\":\"1719301659341\",\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625e3de3c1ff77e48c7b8b3764b2b4a3ddd.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"0\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}}},{\"id\":1719301734247,\"eltmType\":\"6\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm6\":{\"paddingTop\":\"2\",\"paddingRight\":\"2\",\"paddingBottom\":\"3\",\"paddingLeft\":\"2\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":0,\"alignItems\":0,\"type\":0,\"isSwiper\":0,\"width\":0,\"height\":0,\"data\":[{\"id\":1719301763416,\"did\":228,\"ids\":\"\",\"name\":\"医用轮椅分离护理床手动电动翻身起背家用床 \",\"ItemSalePrice\":6780,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406256e6b787407014d21ad5756e9127527e4.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"多功能轮椅护理床,助便/起落背/抬落腿,遥控操作、冷轧加厚钢材\",\"selectType\":\"1\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719301832236,\"did\":28,\"ids\":\"\",\"name\":\"古鲸 卫浴 淋浴花洒增压喷头 浴室洗澡手持花洒 三档花洒+1.5米软管 \",\"ItemSalePrice\":19.9,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406257d6c01382b4947f28f4d063297980efa.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"出水口采用硅胶材质,轻松去除水垢 让清洁更方便\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719301851199,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625b17583e4de0349b7a837ad6cbc1c5f33.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"马桶\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1719301903063,\"eltmType\":\"6\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm6\":{\"paddingTop\":\"2\",\"paddingRight\":\"1\",\"paddingBottom\":\"8\",\"paddingLeft\":\"1\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":0,\"alignItems\":0,\"type\":0,\"isSwiper\":0,\"width\":0,\"height\":0,\"data\":[{\"id\":1719301941432,\"did\":25,\"ids\":\"\",\"name\":\"无极调光 三段折叠 国AA级护眼台灯 绿色\",\"ItemSalePrice\":119,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625e2c9dba182c941c19b7f9feca61e69f6.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"无蓝光频闪危害,触碰无极调光\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719302003282,\"did\":23,\"ids\":\"\",\"name\":\"意式极简豆腐块真皮布艺沙发羽绒直排客厅 \",\"ItemSalePrice\":3780,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062564a3501635af41e9b529b0b80a3e6064.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"精选优质磨砂布面料,海绵+羽绒填充座包 进口落叶松实木框架,时尚不锈钢枪灰沙发脚\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1719302151256,\"eltmType\":\"1\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":false,\"layout\":\"4\",\"width\":750,\"height\":\"171\",\"paddingTop\":\"1\",\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"data\":{\"id\":\"1719302151256\",\"did\":57,\"ids\":\"\",\"name\":\"厨房卫浴\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406259d5db8493539403ea729294f6ee84ba8.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}}}]","PageQRCode":"","StoreId":0,"IsSns":0,"IsRelease":true,"IsPoint":0,"IsLikeYou":0,"Id":1719295689808,"TemplateWarehouseId":1022,"StoreIndex":0},{"IsHome":0,"ShareImg":"","SecondKill":0,"PageConfig":"{\"BackgroundObj\":{\"type\":1,\"bgColor\":\"#f8f8f8\",\"pathColor\":\"#f8f8f8\",\"path\":\"\"}}","ShareTitle":"全球线路,热销推荐","PageNav":"{\"window\":{\"navigationBarBackgroundColor\":\"#fa2c19\",\"navigationBarTextStyle\":\"white\",\"navigationBarTitleText\":\"\",\"backgroundColor\":\"#f8f8f8\",\"backgroundTextStyle\":\"dark\"},\"tabBar\":{\"color\":\"#999999\",\"selectedColor\":\"#DB384C\",\"backgroundColor\":\"#ffffff\",\"borderStyle\":\"white\",\"position\":\"bottom\",\"list\":[{\"pagePath\":\"pages/index/index\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/aa07e66f-d4fb-4a2b-bc4c-67ed9aace69b.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/2840118f-dd01-471a-a749-d910905cefc3.png\",\"text\":\"首页\"},{\"pagePath\":\"pages/category/category\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/16ff7864-3513-4ff8-bf12-a9a9808d39e5.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/cdb5e3df-9d40-42ef-a46a-686dac547fd8.png\",\"text\":\"分类\"},{\"pagePath\":\"pages/cart/cart\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/63d2f0b9-7059-4b06-b170-d3b93a749f99.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/ea018028-20c0-4f1d-a914-3bfc55c8f13f.png\",\"text\":\"购物车\"},{\"pagePath\":\"pages/UserCenter/UserCenter\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/50737e26-52e6-4c10-858a-ae2c025c2ebc.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/462eb69a-b3ec-446c-9997-c9f1e3212bcb.png\",\"text\":\"我的\"}]}}","IsGb":0,"PageTitle":"酒店旅游","IsActivity":0,"IsUpgrade":0,"IsArticle":0,"PageCode":"[{\"id\":1719307396777,\"eltmType\":\"12\",\"bgColor\":\"\",\"paddingTop\":\"5\",\"paddingRight\":\"2\",\"paddingBottom\":0,\"paddingLeft\":\"2\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm12\":{\"width\":375,\"height\":\"199\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"src\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10004/202406257ce97673974548d7ab0240ac16d86a0f.mp4\",\"controls\":true,\"autoplay\":false,\"loop\":false,\"poster\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625310380d78e2e4502a7a5e793c36b44cb.jpg\",\"muted\":false}},{\"id\":1719305939314,\"eltmType\":\"7\",\"bgColor\":\"#ffffff\",\"paddingTop\":\"6\",\"paddingRight\":\"8\",\"paddingBottom\":\"6\",\"paddingLeft\":\"8\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm7\":{\"column\":\"5\",\"bgColor\":\"#fff\",\"paddingTop\":\"10\",\"paddingRight\":\"0\",\"paddingBottom\":\"6\",\"paddingLeft\":\"0\",\"border\":false,\"data\":[{\"id\":1719306005668,\"did\":197,\"ids\":\"\",\"name\":\"景点门票\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625e8814f997500404c951db2b7928b51ac.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719306395773,\"did\":11,\"ids\":\"\",\"name\":\"酒店住宿\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625c107471a6ade4d958d665225c30fa0d4.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719306436838,\"did\":196,\"ids\":\"\",\"name\":\"国内游\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062568803f9cd1bf4dd394a9c7cde13c131d.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719306472767,\"did\":190,\"ids\":\"\",\"name\":\"出境游\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406259945a67ba5454f2a9df5c3f43e896116.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719306511413,\"did\":0,\"ids\":\"\",\"name\":\"租车\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062517eed99c7ccd4974b00a91c6f521df30.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"租车\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719306535934,\"did\":220,\"ids\":\"\",\"name\":\"海岛游\",\"ItemSalePrice\":299,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062577bbc1647cc142ebb9b6c69e54cb90e6.gif\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"夜游古堰画乡八百里瓯江瑰丽夜景\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719306582925,\"did\":189,\"ids\":\"\",\"name\":\"民宿公寓\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406258c4da8c6470344b5ba2e681f2dd7832a.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719306648555,\"did\":216,\"ids\":\"\",\"name\":\"国际酒店\",\"ItemSalePrice\":599,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062567a9534c3ccb400c91053ab41cb04c93.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"营业时间:每天06:30-13:00开放\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719306693787,\"did\":194,\"ids\":\"\",\"name\":\"优惠专区\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625561af73aeb884ffea0895309f87af04a.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719306850614,\"did\":227,\"ids\":\"\",\"name\":\"旅游保险\",\"ItemSalePrice\":12,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625e28cd202917e461384b3fb89c1b57650.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"至尊保 境外高端旅行险 承保年龄:60天-90周岁\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1719306956968,\"eltmType\":\"1\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":false,\"layout\":\"5\",\"width\":375,\"height\":\"377\",\"paddingTop\":0,\"paddingRight\":\"2\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"data\":{\"id\":\"1719306956968\",\"did\":193,\"ids\":\"\",\"name\":\"国内酒店\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062561a1832a77c84a22a7b3b7e3ed09eb31.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}}},{\"id\":1719307086493,\"eltmType\":\"1\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":false,\"layout\":\"6\",\"width\":375,\"height\":188,\"paddingTop\":0,\"paddingRight\":\"8\",\"paddingBottom\":\"0\",\"paddingLeft\":\"2\",\"data\":{\"id\":\"1719307086493\",\"did\":196,\"ids\":\"\",\"name\":\"国内旅游\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625431848f6ca2341b0a094f298b193ea45.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}}},{\"id\":1719307170051,\"eltmType\":\"1\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":false,\"layout\":\"6\",\"width\":375,\"height\":188,\"paddingTop\":\"5\",\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"2\",\"data\":{\"id\":\"1719307170051\",\"did\":190,\"ids\":\"\",\"name\":\"旅游度假\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625b4096dc8c42348098adbc538413232e4.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}}},{\"id\":1719307256460,\"eltmType\":\"6\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm6\":{\"paddingTop\":\"5\",\"paddingRight\":\"2\",\"paddingBottom\":\"5\",\"paddingLeft\":\"2\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":0,\"alignItems\":0,\"type\":0,\"isSwiper\":0,\"width\":0,\"height\":0,\"data\":[{\"id\":1719307295527,\"did\":194,\"ids\":\"\",\"name\":\"酒店套餐\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202406251f968772722842c3b62f032473796b6c.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719307336038,\"did\":190,\"ids\":\"\",\"name\":\"旅游度假\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625e409c1b530ba46598bb570154e7de3f0.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1719307543347,\"eltmType\":\"15\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm15\":{\"isIcon\":true,\"icon\":\"https://demo.lancerdt.com/xcxfile/appicon/auth/titleline.png\",\"title\":\"热门推荐\",\"titleColor\":\"#333333\",\"isLink\":true,\"linkText\":\"更多\",\"fontColor\":\"#9B9B9B\",\"arrowColor\":\"#9B9B9B\",\"isCountdown\":false,\"cssType\":1,\"startTime\":\"\",\"endTime\":\"\",\"margin_top\":\"6\",\"margin_bottom\":0,\"timeTitle\":\"距开始\",\"clearIntervalTime\":null,\"day\":0,\"h\":0,\"m\":0,\"s\":0,\"data\":{\"id\":\"1719307543347\"}}},{\"id\":1719305093416,\"eltmType\":\"3\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm3\":{\"showNbg\":1,\"align\":1,\"padding\":0,\"width\":375,\"height\":\"215\",\"borderRadius\":\"8\",\"progress\":true,\"color\":\"#ffffff\",\"activeColor\":\"#fa2c19\",\"autoplay\":true,\"data\":[{\"id\":1719305118887,\"did\":225,\"ids\":\"\",\"name\":\"上海迪士尼度假区暑期特价门票 成人票\",\"ItemSalePrice\":699,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024062509888ff76cd44a56afcf4a75ff25f939.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\" 2024全球100必打卡景点\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719305189601,\"did\":216,\"ids\":\"\",\"name\":\"三亚山海天大酒店·傲途格精选 套房\",\"ItemSalePrice\":599,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625b43b27a30b3a41cebcd9753c8211ed91.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"营业时间:每天06:30-13:00开放\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719305219450,\"did\":197,\"ids\":\"\",\"name\":\"景点门票\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240625f1f5956698b44d9ba8cc82208148e95f.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1719307589617,\"eltmType\":\"4\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":\"4\",\"paddingBottom\":0,\"paddingLeft\":\"4\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm4\":{\"shadow\":true,\"btnType\":0,\"listTyle\":\"2\",\"isPrice\":true,\"isProductTips\":true,\"btnColor\":\"#DB384C\",\"btnText\":\"购买\",\"priceColor\":\"#fa2c19\",\"btnFontColor\":\"#fff\",\"data\":[{\"id\":1719307642856,\"did\":225,\"ids\":\"\",\"name\":\"上海迪士尼度假区暑期特价门票 成人票\",\"ItemSalePrice\":699,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10006/20240619a348e9d6134c44a2ac632d9ee90634c5.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\" 2024全球100必打卡景点\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719307660253,\"did\":220,\"ids\":\"\",\"name\":\"丽水3日2晚跟团游秀水丽水之旅丨多人“惠” 儿童票\",\"ItemSalePrice\":299,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10006/20240619e8874d8bfd184fb89362c96819c227b4.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"夜游古堰画乡八百里瓯江瑰丽夜景\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719307716203,\"did\":209,\"ids\":\"\",\"name\":\"美朋·轻奢酒店(北京南站石榴庄地铁站店) 大床房\",\"ItemSalePrice\":599,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10006/20240619989e76fdf8734b27bb5b90714431b80e.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"开业:2021 酒店位于北京市丰台区南顶路\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719307731972,\"did\":203,\"ids\":\"\",\"name\":\"上海陆家嘴滨江禧玥酒店景观房 双人房\",\"ItemSalePrice\":588,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10006/20240619e2425bb1dbfd426abff37a6a185a087d.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"禧玥酒店位置便利,设施现代且整洁\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719307743071,\"did\":227,\"ids\":\"\",\"name\":\"安行华夏大陆香港澳门旅行险 国内旅游意外保险 24h医疗救援 户外短期出行 意外医疗保障 \",\"ItemSalePrice\":12,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10006/20240619e546c649c0674047bbf1445e50f7d96b.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"至尊保 境外高端旅行险 承保年龄:60天-90周岁\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1719307825482,\"did\":229,\"ids\":\"\",\"name\":\"【南京】刘德华巡回演唱会门票2024 南京刘德华 2024年08月02日 周五 19:00 \",\"ItemSalePrice\":1280,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10006/202406199ae4c5aeecca4f5f95c1f6b544c7da4c.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"看台【拍前咨询客服,私拍无效】 备注身份信息联系方式\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}}]","PageQRCode":"","StoreId":0,"IsSns":0,"IsRelease":true,"IsPoint":0,"IsLikeYou":0,"Id":1719304199361,"TemplateWarehouseId":1022,"StoreIndex":0},{"IsHome":0,"ShareImg":"","SecondKill":0,"PageConfig":"{\"BackgroundObj\":{\"type\":1,\"bgColor\":\"#f8f8f8\",\"pathColor\":\"#f8f8f8\",\"path\":\"\"}}","ShareTitle":"会员中心","PageNav":"{\"window\":{\"navigationBarBackgroundColor\":\"#f41323\",\"navigationBarTextStyle\":\"white\",\"navigationBarTitleText\":\"\",\"backgroundColor\":\"#f8f8f8\",\"backgroundTextStyle\":\"dark\"},\"tabBar\":{\"color\":\"#999999\",\"selectedColor\":\"#DB384C\",\"backgroundColor\":\"#ffffff\",\"borderStyle\":\"white\",\"position\":\"bottom\",\"list\":[{\"pagePath\":\"pages/index/index\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/aa07e66f-d4fb-4a2b-bc4c-67ed9aace69b.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/2840118f-dd01-471a-a749-d910905cefc3.png\",\"text\":\"首页\"},{\"pagePath\":\"pages/category/category\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/16ff7864-3513-4ff8-bf12-a9a9808d39e5.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/cdb5e3df-9d40-42ef-a46a-686dac547fd8.png\",\"text\":\"分类\"},{\"pagePath\":\"pages/cart/cart\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/63d2f0b9-7059-4b06-b170-d3b93a749f99.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/ea018028-20c0-4f1d-a914-3bfc55c8f13f.png\",\"text\":\"购物车\"},{\"pagePath\":\"pages/UserCenter/UserCenter\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/50737e26-52e6-4c10-858a-ae2c025c2ebc.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/462eb69a-b3ec-446c-9997-c9f1e3212bcb.png\",\"text\":\"我的\"}]}}","IsGb":0,"PageTitle":"会员中心","IsActivity":0,"IsUpgrade":0,"IsArticle":0,"PageCode":"[]","PageQRCode":"","StoreId":0,"IsSns":0,"IsRelease":true,"IsPoint":0,"IsLikeYou":1,"Id":1720430610221,"TemplateWarehouseId":1022,"StoreIndex":0},{"IsHome":0,"ShareImg":"","SecondKill":0,"PageConfig":"{\"BackgroundObj\":{\"type\":1,\"bgColor\":\"#f8f8f8\",\"pathColor\":\"#f8f8f8\",\"path\":\"\"}}","ShareTitle":"探索好物,分享发现","PageNav":"{\"window\":{\"navigationBarBackgroundColor\":\"#e91c33\",\"navigationBarTextStyle\":\"white\",\"navigationBarTitleText\":\"\",\"backgroundColor\":\"#f8f8f8\",\"backgroundTextStyle\":\"dark\"},\"tabBar\":{\"color\":\"#999999\",\"selectedColor\":\"#DB384C\",\"backgroundColor\":\"#ffffff\",\"borderStyle\":\"white\",\"position\":\"bottom\",\"list\":[{\"pagePath\":\"pages/index/index\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/aa07e66f-d4fb-4a2b-bc4c-67ed9aace69b.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/2840118f-dd01-471a-a749-d910905cefc3.png\",\"text\":\"首页\"},{\"pagePath\":\"pages/category/category\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/16ff7864-3513-4ff8-bf12-a9a9808d39e5.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/cdb5e3df-9d40-42ef-a46a-686dac547fd8.png\",\"text\":\"分类\"},{\"pagePath\":\"pages/cart/cart\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/63d2f0b9-7059-4b06-b170-d3b93a749f99.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/ea018028-20c0-4f1d-a914-3bfc55c8f13f.png\",\"text\":\"购物车\"},{\"pagePath\":\"pages/UserCenter/UserCenter\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/50737e26-52e6-4c10-858a-ae2c025c2ebc.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/462eb69a-b3ec-446c-9997-c9f1e3212bcb.png\",\"text\":\"我的\"}]}}","IsGb":0,"PageTitle":"社区资讯","IsActivity":0,"IsUpgrade":0,"IsArticle":0,"PageCode":"[{\"id\":1761036135822,\"eltmType\":\"7\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm7\":{\"column\":\"5\",\"bgColor\":\"#fff\",\"paddingTop\":20,\"paddingRight\":10,\"paddingBottom\":20,\"paddingLeft\":10,\"border\":false,\"data\":[{\"id\":1761036141814,\"did\":1,\"ids\":\"\",\"name\":\"资讯\",\"ItemSalePrice\":0,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/20251021/14c51d6c39ab4ba48325b90db8c1a907.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"

\",\"selectType\":\"11\",\"AppUrl\":\"/community/community/detail?id=1\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761036224717,\"did\":9,\"ids\":\"\",\"name\":\"通知\",\"ItemSalePrice\":0,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/20251021/4d37fb1de2614b278fbfa9daa05465ab.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"

\",\"selectType\":\"11\",\"AppUrl\":\"/community/community/detail?id=9\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761036286725,\"did\":10,\"ids\":\"\",\"name\":\"二手\",\"ItemSalePrice\":0,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/20251021/6bbb3ded052e49eea05b77a75590cb28.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"

\",\"selectType\":\"11\",\"AppUrl\":\"/community/community/detail?id=10\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761036287917,\"did\":10,\"ids\":\"\",\"name\":\"招聘\",\"ItemSalePrice\":0,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/20251021/3dd021ed76424c5a8dadda92b7434b92.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"

\",\"selectType\":\"11\",\"AppUrl\":\"/community/community/detail?id=10\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761036430629,\"did\":11,\"ids\":\"\",\"name\":\"反馈\",\"ItemSalePrice\":0,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/20251021/72f6d7ab449d433eab66b88357f8ff40.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"

欢迎大家使用小发同城,评论区留下你的宝贵意见会让我们做得更好


\",\"selectType\":\"11\",\"AppUrl\":\"/community/community/detail?id=11\",\"UserLimit\":0,\"OrderCount\":0}]}}]","PageQRCode":"","StoreId":0,"IsSns":1,"IsRelease":true,"IsPoint":0,"IsLikeYou":0,"Id":1720763424750,"TemplateWarehouseId":1022,"StoreIndex":0},{"IsHome":0,"ShareImg":"","SecondKill":0,"PageConfig":"{\"BackgroundObj\":{\"type\":1,\"bgColor\":\"#f8f8f8\",\"pathColor\":\"#f8f8f8\",\"path\":\"\"}}","ShareTitle":"助您打造一站式本地化O2O综合生活服务平台","PageNav":"{\"window\":{\"navigationBarBackgroundColor\":\"#f91a34\",\"navigationBarTextStyle\":\"white\",\"navigationBarTitleText\":\"\",\"backgroundColor\":\"#f8f8f8\",\"backgroundTextStyle\":\"dark\"},\"tabBar\":{\"color\":\"#999999\",\"selectedColor\":\"#DB384C\",\"backgroundColor\":\"#ffffff\",\"borderStyle\":\"white\",\"position\":\"bottom\",\"list\":[{\"pagePath\":\"pages/index/index\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/aa07e66f-d4fb-4a2b-bc4c-67ed9aace69b.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/2840118f-dd01-471a-a749-d910905cefc3.png\",\"text\":\"首页\"},{\"pagePath\":\"pages/category/category\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/16ff7864-3513-4ff8-bf12-a9a9808d39e5.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/cdb5e3df-9d40-42ef-a46a-686dac547fd8.png\",\"text\":\"分类\"},{\"pagePath\":\"pages/cart/cart\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/63d2f0b9-7059-4b06-b170-d3b93a749f99.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/ea018028-20c0-4f1d-a914-3bfc55c8f13f.png\",\"text\":\"购物车\"},{\"pagePath\":\"pages/UserCenter/UserCenter\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/50737e26-52e6-4c10-858a-ae2c025c2ebc.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/462eb69a-b3ec-446c-9997-c9f1e3212bcb.png\",\"text\":\"我的\"}]}}","IsGb":0,"PageTitle":"O2O商城模板","IsActivity":0,"IsUpgrade":0,"IsArticle":0,"PageCode":"[{\"id\":1721272795681,\"eltmType\":\"102\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm102\":{\"height\":391,\"title\":\"附近商家\",\"titleColor\":\"#313030\",\"options\":\"{}\",\"isShowFilter\":0,\"isShowLoading\":0,\"viewtype\":1,\"data\":[]}},{\"id\":1761894565606,\"eltmType\":\"7\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm7\":{\"column\":\"4\",\"bgColor\":\"#fff\",\"paddingTop\":20,\"paddingRight\":10,\"paddingBottom\":20,\"paddingLeft\":10,\"border\":false,\"data\":[{\"id\":1761894575092,\"did\":38,\"ids\":\"\",\"name\":\"平台秒杀\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon38.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/activity/plantform/secondlist?cname=限时秒杀\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761894642577,\"did\":22,\"ids\":\"\",\"name\":\"好友砍价\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon22.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/activity/cutprice/list\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761894660625,\"did\":9,\"ids\":\"\",\"name\":\"领券中心\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon9.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/activity/coupon/list\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761894677929,\"did\":1761965284723,\"ids\":\"\",\"name\":\"商家入驻\",\"ItemSalePrice\":0,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/20251101/422a5843f67442f085c755c28cdc6ad3.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"8\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}}]","PageQRCode":"","StoreId":0,"IsSns":0,"IsRelease":true,"IsPoint":0,"IsLikeYou":0,"Id":1720776379022,"TemplateWarehouseId":1022,"StoreIndex":0},{"IsHome":0,"ShareImg":"","SecondKill":0,"PageConfig":"{\"BackgroundObj\":{\"type\":1,\"bgColor\":\"#f8f8f8\",\"pathColor\":\"#f8f8f8\",\"path\":\"\"}}","ShareTitle":"同城生活服务平台","PageNav":"{\"window\":{\"navigationBarBackgroundColor\":\"#fb233c\",\"navigationBarTextStyle\":\"white\",\"navigationBarTitleText\":\"\",\"backgroundColor\":\"#f8f8f8\",\"backgroundTextStyle\":\"dark\"},\"tabBar\":{\"color\":\"#999999\",\"selectedColor\":\"#DB384C\",\"backgroundColor\":\"#ffffff\",\"borderStyle\":\"white\",\"position\":\"bottom\",\"list\":[{\"pagePath\":\"pages/index/index\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/aa07e66f-d4fb-4a2b-bc4c-67ed9aace69b.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/2840118f-dd01-471a-a749-d910905cefc3.png\",\"text\":\"首页\"},{\"pagePath\":\"pages/category/category\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/16ff7864-3513-4ff8-bf12-a9a9808d39e5.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/cdb5e3df-9d40-42ef-a46a-686dac547fd8.png\",\"text\":\"分类\"},{\"pagePath\":\"pages/cart/cart\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/63d2f0b9-7059-4b06-b170-d3b93a749f99.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/ea018028-20c0-4f1d-a914-3bfc55c8f13f.png\",\"text\":\"购物车\"},{\"pagePath\":\"pages/UserCenter/UserCenter\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/50737e26-52e6-4c10-858a-ae2c025c2ebc.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/462eb69a-b3ec-446c-9997-c9f1e3212bcb.png\",\"text\":\"我的\"}]}}","IsGb":0,"PageTitle":"同城娱乐","IsActivity":0,"IsUpgrade":0,"IsArticle":0,"PageCode":"[{\"id\":1721275921482,\"eltmType\":\"3\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm3\":{\"showNbg\":1,\"align\":1,\"padding\":0,\"width\":375,\"height\":\"142\",\"borderRadius\":\"8\",\"progress\":true,\"color\":\"#ffffff\",\"activeColor\":\"#fb2323\",\"autoplay\":true,\"data\":[{\"id\":1721275960281,\"did\":8,\"ids\":\"\",\"name\":\"食品生鲜\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240718e789a15e150b4f24b700919b9be22539.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1721276033341,\"did\":145,\"ids\":\"\",\"name\":\"进口食品\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202407183e5e52a77fd14ffbada2e4b03273482e.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1721276314008,\"eltmType\":\"7\",\"bgColor\":\"#ffffff\",\"paddingTop\":\"10\",\"paddingRight\":\"8\",\"paddingBottom\":\"7\",\"paddingLeft\":\"8\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm7\":{\"column\":\"5\",\"bgColor\":\"#fff\",\"paddingTop\":\"10\",\"paddingRight\":10,\"paddingBottom\":\"8\",\"paddingLeft\":10,\"border\":false,\"data\":[{\"id\":1721276512298,\"did\":11,\"ids\":\"\",\"name\":\"住宿\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240718b1ec6be49bed4b8a953302b6019cdafc.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1721276707576,\"did\":147,\"ids\":\"\",\"name\":\"美食\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240718b95bab8c4cad473c950f355f10ad1b95.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1721276782901,\"did\":200,\"ids\":\"\",\"name\":\"娱乐\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240718d98daa7505e14761985bd1d21089a5a4.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1721276845929,\"did\":229,\"ids\":\"\",\"name\":\"电源演出\",\"ItemSalePrice\":1280,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/202407186dc6011deb694a5daa053b58030f9140.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"看台【拍前咨询客服,私拍无效】 备注身份信息联系方式\",\"selectType\":\"1\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1721276921103,\"did\":190,\"ids\":\"\",\"name\":\"健身游泳\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024071838c0a0385f5341f39c622b95f3a3e6c4.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1721276984952,\"did\":190,\"ids\":\"\",\"name\":\"旅游度假\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240718980f126ea5cf4c4ea71b630ec4dce96c.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1721277055016,\"did\":0,\"ids\":\"\",\"name\":\"学习培训\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240718c891d494ffff4bc4be52f45226317dc2.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"0\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1721277123317,\"did\":192,\"ids\":\"\",\"name\":\"生活服务\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240718229a7cb68ac74e05948314478d10dd1a.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1721277174771,\"did\":82,\"ids\":\"\",\"name\":\"美容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240718db368dee7cb0483c928ad03e88d4f81e.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1721277194894,\"did\":1718949361799,\"ids\":\"\",\"name\":\"医疗\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024071886affbac341d45769cd2f991c386bd22.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"8\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1721277232569,\"eltmType\":\"1\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":false,\"layout\":\"4\",\"width\":750,\"height\":\"190\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"data\":{\"id\":\"1721277232569\",\"did\":11,\"ids\":\"\",\"name\":\"旅游酒店\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024071892d7654ea7454924a36fc3724089ed1a.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}}},{\"id\":1757038348480,\"eltmType\":\"102\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm102\":{\"height\":391,\"title\":\"附近商家\",\"titleColor\":\"#bfbfbf\",\"options\":\"{}\",\"isShowFilter\":0,\"isShowLoading\":0,\"viewtype\":\"0\",\"data\":[]}}]","PageQRCode":"","StoreId":0,"IsSns":0,"IsRelease":true,"IsPoint":0,"IsLikeYou":0,"Id":1721275502838,"TemplateWarehouseId":1022,"StoreIndex":0},{"IsHome":0,"ShareImg":"","SecondKill":0,"PageConfig":"{\"BackgroundObj\":{\"type\":1,\"bgColor\":\"#f8f8f8\",\"pathColor\":\"#f8f8f8\",\"path\":\"\"}}","ShareTitle":"家庭电器 生活百货","PageNav":"{\"window\":{\"navigationBarBackgroundColor\":\"#f41323\",\"navigationBarTextStyle\":\"white\",\"navigationBarTitleText\":\"\",\"backgroundColor\":\"#f8f8f8\",\"backgroundTextStyle\":\"dark\"},\"tabBar\":{\"color\":\"#999999\",\"selectedColor\":\"#DB384C\",\"backgroundColor\":\"#ffffff\",\"borderStyle\":\"white\",\"position\":\"bottom\",\"list\":[{\"pagePath\":\"pages/index/index\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/aa07e66f-d4fb-4a2b-bc4c-67ed9aace69b.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/2840118f-dd01-471a-a749-d910905cefc3.png\",\"text\":\"首页\"},{\"pagePath\":\"pages/category/category\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/16ff7864-3513-4ff8-bf12-a9a9808d39e5.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/cdb5e3df-9d40-42ef-a46a-686dac547fd8.png\",\"text\":\"分类\"},{\"pagePath\":\"pages/cart/cart\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/63d2f0b9-7059-4b06-b170-d3b93a749f99.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/ea018028-20c0-4f1d-a914-3bfc55c8f13f.png\",\"text\":\"购物车\"},{\"pagePath\":\"pages/UserCenter/UserCenter\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/50737e26-52e6-4c10-858a-ae2c025c2ebc.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/462eb69a-b3ec-446c-9997-c9f1e3212bcb.png\",\"text\":\"我的\"}]}}","IsGb":0,"PageTitle":"生活百货审核页面","IsActivity":0,"IsUpgrade":0,"IsArticle":0,"PageCode":"[{\"id\":1721308193832,\"eltmType\":\"3\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm3\":{\"showNbg\":false,\"align\":1,\"padding\":0,\"width\":375,\"height\":\"118\",\"borderRadius\":0,\"progress\":false,\"color\":\"#ffffff\",\"activeColor\":\"#000000\",\"autoplay\":false,\"data\":[{\"id\":1721308217705,\"did\":65,\"ids\":\"\",\"name\":\"高清曲面显示器 27英寸\",\"ItemSalePrice\":1299,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/20240718cfa1abc8ea9f400f9e068c5e0af84cb2.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"21:9超宽带鱼屏 | 144Hz高刷新率\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1721308743036,\"eltmType\":\"1\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":false,\"layout\":\"4\",\"width\":750,\"height\":\"175\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"data\":{\"id\":\"1721308743036\",\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/plantform/2024071849d4d5d1b3a54a56a62e471507306681.gif\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"0\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}}},{\"id\":1721308796092,\"eltmType\":\"4\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm4\":{\"shadow\":true,\"btnType\":0,\"listTyle\":\"2\",\"isPrice\":true,\"isProductTips\":true,\"btnColor\":\"#DB384C\",\"btnText\":\"购买\",\"priceColor\":\"#ef344a\",\"btnFontColor\":\"#fff\",\"data\":[{\"id\":1721308825690,\"did\":64,\"ids\":\"\",\"name\":\"智能平板电脑5 Pro 15.6英寸\",\"ItemSalePrice\":2499,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10002/2024061364984b7c0b494322a2508e1ae620a304.jpeg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"12.4英寸大屏 2.5K超清护眼 | 骁龙870旗舰处理器 \",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1721308925339,\"did\":65,\"ids\":\"\",\"name\":\"高清曲面显示器 27英寸\",\"ItemSalePrice\":1299,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10002/20240613c06a3e749b3548908612525c74a83317.jpeg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"21:9超宽带鱼屏 | 144Hz高刷新率\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1721308942091,\"did\":58,\"ids\":\"\",\"name\":\"AOC 台式电脑一体机 台式机 15.6英寸\",\"ItemSalePrice\":2399,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10002/2024061383ff2baacd5f41a18232765f146bd676.jpeg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"23.8英寸窄边框 高速固态+高功率立体音箱\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1721308958516,\"did\":51,\"ids\":\"\",\"name\":\"米家加湿器 128G\",\"ItemSalePrice\":99,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10002/202406130319b2dd54894d00825a5566c3aee4bf.jpeg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"300mL/h加湿量,99.9%抗菌水箱,便捷免掀盖上加水!\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}],\"charLine\":\"2\"}}]","PageQRCode":"","StoreId":0,"IsSns":0,"IsRelease":true,"IsPoint":0,"IsLikeYou":0,"Id":1721308155090,"TemplateWarehouseId":1022,"StoreIndex":0},{"IsHome":0,"ShareImg":"","SecondKill":0,"PageConfig":"{\"BackgroundObj\":{\"type\":1,\"bgColor\":\"#f8f8f8\",\"pathColor\":\"#f8f8f8\",\"path\":\"\"}}","ShareTitle":"积分商城","PageNav":"{\"window\":{\"navigationBarBackgroundColor\":\"#f41323\",\"navigationBarTextStyle\":\"white\",\"navigationBarTitleText\":\"\",\"backgroundColor\":\"#f8f8f8\",\"backgroundTextStyle\":\"dark\"},\"tabBar\":{\"color\":\"#999999\",\"selectedColor\":\"#DB384C\",\"backgroundColor\":\"#ffffff\",\"borderStyle\":\"white\",\"position\":\"bottom\",\"list\":[{\"pagePath\":\"pages/index/index\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/aa07e66f-d4fb-4a2b-bc4c-67ed9aace69b.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/2840118f-dd01-471a-a749-d910905cefc3.png\",\"text\":\"首页\"},{\"pagePath\":\"pages/category/category\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/16ff7864-3513-4ff8-bf12-a9a9808d39e5.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/cdb5e3df-9d40-42ef-a46a-686dac547fd8.png\",\"text\":\"分类\"},{\"pagePath\":\"pages/cart/cart\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/63d2f0b9-7059-4b06-b170-d3b93a749f99.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/ea018028-20c0-4f1d-a914-3bfc55c8f13f.png\",\"text\":\"购物车\"},{\"pagePath\":\"pages/UserCenter/UserCenter\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/50737e26-52e6-4c10-858a-ae2c025c2ebc.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/462eb69a-b3ec-446c-9997-c9f1e3212bcb.png\",\"text\":\"我的\"}]}}","IsGb":0,"PageTitle":"积分中心","IsActivity":0,"IsUpgrade":0,"IsArticle":0,"PageCode":"[]","PageQRCode":"","StoreId":0,"IsSns":0,"IsRelease":true,"IsPoint":1,"IsLikeYou":0,"Id":1722614840784,"TemplateWarehouseId":1022,"StoreIndex":0},{"IsHome":0,"ShareImg":"","SecondKill":0,"PageConfig":"{\"BackgroundObj\":{\"type\":1,\"bgColor\":\"#f8f8f8\",\"pathColor\":\"#f8f8f8\",\"path\":\"\"}}","ShareTitle":"精选好货,低价供应","PageNav":"{\"window\":{\"navigationBarBackgroundColor\":\"#f5142e\",\"navigationBarTextStyle\":\"white\",\"navigationBarTitleText\":\"\",\"backgroundColor\":\"#f8f8f8\",\"backgroundTextStyle\":\"dark\"},\"tabBar\":{\"color\":\"#999999\",\"selectedColor\":\"#DB384C\",\"backgroundColor\":\"#ffffff\",\"borderStyle\":\"white\",\"position\":\"bottom\",\"list\":[{\"pagePath\":\"pages/index/index\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/aa07e66f-d4fb-4a2b-bc4c-67ed9aace69b.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/2840118f-dd01-471a-a749-d910905cefc3.png\",\"text\":\"首页\"},{\"pagePath\":\"pages/category/category\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/16ff7864-3513-4ff8-bf12-a9a9808d39e5.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/cdb5e3df-9d40-42ef-a46a-686dac547fd8.png\",\"text\":\"分类\"},{\"pagePath\":\"pages/cart/cart\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/63d2f0b9-7059-4b06-b170-d3b93a749f99.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/ea018028-20c0-4f1d-a914-3bfc55c8f13f.png\",\"text\":\"购物车\"},{\"pagePath\":\"pages/UserCenter/UserCenter\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/50737e26-52e6-4c10-858a-ae2c025c2ebc.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/462eb69a-b3ec-446c-9997-c9f1e3212bcb.png\",\"text\":\"我的\"}]}}","IsGb":0,"PageTitle":"货源市场","IsActivity":0,"IsUpgrade":0,"IsArticle":0,"PageCode":"[{\"id\":1724205291247,\"eltmType\":\"3\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm3\":{\"showNbg\":1,\"align\":1,\"padding\":0,\"width\":375,\"height\":\"118\",\"borderRadius\":\"8\",\"progress\":true,\"color\":\"#ffffff\",\"activeColor\":\"#ee1717\",\"autoplay\":true,\"data\":[{\"id\":1724205297280,\"did\":2,\"ids\":\"\",\"name\":\"电脑办公\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240821/a0131e9fdd054a0c84d8ab43fa285f37.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1724206495778,\"eltmType\":\"7\",\"bgColor\":\"#ffffff\",\"paddingTop\":\"8\",\"paddingRight\":\"8\",\"paddingBottom\":\"2\",\"paddingLeft\":\"8\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm7\":{\"column\":\"5\",\"bgColor\":\"#fff\",\"paddingTop\":\"8\",\"paddingRight\":\"0\",\"paddingBottom\":\"8\",\"paddingLeft\":\"0\",\"border\":false,\"data\":[{\"id\":1724206562880,\"did\":40,\"ids\":\"\",\"name\":\"办公设备\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240821/b5c201e098ee45488a933557688b1018.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724206954912,\"did\":32,\"ids\":\"\",\"name\":\"办公配件\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240821/1f323b253b8d42d4b480cd2434509f3e.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724207023665,\"did\":0,\"ids\":\"\",\"name\":\"笔记本\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240821/c009d5178a0646279dd89a61c7f6cad7.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"笔记本\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724207076935,\"did\":0,\"ids\":\"\",\"name\":\"游戏本\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240821/38b7c817df7d4d29950f8feb39e3c64b.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"游戏本\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724207136585,\"did\":0,\"ids\":\"\",\"name\":\"数码优选\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240821/93835853c84141bc9afb3633bdd3ff88.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"耳机\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1724207199794,\"eltmType\":\"1\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":false,\"layout\":8,\"width\":\"750\",\"height\":\"216\",\"paddingTop\":0,\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"data\":{\"id\":\"1724207199794\",\"did\":9,\"ids\":\"\",\"name\":\"领券中心\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240821/c9c657dcaf3b46cabfa01b1832f5df9d.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/activity/coupon/list\",\"UserLimit\":0,\"OrderCount\":0}}},{\"id\":1724207410539,\"eltmType\":\"6\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm6\":{\"paddingTop\":\"0\",\"paddingRight\":\"0\",\"paddingBottom\":\"2\",\"paddingLeft\":\"0\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":0,\"alignItems\":0,\"type\":0,\"isSwiper\":0,\"width\":0,\"height\":0,\"data\":[{\"id\":1724207466578,\"did\":21,\"ids\":\"\",\"name\":\"智能手机\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240821/c057809d7d6a46f1a098016fb2291231.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724207514039,\"did\":2,\"ids\":\"\",\"name\":\"电脑办公\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240821/278ae241c2234705ae62463d5a6ae3a5.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1724207565761,\"eltmType\":\"6\",\"bgColor\":\"\",\"paddingTop\":\"5\",\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm6\":{\"paddingTop\":\"0\",\"paddingRight\":\"3\",\"paddingBottom\":\"13\",\"paddingLeft\":\"3\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":0,\"alignItems\":0,\"type\":0,\"isSwiper\":0,\"width\":0,\"height\":0,\"data\":[{\"id\":1724207620999,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240821/228a7799fe8a44ff862f109bf66ebabf.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"手机\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724207644341,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240821/a890f4345de347628dfad8c30f012ecd.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"笔记本\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724207663841,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240821/2a9916c834b04262af975fc06bacbb74.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"笔记本\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1724207704206,\"eltmType\":\"3\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm3\":{\"showNbg\":false,\"align\":1,\"padding\":0,\"width\":375,\"height\":\"295\",\"borderRadius\":0,\"progress\":true,\"color\":\"#ffffff\",\"activeColor\":\"#9a7bff\",\"autoplay\":true,\"data\":[{\"id\":1724207776167,\"did\":0,\"ids\":\"\",\"name\":\"\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240821/b197a91822d441ef93b6cff7c5135764.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"笔记本\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724208040530,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240821/94edab8e1ab84a48878e1800fdb2c6c0.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"耳机\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1724208071769,\"eltmType\":\"5\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm5\":{\"height\":\"11\"}},{\"id\":1724208124057,\"eltmType\":\"1\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":false,\"layout\":\"4\",\"width\":\"742\",\"height\":\"64\",\"paddingTop\":0,\"paddingRight\":\"40\",\"paddingBottom\":0,\"paddingLeft\":0,\"data\":{\"id\":\"1724208124057\",\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240821/0291b8586d9847f0a98f2086eae14cf8.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"0\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}}},{\"id\":1724208245354,\"eltmType\":\"4\",\"bgColor\":\"\",\"paddingTop\":\"3\",\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm4\":{\"shadow\":true,\"btnType\":0,\"listTyle\":\"2\",\"isPrice\":true,\"isProductTips\":true,\"btnColor\":\"#DB384C\",\"btnText\":\"购买\",\"priceColor\":\"#f02840\",\"btnFontColor\":\"#fff\",\"data\":[{\"id\":1724208286797,\"did\":270,\"ids\":\"\",\"name\":\"惠普打印机 激光打印一体机 \",\"ItemSalePrice\":299,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10009/20240704224f4ca8b11c43fdbd2f6e6fc2141405.jpeg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"一碰连接,一碰打印,支持远程打印\",\"selectType\":\"1\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724208597975,\"did\":272,\"ids\":\"\",\"name\":\"惠普个性化曲面显示器 27英寸\",\"ItemSalePrice\":998,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10009/2024070424dde40e1f99462abb9a62e152147d36.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"21:9超宽带鱼屏 | 144Hz高刷新率\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724208728038,\"did\":271,\"ids\":\"\",\"name\":\"Buds 4 活力版耳机 \",\"ItemSalePrice\":88,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10009/20240704619ba6d7a7fc4eb8aab6b585121d0cb1.jpeg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"12mm大动圈 28小时超长续航 蓝牙5.3\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724208765442,\"did\":49,\"ids\":\"\",\"name\":\"BINNIFA客厅音响无线立体环绕K歌观影一体家庭影院Live3D 256G\",\"ItemSalePrice\":2299,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10002/20240613b461fa0e1fcb4f8c8739a9450db181b0.jpeg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"155W功率,11个发声单元,无线环绕话筒\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}}]","PageQRCode":"","StoreId":0,"IsSns":0,"IsRelease":true,"IsPoint":0,"IsLikeYou":0,"Id":1724205236919,"TemplateWarehouseId":1022,"StoreIndex":1},{"IsHome":0,"ShareImg":"","SecondKill":0,"PageConfig":"{\"BackgroundObj\":{\"type\":1,\"bgColor\":\"#f8f8f8\",\"pathColor\":\"#f8f8f8\",\"path\":\"\"}}","ShareTitle":"实验室用品 一站式采购平台","PageNav":"{\"window\":{\"navigationBarBackgroundColor\":\"#2170e6\",\"navigationBarTextStyle\":\"white\",\"navigationBarTitleText\":\"\",\"backgroundColor\":\"#f8f8f8\",\"backgroundTextStyle\":\"dark\"},\"tabBar\":{\"color\":\"#999999\",\"selectedColor\":\"#DB384C\",\"backgroundColor\":\"#ffffff\",\"borderStyle\":\"white\",\"position\":\"bottom\",\"list\":[{\"pagePath\":\"pages/index/index\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/aa07e66f-d4fb-4a2b-bc4c-67ed9aace69b.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/2840118f-dd01-471a-a749-d910905cefc3.png\",\"text\":\"首页\"},{\"pagePath\":\"pages/category/category\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/16ff7864-3513-4ff8-bf12-a9a9808d39e5.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/cdb5e3df-9d40-42ef-a46a-686dac547fd8.png\",\"text\":\"分类\"},{\"pagePath\":\"pages/cart/cart\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/63d2f0b9-7059-4b06-b170-d3b93a749f99.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/ea018028-20c0-4f1d-a914-3bfc55c8f13f.png\",\"text\":\"购物车\"},{\"pagePath\":\"pages/UserCenter/UserCenter\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/50737e26-52e6-4c10-858a-ae2c025c2ebc.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/462eb69a-b3ec-446c-9997-c9f1e3212bcb.png\",\"text\":\"我的\"}]}}","IsGb":0,"PageTitle":"生物试剂演示站","IsActivity":0,"IsUpgrade":0,"IsArticle":0,"PageCode":"[{\"id\":1724316382663,\"eltmType\":\"3\",\"bgColor\":\"rgba(0,0,0,0)\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm3\":{\"showNbg\":1,\"align\":1,\"padding\":0,\"width\":375,\"height\":\"142\",\"borderRadius\":\"8\",\"progress\":true,\"color\":\"#ffffff\",\"activeColor\":\"#f91f1f\",\"autoplay\":true,\"data\":[{\"id\":1724316502434,\"did\":238,\"ids\":\"\",\"name\":\"实验耗材\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240823/1165d7a3686a4368bfbee857f7c70d46.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724316693022,\"did\":245,\"ids\":\"\",\"name\":\"科研仪器\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240823/4bedf34b6d5948538bd9a9a8a956b8c5.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1724320303424,\"eltmType\":\"14\",\"bgColor\":\"#ffffff\",\"paddingTop\":\"8\",\"paddingRight\":\"8\",\"paddingBottom\":\"2\",\"paddingLeft\":\"8\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm14\":{\"image\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240822/bb0aa0cf9451466b985932179777d8ef.png\",\"fontColor\":\"#333\",\"arrowColor\":\"#1d77ec\",\"scrollDir\":\"1\",\"paddingTop\":\"2\",\"paddingBottom\":0,\"data\":[{\"id\":1724320783769,\"did\":0,\"ids\":\"\",\"name\":\" 擎科科邦邦,买试剂耗材送仪器,详情联系在线客服电话\",\"ItemSalePrice\":0,\"path\":\"\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"0\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1724316716882,\"eltmType\":\"7\",\"bgColor\":\"#ffffff\",\"paddingTop\":\"10\",\"paddingRight\":\"8\",\"paddingBottom\":\"10\",\"paddingLeft\":\"8\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm7\":{\"column\":\"5\",\"bgColor\":\"#fff\",\"paddingTop\":\"6\",\"paddingRight\":\"0\",\"paddingBottom\":\"10\",\"paddingLeft\":\"0\",\"border\":false,\"data\":[{\"id\":1724316789114,\"did\":30,\"ids\":\"\",\"name\":\"店铺推荐\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240822/b335523cebf847f08ac8d601fdef7cd8.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/pagesub/index/store-list\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724316865562,\"did\":34,\"ids\":\"\",\"name\":\"积分商城\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240822/bddff1694fea405aa1fcad2b1e1c8579.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/integral/integral/integral\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724317028265,\"did\":9,\"ids\":\"\",\"name\":\"领券中心\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240822/2a4224f894b54977aafe8d4d5ca080db.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/activity/coupon/list\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724317317994,\"did\":36,\"ids\":\"\",\"name\":\"限时折扣\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240822/ac25ab2527384f52ae1ce939541a4cb7.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/pages/product/list?activity_type_id=1103&cname=限时折扣\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724317356943,\"did\":238,\"ids\":\"\",\"name\":\"品牌直购\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240823/13a8a70c9e14459193dddd337c853d8e.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1724317552149,\"eltmType\":\"1\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":false,\"layout\":\"5\",\"width\":375,\"height\":\"377\",\"paddingTop\":0,\"paddingRight\":\"0\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"data\":{\"id\":\"1724317552149\",\"did\":290,\"ids\":\"\",\"name\":\"SCILOGEX 新SCI406老DM0412 低速离心机 经济型\",\"ItemSalePrice\":4399,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240823/fbda728c00d54ba5917c6da1411b6fed.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"套装2(含50ml*6转子)DM0412\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}}},{\"id\":1724317936153,\"eltmType\":\"1\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":false,\"layout\":\"6\",\"width\":375,\"height\":188,\"paddingTop\":0,\"paddingRight\":\"9\",\"paddingBottom\":0,\"paddingLeft\":\"6\",\"data\":{\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240823/ec16ebc49f174210bc1628e2ab1a8792.png\",\"id\":\"1724317936153\",\"selectType\":\"2\",\"did\":238,\"name\":\"实验耗材\",\"ItemSalePrice\":0,\"AppUrl\":null,\"ProductTips\":null}}},{\"id\":1724317939358,\"eltmType\":\"1\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":false,\"layout\":\"6\",\"width\":375,\"height\":188,\"paddingTop\":\"5\",\"paddingRight\":\"10\",\"paddingBottom\":0,\"paddingLeft\":\"6\",\"data\":{\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240823/16bfb60eee424c40af88fa791764bb90.png\",\"id\":\"1724317939358\",\"selectType\":\"4\",\"did\":9,\"name\":\"领券中心\",\"ItemSalePrice\":0,\"AppUrl\":\"/activity/coupon/list\",\"ProductTips\":null}}},{\"id\":1724318367627,\"eltmType\":\"6\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm6\":{\"paddingTop\":\"7\",\"paddingRight\":\"2\",\"paddingBottom\":\"0\",\"paddingLeft\":\"2\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":0,\"alignItems\":0,\"type\":0,\"isSwiper\":0,\"width\":0,\"height\":0,\"data\":[{\"id\":1724318415205,\"did\":238,\"ids\":\"\",\"name\":\"实验耗材\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240823/0908451e2ad84e27b93c4f018f01a22a.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"2\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724318444074,\"did\":289,\"ids\":\"\",\"name\":\"其林贝尔 Kylin-bell 掌上离心机 高档型\",\"ItemSalePrice\":1499,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240823/6bc88bc3c0dc4008b0fde7fe8b85fa82.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"LX-300 迷你混匀\",\"selectType\":\"1\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1724318476646,\"eltmType\":\"6\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm6\":{\"paddingTop\":\"4\",\"paddingRight\":\"2\",\"paddingBottom\":10,\"paddingLeft\":\"2\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":0,\"alignItems\":0,\"type\":0,\"isSwiper\":0,\"width\":0,\"height\":0,\"data\":[{\"id\":1724318549596,\"did\":288,\"ids\":\"\",\"name\":\"其林贝尔 Kylin-bell 掌上离心机 经济型\",\"ItemSalePrice\":1199,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240823/89fb9deb8bec4d76ba4d90c0bbb770f3.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"LX-300 迷你混匀\",\"selectType\":\"1\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724318563936,\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240822/13b6f2109e234a7bb94614f157c499dc.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"试剂\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":\"3\",\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1724319433201,\"eltmType\":\"15\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm15\":{\"isIcon\":true,\"icon\":\"https://demo.lancerdt.com/xcxfile/appicon/auth/titleline.png\",\"title\":\"发现好货\",\"titleColor\":\"#333333\",\"isLink\":true,\"linkText\":\"更多\",\"fontColor\":\"#9B9B9B\",\"arrowColor\":\"#9B9B9B\",\"isCountdown\":false,\"cssType\":1,\"startTime\":\"\",\"endTime\":\"\",\"margin_top\":0,\"margin_bottom\":0,\"timeTitle\":\"距开始\",\"clearIntervalTime\":null,\"day\":0,\"h\":0,\"m\":0,\"s\":0,\"data\":{\"id\":\"1724319433201\",\"selectType\":\"2\",\"did\":245,\"name\":\"科研仪器\",\"ItemSalePrice\":0,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240822/1a3e013888dd473eae22aa8ab5f8a21b.png\",\"AppUrl\":null,\"ProductTips\":null}}},{\"id\":1724319480301,\"eltmType\":\"4\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":\"8\",\"borderTopRightRadius\":\"8\",\"borderBottomLeftRadius\":\"8\",\"borderBottomRightRadius\":\"8\",\"eltm4\":{\"shadow\":true,\"btnType\":0,\"listTyle\":\"2\",\"isPrice\":true,\"isProductTips\":true,\"btnColor\":\"#DB384C\",\"btnText\":\"购买\",\"priceColor\":\"#f71d36\",\"btnFontColor\":\"#fff\",\"data\":[{\"id\":1724319517835,\"did\":278,\"ids\":\"\",\"name\":\"乐斐 LAVIBE 离心管 2.0毫升 500支/箱\",\"ItemSalePrice\":999,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/store/10044/20240823/2e5307a403a9417cb09f78061a7b05e9.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"微量平盖无色非灭菌\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724319540187,\"did\":279,\"ids\":\"\",\"name\":\"Biosharp BS-PPT-5-G-S2 5ml圆底试管 20个/包\",\"ItemSalePrice\":9,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/store/10044/20240823/33a675bc4a7041e4bf054b60e620768f.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"印刷刻度, 双凸位盖, 无菌\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724319549442,\"did\":281,\"ids\":\"\",\"name\":\"耐洁 Nalgene CryoBoxes 冻存管盒 10个/箱\",\"ItemSalePrice\":59,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/store/10044/20240823/42187009d285421ebf3006decbe4424d.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"聚碳酸酯10x10 10个/箱 5026-1010\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724319565603,\"did\":283,\"ids\":\"\",\"name\":\"康宁 Corning 25cm2透气盖直角培养瓶 30个/箱\",\"ItemSalePrice\":399,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/store/10044/20240823/b34ababc95984088b2cecb2410e4e8ec.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"超低吸附,直角,透气盖\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724385652041,\"did\":285,\"ids\":\"\",\"name\":\"Biosharp BS-HC-005 250ml LDPE经济洗瓶 250ml\",\"ItemSalePrice\":7.5,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/store/10044/20240823/cba08d1f651e42708b46e09549ba8088.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"经济洗瓶(小口)\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724385659579,\"did\":286,\"ids\":\"\",\"name\":\"耐洁 Nalgene 广口瓶PP塑料试剂瓶 36个/箱\",\"ItemSalePrice\":249,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/store/10044/20240823/64476ad7e3b94d549cd7acc814de8ac5.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"250ml 整箱装\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724385676363,\"did\":288,\"ids\":\"\",\"name\":\"其林贝尔 Kylin-bell 掌上离心机 经济型\",\"ItemSalePrice\":1199,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/store/10044/20240823/fce56fb526ef4650bb3630bd5bf5ba96.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"LX-300 迷你混匀\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724385683741,\"did\":290,\"ids\":\"\",\"name\":\"SCILOGEX 新SCI406老DM0412 低速离心机 经济型\",\"ItemSalePrice\":4399,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/store/10044/20240823/e8bb6b7814b24ba190b9be4c89a1da1f.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"套装2(含50ml*6转子)DM0412\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724385689505,\"did\":291,\"ids\":\"\",\"name\":\"SCILOGEX CF1524R 台式高速微量冷冻离心机 高档型\",\"ItemSalePrice\":15600,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/store/10044/20240823/2bc956111a1844fea4ad6c3cca5ca897.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"离心机套装(含AS24-2转子)\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724385699274,\"did\":293,\"ids\":\"\",\"name\":\"SCILOGEX 新SCI-PB老MS-PB 标准型圆盘 老款\",\"ItemSalePrice\":499,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/store/10044/20240823/4c2f38e475494e76b49d08f13e15cf19.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"磁力搅拌器,塑料盘面\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724385724683,\"did\":294,\"ids\":\"\",\"name\":\"SCILOGEX 新SCI-M老MX-M 96孔板混匀仪 \",\"ItemSalePrice\":1899,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/store/10044/20240823/32b917f644154b52a851b0a270f430bc.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"官方直售 品质保证\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724385730729,\"did\":295,\"ids\":\"\",\"name\":\"混匀仪类配件 \",\"ItemSalePrice\":299,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/store/10044/20240823/afc60bc15f36437bbfde4d6c2d7b4d49.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"原厂配件 售后保证\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}}]","PageQRCode":"","StoreId":0,"IsSns":0,"IsRelease":true,"IsPoint":0,"IsLikeYou":0,"Id":1724315739451,"TemplateWarehouseId":1022,"StoreIndex":0},{"IsHome":0,"ShareImg":"","SecondKill":0,"PageConfig":"{\"BackgroundObj\":{\"type\":1,\"bgColor\":\"#f8f8f8\",\"pathColor\":\"#f8f8f8\",\"path\":\"\"}}","ShareTitle":"发现好物","PageNav":"{\"window\":{\"navigationBarBackgroundColor\":\"#DB384C\",\"navigationBarTextStyle\":\"white\",\"navigationBarTitleText\":\"\",\"backgroundColor\":\"#f8f8f8\",\"backgroundTextStyle\":\"dark\"},\"tabBar\":{\"color\":\"#999999\",\"selectedColor\":\"#DB384C\",\"backgroundColor\":\"#ffffff\",\"borderStyle\":\"white\",\"position\":\"bottom\",\"list\":[{\"pagePath\":\"pages/index/index\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/aa07e66f-d4fb-4a2b-bc4c-67ed9aace69b.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/2840118f-dd01-471a-a749-d910905cefc3.png\",\"text\":\"首页\"},{\"pagePath\":\"pages/category/category\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/16ff7864-3513-4ff8-bf12-a9a9808d39e5.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/cdb5e3df-9d40-42ef-a46a-686dac547fd8.png\",\"text\":\"分类\"},{\"pagePath\":\"pages/cart/cart\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/63d2f0b9-7059-4b06-b170-d3b93a749f99.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/ea018028-20c0-4f1d-a914-3bfc55c8f13f.png\",\"text\":\"购物车\"},{\"pagePath\":\"pages/UserCenter/UserCenter\",\"iconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/50737e26-52e6-4c10-858a-ae2c025c2ebc.png\",\"selectedIconPath\":\"https://demo.lancerdt.com/xcxfile/img003/2017082515/462eb69a-b3ec-446c-9997-c9f1e3212bcb.png\",\"text\":\"我的\"}]}}","IsGb":0,"PageTitle":"发现好物审核","IsActivity":0,"IsUpgrade":0,"IsArticle":0,"PageCode":"[{\"id\":1724981813867,\"eltmType\":\"4\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm4\":{\"shadow\":true,\"btnType\":0,\"listTyle\":\"2\",\"isPrice\":true,\"isProductTips\":true,\"btnColor\":\"#DB384C\",\"btnText\":\"购买\",\"priceColor\":\"#DB384C\",\"btnFontColor\":\"#fff\",\"data\":[{\"id\":1724981821705,\"did\":272,\"ids\":\"\",\"name\":\"惠普个性化曲面显示器 27英寸\",\"ItemSalePrice\":998,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10009/2024070424dde40e1f99462abb9a62e152147d36.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"21:9超宽带鱼屏 | 144Hz高刷新率\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724981838718,\"did\":255,\"ids\":\"\",\"name\":\"无线耳机xiaomi \",\"ItemSalePrice\":29,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10010/202407125320d5272d2741d18ee7fe3fcdcf2602.jpeg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"超长待机 音质卓越 超高性价比\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724981852118,\"did\":112,\"ids\":\"\",\"name\":\"【8成新】九号平衡车 小九 小米体感智能骑行 \",\"ItemSalePrice\":1599,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10002/202406132f4b0c0aae4c4c0aaea82edf875e062c.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"米家遥控漂移成人电动车 双电机驱动 超长续航 白色\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1724981874862,\"did\":275,\"ids\":\"\",\"name\":\"Xiaomi 13 限量定制色 256G\",\"ItemSalePrice\":1399,\"path\":\"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/mall/images/media/store/10009/202407043b12d7e1ae1042e98486f00d81b4627c.jpeg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"第二代骁龙8|徕卡专业光学镜头|徕卡原生双画质\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}}]","PageQRCode":"","StoreId":0,"IsSns":0,"IsRelease":true,"IsPoint":0,"IsLikeYou":0,"Id":1724981774279,"TemplateWarehouseId":1022,"StoreIndex":0},{"IsHome":1,"ShareImg":"","SecondKill":0,"PageConfig":"{\"BackgroundObj\":{\"type\":\"1\",\"bgColor\":\"#fcf8f9\",\"pathColor\":\"#f8f8f8\",\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/20250919/2d305e2262904c2d95ce421896f685a8.png\"}}","ShareTitle":"30分钟送达","PageNav":"{\"window\":{\"navigationBarBackgroundColor\":\"#fb233c\",\"navigationBarTextStyle\":\"white\",\"navigationBarTitleText\":\"\",\"backgroundColor\":\"#f8f8f8\",\"backgroundTextStyle\":\"dark\"},\"tabBar\":{\"color\":\"#999999\",\"selectedColor\":\"#DB384C\",\"backgroundColor\":\"#ffffff\",\"borderStyle\":\"white\",\"position\":\"bottom\",\"list\":[{\"pagePath\":\"pages/index/index\",\"iconPath\":\"https://static.lancerdt.com/xcxfile/img003/2017082515/aa07e66f-d4fb-4a2b-bc4c-67ed9aace69b.png\",\"selectedIconPath\":\"https://static.lancerdt.com/xcxfile/img003/2017082515/2840118f-dd01-471a-a749-d910905cefc3.png\",\"text\":\"首页\"},{\"pagePath\":\"pages/category/category\",\"iconPath\":\"https://static.lancerdt.com/xcxfile/img003/2017082515/16ff7864-3513-4ff8-bf12-a9a9808d39e5.png\",\"selectedIconPath\":\"https://static.lancerdt.com/xcxfile/img003/2017082515/cdb5e3df-9d40-42ef-a46a-686dac547fd8.png\",\"text\":\"分类\"},{\"pagePath\":\"pages/cart/cart\",\"iconPath\":\"https://static.lancerdt.com/xcxfile/img003/2017082515/63d2f0b9-7059-4b06-b170-d3b93a749f99.png\",\"selectedIconPath\":\"https://static.lancerdt.com/xcxfile/img003/2017082515/ea018028-20c0-4f1d-a914-3bfc55c8f13f.png\",\"text\":\"购物车\"},{\"pagePath\":\"pages/UserCenter/UserCenter\",\"iconPath\":\"https://static.lancerdt.com/xcxfile/img003/2017082515/50737e26-52e6-4c10-858a-ae2c025c2ebc.png\",\"selectedIconPath\":\"https://static.lancerdt.com/xcxfile/img003/2017082515/462eb69a-b3ec-446c-9997-c9f1e3212bcb.png\",\"text\":\"我的\"}]}}","IsGb":0,"PageTitle":"小发同城","IsActivity":0,"IsUpgrade":0,"IsArticle":0,"PageCode":"[{\"id\":1761981984804,\"eltmType\":\"7\",\"bgColor\":\"#ffffff\",\"paddingTop\":\"8\",\"paddingRight\":\"5\",\"paddingBottom\":\"1\",\"paddingLeft\":\"5\",\"borderTopLeftRadius\":\"10\",\"borderTopRightRadius\":\"10\",\"borderBottomLeftRadius\":\"10\",\"borderBottomRightRadius\":\"10\",\"eltm7\":{\"column\":\"5\",\"bgColor\":\"#fff\",\"paddingTop\":\"8\",\"paddingRight\":\"0\",\"paddingBottom\":\"3\",\"paddingLeft\":\"0\",\"border\":false,\"data\":[{\"id\":1761982125096,\"did\":1761991818757,\"ids\":\"\",\"name\":\"限时秒杀\",\"ItemSalePrice\":0,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/20251101/c503dce4ec31411b9f1d93c5f96ea2ec.gif\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"8\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761982204513,\"did\":11,\"ids\":\"\",\"name\":\"砸金蛋\",\"ItemSalePrice\":0,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/20251101/c2e8da5f66fa44c5a67d222aadec8493.gif\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/activity/smashgoldeneggs/list\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761982298392,\"did\":22,\"ids\":\"\",\"name\":\"好友砍价\",\"ItemSalePrice\":0,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/20251102/c8d55d400b4145bcb47bfb3875f893a9.gif\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/activity/cutprice/list\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761982357432,\"did\":4,\"ids\":\"\",\"name\":\"分享赚钱\",\"ItemSalePrice\":0,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/20251102/c343adfbbaea41bdb75b7caab67031aa.gif\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/member/fans/endorsement\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761982444697,\"did\":9,\"ids\":\"\",\"name\":\"领券中心\",\"ItemSalePrice\":0,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/20251102/677cd6fac648407cb7a0c2bc18b2b57d.gif\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/activity/coupon/list\",\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1761980967363,\"eltmType\":\"7\",\"bgColor\":\"\",\"paddingTop\":\"10\",\"paddingRight\":\"8\",\"paddingBottom\":\"7\",\"paddingLeft\":\"8\",\"borderTopLeftRadius\":\"10\",\"borderTopRightRadius\":\"10\",\"borderBottomLeftRadius\":\"10\",\"borderBottomRightRadius\":\"10\",\"eltm7\":{\"column\":\"5\",\"bgColor\":\"#fff\",\"paddingTop\":\"10\",\"paddingRight\":\"0\",\"paddingBottom\":\"7\",\"paddingLeft\":\"0\",\"border\":false,\"data\":[{\"id\":1761981091959,\"did\":1718696669270,\"ids\":\"\",\"name\":\"超市便利\",\"ItemSalePrice\":0,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/20251101/103806a7008142fbb59f61c9da597ada.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"8\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761981137967,\"did\":1721275502838,\"ids\":\"\",\"name\":\"美食外卖\",\"ItemSalePrice\":0,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/20251101/88cc4ca1df0c4b3581c4a4f24d5a0409.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"8\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761981320399,\"did\":1719304199361,\"ids\":\"\",\"name\":\"酒店旅游\",\"ItemSalePrice\":0,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/20251101/a1f2dc1d7f334e9eb4ba28f652b753df.gif\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"8\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761981651695,\"did\":1718949361799,\"ids\":\"\",\"name\":\"医药健康模板\",\"ItemSalePrice\":0,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/20251101/2b5c40f4ff404eb5a6023a302a1ab0a9.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"8\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761981751759,\"did\":1719224119799,\"ids\":\"\",\"name\":\"鲜花绿植\",\"ItemSalePrice\":0,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/20251101/bea416209882470786a84111a75ede83.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"8\",\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1761983413969,\"eltmType\":\"6\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":\"8\",\"paddingBottom\":0,\"paddingLeft\":\"8\",\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm6\":{\"paddingTop\":\"2\",\"paddingRight\":\"1\",\"paddingBottom\":\"0\",\"paddingLeft\":\"1\",\"bgColor\":\"#fff\",\"fontColor\":\"#000\",\"fontSize\":12,\"border\":false,\"flexDirection\":0,\"flexWrap\":0,\"justifyContent\":0,\"alignItems\":0,\"type\":0,\"isSwiper\":0,\"width\":0,\"height\":0,\"data\":[{\"id\":1761983458621,\"did\":143,\"ids\":\"\",\"name\":\"水产海鲜\",\"ItemSalePrice\":0,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/20251101/f84f8da9e6454576b85a15a5f7455bf1.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/pagesub/index/store?store_id=69\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761983557546,\"did\":142,\"ids\":\"\",\"name\":\"水果蔬菜\",\"ItemSalePrice\":0,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/20251101/58301e1ef70c4de683f6ac215a34e818.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/pagesub/index/store?store_id=69\",\"UserLimit\":0,\"OrderCount\":0}]}},{\"id\":1761983637080,\"eltmType\":\"4\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm4\":{\"shadow\":true,\"btnType\":0,\"listTyle\":\"2\",\"isPrice\":true,\"isProductTips\":true,\"btnColor\":\"#DB384C\",\"btnText\":\"购买\",\"priceColor\":\"#DB384C\",\"btnFontColor\":\"#fff\",\"data\":[{\"id\":1761983646242,\"did\":231727,\"ids\":\"\",\"name\":\"老水三黄鸡 500g\",\"ItemSalePrice\":17.38,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250926/064fd8352d554b7a903f3e3b7dff3928.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761983678714,\"did\":241672,\"ids\":\"\",\"name\":\"前腿肉 500g\",\"ItemSalePrice\":10.78,\"path\":\"https://static.gpxscs.cn/media/images/goods_library/20250720/afcd34c2b26a4bce9774c4d84d6ac6cb.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761983842650,\"did\":241752,\"ids\":\"\",\"name\":\"猪脚(前) 750g\",\"ItemSalePrice\":19.47,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250926/a2f5f4293da248888d151d8afc3d80a8.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761983861770,\"did\":241756,\"ids\":\"\",\"name\":\"猪脚(后) 1000g\",\"ItemSalePrice\":25.96,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250926/a2f5f4293da248888d151d8afc3d80a8.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761983882282,\"did\":255468,\"ids\":\"\",\"name\":\"生菜 500g\",\"ItemSalePrice\":3.58,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250926/ae92420ae96545c093e9c5df22730ff8.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761983909994,\"did\":238725,\"ids\":\"\",\"name\":\"油麦菜 500g\",\"ItemSalePrice\":3.98,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20251012/d02c82ee651f4f7185ba7d2a2ef4fb30.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761983924970,\"did\":254011,\"ids\":\"\",\"name\":\"宁夏油菜心 500g\",\"ItemSalePrice\":3.98,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250926/4674f9e03af84def96ce6ab3ce47868e.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761983954018,\"did\":238937,\"ids\":\"\",\"name\":\"韭菜 250g\",\"ItemSalePrice\":3.38,\"path\":\"https://static.gpxscs.cn/media/images/goods_library/20250726/259ced0b2c2647d7a3cec4d45d0e1380.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761983967922,\"did\":241421,\"ids\":\"\",\"name\":\"圣女果 500g\",\"ItemSalePrice\":5.58,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250927/7b33b4aa97f44de4942f0e8a3f221ea8.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761983988170,\"did\":241761,\"ids\":\"\",\"name\":\"香蕉 1000g\",\"ItemSalePrice\":3.98,\"path\":\"https://static.gpxscs.cn/media/images/goods_library/20250726/4771ac8714204537958c73a484cefb8a.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761984015450,\"did\":241416,\"ids\":\"\",\"name\":\"无籽西瓜 7000g\",\"ItemSalePrice\":55.13,\"path\":\"https://static.gpxscs.cn/media/images/goods_library/20250726/f12e209162834d5ba03d64cca5cc2dbe.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761984035954,\"did\":241357,\"ids\":\"\",\"name\":\"哈密瓜 3kg 3000g\",\"ItemSalePrice\":10.43,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250928/afde91e300a24f3d81e9886df579bf00.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761984082830,\"did\":254246,\"ids\":\"\",\"name\":\"唯得140祥瑞好鲤10包抽纸1*10/提 \",\"ItemSalePrice\":22.8,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250928/1799060736944f8d825b18648245d458.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761984109146,\"did\":257183,\"ids\":\"\",\"name\":\"JS225-01洁柔面子牌湿巾(植萃湿厕纸)(小鹦1*1/包 \",\"ItemSalePrice\":14.9,\"path\":\"https://static.gpxscs.cn/media/images/goods_library/1826/cbce037f7974f302e4410c3682ccaa8e.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}],\"charLine\":\"2\"}}]","PageQRCode":"","StoreId":0,"IsSns":0,"IsRelease":true,"IsPoint":0,"IsLikeYou":0,"Id":1754292818093,"TemplateWarehouseId":1022,"StoreIndex":0},{"IsHome":0,"ShareImg":"","SecondKill":0,"PageConfig":"{\"BackgroundObj\":{\"type\":1,\"bgColor\":\"#f8f8f8\",\"pathColor\":\"#f8f8f8\",\"path\":\"\"}}","ShareTitle":"","PageNav":"{\"window\":{\"navigationBarBackgroundColor\":\"#DB384C\",\"navigationBarTextStyle\":\"white\",\"navigationBarTitleText\":\"\",\"backgroundColor\":\"#f8f8f8\",\"backgroundTextStyle\":\"dark\"},\"tabBar\":{\"color\":\"#999999\",\"selectedColor\":\"#DB384C\",\"backgroundColor\":\"#ffffff\",\"borderStyle\":\"white\",\"position\":\"bottom\",\"list\":[{\"pagePath\":\"pages/index/index\",\"iconPath\":\"https://static.lancerdt.com/xcxfile/img003/2017082515/aa07e66f-d4fb-4a2b-bc4c-67ed9aace69b.png\",\"selectedIconPath\":\"https://static.lancerdt.com/xcxfile/img003/2017082515/2840118f-dd01-471a-a749-d910905cefc3.png\",\"text\":\"首页\"},{\"pagePath\":\"pages/category/category\",\"iconPath\":\"https://static.lancerdt.com/xcxfile/img003/2017082515/16ff7864-3513-4ff8-bf12-a9a9808d39e5.png\",\"selectedIconPath\":\"https://static.lancerdt.com/xcxfile/img003/2017082515/cdb5e3df-9d40-42ef-a46a-686dac547fd8.png\",\"text\":\"分类\"},{\"pagePath\":\"pages/cart/cart\",\"iconPath\":\"https://static.lancerdt.com/xcxfile/img003/2017082515/63d2f0b9-7059-4b06-b170-d3b93a749f99.png\",\"selectedIconPath\":\"https://static.lancerdt.com/xcxfile/img003/2017082515/ea018028-20c0-4f1d-a914-3bfc55c8f13f.png\",\"text\":\"购物车\"},{\"pagePath\":\"pages/UserCenter/UserCenter\",\"iconPath\":\"https://static.lancerdt.com/xcxfile/img003/2017082515/50737e26-52e6-4c10-858a-ae2c025c2ebc.png\",\"selectedIconPath\":\"https://static.lancerdt.com/xcxfile/img003/2017082515/462eb69a-b3ec-446c-9997-c9f1e3212bcb.png\",\"text\":\"我的\"}]}}","IsGb":0,"PageTitle":"","IsActivity":0,"IsUpgrade":0,"IsArticle":0,"PageCode":"[{\"id\":1758179584876,\"eltmType\":\"7\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm7\":{\"column\":\"4\",\"bgColor\":\"#fff\",\"paddingTop\":20,\"paddingRight\":10,\"paddingBottom\":\"30\",\"paddingLeft\":\"10\",\"border\":false,\"data\":[{\"id\":1758179597447,\"did\":23,\"ids\":\"\",\"name\":\"扫码点餐\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon23.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/chain/chain/scan\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758179641204,\"did\":22,\"ids\":\"\",\"name\":\"好友砍价\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon22.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/activity/cutprice/list\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758179674229,\"did\":17,\"ids\":\"\",\"name\":\"餐饮外卖\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon17.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/pagesub/index/store-list\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758179722076,\"did\":16,\"ids\":\"\",\"name\":\"新闻资讯\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon16.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/pagesub/article/list\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758179732660,\"did\":15,\"ids\":\"\",\"name\":\"优惠买单\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon15.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/chain/chain/favorable\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758179742884,\"did\":14,\"ids\":\"\",\"name\":\"服务预约\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon14.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/pages/product/list?kind_id=1202\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758179752621,\"did\":13,\"ids\":\"\",\"name\":\"拼团活动\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon13.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/activity/fightgroup/list\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758179762604,\"did\":12,\"ids\":\"\",\"name\":\"粉丝榜\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon12.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/member/fans/list\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758179774956,\"did\":11,\"ids\":\"\",\"name\":\"砸金蛋\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon11.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/activity/smashgoldeneggs/list\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758179786708,\"did\":10,\"ids\":\"\",\"name\":\"幸运抽奖\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon10.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/member/smashgoldeneggs/list\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758179798435,\"did\":9,\"ids\":\"\",\"name\":\"领券中心\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon9.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/activity/coupon/list\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758179809779,\"did\":8,\"ids\":\"\",\"name\":\"附近门店\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon8.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/chain/chain/list\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758179822203,\"did\":7,\"ids\":\"\",\"name\":\"物流查询\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon7.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/member/order/list\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758179835147,\"did\":6,\"ids\":\"\",\"name\":\"活动中心\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon6.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/activity/market/list\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758179847867,\"did\":5,\"ids\":\"\",\"name\":\"我的粉丝\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon5.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/member/fans/list\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758179858916,\"did\":4,\"ids\":\"\",\"name\":\"分享赚钱\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon4.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/member/fans/endorsement\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758179872268,\"did\":3,\"ids\":\"\",\"name\":\"我的收藏\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon3.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/member/member/favorites\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758179889140,\"did\":2,\"ids\":\"\",\"name\":\"我的拼团\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon2.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/activity/fightgroup/order\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758179905844,\"did\":1,\"ids\":\"\",\"name\":\"我的金库\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon1.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/member/cash/predeposit\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758179921692,\"did\":30,\"ids\":\"\",\"name\":\"店铺街\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon30.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/pagesub/index/store-list\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758179933492,\"did\":31,\"ids\":\"\",\"name\":\"抢购活动\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon31.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/pages/product/list?tag_id=1404&cname=抢购活动\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758179947149,\"did\":32,\"ids\":\"\",\"name\":\"众宝区\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon32.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/pages/product/list?sp_from=1&sp_to=1000000&cname=众宝区\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758179960164,\"did\":33,\"ids\":\"\",\"name\":\"积分区\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon33.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/pages/product/list?points_from=1&points_to=1000000&cname=积分区\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758179971212,\"did\":34,\"ids\":\"\",\"name\":\"积分商城\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon34.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/integral/integral/integral\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758179990379,\"did\":35,\"ids\":\"\",\"name\":\"跨境商品\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon35.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/pages/product/list?tag_id=1405&cname=跨境商品\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758180004883,\"did\":36,\"ids\":\"\",\"name\":\"限时折扣\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon36.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/pages/product/list?activity_type_id=1103&cname=限时折扣\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758180014492,\"did\":37,\"ids\":\"\",\"name\":\"满减\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon37.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/pages/product/list?activity_type_id=1107&cname=满减\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758180027131,\"did\":38,\"ids\":\"\",\"name\":\"平台秒杀\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon38.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/activity/plantform/secondlist?cname=限时秒杀\",\"UserLimit\":0,\"OrderCount\":0},{\"id\":1758180041843,\"did\":39,\"ids\":\"\",\"name\":\"直播\",\"ItemSalePrice\":0,\"path\":\"https://static.lancerdt.com/xcxfile/appicon/icon39.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":null,\"selectType\":\"4\",\"AppUrl\":\"/pagesub/uLive/index\",\"UserLimit\":0,\"OrderCount\":0}]}}]","PageQRCode":"","StoreId":0,"IsSns":0,"IsRelease":true,"IsPoint":0,"IsLikeYou":0,"Id":1758179477400,"TemplateWarehouseId":1022,"StoreIndex":0},{"IsHome":0,"ShareImg":"","SecondKill":0,"PageConfig":"{\"BackgroundObj\":{\"type\":1,\"bgColor\":\"#f8f8f8\",\"pathColor\":\"#f8f8f8\",\"path\":\"\"}}","ShareTitle":"海量商品 1折捡漏","PageNav":"{\"window\":{\"navigationBarBackgroundColor\":\"#e72e0f\",\"navigationBarTextStyle\":\"white\",\"navigationBarTitleText\":\"\",\"backgroundColor\":\"#f8f8f8\",\"backgroundTextStyle\":\"dark\"},\"tabBar\":{\"color\":\"#999999\",\"selectedColor\":\"#DB384C\",\"backgroundColor\":\"#ffffff\",\"borderStyle\":\"white\",\"position\":\"bottom\",\"list\":[{\"pagePath\":\"pages/index/index\",\"iconPath\":\"https://static.lancerdt.com/xcxfile/img003/2017082515/aa07e66f-d4fb-4a2b-bc4c-67ed9aace69b.png\",\"selectedIconPath\":\"https://static.lancerdt.com/xcxfile/img003/2017082515/2840118f-dd01-471a-a749-d910905cefc3.png\",\"text\":\"首页\"},{\"pagePath\":\"pages/category/category\",\"iconPath\":\"https://static.lancerdt.com/xcxfile/img003/2017082515/16ff7864-3513-4ff8-bf12-a9a9808d39e5.png\",\"selectedIconPath\":\"https://static.lancerdt.com/xcxfile/img003/2017082515/cdb5e3df-9d40-42ef-a46a-686dac547fd8.png\",\"text\":\"分类\"},{\"pagePath\":\"pages/cart/cart\",\"iconPath\":\"https://static.lancerdt.com/xcxfile/img003/2017082515/63d2f0b9-7059-4b06-b170-d3b93a749f99.png\",\"selectedIconPath\":\"https://static.lancerdt.com/xcxfile/img003/2017082515/ea018028-20c0-4f1d-a914-3bfc55c8f13f.png\",\"text\":\"购物车\"},{\"pagePath\":\"pages/UserCenter/UserCenter\",\"iconPath\":\"https://static.lancerdt.com/xcxfile/img003/2017082515/50737e26-52e6-4c10-858a-ae2c025c2ebc.png\",\"selectedIconPath\":\"https://static.lancerdt.com/xcxfile/img003/2017082515/462eb69a-b3ec-446c-9997-c9f1e3212bcb.png\",\"text\":\"我的\"}]}}","IsGb":0,"PageTitle":"限时秒杀","IsActivity":0,"IsUpgrade":0,"IsArticle":0,"PageCode":"[{\"id\":1761995422440,\"eltmType\":\"1\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm1\":{\"align\":1,\"bgColor\":\"#fff\",\"padding\":0,\"border\":false,\"layout\":\"1\",\"width\":750,\"height\":\"590\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"data\":{\"id\":\"1761995422440\",\"did\":0,\"ids\":\"\",\"name\":\"请输入内容\",\"ItemSalePrice\":0,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/20251101/cad7e6e7ddf348258cb850dd6bc0d0fe.png\",\"pathBg\":\"\",\"flexNum\":0,\"specImg\":\"\",\"keyWord\":\"\",\"words\":\"\",\"ProductTips\":\"\",\"selectType\":1,\"AppUrl\":\"\",\"AppId\":\"\",\"MinAppUrl\":\"\",\"UserLimit\":0,\"OrderCount\":0}}},{\"id\":1761995558164,\"eltmType\":\"4\",\"bgColor\":\"\",\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"borderTopLeftRadius\":0,\"borderTopRightRadius\":0,\"borderBottomLeftRadius\":0,\"borderBottomRightRadius\":0,\"eltm4\":{\"shadow\":true,\"btnType\":\"2\",\"listTyle\":\"4\",\"isPrice\":true,\"isProductTips\":true,\"btnColor\":\"#DB384C\",\"btnText\":\"购买\",\"priceColor\":\"#DB384C\",\"btnFontColor\":\"#fff\",\"data\":[{\"id\":1761995789201,\"did\":257909,\"ids\":\"\",\"name\":\"DT20300心相印云感悬挂式抽纸M码300抽1*1/包 \",\"ItemSalePrice\":7.9,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20251018/c207f95f02974fd2b43ed960094830d9.png\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"家庭必备\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761996025799,\"did\":257034,\"ids\":\"\",\"name\":\"洁柔150抽抽纸 \",\"ItemSalePrice\":13.9,\"path\":\"https://static.gpxscs.cn/media/images/goods_library/20250720/967c9a6194b840eaac634b25361bdb41.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"柔润亲肤\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761996112572,\"did\":247841,\"ids\":\"\",\"name\":\"唯得127*8包水乡特色/提 \",\"ItemSalePrice\":16.8,\"path\":\"https://static.gpxscs.cn/media/images/goods_library/20250720/1a4d7b3c5e9246d2bd3877006083a64c.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"家庭实惠装\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761996327779,\"did\":235171,\"ids\":\"\",\"name\":\"洁柔蓝面子/提 \",\"ItemSalePrice\":29.9,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250928/052147e5b185476a9b87d5772e787c4c.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"天然无香\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761996415297,\"did\":245915,\"ids\":\"\",\"name\":\"200ml*12盒伊利纯牛奶(件) \",\"ItemSalePrice\":36.8,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250930/97c99c7477254251ad5ba548bde6476d.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"天热牧场\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761996574568,\"did\":254412,\"ids\":\"\",\"name\":\"245ml 旺仔牛奶礼盒 \",\"ItemSalePrice\":62,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20251002/4bb268677555459fa1a4b0652b747988.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"儿童都想喝\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761996703896,\"did\":246681,\"ids\":\"\",\"name\":\"220g*6排*24瓶娃哈哈AD钙奶饮料(裹膜装) \",\"ItemSalePrice\":42.8,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20251002/1883d976546a4e2a8595871f05b716ac.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"还是小时候的味道\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0},{\"id\":1761996789962,\"did\":234839,\"ids\":\"\",\"name\":\"250ml*12蒙牛原生高钙纯牛奶(提) \",\"ItemSalePrice\":48,\"path\":\"https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/store/1002810/20250930/0410733b3587401886511d77cdfffe65.jpg\",\"pathBg\":\"\",\"flexNum\":0,\"ProductTips\":\"原生高钙奶\",\"selectType\":1,\"AppUrl\":null,\"UserLimit\":0,\"OrderCount\":0}],\"charLine\":\"2\"}}]","PageQRCode":"","StoreId":0,"IsSns":0,"IsRelease":true,"IsPoint":0,"IsLikeYou":0,"Id":1761991818757,"TemplateWarehouseId":1022,"StoreIndex":0}]'/> + + + + value='{"BackgroundObj":{"type":"0","bgColor":"#f8f8f8","pathColor":"#f8f8f8","path":"https://lancer-bbc-1326467824.cos.ap-shanghai.myqcloud.com/lancer-bbc/media/plantform/20240904/a46e07ff6b5447a19e5ffa856f7d4f36.jpg"}}'/> + value='{"IsHome":0,"ShareImg":"","PageConfig":"","ShareTitle":"","PageNav":"","PageTitle":"个人中心","PageCode":"{\"type\":\"2\",\"list\":[{\"color\":\"#DB384C\",\"icon\":\"zc zc-wodepintuan\",\"url\":\"/activity/fightgroup/order\",\"isShow\":true,\"cat\":2,\"name\":\"我的拼团\",\"id\":1,\"FeatureKey\":\"FightGrp\"},{\"color\":\"#44afa4\",\"icon\":\"zc zc-fenxiaoyongjin\",\"url\":\"/member/fans/profitlist\",\"isShow\":false,\"cat\":2,\"name\":\"分销佣金\",\"id\":2,\"FeatureKey\":\"MemCashAcct\"},{\"color\":\"#44afa4\",\"icon\":\"zc zc-wodeyuyue\",\"url\":\"/member/order/list?kind_id=1202\",\"isShow\":false,\"cat\":2,\"name\":\"我的预约\",\"id\":3,\"FeatureKey\":\"\"},{\"color\":\"#44afa4\",\"icon\":\"zc zc-wodekabao\",\"url\":\"/member/card/user_list?kind_id=1203\",\"isShow\":false,\"cat\":2,\"name\":\"我的卡包\",\"id\":39,\"FeatureKey\":\"PayCardType\"},{\"color\":\"#44afa4\",\"icon\":\"zc zc-libaoduihuan\",\"url\":\"/activity/gift/exchange\",\"isShow\":false,\"cat\":1,\"name\":\"礼包兑换\",\"id\":40,\"FeatureKey\":\"GiftPackType\"},{\"color\":\"#b37feb\",\"icon\":\"zc zc-shouhoufuwu\",\"url\":\"/member/member/returnlist\",\"isShow\":true,\"cat\":1,\"name\":\"售后服务\",\"id\":36,\"FeatureKey\":\"service\"},{\"color\":\"#b37feb\",\"icon\":\"zc zc-wodekanjia\",\"url\":\"/activity/cutprice/userlist\",\"isShow\":true,\"cat\":2,\"name\":\"我的砍价\",\"id\":4,\"FeatureKey\":\"CutPrice\"},{\"color\":\"#DB384C\",\"icon\":\"zc zc-zhanghuyue\",\"url\":\"/member/cash/predeposit\",\"isShow\":false,\"cat\":1,\"name\":\"账户余额\",\"id\":45,\"FeatureKey\":\"UserMoneyKey\"},{\"color\":\"#56ABE4\",\"icon\":\"zc zc-wodeyouhuiquan\",\"url\":\"/member/member/coupon\",\"isShow\":true,\"cat\":1,\"name\":\"优惠券\",\"id\":5,\"FeatureKey\":\"Coupon\"},{\"color\":\"#5cdbd3\",\"icon\":\"zc zc-wodeqiandao\",\"url\":\"/member/member/sign\",\"isShow\":true,\"cat\":2,\"name\":\"签到\",\"id\":44,\"FeatureKey\":\"MemSign\"},{\"color\":\"#ffc333\",\"icon\":\"zc zc-huiyuanzhongxin\",\"url\":\"/member/member/task\",\"isShow\":false,\"cat\":2,\"name\":\"会员中心\",\"id\":6,\"FeatureKey\":\"MemGrade\"},{\"color\":\"#7672B8\",\"icon\":\"zc zc-dianpushoucang\",\"url\":\"/member/member/favorites-store\",\"isShow\":true,\"cat\":1,\"name\":\"店铺收藏\",\"id\":7,\"FeatureKey\":\"FavProd\"},{\"color\":\"#56ABE4\",\"icon\":\"zc zc-wodeshoucang\",\"url\":\"/member/member/favorites\",\"isShow\":true,\"cat\":1,\"name\":\"商品收藏\",\"id\":107,\"FeatureKey\":\"FavProd\"},{\"color\":\"#56ABE4\",\"icon\":\"zc zc-wodezuji\",\"url\":\"/member/member/browse\",\"isShow\":true,\"cat\":1,\"name\":\"我的足迹\",\"id\":108,\"FeatureKey\":\"FavProd\"},{\"color\":\"#1BC2A6\",\"icon\":\"zc zc-wodedizhi\",\"url\":\"\",\"isShow\":true,\"cat\":1,\"name\":\"收货地址\",\"id\":8,\"FeatureKey\":\"UserAddress\"},{\"color\":\"#1BC2A6\",\"icon\":\"zc zc-kaipiaoxinxi\",\"url\":\"/member/invoice/list\",\"isShow\":false,\"cat\":1,\"name\":\"开票信息\",\"id\":120,\"FeatureKey\":\"UserInvoice\"},{\"color\":\"#1BC2A6\",\"icon\":\"zc zc-wodefapiao\",\"url\":\"/member/invoice/order\",\"isShow\":false,\"cat\":1,\"name\":\"我的发票\",\"id\":121,\"FeatureKey\":\"OrderInvoice\"},{\"color\":\"#327eac\",\"icon\":\"zc zc-wodexiaodian\",\"url\":\"/pagesub/westore/index\",\"isShow\":true,\"cat\":2,\"name\":\"我的小店\",\"id\":10,\"FeatureKey\":\"WeStore\"},{\"color\":\"#327eac\",\"icon\":\"zc zc-tuiguangzhongxin\",\"url\":\"/member/fans/index\",\"isShow\":true,\"cat\":2,\"name\":\"推广中心\",\"id\":21,\"FeatureKey\":\"fenxiao\"},{\"color\":\"#b5dbaf\",\"icon\":\"zc zc-wodexiaoxi\",\"url\":\"/member/member/message\",\"isShow\":false,\"cat\":1,\"name\":\"我的消息\",\"id\":33,\"FeatureKey\":\"Message\"},{\"color\":\"#7673db\",\"icon\":\"zc zc-yonghushezhi\",\"url\":\"/member/member/options\",\"isShow\":false,\"cat\":1,\"name\":\"用户设置\",\"id\":31,\"FeatureKey\":\"Options\"},{\"color\":\"#ac8dd5\",\"icon\":\"zc zc-bangzhuzhongxin\",\"url\":\"/pagesub/article/list\",\"isShow\":false,\"cat\":1,\"name\":\"帮助\",\"id\":32,\"FeatureKey\":\"Help\"},{\"color\":\"#b5dbaf\",\"icon\":\"zc zc-guanyu\",\"url\":\"/pagesub/index/about\",\"isShow\":false,\"cat\":1,\"name\":\"关于\",\"id\":33,\"FeatureKey\":\"AbtUs\"},{\"color\":\"#DB384C\",\"icon\":\"zc zc-yonghufankui\",\"url\":\"/member/member/feedback\",\"isShow\":true,\"cat\":1,\"name\":\"用户反馈\",\"id\":10,\"FeatureKey\":\"\"},{\"color\":\"#db384c\",\"icon\":\"zc zc-shangjiazhongxin\",\"url\":\"/seller/index/index\",\"isShow\":true,\"cat\":2,\"name\":\"商家中心\",\"id\":34,\"FeatureKey\":\"Seller\"},{\"color\":\"#399efd\",\"icon\":\"zc zc-kefu2\",\"url\":\"\",\"isShow\":false,\"cat\":1,\"name\":\"平台客服\",\"id\":30,\"FeatureKey\":\"KefuKey\"},{\"color\":\"#80b7f2\",\"icon\":\"zc zc-qingchuhuancun\",\"url\":\"\",\"isShow\":false,\"cat\":1,\"name\":\"清除缓存\",\"id\":11,\"FeatureKey\":\"CleanCacheKey\"},{\"color\":\"#56ABE4\",\"icon\":\"zc zc-qishoudating\",\"url\":\"/paotui/index/index\",\"isShow\":false,\"cat\":2,\"name\":\"骑手大厅\",\"id\":109,\"FeatureKey\":\"FavProd\"}]}","PageQRCode":"","StoreId":0,"IsPersonalCenter":true,"IsRelease":true,"Id":6934,"TemplateWarehouseId":8}'/>
+ src="https://mall.gpxscs.cn/api/shop/static/diy/js/diy.js?v=1.0.2">