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..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 @@ -125,4 +125,6 @@ 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 = 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-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/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; + } 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-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-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 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 8c3217c7..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,8 +34,10 @@ 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; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; @@ -54,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 { @@ -319,9 +323,30 @@ public class ShopActivityCutpriceServiceImpl extends BaseServiceImpl + * 判断逻辑: + * 1、活动是否过期 + * 2、活动是否是下单用户的 + * 3、活动是否是砍到最低价 + * @return Pair 第一个值表示是否可以下单,第二个值是相关信息或错误信息 + */ + @Override + public Pair canDoOrderCutPriceActivity(Integer activity_id, Integer order_user_id) { + try { + // 参数校验 + if (activity_id == null || activity_id <= 0) { + return Pair.of(false, I18nUtil._("活动ID无效。")); + } + + if (order_user_id == null || order_user_id <= 0) { + return Pair.of(false, I18nUtil._("用户ID无效。")); + } + + // 1. 检查活动是否存在 + QueryWrapper params = new QueryWrapper<>(); + params.eq("activity_id", activity_id); + ShopStoreActivityBase storeActivityBase = shopStoreActivityBaseService.getOne(params); + if (storeActivityBase == null) { + return Pair.of(false, I18nUtil._("抱歉,系统未找到活动记录。")); + } + + // 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/activity/service/impl/ShopActivityGroupbookingServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/activity/service/impl/ShopActivityGroupbookingServiceImpl.java index bb547180..e910890b 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; @@ -474,7 +475,7 @@ 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 0 ? fee : 0; } diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/lakala/service/LakalaApiService.java b/mall-shop/src/main/java/com/suisung/mall/shop/lakala/service/LakalaApiService.java index ed0e94de..c363a7d5 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/lakala/service/LakalaApiService.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/lakala/service/LakalaApiService.java @@ -176,19 +176,7 @@ public interface LakalaApiService { * @return */ CommonResult getBankCardBin(String bankCardNo); - - - /** - * 拉卡拉订单分账,用户下单成功之后,进行分账 - * 说明:分账指令是异步处理模式,响应报文成功时,指令状态是”status”: “PROCESSING”,需要等待分账结果通知,或者主动发起查询,建议主动发起查询与分账指令动作之间间隔15秒以上。 - * 参考:https://o.lakala.com/#/home/document/detail?id=389 - * - * @param orderId 平台订单号,必填参数 - * @param storeId 商户门店编号,非必填参数 - * @return - */ - Pair 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..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,10 +322,10 @@ 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_id", defaultValue = "0") Integer 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/listener/OrderPayedListener.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/listener/OrderPayedListener.java index 9787b2a1..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 @@ -187,12 +187,13 @@ public class OrderPayedListener { continue; } - // 同城配送或普通快递,都发送 unipush 推送:您有一个新的订单,请查收! + // 同城配送或普通快递,都发送 unipush 推送:您有一个新的[同城][预约]订单,请及时拣货配送[请及时查看预约订单]。 String bookingTip = 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 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); 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/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/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 78991b42..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 @@ -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._("砍价活动未达标,请继续努力,再提交订单。")); + } } // 注:(重要)邮费检测和计算 @@ -6675,15 +6684,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)); + } + } }); @@ -9161,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; } @@ -9271,6 +9305,10 @@ 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..404b7922 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; } - - } \ No newline at end of file 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..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 @@ -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; @@ -118,27 +119,21 @@ 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(), 45); - if (!bookingBeginTime.after(fortyFiveMinutesLater)) { - return Pair.of(false, "[预约订单校验] 请预约50分后的订单"); + 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(true, "[预约订单校验] 成功"); + return Pair.of(true, "[预约单校验] 成功"); } /** @@ -974,7 +969,6 @@ public class ShopOrderInfoServiceImpl extends BaseServiceImpl sfResult = sfExpressApiService.innerCreateSfExpressOrder(orderId, 0L); if (sfResult == null) { @@ -997,8 +991,8 @@ 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<>(); @@ -1061,8 +1039,9 @@ 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"))) { + 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())); + } else { + // 对于其他日期,添加所有时间槽 + items.addAll(timeSlots); + } + + bookingArgDTO.setWorking_hours(String.format("%s-%s", startTimeStr, endTimeStr)); + } 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; } @@ -1135,13 +1148,13 @@ 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/order/service/impl/ShopOrderReturnServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/order/service/impl/ShopOrderReturnServiceImpl.java index a252eb91..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 @@ -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; } } 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 bf5c5cca..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 @@ -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/controller/admin/ShopStoreInfoController.java b/mall-shop/src/main/java/com/suisung/mall/shop/store/controller/admin/ShopStoreInfoController.java index 46ecc7a1..8ef5668c 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/store/controller/admin/ShopStoreInfoController.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/store/controller/admin/ShopStoreInfoController.java @@ -79,5 +79,18 @@ public class ShopStoreInfoController extends BaseControllerImpl { return CommonResult.success(shopStoreInfoService.remove(store_id)); } + + /** + * 获取店铺的内部运费 shopping_fee_inner (远程调用用途) + * + * @param store_id + * @return + */ + @ApiOperation(value = "获取店铺的内部运费 shopping_fee_inner", notes = "获取店铺的内部运费 shopping_fee_inner (远程调用用途)") + @RequestMapping(value = "/shopping-fee-inner", method = RequestMethod.POST) + public Integer storeShoppingFeeInner(@RequestParam(name = "store_id") Integer store_id) { + return shopStoreInfoService.getStoreShippingFeeInner(store_id); + } + } 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 1f9268cf..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 @@ -10,6 +10,7 @@ import com.suisung.mall.core.web.service.IBaseService; import com.suisung.mall.shop.product.pojo.vo.ProductVo; import java.math.BigDecimal; +import java.util.Date; import java.util.List; import java.util.Map; @@ -57,7 +58,16 @@ public interface ShopStoreActivityBaseService extends IBaseService getActivityAllItemIds(Map activity_row); - boolean verifyActivity(Map activity_row); + boolean isActivityTimeValid(Map activity_row); + + /** + * 验证活动时间是否有效 + * + * @param starTime 活动开始时间 + * @param endTime 活动结束时间 + * @return 时间是否有效 + */ + boolean isActivityTimeValid(Date starTime, Date endTime); Map listsMarketing(); @@ -169,4 +179,14 @@ public interface ShopStoreActivityBaseService extends IBaseService { */ 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/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 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<>(); @@ -4310,6 +4376,33 @@ public class ShopStoreActivityBaseServiceImpl extends BaseServiceImpl 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) { diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopStoreBaseServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopStoreBaseServiceImpl.java index fc376d19..a0c8a445 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopStoreBaseServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopStoreBaseServiceImpl.java @@ -3430,15 +3430,14 @@ public class ShopStoreBaseServiceImpl 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) { 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/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/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 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) { 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">