万邦拼多多根据ID取商品详情原数据 API 返回值说明

item_get_app_pro-根据ID取商品详情原数据 [查看演示] API测试工具 注册开通

pinduoduo.item_get_app_pro(Ver:3.0.1-7.0)

  • pinduoduo.item_get_app_pro-1.0.0-6.0.html
  • pinduoduo.item_get_app_pro-2.0.0-6.0.html
  • pinduoduo.item_get_app_pro-3.0.0-7.0.html
  • pinduoduo.item_get_app_pro-3.0.1-7.0.html
  • pinduoduo.item_get_app_pro-3.0.2-7.0.html
  • 公共参数

    请求地址: https://api-gw.onebound.cn/pinduoduo/item_get_app_pro

    名称 类型 必须 描述
    keyString调用key(必须以GET方式拼接在URL中)
    secretString调用密钥
    api_nameStringAPI接口名称(包括在请求地址中)[item_search,item_get,item_search_shop等]
    cacheString[yes,no]默认yes,将调用缓存的数据,速度比较快
    result_typeString[json,jsonu,xml,serialize,var_export]返回数据格式,默认为json,jsonu输出的内容中文可以直接阅读
    langString[cn,en,ru]翻译语言,默认cn简体中文
    versionStringAPI版本
    请求参数

    请求参数:num_iid=1620002566

    参数说明:num_iid:商品ID ;

    响应参数

    Version: Date:2024-01-08

    名称 类型 必须 示例值 描述
    item
    Mix 0 获得拼多多app商品详情原数据
    请求示例
    	
    -- 请求示例 url 默认请求参数已经URL编码处理
    curl -i "https://api-gw.onebound.cn/pinduoduo/item_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566"
    
    <?php
    
    // 请求示例 url 默认请求参数已经URL编码处理
    // 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
    $method = "GET";
    $url = "https://api-gw.onebound.cn/pinduoduo/item_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566";
    $curl = curl_init();
    curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
    curl_setopt($curl, CURLOPT_URL, $url);
    curl_setopt($curl, CURLOPT_SSL_VERIFYHOST,FALSE);
    curl_setopt($curl, CURLOPT_SSL_VERIFYPEER,FALSE);
    curl_setopt($curl, CURLOPT_FAILONERROR, false);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($curl, CURLOPT_HEADER, true);
    curl_setopt($curl, CURLOPT_ENCODING, "gzip");
    var_dump(curl_exec($curl));
    ?>
    <?php
    //定义缓存目录和引入文件
    define("DIR_RUNTIME","runtime/");
    define("DIR_ERROR","runtime/");
    define("SECACHE_SIZE","0");
    //SDK下载地址 https://open.onebound.cn/help/demo/sdk/onebound-api-sdk.zip
    include ("ObApiClient.php");
    
    $obapi = new otao\ObApiClient();
    $obapi->api_url = "http://api-gw.onebound.cn/";
    $obapi->api_urls = array("http://api-gw.onebound.cn/","http://api-1.onebound.cn/");//备用API服务器
    $obapi->api_urls_on = true;//当网络错误时,是否启用备用API服务器
    $obapi->api_key = "<您自己的apiKey>";
    $obapi->api_secret = "<您自己的apiSecret>";
    $obapi->api_version ="";
    $obapi->secache_path ="runtime/";
    $obapi->secache_time ="86400";
    $obapi->cache = true;
    
    $api_data = $obapi->exec(
                    array(
    	                "api_type" =>"pinduoduo",
    	                "api_name" =>"item_get_app_pro",
    	                "api_params"=>array (
      'num_iid' => '1620002566',
    )
                    )
                );
     var_dump($api_data);
    ?>
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.io.Reader;
    import java.net.URL;
    import java.nio.charset.Charset;
    import org.json.JSONException;
    import org.json.JSONObject;
    import java.io.PrintWriter;
    import java.net.URLConnection;
    
    public class Example {
    	private static String readAll(Reader rd) throws IOException {
    		StringBuilder sb = new StringBuilder();
    		int cp;
    		while ((cp = rd.read()) != -1) {
    			sb.append((char) cp);
    		}
    		return  sb.toString();
    	}
    	public static JSONObject postRequestFromUrl(String url, String body) throws IOException, JSONException {
    		URL realUrl = new URL(url);
    		URLConnection conn = realUrl.openConnection();
    		conn.setDoOutput(true);
    		conn.setDoInput(true);
    		PrintWriter out = new PrintWriter(conn.getOutputStream());
    		out.print(body);
    		out.flush();
    		InputStream instream = conn.getInputStream();
    		try {
    			BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
    			String jsonText = readAll(rd);
    			JSONObject json = new JSONObject(jsonText);
    			return json;
    		} finally {
    			instream.close();
    		}
    	}
    	public static JSONObject getRequestFromUrl(String url) throws IOException, JSONException {
    		URL realUrl = new URL(url);
    		URLConnection conn = realUrl.openConnection();
    		InputStream instream = conn.getInputStream();
    		try {
    			BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
    			String jsonText = readAll(rd);
    			JSONObject json = new JSONObject(jsonText);
    			return json;
    		} finally {
    			instream.close();
    		}
    	}
    	public static void main(String[] args) throws IOException, JSONException {
    		// 请求示例 url 默认请求参数已经URL编码处理
    		String url = "https://api-gw.onebound.cn/pinduoduo/item_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566";
    		JSONObject json = getRequestFromUrl(url);
    		System.out.println(json.toString());
    	}
    
    }
    //using System.Net.Security;
    //using System.Security.Cryptography.X509Certificates;
    private const String method = "GET";
    static void Main(string[] args)
    {
    	String bodys = "";
    	// 请求示例 url 默认请求参数已经做URL编码
    	String url = "https://api-gw.onebound.cn/pinduoduo/item_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566";
    	HttpWebRequest httpRequest = null;
    	HttpWebResponse httpResponse = null; 
    	if (url.Contains("https://"))
    	{
    		ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
    		httpRequest = (HttpWebRequest)WebRequest.CreateDefault(new Uri(url));
    	}
    	else
    	{
    		httpRequest = (HttpWebRequest)WebRequest.Create(url);
    	}
    	httpRequest.Method = method;
    	if (0 < bodys.Length)
    	{
    		byte[] data = Encoding.UTF8.GetBytes(bodys);
    		using (Stream stream = httpRequest.GetRequestStream())
    		{
    		stream.Write(data, 0, data.Length);
    		}
    	}
    	try
    	{
    		httpResponse = (HttpWebResponse)httpRequest.GetResponse();
    	}
    	catch (WebException ex)
    	{
    		httpResponse = (HttpWebResponse)ex.Response;
    	}
    	Console.WriteLine(httpResponse.StatusCode);
    	Console.WriteLine(httpResponse.Method);
    	Console.WriteLine(httpResponse.Headers);
    	Stream st = httpResponse.GetResponseStream();
    	StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8"));
    	Console.WriteLine(reader.ReadToEnd());
    	Console.WriteLine("\n");
    }
    public static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
    {
    	return true;
    }
    # coding:utf-8
    """
    Compatible for python2.x and python3.x
    requirement: pip install requests
    """
    from __future__ import print_function
    import requests
    # 请求示例 url 默认请求参数已经做URL编码
    url = "https://api-gw.onebound.cn/pinduoduo/item_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566"
    headers = {
        "Accept-Encoding": "gzip",
        "Connection": "close"
    }
    if __name__ == "__main__":
        r = requests.get(url, headers=headers)
        json_obj = r.json()
        print(json_obj)
    url := fmt.Sprintf("https://api-gw.onebound.cn/pinduoduo/item_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566", params)
    req, err := http.NewRequest("GET", url, nil)
    if err != nil {
        panic(err)
    }
    req.Header.Set("Authorization", apiKey)
    
    client := &http.Client{}
    resp, err := client.Do(req)
    if err != nil {
        panic(err)
    }
    defer resp.Body.Close()
    
    body, err := ioutil.ReadAll(resp.Body)
    if err != nil {
        panic(err)
    }
    
    fmt.Println(string(body))
    
    fetch('https://api-gw.onebound.cn/pinduoduo/item_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json'
      },
      body: JSON.stringify({"num_iid":"1620002566"})// request parameters here
    })
    .then(response => response.json())
    .then(data => console.log(data))
    .catch(error => console.error(error));
    
    <script src="js/obapi.js"></script>
    <script type="text/javascript">
    obAPI.config({
        debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
        api_url: "https://api-gw.onebound.cn", // 
        api_key: "<您自己的apiKey>", // 必填,
        api_secret: "<您自己的apiSecret>", //
        lang: "cn", // 
        timestamp: "", // 必填,生成签名的时间戳
        nonceStr: "", // 必填,生成签名的随机串
        signature: "",// 必填,签名
        jsApiList: [] // 必填,需要使用的JS接口列表
    });
    </script>
    <div id="api_data_box"></div>
    <script type="text/javascript">
    obAPI.exec(
         {
         "api_type":"pinduoduo",
         "api_name" : "item_get_app_pro",
         "api_params": {"num_iid":"1620002566"}//num_iid=1620002566,#具体参数请参考文档说明
         },
         function(e){
            document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
         }
    );
    </script>
    require "net/http"
    require "uri"
    url = URI("https://api-gw.onebound.cn/pinduoduo/item_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566")
    http = Net::HTTP.new(url.host, url.port)
    http.use_ssl = true
    request = Net::HTTP::Get.new(url)
    response = http.request(request)
    puts response.read_body 
    
    import Foundation
     
    let url = URL(string: "https://api-gw.onebound.cn/pinduoduo/item_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566")!
    let task = URLSession.shared.dataTask(with: url) { data, response, error in
        guard let data = data else {
            print("Error: No data was returned")
            return
        }
         
        if let data = String(data: data, encoding: .utf8) {
            print(data)
        }
    }
    task.resume()
    
    NSURL *myUrl = [NSURL URLWithString:@"https://api-gw.onebound.cn/pinduoduo/item_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566"];
    
    NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:myUrl cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:60.0];
    
    [request setHTTPMethod:@"GET"];
    NSError *error;
    NSURLResponse *response;
    
    NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
    
    NSString *result = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
    NSLog(@"%@",result);
    
    #include<stdio.h>
    #include <stdlib.h>
    #include<string.h>
    #include<curl/curl.h>
    
    int main(){
      CURL *curl;  
      CURLcode res;   
      struct curl_slist *headers=NULL; 
    
      char url[] = "https://api-gw.onebound.cn/pinduoduo/item_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566";
      curl_global_init(CURL_GLOBAL_ALL); 
      curl = curl_easy_init(); 
    
      if(curl) {
        curl_easy_setopt(curl, CURLOPT_URL,url);
        headers = curl_slist_append(headers, "Content-Type: application/json"); 
    
        curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); 
        res = curl_easy_perform(curl);
    
        if(res != CURLE_OK){
          printf("curl_easy_perform(): %s\n",curl_easy_strerror(res));                     
        }
        curl_easy_cleanup(curl);          
      }
      curl_global_cleanup();
      return 0;
    }
    
    #include<iostream>
    #include<string>
    #include<curl/curl.h>
    
    using namespace std;
    
    static size_t Data(void *ptr, size_t size, size_t nmemb, string *stream)
    {
        std::size_t realSize = size *nmemb;
        auto *realPtr = reinterpret_cast<char *>(ptr);
    
        for (std::size_t i=0;i<realSize;++i) {
            *(stream) += *(realPtr + i);
        }
    
        return realSize;
    }
    
    int main(){
    
         CURL *curl;
         CURLcode result;
         string readBuffer;
         curl = curl_easy_init();
    
         if(curl) {
    
             curl_easy_setopt(curl, CURLOPT_URL, "https://api-gw.onebound.cn/pinduoduo/item_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566");
             curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
             curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, Data);
             curl_easy_setopt(curl, CURLOPT_WRITEDATA, &readBuffer);
    
             result = curl_easy_perform(curl);
    
             if(result == CURLE_OK) {
                 cout<<readBuffer<<endl;
             }else{
                 cerr<<"curl_easy error:"<<curl_easy_strerror(result)<<endl;
             }
    
             curl_easy_cleanup(curl);
         }
         return 0;
    }
    
    const https = require("https");
    
    https.get("https://api-gw.onebound.cn/pinduoduo/item_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566", (resp) => {
      let data = "";
    
      resp.on("data", (chunk) => {
        data += chunk;
      });
    
      resp.on("end", () => {
        console.log(data);
      });
    }).on("error", (err) => {
      console.log("Error: " + err.message);
    });
    
    import java.net.HttpURLConnection
    import java.net.URL
    
    fun main() {
        val url = URL("https://api-gw.onebound.cn/pinduoduo/item_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566")
        val con = url.openConnection() as HttpURLConnection
        con.requestMethod = "GET"
    
        val responseCode = con.responseCode
        if (responseCode == HttpURLConnection.HTTP_OK) { // success
            val inputLine = con.inputStream.bufferedReader().use { it.readText() }
            println(inputLine)
        } else {
            println("GET request failed")
        }
    }
    
    use std::io::{self, Read};
    use reqwest;
    
    fn main() -> io::Result<()> {
    
        let mut resp = reqwest::get("https://api-gw.onebound.cn/pinduoduo/item_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566")?;
        let mut content = String::new();
        resp.read_to_string(&mut content)?;
    
        println!("{}", content);
    
        Ok(())
    }
    
    
    library(httr)
    r <- GET("https://api-gw.onebound.cn/pinduoduo/item_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566")
    content(r)
    url = "https://api-gw.onebound.cn/pinduoduo/item_get_app_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=1620002566";
    response = webread(url);
    disp(response);
    
    响应示例
    {
    "item": {
    		"goods": {
    			"serverTime": 1704683791,
    			"serverTimeTen": 17046837910,
    			"catID": 7319,
    			"goodsID": 559707595804,
    			"brandId": "",
    			"goodsName": "HN潮牌-冬季新款加厚两面穿棉服外套男宽松百搭情侣休闲棉衣上衣",
    			"shareDesc": "HN潮牌-冬季新款加厚两面穿棉服外套男宽松百搭情侣休闲棉衣上衣",
    			"goodsType": 1,
    			"localGroups": [],
    			"hasLocalGroup": 1,
    			"topGallery": [
    				{
    					"url": "https://img.pddpic.com/open-gw/2023-11-26/bb224df6-cf3d-4dbf-9681-d99717625d88.jpeg",
    					"id": 1107063149033,
    					"aspectRatio": 1
    				},
    				{
    					"url": "https://img.pddpic.com/open-gw/2023-11-26/e1ba6979-8235-4013-ad80-5c8ef3122ff3.jpeg",
    					"id": 1107063149034,
    					"aspectRatio": 1
    				},
    				{
    					"url": "https://img.pddpic.com/open-gw/2023-11-26/faef81ee-a762-4bfd-94d7-aeba671e2cb3.jpeg",
    					"id": 1107063149035,
    					"aspectRatio": 1
    				},
    				{
    					"url": "https://img.pddpic.com/open-gw/2023-11-26/16f34467-3e2f-49fc-af55-dd3c3b80acac.jpeg",
    					"id": 1107063149036,
    					"aspectRatio": 1
    				},
    				{
    					"url": "https://img.pddpic.com/open-gw/2023-11-26/f0e45495-30e9-45e6-a697-60b3855c8e09.jpeg",
    					"id": 1107063149037,
    					"aspectRatio": 1
    				}
    			],
    			"viewImageData": [
    				"https://img.pddpic.com/open-gw/2023-11-26/bb224df6-cf3d-4dbf-9681-d99717625d88.jpeg",
    				"https://img.pddpic.com/open-gw/2023-11-26/e1ba6979-8235-4013-ad80-5c8ef3122ff3.jpeg",
    				"https://img.pddpic.com/open-gw/2023-11-26/faef81ee-a762-4bfd-94d7-aeba671e2cb3.jpeg",
    				"https://img.pddpic.com/open-gw/2023-11-26/16f34467-3e2f-49fc-af55-dd3c3b80acac.jpeg",
    				"https://img.pddpic.com/open-gw/2023-11-26/f0e45495-30e9-45e6-a697-60b3855c8e09.jpeg"
    			],
    			"detailGallery": [
    				{
    					"url": "https://img.pddpic.com/mms-material-img/2023-12-11/f6d31b03-7e17-41f4-b8cc-4831130eb896.png",
    					"width": 750,
    					"height": 124
    				},
    				{
    					"url": "https://img.pddpic.com/open-gw/2023-11-26/2964fe16-a389-466b-a666-79933aed76a2.jpeg",
    					"width": 1170,
    					"height": 792
    				},
    				{
    					"url": "https://img.pddpic.com/open-gw/2023-11-26/fdb334bd-5da4-48b8-8379-b70097c050fc.jpeg",
    					"width": 800,
    					"height": 800
    				},
    				{
    					"url": "https://img.pddpic.com/open-gw/2023-11-26/aa8b3f50-1ee1-4baa-85db-a124386c3c18.jpeg",
    					"width": 800,
    					"height": 800
    				},
    				{
    					"url": "https://img.pddpic.com/open-gw/2023-11-26/1a4524d1-75f0-4c1c-9399-2f0541f23a06.jpeg",
    					"width": 800,
    					"height": 800
    				},
    				{
    					"url": "https://img.pddpic.com/open-gw/2023-11-26/5d6cdaa6-a948-4a74-a22e-014ef4eca41e.jpeg",
    					"width": 800,
    					"height": 800
    				},
    				{
    					"url": "https://img.pddpic.com/open-gw/2023-11-26/b90e73e6-25f5-46bd-920a-56c7a5003c65.jpeg",
    					"width": 800,
    					"height": 800
    				},
    				{
    					"url": "https://img.pddpic.com/open-gw/2023-11-26/23304a3e-6d03-4de0-9153-66c056e7b3bf.jpeg",
    					"width": 800,
    					"height": 800
    				},
    				{
    					"url": "https://img.pddpic.com/open-gw/2023-11-26/f2eae720-6d87-4744-93e5-54c433497133.jpeg",
    					"width": 800,
    					"height": 800
    				},
    				{
    					"url": "https://img.pddpic.com/open-gw/2023-11-26/da9d01d4-60ce-469e-9e55-a52bef22eb03.jpeg",
    					"width": 800,
    					"height": 800
    				},
    				{
    					"url": "https://img.pddpic.com/open-gw/2023-11-26/ab508209-9655-4c27-aad8-0cde52ac7fb3.jpeg",
    					"width": 800,
    					"height": 800
    				},
    				{
    					"url": "https://img.pddpic.com/open-gw/2023-11-26/7988edc9-167a-4bee-beb5-4a341aa30e7f.jpeg",
    					"width": 800,
    					"height": 800
    				}
    			],
    			"videoGallery": [
    				{
    					"url": "https://video5.pddpic.com/i1/2023-12-11/b1388611c3b490337137edb199397100.mp4",
    					"width": 720,
    					"height": 960,
    					"videoUrl": "https://video5.pddpic.com/i1/2023-12-11/b1388611c3b490337137edb199397100.mp4"
    				}
    			],
    			"descVideoGallery": [],
    			"mallID": 202682397,
    			"groupTypes": [
    				{
    					"requireNum": "1",
    					"price": "0",
    					"groupID": 102925360892,
    					"startTime": 1451577600,
    					"endTime": 2082729600,
    					"orderLimit": 999999
    				},
    				{
    					"requireNum": "2",
    					"price": "0",
    					"groupID": 102925360893,
    					"startTime": 1451577600,
    					"endTime": 2082729600,
    					"orderLimit": 999999
    				}
    			],
    			"skus": [
    				{
    					"skuId": 1512861124060,
    					"goodsId": 559707595804,
    					"thumbUrl": "https://img.pddpic.com/open-gw/2023-11-26/28735b7e-b878-4a82-b8e9-f9969e9aa9d2.jpeg",
    					"initQuantity": 0,
    					"quantity": 820,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"hotSale": 1,
    					"defaultQuantity": 100,
    					"isOnsale": 1,
    					"spec": "22009337674,1479",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "黑+米白【重磅棉服款】",
    							"spec_key_id": 8640,
    							"spec_value_id": 22009337674
    						},
    						{
    							"spec_key": "尺码",
    							"spec_value": "M 95-125斤",
    							"spec_key_id": 1226,
    							"spec_value_id": 1479
    						}
    					],
    					"price": 0,
    					"normalPrice": "201.5",
    					"groupPrice": "149.72",
    					"oldGroupPrice": 18400,
    					"marketPrice": 0,
    					"weight": 0,
    					"previewPriority": 0,
    					"startTime": 0,
    					"endTime": 0,
    					"staticLimitQuantity": 999999,
    					"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}",
    					"normalSavePrice": "51.78",
    					"skuPrice": 14972,
    					"skuID": 1512861124060,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1512861124061,
    					"goodsId": 559707595804,
    					"thumbUrl": "https://img.pddpic.com/open-gw/2023-11-26/28735b7e-b878-4a82-b8e9-f9969e9aa9d2.jpeg",
    					"initQuantity": 0,
    					"quantity": 820,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 100,
    					"isOnsale": 1,
    					"spec": "22009337674,1227",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "黑+米白【重磅棉服款】",
    							"spec_key_id": 8640,
    							"spec_value_id": 22009337674
    						},
    						{
    							"spec_key": "尺码",
    							"spec_value": "L 120-140",
    							"spec_key_id": 1226,
    							"spec_value_id": 1227
    						}
    					],
    					"price": 0,
    					"normalPrice": "201.5",
    					"groupPrice": "149.72",
    					"oldGroupPrice": 18400,
    					"marketPrice": 0,
    					"weight": 0,
    					"previewPriority": 4,
    					"startTime": 0,
    					"endTime": 0,
    					"staticLimitQuantity": 999999,
    					"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}",
    					"normalSavePrice": "51.78",
    					"skuPrice": 14972,
    					"skuID": 1512861124061,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1512861124062,
    					"goodsId": 559707595804,
    					"thumbUrl": "https://img.pddpic.com/open-gw/2023-11-26/28735b7e-b878-4a82-b8e9-f9969e9aa9d2.jpeg",
    					"initQuantity": 0,
    					"quantity": 820,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 100,
    					"isOnsale": 1,
    					"spec": "22009337674,1228",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "黑+米白【重磅棉服款】",
    							"spec_key_id": 8640,
    							"spec_value_id": 22009337674
    						},
    						{
    							"spec_key": "尺码",
    							"spec_value": "XL 135-150",
    							"spec_key_id": 1226,
    							"spec_value_id": 1228
    						}
    					],
    					"price": 0,
    					"normalPrice": "201.5",
    					"groupPrice": "149.72",
    					"oldGroupPrice": 18400,
    					"marketPrice": 0,
    					"weight": 0,
    					"previewPriority": 8,
    					"startTime": 0,
    					"endTime": 0,
    					"staticLimitQuantity": 999999,
    					"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}",
    					"normalSavePrice": "51.78",
    					"skuPrice": 14972,
    					"skuID": 1512861124062,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1512861124063,
    					"goodsId": 559707595804,
    					"thumbUrl": "https://img.pddpic.com/open-gw/2023-11-26/28735b7e-b878-4a82-b8e9-f9969e9aa9d2.jpeg",
    					"initQuantity": 0,
    					"quantity": 820,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 100,
    					"isOnsale": 1,
    					"spec": "22009337674,3566",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "黑+米白【重磅棉服款】",
    							"spec_key_id": 8640,
    							"spec_value_id": 22009337674
    						},
    						{
    							"spec_key": "尺码",
    							"spec_value": "2XL 150-170",
    							"spec_key_id": 1226,
    							"spec_value_id": 3566
    						}
    					],
    					"price": 0,
    					"normalPrice": "201.5",
    					"groupPrice": "149.72",
    					"oldGroupPrice": 18400,
    					"marketPrice": 0,
    					"weight": 0,
    					"previewPriority": 12,
    					"startTime": 0,
    					"endTime": 0,
    					"staticLimitQuantity": 999999,
    					"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}",
    					"normalSavePrice": "51.78",
    					"skuPrice": 14972,
    					"skuID": 1512861124063,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1512861124064,
    					"goodsId": 559707595804,
    					"thumbUrl": "https://img.pddpic.com/open-gw/2023-11-26/28735b7e-b878-4a82-b8e9-f9969e9aa9d2.jpeg",
    					"initQuantity": 0,
    					"quantity": 820,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 100,
    					"isOnsale": 1,
    					"spec": "22009337674,3567",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "黑+米白【重磅棉服款】",
    							"spec_key_id": 8640,
    							"spec_value_id": 22009337674
    						},
    						{
    							"spec_key": "尺码",
    							"spec_value": "3XL 170-200",
    							"spec_key_id": 1226,
    							"spec_value_id": 3567
    						}
    					],
    					"price": 0,
    					"normalPrice": "201.5",
    					"groupPrice": "149.72",
    					"oldGroupPrice": 18400,
    					"marketPrice": 0,
    					"weight": 0,
    					"previewPriority": 16,
    					"startTime": 0,
    					"endTime": 0,
    					"staticLimitQuantity": 999999,
    					"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}",
    					"normalSavePrice": "51.78",
    					"skuPrice": 14972,
    					"skuID": 1512861124064,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1512861124065,
    					"goodsId": 559707595804,
    					"thumbUrl": "https://img.pddpic.com/open-gw/2023-11-26/fb3d250e-91d4-4452-8c53-b0ed83d3c414.jpeg",
    					"initQuantity": 0,
    					"quantity": 820,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 100,
    					"isOnsale": 1,
    					"spec": "22009327950,1479",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "红+米白【重磅棉服款】",
    							"spec_key_id": 8640,
    							"spec_value_id": 22009327950
    						},
    						{
    							"spec_key": "尺码",
    							"spec_value": "M 95-125斤",
    							"spec_key_id": 1226,
    							"spec_value_id": 1479
    						}
    					],
    					"price": 0,
    					"normalPrice": "201.5",
    					"groupPrice": "149.72",
    					"oldGroupPrice": 18400,
    					"marketPrice": 0,
    					"weight": 0,
    					"previewPriority": 1,
    					"startTime": 0,
    					"endTime": 0,
    					"staticLimitQuantity": 999999,
    					"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}",
    					"normalSavePrice": "51.78",
    					"skuPrice": 14972,
    					"skuID": 1512861124065,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1512861124066,
    					"goodsId": 559707595804,
    					"thumbUrl": "https://img.pddpic.com/open-gw/2023-11-26/fb3d250e-91d4-4452-8c53-b0ed83d3c414.jpeg",
    					"initQuantity": 0,
    					"quantity": 820,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 100,
    					"isOnsale": 1,
    					"spec": "22009327950,1227",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "红+米白【重磅棉服款】",
    							"spec_key_id": 8640,
    							"spec_value_id": 22009327950
    						},
    						{
    							"spec_key": "尺码",
    							"spec_value": "L 120-140",
    							"spec_key_id": 1226,
    							"spec_value_id": 1227
    						}
    					],
    					"price": 0,
    					"normalPrice": "201.5",
    					"groupPrice": "149.72",
    					"oldGroupPrice": 18400,
    					"marketPrice": 0,
    					"weight": 0,
    					"previewPriority": 5,
    					"startTime": 0,
    					"endTime": 0,
    					"staticLimitQuantity": 999999,
    					"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}",
    					"normalSavePrice": "51.78",
    					"skuPrice": 14972,
    					"skuID": 1512861124066,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1512861124067,
    					"goodsId": 559707595804,
    					"thumbUrl": "https://img.pddpic.com/open-gw/2023-11-26/fb3d250e-91d4-4452-8c53-b0ed83d3c414.jpeg",
    					"initQuantity": 0,
    					"quantity": 820,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 100,
    					"isOnsale": 1,
    					"spec": "22009327950,1228",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "红+米白【重磅棉服款】",
    							"spec_key_id": 8640,
    							"spec_value_id": 22009327950
    						},
    						{
    							"spec_key": "尺码",
    							"spec_value": "XL 135-150",
    							"spec_key_id": 1226,
    							"spec_value_id": 1228
    						}
    					],
    					"price": 0,
    					"normalPrice": "201.5",
    					"groupPrice": "149.72",
    					"oldGroupPrice": 18400,
    					"marketPrice": 0,
    					"weight": 0,
    					"previewPriority": 9,
    					"startTime": 0,
    					"endTime": 0,
    					"staticLimitQuantity": 999999,
    					"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}",
    					"normalSavePrice": "51.78",
    					"skuPrice": 14972,
    					"skuID": 1512861124067,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1512861124068,
    					"goodsId": 559707595804,
    					"thumbUrl": "https://img.pddpic.com/open-gw/2023-11-26/fb3d250e-91d4-4452-8c53-b0ed83d3c414.jpeg",
    					"initQuantity": 0,
    					"quantity": 820,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"hotSale": 1,
    					"defaultQuantity": 100,
    					"isOnsale": 1,
    					"spec": "22009327950,3566",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "红+米白【重磅棉服款】",
    							"spec_key_id": 8640,
    							"spec_value_id": 22009327950
    						},
    						{
    							"spec_key": "尺码",
    							"spec_value": "2XL 150-170",
    							"spec_key_id": 1226,
    							"spec_value_id": 3566
    						}
    					],
    					"price": 0,
    					"normalPrice": "201.5",
    					"groupPrice": "149.72",
    					"oldGroupPrice": 18400,
    					"marketPrice": 0,
    					"weight": 0,
    					"previewPriority": 13,
    					"startTime": 0,
    					"endTime": 0,
    					"staticLimitQuantity": 999999,
    					"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}",
    					"normalSavePrice": "51.78",
    					"skuPrice": 14972,
    					"skuID": 1512861124068,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1512861124069,
    					"goodsId": 559707595804,
    					"thumbUrl": "https://img.pddpic.com/open-gw/2023-11-26/fb3d250e-91d4-4452-8c53-b0ed83d3c414.jpeg",
    					"initQuantity": 0,
    					"quantity": 820,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 100,
    					"isOnsale": 1,
    					"spec": "22009327950,3567",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "红+米白【重磅棉服款】",
    							"spec_key_id": 8640,
    							"spec_value_id": 22009327950
    						},
    						{
    							"spec_key": "尺码",
    							"spec_value": "3XL 170-200",
    							"spec_key_id": 1226,
    							"spec_value_id": 3567
    						}
    					],
    					"price": 0,
    					"normalPrice": "218.04",
    					"groupPrice": "149.72",
    					"oldGroupPrice": 17600,
    					"marketPrice": 0,
    					"weight": 0,
    					"previewPriority": 17,
    					"startTime": 0,
    					"endTime": 0,
    					"staticLimitQuantity": 999999,
    					"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}",
    					"normalSavePrice": "68.32",
    					"skuPrice": 14972,
    					"skuID": 1512861124069,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1512861124070,
    					"goodsId": 559707595804,
    					"thumbUrl": "https://img.pddpic.com/open-gw/2023-11-26/c6ef2314-3faf-4f6f-86da-6be8b8f74ef9.jpeg",
    					"initQuantity": 0,
    					"quantity": 820,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 100,
    					"isOnsale": 1,
    					"spec": "22009349071,1479",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "黑+米白【夹克款】",
    							"spec_key_id": 8640,
    							"spec_value_id": 22009349071
    						},
    						{
    							"spec_key": "尺码",
    							"spec_value": "M 95-125斤",
    							"spec_key_id": 1226,
    							"spec_value_id": 1479
    						}
    					],
    					"price": 0,
    					"normalPrice": "147.24",
    					"groupPrice": "121.52",
    					"oldGroupPrice": 14300,
    					"marketPrice": 0,
    					"weight": 0,
    					"previewPriority": 2,
    					"startTime": 0,
    					"endTime": 0,
    					"staticLimitQuantity": 999999,
    					"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}",
    					"normalSavePrice": "25.72",
    					"skuPrice": 12152,
    					"skuID": 1512861124070,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1512861124071,
    					"goodsId": 559707595804,
    					"thumbUrl": "https://img.pddpic.com/open-gw/2023-11-26/c6ef2314-3faf-4f6f-86da-6be8b8f74ef9.jpeg",
    					"initQuantity": 0,
    					"quantity": 820,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 100,
    					"isOnsale": 1,
    					"spec": "22009349071,1227",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "黑+米白【夹克款】",
    							"spec_key_id": 8640,
    							"spec_value_id": 22009349071
    						},
    						{
    							"spec_key": "尺码",
    							"spec_value": "L 120-140",
    							"spec_key_id": 1226,
    							"spec_value_id": 1227
    						}
    					],
    					"price": 0,
    					"normalPrice": "147.24",
    					"groupPrice": "121.52",
    					"oldGroupPrice": 14300,
    					"marketPrice": 0,
    					"weight": 0,
    					"previewPriority": 6,
    					"startTime": 0,
    					"endTime": 0,
    					"staticLimitQuantity": 999999,
    					"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}",
    					"normalSavePrice": "25.72",
    					"skuPrice": 12152,
    					"skuID": 1512861124071,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1512861124072,
    					"goodsId": 559707595804,
    					"thumbUrl": "https://img.pddpic.com/open-gw/2023-11-26/c6ef2314-3faf-4f6f-86da-6be8b8f74ef9.jpeg",
    					"initQuantity": 0,
    					"quantity": 820,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 100,
    					"isOnsale": 1,
    					"spec": "22009349071,1228",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "黑+米白【夹克款】",
    							"spec_key_id": 8640,
    							"spec_value_id": 22009349071
    						},
    						{
    							"spec_key": "尺码",
    							"spec_value": "XL 135-150",
    							"spec_key_id": 1226,
    							"spec_value_id": 1228
    						}
    					],
    					"price": 0,
    					"normalPrice": "147.24",
    					"groupPrice": "121.52",
    					"oldGroupPrice": 14300,
    					"marketPrice": 0,
    					"weight": 0,
    					"previewPriority": 10,
    					"startTime": 0,
    					"endTime": 0,
    					"staticLimitQuantity": 999999,
    					"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}",
    					"normalSavePrice": "25.72",
    					"skuPrice": 12152,
    					"skuID": 1512861124072,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1512861124073,
    					"goodsId": 559707595804,
    					"thumbUrl": "https://img.pddpic.com/open-gw/2023-11-26/c6ef2314-3faf-4f6f-86da-6be8b8f74ef9.jpeg",
    					"initQuantity": 0,
    					"quantity": 820,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 100,
    					"isOnsale": 1,
    					"spec": "22009349071,3566",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "黑+米白【夹克款】",
    							"spec_key_id": 8640,
    							"spec_value_id": 22009349071
    						},
    						{
    							"spec_key": "尺码",
    							"spec_value": "2XL 150-170",
    							"spec_key_id": 1226,
    							"spec_value_id": 3566
    						}
    					],
    					"price": 0,
    					"normalPrice": "147.24",
    					"groupPrice": "121.52",
    					"oldGroupPrice": 14300,
    					"marketPrice": 0,
    					"weight": 0,
    					"previewPriority": 14,
    					"startTime": 0,
    					"endTime": 0,
    					"staticLimitQuantity": 999999,
    					"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}",
    					"normalSavePrice": "25.72",
    					"skuPrice": 12152,
    					"skuID": 1512861124073,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1512861124074,
    					"goodsId": 559707595804,
    					"thumbUrl": "https://img.pddpic.com/open-gw/2023-11-26/c6ef2314-3faf-4f6f-86da-6be8b8f74ef9.jpeg",
    					"initQuantity": 0,
    					"quantity": 820,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 100,
    					"isOnsale": 1,
    					"spec": "22009349071,3567",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "黑+米白【夹克款】",
    							"spec_key_id": 8640,
    							"spec_value_id": 22009349071
    						},
    						{
    							"spec_key": "尺码",
    							"spec_value": "3XL 170-200",
    							"spec_key_id": 1226,
    							"spec_value_id": 3567
    						}
    					],
    					"price": 0,
    					"normalPrice": "147.24",
    					"groupPrice": "121.52",
    					"oldGroupPrice": 14300,
    					"marketPrice": 0,
    					"weight": 0,
    					"previewPriority": 18,
    					"startTime": 0,
    					"endTime": 0,
    					"staticLimitQuantity": 999999,
    					"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}",
    					"normalSavePrice": "25.72",
    					"skuPrice": 12152,
    					"skuID": 1512861124074,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1512861124075,
    					"goodsId": 559707595804,
    					"thumbUrl": "https://img.pddpic.com/open-gw/2023-11-26/c6ef2314-3faf-4f6f-86da-6be8b8f74ef9.jpeg",
    					"initQuantity": 0,
    					"quantity": 820,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 100,
    					"isOnsale": 1,
    					"spec": "22009342497,1479",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "红+米白【夹克款】",
    							"spec_key_id": 8640,
    							"spec_value_id": 22009342497
    						},
    						{
    							"spec_key": "尺码",
    							"spec_value": "M 95-125斤",
    							"spec_key_id": 1226,
    							"spec_value_id": 1479
    						}
    					],
    					"price": 0,
    					"normalPrice": "147.24",
    					"groupPrice": "121.52",
    					"oldGroupPrice": 14300,
    					"marketPrice": 0,
    					"weight": 0,
    					"previewPriority": 3,
    					"startTime": 0,
    					"endTime": 0,
    					"staticLimitQuantity": 999999,
    					"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}",
    					"normalSavePrice": "25.72",
    					"skuPrice": 12152,
    					"skuID": 1512861124075,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1512861124076,
    					"goodsId": 559707595804,
    					"thumbUrl": "https://img.pddpic.com/open-gw/2023-11-26/c6ef2314-3faf-4f6f-86da-6be8b8f74ef9.jpeg",
    					"initQuantity": 0,
    					"quantity": 820,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 100,
    					"isOnsale": 1,
    					"spec": "22009342497,1227",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "红+米白【夹克款】",
    							"spec_key_id": 8640,
    							"spec_value_id": 22009342497
    						},
    						{
    							"spec_key": "尺码",
    							"spec_value": "L 120-140",
    							"spec_key_id": 1226,
    							"spec_value_id": 1227
    						}
    					],
    					"price": 0,
    					"normalPrice": "147.24",
    					"groupPrice": "121.52",
    					"oldGroupPrice": 14300,
    					"marketPrice": 0,
    					"weight": 0,
    					"previewPriority": 7,
    					"startTime": 0,
    					"endTime": 0,
    					"staticLimitQuantity": 999999,
    					"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}",
    					"normalSavePrice": "25.72",
    					"skuPrice": 12152,
    					"skuID": 1512861124076,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1512861124077,
    					"goodsId": 559707595804,
    					"thumbUrl": "https://img.pddpic.com/open-gw/2023-11-26/c6ef2314-3faf-4f6f-86da-6be8b8f74ef9.jpeg",
    					"initQuantity": 0,
    					"quantity": 820,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 100,
    					"isOnsale": 1,
    					"spec": "22009342497,1228",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "红+米白【夹克款】",
    							"spec_key_id": 8640,
    							"spec_value_id": 22009342497
    						},
    						{
    							"spec_key": "尺码",
    							"spec_value": "XL 135-150",
    							"spec_key_id": 1226,
    							"spec_value_id": 1228
    						}
    					],
    					"price": 0,
    					"normalPrice": "147.24",
    					"groupPrice": "121.52",
    					"oldGroupPrice": 14300,
    					"marketPrice": 0,
    					"weight": 0,
    					"previewPriority": 11,
    					"startTime": 0,
    					"endTime": 0,
    					"staticLimitQuantity": 999999,
    					"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}",
    					"normalSavePrice": "25.72",
    					"skuPrice": 12152,
    					"skuID": 1512861124077,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1512861124078,
    					"goodsId": 559707595804,
    					"thumbUrl": "https://img.pddpic.com/open-gw/2023-11-26/c6ef2314-3faf-4f6f-86da-6be8b8f74ef9.jpeg",
    					"initQuantity": 0,
    					"quantity": 820,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 100,
    					"isOnsale": 1,
    					"spec": "22009342497,3566",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "红+米白【夹克款】",
    							"spec_key_id": 8640,
    							"spec_value_id": 22009342497
    						},
    						{
    							"spec_key": "尺码",
    							"spec_value": "2XL 150-170",
    							"spec_key_id": 1226,
    							"spec_value_id": 3566
    						}
    					],
    					"price": 0,
    					"normalPrice": "147.24",
    					"groupPrice": "121.52",
    					"oldGroupPrice": 14300,
    					"marketPrice": 0,
    					"weight": 0,
    					"previewPriority": 15,
    					"startTime": 0,
    					"endTime": 0,
    					"staticLimitQuantity": 999999,
    					"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}",
    					"normalSavePrice": "25.72",
    					"skuPrice": 12152,
    					"skuID": 1512861124078,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1512861124079,
    					"goodsId": 559707595804,
    					"thumbUrl": "https://img.pddpic.com/open-gw/2023-11-26/c6ef2314-3faf-4f6f-86da-6be8b8f74ef9.jpeg",
    					"initQuantity": 0,
    					"quantity": 820,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 100,
    					"isOnsale": 1,
    					"spec": "22009342497,3567",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "红+米白【夹克款】",
    							"spec_key_id": 8640,
    							"spec_value_id": 22009342497
    						},
    						{
    							"spec_key": "尺码",
    							"spec_value": "3XL 170-200",
    							"spec_key_id": 1226,
    							"spec_value_id": 3567
    						}
    					],
    					"price": 0,
    					"normalPrice": "147.24",
    					"groupPrice": "121.52",
    					"oldGroupPrice": 14300,
    					"marketPrice": 0,
    					"weight": 0,
    					"previewPriority": 19,
    					"startTime": 0,
    					"endTime": 0,
    					"staticLimitQuantity": 999999,
    					"attribute": "{\"mg\":null,\"lampInstallInfo\":null,\"ticketRuleId\":null,\"tenBillionSpikeGlobalLowPrice\":null,\"vegetableRuleId\":null,\"skuPreSaleTime\":0,\"hotLiveGroup\":null,\"vegetableHasAllowance\":null,\"vegetableSupplierPrice\":null,\"vegetableStorePercent\":null,\"vegetableIsZeroGoods\":null,\"vegetableSkuGroup\":null,\"vegetableRegularLimitNumber\":null,\"vegetableArchived\":null,\"vegetableSkuOptions\":null}",
    					"normalSavePrice": "25.72",
    					"skuPrice": 12152,
    					"skuID": 1512861124079,
    					"skuExpansionPrice": "0"
    				}
    			],
    			"thumbUrl": "https://img.pddpic.com/gaudit-image/2023-11-26/d9b1a5f73d451127f5ddac2fbf395d72.jpeg",
    			"hdThumbUrl": "https://img.pddpic.com/gaudit-image/2023-11-26/99322b7de4b36e5bfcde91bb114d06a2.jpeg",
    			"eventType": 0,
    			"isApp": 0,
    			"isFreshmanApp": 0,
    			"sideSalesTip": "已拼2967件",
    			"catID1": 239,
    			"catID2": 7287,
    			"catID3": 7319,
    			"catID4": 0,
    			"spuID": 0,
    			"eventComing": false,
    			"isSpike": false,
    			"isTodaySpike": false,
    			"isTomorrowSpike": false,
    			"activity": {
    				"activityID": 3802606052,
    				"activityType": 43,
    				"startTime": 1702565099,
    				"endTime": 1765723499,
    				"detailID": 3802606052,
    				"playType": 0,
    				"subActivityType": 0,
    				"costType": 0
    			},
    			"isSpikeComing": false,
    			"overseaType": 0,
    			"gpv": null,
    			"quickRefund": false,
    			"rv": true,
    			"maxNormalPrice": "218.04",
    			"minNormalPrice": "147.24",
    			"maxGroupPrice": "149.72",
    			"minGroupPrice": "121.52",
    			"maxOnSaleGroupPrice": "149.72",
    			"minOnSaleGroupPrice": "121.52",
    			"maxOnSaleGroupPriceInCent": 14972,
    			"minOnSaleGroupPriceInCent": 12152,
    			"maxOnSaleNormalPrice": "218.04",
    			"minOnSaleNormalPrice": "147.24",
    			"unselectNormalSavePrice": "25.72",
    			"oldMinOnSaleGroupPriceInCent": 14300,
    			"skipGoodsIDs": [
    				"0"
    			],
    			"tag": null,
    			"icon": null,
    			"tagIcon": [],
    			"isSecondHand": 0,
    			"appClientOnly": 0,
    			"isColdGoods": 0,
    			"goodsProperty": [
    				{
    					"key": "发货地",
    					"values": [
    						"浙江省"
    					]
    				},
    				{
    					"key": "面料材质",
    					"values": [
    						"涤纶(聚酯纤维)"
    					],
    					"ref_pid": 346,
    					"reference_id": 0
    				},
    				{
    					"key": "填充物",
    					"values": [
    						"仿丝棉"
    					],
    					"ref_pid": 361,
    					"reference_id": 0
    				},
    				{
    					"key": "成分含量",
    					"values": [
    						"96%(含)—100%(不含)"
    					],
    					"ref_pid": 396,
    					"reference_id": 0
    				},
    				{
    					"key": "填充克数",
    					"values": [
    						"300g及以上"
    					],
    					"ref_pid": 397,
    					"reference_id": 0
    				},
    				{
    					"key": "版型",
    					"values": [
    						"宽松"
    					],
    					"ref_pid": 318,
    					"reference_id": 0
    				},
    				{
    					"key": "领型",
    					"values": [
    						"立领"
    					],
    					"ref_pid": 347,
    					"reference_id": 0
    				},
    				{
    					"key": "衣长",
    					"values": [
    						"常规款"
    					],
    					"ref_pid": 319,
    					"reference_id": 0
    				},
    				{
    					"key": "服装款式细节",
    					"values": [
    						"拼接"
    					],
    					"ref_pid": 348,
    					"reference_id": 0
    				},
    				{
    					"key": "风格",
    					"values": [
    						"青春潮流"
    					],
    					"ref_pid": 322,
    					"reference_id": 0
    				},
    				{
    					"key": "适用年龄",
    					"values": [
    						"青年(18-25周岁)"
    					],
    					"ref_pid": 382,
    					"reference_id": 0
    				},
    				{
    					"key": "上市时节",
    					"values": [
    						"2023年冬季"
    					],
    					"ref_pid": 1906,
    					"reference_id": 0
    				},
    				{
    					"key": "功能",
    					"values": [
    						"保暖"
    					],
    					"ref_pid": 351,
    					"reference_id": 0
    				},
    				{
    					"key": "厚薄",
    					"values": [
    						"加厚"
    					],
    					"ref_pid": 341,
    					"reference_id": 0
    				}
    			],
    			"skuProperty": [],
    			"propertyShowNum": 6,
    			"linePrice": "198.04",
    			"priceStyle": 2,
    			"priceSuffix": "起",
    			"quicklyExpire": [],
    			"userNoticeDynamic": {
    				"notice": "",
    				"notice_type": 0,
    				"priority": 1,
    				"type": 0
    			},
    			"goodsExpansionPrice": "0",
    			"beforeRemindSeconds": 300,
    			"newShareTitle": {
    				"price": "121.52元 ",
    				"suf": "HN潮牌-冬季新款加厚两面穿棉服外套男宽松百搭情侣休闲棉衣上衣 拼多多",
    				"not_null": true
    			},
    			"bottomBanner": null,
    			"isAppFlow": true,
    			"isPersonalFav": 0,
    			"groupNumFull": false,
    			"showHistoryGroup": 1,
    			"shareLink": "goods1.html?goods_id=559707595804&page_from=35&_oak_share_snapshot_num=12152&_oak_share_detail_id=3802606052&_oak_share_time=1704683791",
    			"promptExplain": "服饰类商品如出现已洗涤,或吊牌已摘,或显著穿戴痕迹等影响二次销售情形,且无质量问题的,不支持七天无理由退换。",
    			"isAbnormalStatus": false,
    			"statusExplain": "",
    			"checkQuantity": 1,
    			"destinationUrl": "order_checkout.html?_oc_rank_id=27413010201",
    			"hideMall": false,
    			"isMallRec": true,
    			"status": 1,
    			"isGoodsOnSale": true,
    			"isSkuOnSale": true,
    			"isOnSale": true,
    			"quantity": 820,
    			"propertyCardClick": 0,
    			"showRecTitle": 1,
    			"showRec": 1,
    			"options": [
    				54,
    				7,
    				9,
    				60,
    				13,
    				31
    			],
    			"eventTime": 1704683791,
    			"mallService": {
    				"service": [
    					{
    						"id": 3,
    						"type": "退货包运费",
    						"type_color": "#58595B",
    						"dialog_type": "退货包运费",
    						"dialog_type_color": "#151516",
    						"desc": "订单发货后90天内申请退货退款或换货,将按照物流首重费用补贴退货运费",
    						"top": 1,
    						"top_type": 1,
    						"navigation": 0,
    						"navigation_url": "",
    						"show_tip": "收货后如不满意,可以免费退货",
    						"detail_hidden": 0
    					},
    					{
    						"id": 1,
    						"type": "全场包邮",
    						"type_color": "#58595B",
    						"dialog_type": "全场包邮",
    						"dialog_type_color": "#151516",
    						"desc": "所有商品包邮",
    						"top": 0,
    						"top_type": 0,
    						"navigation": 0,
    						"navigation_url": "",
    						"detail_hidden": 0
    					},
    					{
    						"id": 2,
    						"type": "7天无理由退货",
    						"type_color": "#58595B",
    						"dialog_type": "7天无理由退货",
    						"dialog_type_color": "#151516",
    						"desc": "满足相应条件(吊牌无缺失、未洗涤)时,消费者可申请“7天无理由退货”,其中定制订单不支持“7天无理由退货”",
    						"top": 0,
    						"top_type": 0,
    						"navigation": 0,
    						"navigation_url": "",
    						"detail_hidden": 0
    					},
    					{
    						"id": 13,
    						"type": "48小时发货",
    						"type_color": "#58595B",
    						"dialog_type": "48小时发货",
    						"dialog_type_color": "#151516",
    						"desc": "订单支付成功后48小时内发货,若未在48小时内发货,消费者将会收到至少3元无门槛代金券",
    						"top": 0,
    						"top_type": 0,
    						"navigation": 0,
    						"navigation_url": "",
    						"detail_hidden": 0
    					}
    				],
    				"vipService": [],
    				"honorService": []
    			},
    			"skuOutShow": 1,
    			"skuOutShowTitle": "颜色款式",
    			"skuDirectOrder": false,
    			"vasTemplateId": [],
    			"skuNewPricePrefix": "券前",
    			"ui": {
    				"new_price_section": {
    					"is_normal": 1,
    					"type": "normal",
    					"price": "121.52",
    					"line_price": "¥198.04",
    					"price_rich": [
    						{
    							"txt": "121.52",
    							"font": 28,
    							"type": 1
    						}
    					],
    					"prefix": "",
    					"prefix_rich": [
    						{
    							"txt": "¥",
    							"font": 15,
    							"type": 1
    						}
    					],
    					"suffix": "起",
    					"color": "#E02E24",
    					"bg_color": "#FFFFFF",
    					"desc_labels": [
    						"已拼2967件"
    					],
    					"desc_color": "#58595B",
    					"imp_tracks": [
    						{
    							"extra": {
    								"single_price": "147.24",
    								"line_price": "198.04",
    								"sales_tip": "已拼2967件",
    								"type": 0,
    								"pindan_price": "121.52",
    								"desc_labels": "已拼2967件"
    							},
    							"page_el_sn": "5049756"
    						}
    					],
    					"is_elder": 0,
    					"use_new_desc_labels_rule": false
    				},
    				"new_bottom_section": {
    					"left_button": {
    						"title": [
    							{
    								"txt": "¥",
    								"font": 19,
    								"type": 1
    							},
    							{
    								"type": 2,
    								"space": 1
    							},
    							{
    								"txt": "147.24",
    								"font": 19,
    								"type": 1
    							}
    						],
    						"desc": "单独购买",
    						"click_action": "directBuy",
    						"text_color": "#FFFFFF",
    						"bg_color": "#F4ABA7",
    						"text_click_color": "#F9E0DF",
    						"bg_click_color": "#EB9894",
    						"imp_tracks": [
    							{
    								"extra": {
    									"type": 0
    								},
    								"page_el_sn": "99809"
    							}
    						],
    						"click_track": {
    							"extra": {
    								"type": 0
    							},
    							"page_el_sn": "99809"
    						}
    					},
    					"right_button": {
    						"title": [
    							{
    								"txt": "¥",
    								"font": 19,
    								"type": 1
    							},
    							{
    								"type": 2,
    								"space": 1
    							},
    							{
    								"txt": "121.52",
    								"font": 19,
    								"type": 1
    							}
    						],
    						"desc": "发起拼单",
    						"click_action": "groupBuy",
    						"text_color": "#FFFFFF",
    						"bg_color": "#E02E24",
    						"text_click_color": "#EDBBB8",
    						"bg_click_color": "#C51E14",
    						"use_backup": 0,
    						"imp_tracks": [
    							{
    								"extra": {
    									"type": 0
    								},
    								"page_el_sn": "99811"
    							}
    						],
    						"click_track": {
    							"extra": {
    								"type": 0
    							},
    							"page_el_sn": "99811"
    						}
    					}
    				},
    				"title_section": {
    					"pay_part": {
    						"type": 5,
    						"icon": {
    							"id": -1,
    							"url": "",
    							"click_notice": "订单发货后90天内申请退货退款或换货,将按照物流首重费用补贴退货运费"
    						},
    						"text": {
    							"txt": "不满意包退货运费,退换无忧",
    							"color": "#25B513",
    							"prefix_txt": "退货包运费",
    							"click_color": "#1F9347",
    							"background_color": "#EEF9ED",
    							"background_click_color": "#DCF3D9"
    						},
    						"style": 2
    					},
    					"channel_icon_bef": []
    				},
    				"live_section": {
    					"on_live": 0,
    					"float_from_type": 0
    				},
    				"bubble_section": {
    					"show_bubble": 1
    				},
    				"sku_section": {
    					"view_style": 1,
    					"view_style_v2": 1,
    					"yellow_label_list": [],
    					"consult_promotion_price": 1,
    					"sku_price_show": 1,
    					"sku_pane_title_suffix_tag": {
    						"text": "退货包运费",
    						"text_color": "#FFFFFF",
    						"text_click_color": "#BCDEC8",
    						"bg_color": "#25B513",
    						"bg_click_color": "#1F9347",
    						"border_color": "#25B513",
    						"border_click_color": "#1F9347",
    						"click_notice": "订单发货后90天内申请退货退款或换货,将按照物流首重费用补贴退货运费"
    					},
    					"sku_spec_display": {
    						"spec_key_name": "颜色分类"
    					},
    					"imp_tracks": []
    				},
    				"bottom_buying_section": {
    					"type": "normal"
    				},
    				"more_pop_navi_button": {
    					"navi_list": [
    						{
    							"icon_id": "59210",
    							"text": "常见问题",
    							"url": "questions.html"
    						},
    						{
    							"icon_id": "59213",
    							"text": "意见反馈",
    							"url": "personal_feedback.html"
    						},
    						{
    							"icon_id": "59212",
    							"text": "举报商品",
    							"url": "complaints_report.html?goods_id=559707595804"
    						}
    					]
    				},
    				"rank_section": {
    					"id": 27413010201,
    					"rank": 6,
    					"icon": "https://funimg.pddpic.com/transaction_process/c1d6ab05fffb4726d8dd09df1c884dfc78acc8cd.png",
    					"rank_desc": "「男拼接棉衣畅销榜」第6名",
    					"rank_jump_url": "https://mobile.yangkeduo.com/sjs_cat_rank_list.html?list_id=27413010201&list_sn=YWGk0MnGuWSzMINfWJs5YOIO&__list_version=2&_pdd_fs=1&_pdd_tc=ffffff&_pdd_sbs=1&scene_id=goods_detail",
    					"rank_desc_v2": [
    						{
    							"txt": "男拼接棉衣畅销榜第",
    							"color": "#58595B"
    						},
    						{
    							"txt": "6",
    							"color": "#E02E24"
    						},
    						{
    							"txt": "名",
    							"color": "#58595B"
    						}
    					],
    					"rank_dialog": {
    						"dialog_title": "入榜详情",
    						"title": "「男拼接棉衣畅销榜」第6名",
    						"desc": "榜单数据更新于2024-01-08 11:00",
    						"rule": "入榜规则",
    						"rule_detail": [
    							"根据近7日销量、好评、上升趋势等数据综合进行排名",
    							"每小时更新排名,保证入选商品数据及时更新"
    						]
    					},
    					"rank_cat": 1
    				},
    				"price_explain_section": {
    					"pulldown_title": "点击查看商品价格说明"
    				},
    				"photo_bottom_section": {
    					"line_price": "¥198.04",
    					"price_rich": [
    						{
    							"txt": "121.52",
    							"font": 24,
    							"type": 1
    						}
    					],
    					"prefix_rich": [
    						{
    							"txt": "¥",
    							"font": 15,
    							"type": 1
    						}
    					],
    					"suffix": "起",
    					"color": "#FFFFFF",
    					"desc_color": "#9C9C9C",
    					"promotion_txt": "查看优惠",
    					"open_group_txt": "去拼单",
    					"use_new_desc_labels_rule": false
    				},
    				"carousel_section": {
    					"sell_point_tag_list": [
    						"高品质涤纶材质",
    						"保暖防风设计",
    						"宽松百搭款式",
    						"情侣休闲必备"
    					]
    				}
    			},
    			"neighborGroup": {
    				"neighbor_status": 1,
    				"neighbor_data": {
    					"simple_combine_group": {
    						"group_order_id": "2459490487171880375",
    						"group_type": 0,
    						"is_has_join_group": true,
    						"prefix_text": "参与",
    						"suffix_text": "的拼单,立即拼成",
    						"member_info_list": [
    							{
    								"avatar": "https://avatar3.pddpic.com/a/Q09RZUU2TzhwRUNIRnhiY1RIZTAzYjQrS2lLaitFUXR3dz09djA0-1680860094?imageMogr2/thumbnail/100x"
    							}
    						],
    						"track_list": [
    							{
    								"page_el_sn": "7858429"
    							}
    						],
    						"click_track": {
    							"page_el_sn": "7858429"
    						}
    					},
    					"combine_group": {
    						"group_total": 1,
    						"combine_group_list": [
    							{
    								"group_order_id": "2459490487171880375",
    								"member_info_list": [
    									{
    										"nickname": "温文尔雅😘 😘 😘 😘",
    										"avatar": "https://avatar3.pddpic.com/a/Q09RZUU2TzhwRUNIRnhiY1RIZTAzYjQrS2lLaitFUXR3dz09djA0-1680860094?imageMogr2/thumbnail/100x",
    										"is_friend": false
    									}
    								],
    								"is_self_group": false,
    								"expire_time": "1704769797",
    								"button_desc": "去拼单",
    								"gender": 1,
    								"group_type": 0,
    								"is_shared": false,
    								"tag_list": [],
    								"track_list": [
    									{
    										"page_el_sn": "4264980",
    										"extra": {
    											"group_order_id": "2459490487171880375",
    											"type": 0,
    											"button_dsc": "去拼单"
    										}
    									}
    								],
    								"click_track": {
    									"page_el_sn": "4264980",
    									"extra": {
    										"type": 0
    									}
    								},
    								"group_desc": [
    									{
    										"txt": "还差",
    										"color": "#151516",
    										"font": 13,
    										"type": 1
    									},
    									{
    										"txt": "1人",
    										"color": "#E02E24",
    										"font": 13
    									},
    									{
    										"txt": "拼成",
    										"color": "#151516",
    										"font": 13
    									}
    								]
    							}
    						],
    						"recommend_group": {
    							"group_order_id": "2459490487171880375",
    							"member_info_list": [
    								{
    									"nickname": "温文尔雅😘 😘 😘 😘",
    									"avatar": "https://avatar3.pddpic.com/a/Q09RZUU2TzhwRUNIRnhiY1RIZTAzYjQrS2lLaitFUXR3dz09djA0-1680860094?imageMogr2/thumbnail/100x",
    									"is_friend": false
    								}
    							],
    							"is_self_group": false,
    							"expire_time": "1704769797",
    							"button_desc": "去拼单",
    							"gender": 1,
    							"group_type": 0,
    							"is_shared": false,
    							"tag_list": [],
    							"track_list": [
    								{
    									"page_el_sn": "4264980",
    									"extra": {
    										"group_order_id": "2459490487171880375",
    										"type": 0,
    										"button_dsc": "去拼单"
    									}
    								}
    							],
    							"click_track": {
    								"page_el_sn": "4264980",
    								"extra": {
    									"type": 0
    								}
    							},
    							"group_desc": [
    								{
    									"txt": "还差",
    									"color": "#151516",
    									"font": 13,
    									"type": 1
    								},
    								{
    									"txt": "1人",
    									"color": "#E02E24",
    									"font": 13
    								},
    								{
    									"txt": "拼成",
    									"color": "#151516",
    									"font": 13
    								}
    							]
    						},
    						"combine_group_desc": "1人在拼,参与可立即拼成",
    						"combine_group_popup_title": "可参与的拼单",
    						"combine_group_popup_footer": "",
    						"combine_group_button_desc": "去拼单",
    						"pulldown_group": {
    							"group_info": {
    								"group_order_id": "2459490487171880375",
    								"member_info_list": [
    									{
    										"nickname": "温文尔雅😘 😘 😘 😘",
    										"avatar": "https://avatar3.pddpic.com/a/Q09RZUU2TzhwRUNIRnhiY1RIZTAzYjQrS2lLaitFUXR3dz09djA0-1680860094?imageMogr2/thumbnail/100x",
    										"is_friend": false
    									}
    								],
    								"is_self_group": false,
    								"expire_time": "1704769797",
    								"button_desc": "去拼单",
    								"gender": 1,
    								"group_type": 0,
    								"is_shared": false
    							},
    							"group_title_info": {
    								"group_title_desc": "还差1人,参与可立即拼成",
    								"need_join_countdown": true
    							}
    						},
    						"combine_group_list_type": 0,
    						"avatar_list": [
    							"https://avatar3.pddpic.com/a/Q09RZUU2TzhwRUNIRnhiY1RIZTAzYjQrS2lLaitFUXR3dz09djA0-1680860094?imageMogr2/thumbnail/100x"
    						],
    						"extra_avatar_list": [
    							"https://avatar3.pddpic.com/a/Q09RZUU2TzhwRUNIRnhiY1RIZTAzYjQrS2lLaitFUXR3dz09djA0-1680860094?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q0VIUG1valNWbEFjSHIyUGR1UFM2bjlabXBPcmJaY29wZz09djA0-1638630960?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q0lvRUZzNVpBT044VUliZXp4NVdzYUN5ZFVCd0QvZkh0UT09djA0-1688273692?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q0xGb2xkYm5HZXJrb3pHNkVFRTZnSXd4N2Nyc01IVXZLQT09djA0-1613012825?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q010QWFDaVVYRllrM0pxd3dRbmFEZkorODFZYXVqVHdiUT09djA0-1689751996?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q0dxcDRUWnVWYTNsTGswODRGaE1HRGp1Wm1Vc21adlJHdz09djA0-1613911542?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q01IUC9EVGRWWCtTMjZqUTZuUEhvb1Q3WVZ0MFpObEdvdz09djA0-1642600554?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q0swQy9iRnc4bWVNZnNVZzJOSXd6MVJZaG5xNHJKU041Zz09djA0-1699957310?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q01adjdwOWMyWXpXQ1l6SE50ZythRmxaR2Y2b0hEbGRDUT09djA0-1596114214?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q0hhWnRhK2E4VEtXajFVMlNvTHg1VGx5T2syNFJ3Uk44QT09djA0-1585557971?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q0lBN1pjcnpQTFRML0x0RVRiZFl3Y2tONnNRSmJNYjlQdz09djA0-1645181912?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q0Fnd2tVU2hvalZJYmcrRklHN2JXRVljU2x1WHdUbWlhUT09djA0-1634442990?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q0ZtWHlFbHpPRVpvWHl4SUY5OXBFRlBIUUxMRmZXVHRDdz09djA0-1702030509?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q0pSbUlJa0FnZzZ5ajlOSkdpL2RCM0N4QVFocXAwTE5pUT09djA0-1695729907?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q1Axelh1ODQ2c1lxQitDQWdDTDJCZHNqOFhNY0laSmpPQT09djA0-1699703840?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q05rVTNLaXpoMXRNajFibVovemVrM1d1OVhxL0psV1RGdz09djA0-1645253996?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q05YRUt2RU42TkJqZmxVMjNLM0FBbWRrQzBpQS9lOFJIUT09djA0-1689902644?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q05uNFhUazVkdzRETXNMVHFkTzBBaGxlV1NXVWhFTW42QT09djA0-1699797272?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q05HVldYbFdnbm9mSEpHNjhrSTNOQitQekZCbXZ1ZjBoQT09djA0-1665185245?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q01kZWp5VDRBL0tWei9OWE8xV0JIQ3M2ZGdjTElBTUFnUT09djA0-1656078395?imageMogr2/thumbnail/100x"
    						]
    					}
    				}
    			},
    			"control": {
    				"require_mall_active_time": 1,
    				"in_price_tag_gray": 1,
    				"join_group_txt_gray": 1,
    				"quantity_check_request_params": {
    					"from_goods_detail": 1
    				}
    			},
    			"transmission": {
    				"promotion_extend_info": [],
    				"sku_direct_order_extend_info": {
    					"carousel_tag_list": "[{\"type\":24,\"icon\":null,\"descList\":[\"男拼接棉衣\",\"畅销\"],\"highLightList\":[\"6\"]},{\"type\":1,\"icon\":null,\"descList\":[\"退货包运费\",\"全场包邮\",\"7天无理由退货\",\"48小时发货\"],\"highLightList\":null}]",
    					"detail_id": 3802606052,
    					"service_tag_list": "[\"退货包运费\",\"全场包邮\",\"7天无理由退货\",\"48小时发货\"]"
    				}
    			},
    			"contextData": {
    				"isNativePlatform": false,
    				"hostname": "mobile.yangkeduo.com",
    				"isMiniProgram": false
    			},
    			"DDType": false,
    			"isDuoDuoSingleGroup": false,
    			"isDuoDuoDoubleGroup": false,
    			"isNewBottomTips": true,
    			"isLowGroupNewBottomTips": false,
    			"combineGroups": {
    				"groupsTotal": 1,
    				"combineGroupList": [
    					{
    						"groupOrderId": "2459490487171880375",
    						"memberInfoList": [
    							{
    								"nickname": "温文尔雅😘 😘 😘 😘",
    								"avatar": "https://avatar3.pddpic.com/a/Q09RZUU2TzhwRUNIRnhiY1RIZTAzYjQrS2lLaitFUXR3dz09djA0-1680860094?imageMogr2/thumbnail/100x",
    								"isFriend": false
    							}
    						],
    						"isSelfGroup": false,
    						"expireTime": "1704769797",
    						"buttonDesc": "去拼单",
    						"gender": 1,
    						"groupType": 0,
    						"isShared": false,
    						"tagList": [],
    						"trackList": [
    							{
    								"pageElSn": "4264980",
    								"extra": {
    									"groupOrderId": "2459490487171880375",
    									"type": 0,
    									"buttonDsc": "去拼单"
    								}
    							}
    						],
    						"clickTrack": {
    							"pageElSn": "4264980",
    							"extra": {
    								"type": 0
    							}
    						},
    						"groupDesc": [
    							{
    								"txt": "还差",
    								"color": "#151516",
    								"font": 13,
    								"type": 1
    							},
    							{
    								"txt": "1人",
    								"color": "#E02E24",
    								"font": 13
    							},
    							{
    								"txt": "拼成",
    								"color": "#151516",
    								"font": 13
    							}
    						],
    						"groupOrderID": "2459490487171880375",
    						"nickname": "温文尔雅😘 😘 😘 😘",
    						"avatar": "https://avatar3.pddpic.com/a/Q09RZUU2TzhwRUNIRnhiY1RIZTAzYjQrS2lLaitFUXR3dz09djA0-1680860094?imageMogr2/thumbnail/100x",
    						"isFriend": false,
    						"requireNum": 2,
    						"usersNum": 1
    					}
    				],
    				"fixedTopGroupList": [],
    				"sliderGroupList": [],
    				"localGroupWithFriend": [],
    				"localGroupListNew": [
    					{
    						"groupOrderId": "2459490487171880375",
    						"memberInfoList": [
    							{
    								"nickname": "温文尔雅😘 😘 😘 😘",
    								"avatar": "https://avatar3.pddpic.com/a/Q09RZUU2TzhwRUNIRnhiY1RIZTAzYjQrS2lLaitFUXR3dz09djA0-1680860094?imageMogr2/thumbnail/100x",
    								"isFriend": false
    							}
    						],
    						"isSelfGroup": false,
    						"expireTime": "1704769797",
    						"buttonDesc": "去拼单",
    						"gender": 1,
    						"groupType": 0,
    						"isShared": false,
    						"tagList": [],
    						"trackList": [
    							{
    								"pageElSn": "4264980",
    								"extra": {
    									"groupOrderId": "2459490487171880375",
    									"type": 0,
    									"buttonDsc": "去拼单"
    								}
    							}
    						],
    						"clickTrack": {
    							"pageElSn": "4264980",
    							"extra": {
    								"type": 0
    							}
    						},
    						"groupDesc": [
    							{
    								"txt": "还差",
    								"color": "#151516",
    								"font": 13,
    								"type": 1
    							},
    							{
    								"txt": "1人",
    								"color": "#E02E24",
    								"font": 13
    							},
    							{
    								"txt": "拼成",
    								"color": "#151516",
    								"font": 13
    							}
    						],
    						"groupOrderID": "2459490487171880375",
    						"nickname": "温文尔雅😘 😘 😘 😘",
    						"avatar": "https://avatar3.pddpic.com/a/Q09RZUU2TzhwRUNIRnhiY1RIZTAzYjQrS2lLaitFUXR3dz09djA0-1680860094?imageMogr2/thumbnail/100x",
    						"isFriend": false,
    						"requireNum": 2,
    						"usersNum": 1
    					}
    				],
    				"historyGroupListNew": [],
    				"historyVistorListNew": [],
    				"popupTwoAvatarsStyle": false,
    				"outTwoAvatarsStyle": false,
    				"recommendGroup": {
    					"groupOrderId": "2459490487171880375",
    					"memberInfoList": [
    						{
    							"nickname": "温文尔雅😘 😘 😘 😘",
    							"avatar": "https://avatar3.pddpic.com/a/Q09RZUU2TzhwRUNIRnhiY1RIZTAzYjQrS2lLaitFUXR3dz09djA0-1680860094?imageMogr2/thumbnail/100x",
    							"isFriend": false
    						}
    					],
    					"isSelfGroup": false,
    					"expireTime": "1704769797",
    					"buttonDesc": "去拼单",
    					"gender": 1,
    					"groupType": 0,
    					"isShared": false,
    					"tagList": [],
    					"trackList": [
    						{
    							"pageElSn": "4264980",
    							"extra": {
    								"groupOrderId": "2459490487171880375",
    								"type": 0,
    								"buttonDsc": "去拼单"
    							}
    						}
    					],
    					"clickTrack": {
    						"pageElSn": "4264980",
    						"extra": {
    							"type": 0
    						}
    					},
    					"groupDesc": [
    						{
    							"txt": "还差",
    							"color": "#151516",
    							"font": 13,
    							"type": 1
    						},
    						{
    							"txt": "1人",
    							"color": "#E02E24",
    							"font": 13
    						},
    						{
    							"txt": "拼成",
    							"color": "#151516",
    							"font": 13
    						}
    					]
    				},
    				"firstScreenGroup": [],
    				"pulldownGroup": {
    					"groupInfo": {
    						"groupOrderId": "2459490487171880375",
    						"memberInfoList": [
    							{
    								"nickname": "温文尔雅😘 😘 😘 😘",
    								"avatar": "https://avatar3.pddpic.com/a/Q09RZUU2TzhwRUNIRnhiY1RIZTAzYjQrS2lLaitFUXR3dz09djA0-1680860094?imageMogr2/thumbnail/100x",
    								"isFriend": false
    							}
    						],
    						"isSelfGroup": false,
    						"expireTime": "1704769797",
    						"buttonDesc": "去拼单",
    						"gender": 1,
    						"groupType": 0,
    						"isShared": false
    					},
    					"groupTitleInfo": {
    						"groupTitleDesc": "还差1人,参与可立即拼成",
    						"needJoinCountdown": true
    					},
    					"groupOrderId": "2459490487171880375",
    					"memberInfoList": [
    						{
    							"nickname": "温文尔雅😘 😘 😘 😘",
    							"avatar": "https://avatar3.pddpic.com/a/Q09RZUU2TzhwRUNIRnhiY1RIZTAzYjQrS2lLaitFUXR3dz09djA0-1680860094?imageMogr2/thumbnail/100x",
    							"isFriend": false
    						}
    					],
    					"isSelfGroup": false,
    					"expireTime": "1704769797",
    					"buttonDesc": "去拼单",
    					"gender": 1,
    					"groupType": 0,
    					"isShared": false,
    					"groupOrderID": "2459490487171880375"
    				}
    			},
    			"combineUserGroup": [],
    			"groupPopupTitle": "可参与的拼单",
    			"groupPopupFooter": "",
    			"groupButtonDesc": "去拼单",
    			"groupDesc": "1人在拼,参与可立即拼成",
    			"nowTime": 1704683791,
    			"nowTimeTen": 17046837910,
    			"isABTestGoodsPrerenderOC": false,
    			"isAbDirectOrderRepayModifyPanel": true,
    			"isAbDirectOrderMianmiV2": true,
    			"isAbSwitchToWechatIfSignXyhfFailed": false,
    			"hasAddressLine": false,
    			"ignoreShowSkuSelector": false,
    			"useBestPromotion": false,
    			"usePayPromotion": true,
    			"isABGoodsRecOffset": false,
    			"isABfastGroupBuyQa": false,
    			"isABLongBannerMode": false,
    			"isGoodsBottomAfterCouponRefresh": true,
    			"isABBottomMallIconStyle": false,
    			"isABWxGotoAppEnforce": false,
    			"ifLiveCouponSkuSelector": false,
    			"showGoodsLabel": false,
    			"guideXyhfCountdown": false,
    			"supportGbs": true,
    			"balanceNotEnoughToMianMi": true,
    			"payCanceledToXyhf": true,
    			"applyDuoDuoPayCancelToMianMi": true,
    			"enableSkuMask": false,
    			"canRefreshAfterOrder": false,
    			"allowOcHosts": [
    				"mobile.pinduoduo.com"
    			],
    			"forwardOcHost": "mobile.yangkeduo.com",
    			"livingValidationUrl": "https://renzheng.pinduoduo.com/living-validation/living-validation.html",
    			"useH5FaceCert": true,
    			"bannerHeight": "3.75rem",
    			"isUseRawBackBannerUrl": false
    		},
    		"mall": {
    			"mallId": "202682397",
    			"mallName": "WKD潮流穿搭",
    			"mallShowType": 0,
    			"mallTransferType": 0,
    			"salesTip": "已拼10万+件",
    			"salesTipV2": "全店已拼10万+件",
    			"mallSales": 100000,
    			"mallLogo": "http://t16img.yangkeduo.com/pdd_ims/img_check/v2/E6F5FF2DB1E40420200112151253382/88a6ed4794de45139362ac56e16a7ad1.png",
    			"goodsNum": 89,
    			"goodsNumDesc": "商品数量: 89",
    			"pddRoute": "mall_page.html?mall_id=202682397&msn=gtaf3fqxhsipamrzcqimmezupq_axbuy&mall_info=%7B%22mall_name%22%3A%22WKD%E6%BD%AE%E6%B5%81%E7%A9%BF%E6%90%AD%22%7D",
    			"pddRouteName": "进店逛逛",
    			"mallServiceTag": "客服",
    			"isFlagShip": false,
    			"logoList": [],
    			"mallLogoList": [
    				{
    					"logoType": 4,
    					"logoUrl": "https://promotion.pddpic.com/oms-img-promotion/2024-01-03/88e3b72c-cf44-446e-a834-3bfeb15e650f.png",
    					"logoHeight": 48,
    					"logoWidth": 132
    				}
    			],
    			"dsr": {
    				"descScore": 4.59,
    				"descStatus": 1,
    				"logisticsScore": 4.59,
    				"logisticsStatus": 1,
    				"serviceScore": 4.59,
    				"serviceStatus": 1,
    				"descRankPercent": 73,
    				"logisticsRankPercent": 73,
    				"serviceRankPercent": 73,
    				"descRankStatus": 1,
    				"logisticsRankStatus": 1,
    				"serviceRankStatus": 1,
    				"hideRankInfo": 0,
    				"mallRatingTextList": [
    					{
    						"mallRatingKey": {
    							"txt": "描述相符",
    							"color": "#58595B",
    							"font": 13
    						},
    						"mallRatingValue": {
    							"txt": "高",
    							"color": "#E02E24",
    							"font": 11,
    							"backColor": "#FCE5E5"
    						}
    					},
    					{
    						"mallRatingKey": {
    							"txt": "物流服务",
    							"color": "#58595B",
    							"font": 13
    						},
    						"mallRatingValue": {
    							"txt": "高",
    							"color": "#E02E24",
    							"font": 11,
    							"backColor": "#FCE5E5"
    						}
    					},
    					{
    						"mallRatingKey": {
    							"txt": "服务态度",
    							"color": "#58595B",
    							"font": 13
    						},
    						"mallRatingValue": {
    							"txt": "高",
    							"color": "#E02E24",
    							"font": 11,
    							"backColor": "#FCE5E5"
    						}
    					}
    				],
    				"mallStar": 5,
    				"isShowMallStar": true
    			},
    			"isGuideMall": false,
    			"extras": {
    				"2": false,
    				"3": false,
    				"5": 1,
    				"7": false,
    				"8": true
    			},
    			"msn": "gtaf3fqxhsipamrzcqimmezupq_axbuy",
    			"merchantType": 1,
    			"hasMallDecoration": false,
    			"mallHeadTagVo": {
    				"action": "highLayer",
    				"actionParams": {
    					"url": "pdd_mall_lego_pages.html?lego_minversion=5.78.0&minversion=5.78.0&lego_type=v8&lego_ssr_api=%2Fapi%2Fpdd_mall_lego_pages%2Fget_config%2Fpdd_mall_guarantee_layer&source=3&mall_id=202682397",
    					"name": "pdd_mall_guarantee_layer"
    				},
    				"iconUrl": "https://funimg.pddpic.com/d33e814f-b115-4877-8dfb-cf6bb13b0a6e.png",
    				"iconWidth": 11,
    				"iconHeight": 13,
    				"bgImgUrl": "https://funimg.pddpic.com/2021-01-05/50063bdc-47ab-4134-91cf-bc13fe1fa5bb.png",
    				"title": "店铺保障",
    				"mallPageHeadShowTagVolist": [
    					{
    						"showTagType": 2,
    						"desc": "退货包运费",
    						"scriptColor": "#58595B"
    					},
    					{
    						"desc": "保证金",
    						"scriptColor": "#58595B"
    					}
    				]
    			},
    			"hideShipAddress": false,
    			"mallFavVo": {
    				"showButton": false
    			},
    			"mallID": "202682397",
    			"logo": "https://t16img.yangkeduo.com/pdd_ims/img_check/v2/E6F5FF2DB1E40420200112151253382/88a6ed4794de45139362ac56e16a7ad1.png"
    		},
    		"liveInfo": null,
    		"queries": {
    			"goods_id": "559707595804",
    			"page_from": "35",
    			"pxq_secret_key": "FFU7RGHVKQOWSRED54BVJHTCG39ZN3166QLYQ8O71CJ3H3BRQECT",
    			"_oak_share_snapshot_num": "2020",
    			"_oak_share_time": "1704683790",
    			"share_uin": "FTXNNLFYLUVJLPXRZTMTPTDZZN_PVPFL",
    			"refer_share_id": "snsbo35pjvy9x7oqnnh6k4kys3kkvv7m",
    			"refer_share_uin": "FTXNNLFYLUVJLPXRZTMTPTDZZN_PVPFL",
    			"refer_share_channel": "copy_link",
    			"refer_share_form": "text"
    		},
    		"isIOS": false,
    		"isSystemIOS": false,
    		"guideConfig": {
    			"waitTime": 20000,
    			"presentTime": 5000
    		},
    		"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0",
    		"webp": true,
    		"oakData": {
    			"activityCollection": {
    				"activity": {
    					"activityId": 3802606052,
    					"detailId": 3802606052,
    					"activityType": 43,
    					"subActivityType": 0,
    					"activityStartTime": 1702565099,
    					"activityEndTime": 1765723499,
    					"totalQuantity": 2147483647,
    					"remainQuantity": 2147483647,
    					"costType": 0,
    					"activityOptions": [
    						29
    					],
    					"relationType": 0,
    					"playType": 0,
    					"hiddenInNeighbor": false,
    					"isApp": false,
    					"targetCustomerNum": 0,
    					"status": 1,
    					"userActivityLimit": 0,
    					"regularLimitDuration": 0,
    					"shoppingMergeType": 0,
    					"playOptions": [],
    					"viewType": 2,
    					"saleLevelType": 0
    				}
    			},
    			"ui": {
    				"newPriceSection": {
    					"isNormal": 1,
    					"type": "normal",
    					"price": "121.52",
    					"linePrice": "¥198.04",
    					"priceRich": [
    						{
    							"txt": "121.52",
    							"font": 28,
    							"type": 1
    						}
    					],
    					"prefix": "",
    					"prefixRich": [
    						{
    							"txt": "¥",
    							"font": 15,
    							"type": 1
    						}
    					],
    					"suffix": "起",
    					"color": "#E02E24",
    					"bgColor": "#FFFFFF",
    					"descLabels": [
    						"已拼2967件"
    					],
    					"descColor": "#58595B",
    					"impTracks": [
    						{
    							"extra": {
    								"singlePrice": "147.24",
    								"linePrice": "198.04",
    								"salesTip": "已拼2967件",
    								"type": 0,
    								"pindanPrice": "121.52",
    								"descLabels": "已拼2967件"
    							},
    							"pageElSn": "5049756"
    						}
    					],
    					"isElder": 0,
    					"useNewDescLabelsRule": false
    				},
    				"newBottomSection": {
    					"leftButton": {
    						"title": [
    							{
    								"txt": "¥",
    								"font": 19,
    								"type": 1
    							},
    							{
    								"type": 2,
    								"space": 1
    							},
    							{
    								"txt": "147.24",
    								"font": 19,
    								"type": 1
    							}
    						],
    						"desc": "单独购买",
    						"clickAction": "directBuy",
    						"textColor": "#FFFFFF",
    						"bgColor": "#F4ABA7",
    						"textClickColor": "#F9E0DF",
    						"bgClickColor": "#EB9894",
    						"impTracks": [
    							{
    								"extra": {
    									"type": 0
    								},
    								"pageElSn": "99809"
    							}
    						],
    						"clickTrack": {
    							"extra": {
    								"type": 0
    							},
    							"pageElSn": "99809"
    						}
    					},
    					"rightButton": {
    						"title": [
    							{
    								"txt": "¥",
    								"font": 19,
    								"type": 1
    							},
    							{
    								"type": 2,
    								"space": 1
    							},
    							{
    								"txt": "121.52",
    								"font": 19,
    								"type": 1
    							}
    						],
    						"desc": "发起拼单",
    						"clickAction": "groupBuy",
    						"textColor": "#FFFFFF",
    						"bgColor": "#E02E24",
    						"textClickColor": "#EDBBB8",
    						"bgClickColor": "#C51E14",
    						"useBackup": 0,
    						"impTracks": [
    							{
    								"extra": {
    									"type": 0
    								},
    								"pageElSn": "99811"
    							}
    						],
    						"clickTrack": {
    							"extra": {
    								"type": 0
    							},
    							"pageElSn": "99811"
    						}
    					}
    				},
    				"titleSection": {
    					"payPart": {
    						"type": 5,
    						"icon": {
    							"id": -1,
    							"url": "",
    							"clickNotice": "订单发货后90天内申请退货退款或换货,将按照物流首重费用补贴退货运费"
    						},
    						"text": {
    							"txt": "不满意包退货运费,退换无忧",
    							"color": "#25B513",
    							"prefixTxt": "退货包运费",
    							"clickColor": "#1F9347",
    							"backgroundColor": "#EEF9ED",
    							"backgroundClickColor": "#DCF3D9"
    						},
    						"style": 2
    					},
    					"channelIconBef": []
    				},
    				"liveSection": {
    					"onLive": 0,
    					"floatFromType": 0
    				},
    				"bubbleSection": {
    					"showBubble": 1
    				},
    				"skuSection": {
    					"viewStyle": 1,
    					"viewStyleV2": 1,
    					"yellowLabelList": [],
    					"consultPromotionPrice": 1,
    					"skuPriceShow": 1,
    					"skuPaneTitleSuffixTag": {
    						"text": "退货包运费",
    						"textColor": "#FFFFFF",
    						"textClickColor": "#BCDEC8",
    						"bgColor": "#25B513",
    						"bgClickColor": "#1F9347",
    						"borderColor": "#25B513",
    						"borderClickColor": "#1F9347",
    						"clickNotice": "订单发货后90天内申请退货退款或换货,将按照物流首重费用补贴退货运费"
    					},
    					"skuSpecDisplay": {
    						"specKeyName": "颜色分类"
    					},
    					"impTracks": []
    				},
    				"bottomBuyingSection": {
    					"type": "normal"
    				},
    				"morePopNaviButton": {
    					"naviList": [
    						{
    							"iconId": "59210",
    							"text": "常见问题",
    							"url": "questions.html"
    						},
    						{
    							"iconId": "59213",
    							"text": "意见反馈",
    							"url": "personal_feedback.html"
    						},
    						{
    							"iconId": "59212",
    							"text": "举报商品",
    							"url": "complaints_report.html?goods_id=559707595804"
    						}
    					]
    				},
    				"rankSection": {
    					"id": 27413010201,
    					"rank": 6,
    					"icon": "https://funimg.pddpic.com/transaction_process/c1d6ab05fffb4726d8dd09df1c884dfc78acc8cd.png",
    					"rankDesc": "「男拼接棉衣畅销榜」第6名",
    					"rankJumpUrl": "https://mobile.yangkeduo.com/sjs_cat_rank_list.html?list_id=27413010201&list_sn=YWGk0MnGuWSzMINfWJs5YOIO&__list_version=2&_pdd_fs=1&_pdd_tc=ffffff&_pdd_sbs=1&scene_id=goods_detail",
    					"rankDescV2": [
    						{
    							"txt": "男拼接棉衣畅销榜第",
    							"color": "#58595B"
    						},
    						{
    							"txt": "6",
    							"color": "#E02E24"
    						},
    						{
    							"txt": "名",
    							"color": "#58595B"
    						}
    					],
    					"rankDialog": {
    						"dialogTitle": "入榜详情",
    						"title": "「男拼接棉衣畅销榜」第6名",
    						"desc": "榜单数据更新于2024-01-08 11:00",
    						"rule": "入榜规则",
    						"ruleDetail": [
    							"根据近7日销量、好评、上升趋势等数据综合进行排名",
    							"每小时更新排名,保证入选商品数据及时更新"
    						]
    					},
    					"rankCat": 1
    				},
    				"priceExplainSection": {
    					"pulldownTitle": "点击查看商品价格说明"
    				},
    				"photoBottomSection": {
    					"linePrice": "¥198.04",
    					"priceRich": [
    						{
    							"txt": "121.52",
    							"font": 24,
    							"type": 1
    						}
    					],
    					"prefixRich": [
    						{
    							"txt": "¥",
    							"font": 15,
    							"type": 1
    						}
    					],
    					"suffix": "起",
    					"color": "#FFFFFF",
    					"descColor": "#9C9C9C",
    					"promotionTxt": "查看优惠",
    					"openGroupTxt": "去拼单",
    					"useNewDescLabelsRule": false
    				},
    				"carouselSection": {
    					"sellPointTagList": [
    						"高品质涤纶材质",
    						"保暖防风设计",
    						"宽松百搭款式",
    						"情侣休闲必备"
    					]
    				}
    			},
    			"goods": {
    				"decoration": [
    					{
    						"floorId": 45955336651,
    						"key": "DecImage",
    						"type": "text",
    						"priority": 0,
    						"contents": [
    							{
    								"imgUrl": "https://img.pddpic.com/mms-material-img/2023-12-11/f6d31b03-7e17-41f4-b8cc-4831130eb896.png",
    								"height": 124,
    								"width": 750
    							}
    						],
    						"enableShare": 0
    					},
    					{
    						"floorId": 45955336652,
    						"key": "DecImage",
    						"type": "image",
    						"priority": 1,
    						"contents": [
    							{
    								"imgUrl": "https://img.pddpic.com/open-gw/2023-11-26/2964fe16-a389-466b-a666-79933aed76a2.jpeg",
    								"height": 792,
    								"width": 1170
    							}
    						],
    						"enableShare": 1
    					},
    					{
    						"floorId": 45955336653,
    						"key": "DecImage",
    						"type": "image",
    						"priority": 2,
    						"contents": [
    							{
    								"imgUrl": "https://img.pddpic.com/open-gw/2023-11-26/fdb334bd-5da4-48b8-8379-b70097c050fc.jpeg",
    								"height": 800,
    								"width": 800
    							}
    						],
    						"enableShare": 1
    					},
    					{
    						"floorId": 45955336654,
    						"key": "DecImage",
    						"type": "image",
    						"priority": 3,
    						"contents": [
    							{
    								"imgUrl": "https://img.pddpic.com/open-gw/2023-11-26/aa8b3f50-1ee1-4baa-85db-a124386c3c18.jpeg",
    								"height": 800,
    								"width": 800
    							}
    						],
    						"enableShare": 1
    					},
    					{
    						"floorId": 45955336655,
    						"key": "DecImage",
    						"type": "image",
    						"priority": 4,
    						"contents": [
    							{
    								"imgUrl": "https://img.pddpic.com/open-gw/2023-11-26/1a4524d1-75f0-4c1c-9399-2f0541f23a06.jpeg",
    								"height": 800,
    								"width": 800
    							}
    						],
    						"enableShare": 1
    					},
    					{
    						"floorId": 45955336656,
    						"key": "DecImage",
    						"type": "image",
    						"priority": 5,
    						"contents": [
    							{
    								"imgUrl": "https://img.pddpic.com/open-gw/2023-11-26/5d6cdaa6-a948-4a74-a22e-014ef4eca41e.jpeg",
    								"height": 800,
    								"width": 800
    							}
    						],
    						"enableShare": 1
    					},
    					{
    						"floorId": 45955336657,
    						"key": "DecImage",
    						"type": "image",
    						"priority": 6,
    						"contents": [
    							{
    								"imgUrl": "https://img.pddpic.com/open-gw/2023-11-26/b90e73e6-25f5-46bd-920a-56c7a5003c65.jpeg",
    								"height": 800,
    								"width": 800
    							}
    						],
    						"enableShare": 1
    					},
    					{
    						"floorId": 45955336658,
    						"key": "DecImage",
    						"type": "image",
    						"priority": 7,
    						"contents": [
    							{
    								"imgUrl": "https://img.pddpic.com/open-gw/2023-11-26/23304a3e-6d03-4de0-9153-66c056e7b3bf.jpeg",
    								"height": 800,
    								"width": 800
    							}
    						],
    						"enableShare": 1
    					},
    					{
    						"floorId": 45955336659,
    						"key": "DecImage",
    						"type": "image",
    						"priority": 8,
    						"contents": [
    							{
    								"imgUrl": "https://img.pddpic.com/open-gw/2023-11-26/f2eae720-6d87-4744-93e5-54c433497133.jpeg",
    								"height": 800,
    								"width": 800
    							}
    						],
    						"enableShare": 1
    					},
    					{
    						"floorId": 45955336660,
    						"key": "DecImage",
    						"type": "image",
    						"priority": 9,
    						"contents": [
    							{
    								"imgUrl": "https://img.pddpic.com/open-gw/2023-11-26/da9d01d4-60ce-469e-9e55-a52bef22eb03.jpeg",
    								"height": 800,
    								"width": 800
    							}
    						],
    						"enableShare": 1
    					},
    					{
    						"floorId": 45955336661,
    						"key": "DecImage",
    						"type": "image",
    						"priority": 10,
    						"contents": [
    							{
    								"imgUrl": "https://img.pddpic.com/open-gw/2023-11-26/ab508209-9655-4c27-aad8-0cde52ac7fb3.jpeg",
    								"height": 800,
    								"width": 800
    							}
    						],
    						"enableShare": 1
    					},
    					{
    						"floorId": 45955336662,
    						"key": "DecImage",
    						"type": "image",
    						"priority": 11,
    						"contents": [
    							{
    								"imgUrl": "https://img.pddpic.com/open-gw/2023-11-26/7988edc9-167a-4bee-beb5-4a341aa30e7f.jpeg",
    								"height": 800,
    								"width": 800
    							}
    						],
    						"enableShare": 1
    					}
    				],
    				"country": "",
    				"goodsProperty": [
    					{
    						"key": "发货地",
    						"values": [
    							"浙江省"
    						]
    					},
    					{
    						"key": "面料材质",
    						"values": [
    							"涤纶(聚酯纤维)"
    						],
    						"refPid": 346,
    						"referenceId": 0
    					},
    					{
    						"key": "填充物",
    						"values": [
    							"仿丝棉"
    						],
    						"refPid": 361,
    						"referenceId": 0
    					},
    					{
    						"key": "成分含量",
    						"values": [
    							"96%(含)—100%(不含)"
    						],
    						"refPid": 396,
    						"referenceId": 0
    					},
    					{
    						"key": "填充克数",
    						"values": [
    							"300g及以上"
    						],
    						"refPid": 397,
    						"referenceId": 0
    					},
    					{
    						"key": "版型",
    						"values": [
    							"宽松"
    						],
    						"refPid": 318,
    						"referenceId": 0
    					},
    					{
    						"key": "领型",
    						"values": [
    							"立领"
    						],
    						"refPid": 347,
    						"referenceId": 0
    					},
    					{
    						"key": "衣长",
    						"values": [
    							"常规款"
    						],
    						"refPid": 319,
    						"referenceId": 0
    					},
    					{
    						"key": "服装款式细节",
    						"values": [
    							"拼接"
    						],
    						"refPid": 348,
    						"referenceId": 0
    					},
    					{
    						"key": "风格",
    						"values": [
    							"青春潮流"
    						],
    						"refPid": 322,
    						"referenceId": 0
    					},
    					{
    						"key": "适用年龄",
    						"values": [
    							"青年(18-25周岁)"
    						],
    						"refPid": 382,
    						"referenceId": 0
    					},
    					{
    						"key": "上市时节",
    						"values": [
    							"2023年冬季"
    						],
    						"refPid": 1906,
    						"referenceId": 0
    					},
    					{
    						"key": "功能",
    						"values": [
    							"保暖"
    						],
    						"refPid": 351,
    						"referenceId": 0
    					},
    					{
    						"key": "厚薄",
    						"values": [
    							"加厚"
    						],
    						"refPid": 341,
    						"referenceId": 0
    					}
    				],
    				"goodsPropertyType": 0
    			},
    			"control": {
    				"requireMallActiveTime": 1,
    				"inPriceTagGray": 1,
    				"joinGroupTxtGray": 1,
    				"quantityCheckRequestParams": {
    					"fromGoodsDetail": 1
    				}
    			},
    			"review": {
    				"reviewNum": 276,
    				"reviewMergeOuterNum": 0,
    				"reviewNumText": "商品评价(276)",
    				"reviewMergeOuterNumText": "",
    				"reviewInfoList": [
    					{
    						"reviewId": 529784661481169900,
    						"comment": "无论材质还是做工都超出了预期,超值,穿起来也很好看哦。卖家发货也比预计提早了很多,还会再来。买吧,不会后悔的哦!全五分。红色的过年穿起来也很喜气,非常满意",
    						"specs": "[{\"spec_key\":\"颜色分类\",\"spec_value\":\"黑+米白【夹克款】\"},{\"spec_key\":\"尺码\",\"spec_value\":\"3XL\",\"note\":\"170-200\"}]",
    						"time": 1704198612,
    						"avatar": "https://avatar3.pddpic.com/a/Q1AxYks5M0lqcnlBdmdySkpPT3RWUWh3RVV5eUR2c3ZnQT09djA0-1650415416?imageMogr2/thumbnail/100x",
    						"name": "眼中有光",
    						"anonymous": 0,
    						"orderNumText": "2次拼单该商品",
    						"pxqFriendTag": false,
    						"isMyReview": false,
    						"pictures": []
    					},
    					{
    						"reviewId": 528524657452786700,
    						"comment": "大小合适,很蓬松,防水的,两面都可以穿,非常好看。",
    						"specs": "[{\"spec_key\":\"颜色分类\",\"spec_value\":\"红+米白【重磅棉服款】\"},{\"spec_key\":\"尺码\",\"spec_value\":\"2XL\",\"note\":\"150-170\"}]",
    						"time": 1703597795,
    						"avatar": "https://avatar3.pddpic.com/a/Q0NYbDBzK3hXTmJXUXJJRC9OaHBKeVVwbXlXek1yNENRUT09djA0-1643386144?imageMogr2/thumbnail/100x",
    						"name": "- 空白 ゝ",
    						"anonymous": 0,
    						"orderNumText": "",
    						"pxqFriendTag": false,
    						"isMyReview": false,
    						"pictures": []
    					}
    				],
    				"labels": [
    					{
    						"id": "449036b1bcdd1ce0a1485868566caaf4",
    						"outerPositiveCount": 0,
    						"labelMergeOuterCount": 24,
    						"name": "实惠",
    						"num": 24,
    						"positive": 1,
    						"text": "实惠(24)",
    						"view": {
    							"labelType": 0,
    							"backColor": "#FDEFEE",
    							"clickBackColor": "#F7D7D5",
    							"selectBackColor": "#E02E24",
    							"textColor": "#58595B",
    							"clickTextColor": "#7C7372",
    							"selectTextColor": "#FFFFFF"
    						}
    					},
    					{
    						"id": "ef7bc5da221112376d9961c198834f9f",
    						"outerPositiveCount": 0,
    						"labelMergeOuterCount": 23,
    						"name": "质量很好",
    						"num": 23,
    						"positive": 1,
    						"text": "质量很好(23)",
    						"view": {
    							"labelType": 0,
    							"backColor": "#FDEFEE",
    							"clickBackColor": "#F7D7D5",
    							"selectBackColor": "#E02E24",
    							"textColor": "#58595B",
    							"clickTextColor": "#7C7372",
    							"selectTextColor": "#FFFFFF"
    						}
    					},
    					{
    						"id": "87fd7ee5e6486608c382e4d539168cf7",
    						"outerPositiveCount": 0,
    						"labelMergeOuterCount": 13,
    						"name": "款式好看",
    						"num": 13,
    						"positive": 1,
    						"text": "款式好看(13)",
    						"view": {
    							"labelType": 0,
    							"backColor": "#FDEFEE",
    							"clickBackColor": "#F7D7D5",
    							"selectBackColor": "#E02E24",
    							"textColor": "#58595B",
    							"clickTextColor": "#7C7372",
    							"selectTextColor": "#FFFFFF"
    						}
    					},
    					{
    						"id": "acf730cd3d74bc9794e72cc8b3cf0849",
    						"outerPositiveCount": 0,
    						"labelMergeOuterCount": 11,
    						"name": "发货很快",
    						"num": 11,
    						"positive": 1,
    						"text": "发货很快(11)",
    						"view": {
    							"labelType": 0,
    							"backColor": "#FDEFEE",
    							"clickBackColor": "#F7D7D5",
    							"selectBackColor": "#E02E24",
    							"textColor": "#58595B",
    							"clickTextColor": "#7C7372",
    							"selectTextColor": "#FFFFFF"
    						}
    					},
    					{
    						"id": "79a966e7815c834095dfdf60a3fc049a",
    						"outerPositiveCount": 0,
    						"labelMergeOuterCount": 8,
    						"name": "暖和",
    						"num": 8,
    						"positive": 1,
    						"text": "暖和(8)",
    						"view": {
    							"labelType": 0,
    							"backColor": "#FDEFEE",
    							"clickBackColor": "#F7D7D5",
    							"selectBackColor": "#E02E24",
    							"textColor": "#58595B",
    							"clickTextColor": "#7C7372",
    							"selectTextColor": "#FFFFFF"
    						}
    					},
    					{
    						"id": "4b0e5c9e5437c871371b6bca53f9249c",
    						"outerPositiveCount": 0,
    						"labelMergeOuterCount": 7,
    						"name": "做工好",
    						"num": 7,
    						"positive": 1,
    						"text": "做工好(7)",
    						"view": {
    							"labelType": 0,
    							"backColor": "#FDEFEE",
    							"clickBackColor": "#F7D7D5",
    							"selectBackColor": "#E02E24",
    							"textColor": "#58595B",
    							"clickTextColor": "#7C7372",
    							"selectTextColor": "#FFFFFF"
    						}
    					},
    					{
    						"id": "4c4c7e277c4cca75ad39706e98e1aa55",
    						"outerPositiveCount": 0,
    						"labelMergeOuterCount": 6,
    						"name": "态度好",
    						"num": 6,
    						"positive": 1,
    						"text": "态度好(6)",
    						"view": {
    							"labelType": 0,
    							"backColor": "#FDEFEE",
    							"clickBackColor": "#F7D7D5",
    							"selectBackColor": "#E02E24",
    							"textColor": "#58595B",
    							"clickTextColor": "#7C7372",
    							"selectTextColor": "#FFFFFF"
    						}
    					},
    					{
    						"id": "b4e1af8de9f10d064c4167fa17f611bb",
    						"outerPositiveCount": 0,
    						"labelMergeOuterCount": 5,
    						"name": "颜色正",
    						"num": 5,
    						"positive": 1,
    						"text": "颜色正(5)",
    						"view": {
    							"labelType": 0,
    							"backColor": "#FDEFEE",
    							"clickBackColor": "#F7D7D5",
    							"selectBackColor": "#E02E24",
    							"textColor": "#58595B",
    							"clickTextColor": "#7C7372",
    							"selectTextColor": "#FFFFFF"
    						}
    					},
    					{
    						"id": "571b8564e86c88ad71b83793f4ec4ef4",
    						"outerPositiveCount": 0,
    						"labelMergeOuterCount": 3,
    						"name": "包装精细",
    						"num": 3,
    						"positive": 1,
    						"text": "包装精细(3)",
    						"view": {
    							"labelType": 0,
    							"backColor": "#FDEFEE",
    							"clickBackColor": "#F7D7D5",
    							"selectBackColor": "#E02E24",
    							"textColor": "#58595B",
    							"clickTextColor": "#7C7372",
    							"selectTextColor": "#FFFFFF"
    						}
    					}
    				],
    				"newMerchantQaPatternGray": false,
    				"merchantQaAnswerShow": false,
    				"merchantQaNumText": "",
    				"merchantQaTitleText": "商品答疑",
    				"newOuterReviewGray": true,
    				"outerPositiveReviewNumText": "",
    				"mergeReviewWithOuterReview": 1,
    				"mallReviewEntranceInfo": {
    					"labelList": [
    						{
    							"id": "ef7bc5da221112376d9961c198834f9f",
    							"clusterId": 0,
    							"name": "质量很好",
    							"num": 187,
    							"positive": 1,
    							"text": "质量很好(187)",
    							"view": {
    								"labelType": 0,
    								"backColor": "#FDEFEE",
    								"clickBackColor": "#F7D7D5",
    								"selectBackColor": "#E02E24",
    								"textColor": "#58595B",
    								"clickTextColor": "#7C7372",
    								"selectTextColor": "#FFFFFF"
    							}
    						},
    						{
    							"id": "6188b708ddf05a72be74a05bb357ff65",
    							"clusterId": 4,
    							"name": "价格实惠",
    							"num": 184,
    							"positive": 1,
    							"text": "价格实惠(184)",
    							"view": {
    								"labelType": 0,
    								"backColor": "#FDEFEE",
    								"clickBackColor": "#F7D7D5",
    								"selectBackColor": "#E02E24",
    								"textColor": "#58595B",
    								"clickTextColor": "#7C7372",
    								"selectTextColor": "#FFFFFF"
    							}
    						},
    						{
    							"id": "acf730cd3d74bc9794e72cc8b3cf0849",
    							"clusterId": 2,
    							"name": "发货很快",
    							"num": 79,
    							"positive": 1,
    							"text": "发货很快(79)",
    							"view": {
    								"labelType": 0,
    								"backColor": "#FDEFEE",
    								"clickBackColor": "#F7D7D5",
    								"selectBackColor": "#E02E24",
    								"textColor": "#58595B",
    								"clickTextColor": "#7C7372",
    								"selectTextColor": "#FFFFFF"
    							}
    						},
    						{
    							"id": "9a8bfd5f1335cdae12b7b04a8005da9b",
    							"clusterId": 8,
    							"name": "很服务态度好",
    							"num": 75,
    							"positive": 1,
    							"text": "很服务态度好(75)",
    							"view": {
    								"labelType": 0,
    								"backColor": "#FDEFEE",
    								"clickBackColor": "#F7D7D5",
    								"selectBackColor": "#E02E24",
    								"textColor": "#58595B",
    								"clickTextColor": "#7C7372",
    								"selectTextColor": "#FFFFFF"
    							}
    						},
    						{
    							"id": "a9298a8ff8952a488a11ced2bc4deda0",
    							"clusterId": 16,
    							"name": "做工精细",
    							"num": 56,
    							"positive": 1,
    							"text": "做工精细(56)",
    							"view": {
    								"labelType": 0,
    								"backColor": "#FDEFEE",
    								"clickBackColor": "#F7D7D5",
    								"selectBackColor": "#E02E24",
    								"textColor": "#58595B",
    								"clickTextColor": "#7C7372",
    								"selectTextColor": "#FFFFFF"
    							}
    						},
    						{
    							"id": "ce9205fc5968dc8191ef7e90b9571144",
    							"clusterId": 14,
    							"name": "裤子不错",
    							"num": 48,
    							"positive": 1,
    							"text": "裤子不错(48)",
    							"view": {
    								"labelType": 0,
    								"backColor": "#FDEFEE",
    								"clickBackColor": "#F7D7D5",
    								"selectBackColor": "#E02E24",
    								"textColor": "#58595B",
    								"clickTextColor": "#7C7372",
    								"selectTextColor": "#FFFFFF"
    							}
    						},
    						{
    							"id": "fab1ce04503da7f3b642b61549e9f041",
    							"clusterId": 68,
    							"name": "性价比高",
    							"num": 34,
    							"positive": 1,
    							"text": "性价比高(34)",
    							"view": {
    								"labelType": 0,
    								"backColor": "#FDEFEE",
    								"clickBackColor": "#F7D7D5",
    								"selectBackColor": "#E02E24",
    								"textColor": "#58595B",
    								"clickTextColor": "#7C7372",
    								"selectTextColor": "#FFFFFF"
    							}
    						},
    						{
    							"id": "8c32c77d9055339bf560d195b6bedcac",
    							"clusterId": 6,
    							"name": "好看",
    							"num": 32,
    							"positive": 1,
    							"text": "好看(32)",
    							"view": {
    								"labelType": 0,
    								"backColor": "#FDEFEE",
    								"clickBackColor": "#F7D7D5",
    								"selectBackColor": "#E02E24",
    								"textColor": "#58595B",
    								"clickTextColor": "#7C7372",
    								"selectTextColor": "#FFFFFF"
    							}
    						},
    						{
    							"id": "672fc36a36e2c2c62a1df9019d1c002e",
    							"clusterId": 34,
    							"name": "尺码标准",
    							"num": 29,
    							"positive": 1,
    							"text": "尺码标准(29)",
    							"view": {
    								"labelType": 0,
    								"backColor": "#FDEFEE",
    								"clickBackColor": "#F7D7D5",
    								"selectBackColor": "#E02E24",
    								"textColor": "#58595B",
    								"clickTextColor": "#7C7372",
    								"selectTextColor": "#FFFFFF"
    							}
    						},
    						{
    							"id": "79a966e7815c834095dfdf60a3fc049a",
    							"clusterId": 88,
    							"name": "暖和",
    							"num": 22,
    							"positive": 1,
    							"text": "暖和(22)",
    							"view": {
    								"labelType": 0,
    								"backColor": "#FDEFEE",
    								"clickBackColor": "#F7D7D5",
    								"selectBackColor": "#E02E24",
    								"textColor": "#58595B",
    								"clickTextColor": "#7C7372",
    								"selectTextColor": "#FFFFFF"
    							}
    						},
    						{
    							"id": "b4e1af8de9f10d064c4167fa17f611bb",
    							"clusterId": 30,
    							"name": "颜色正",
    							"num": 21,
    							"positive": 1,
    							"text": "颜色正(21)",
    							"view": {
    								"labelType": 0,
    								"backColor": "#FDEFEE",
    								"clickBackColor": "#F7D7D5",
    								"selectBackColor": "#E02E24",
    								"textColor": "#58595B",
    								"clickTextColor": "#7C7372",
    								"selectTextColor": "#FFFFFF"
    							}
    						},
    						{
    							"id": "f7aa70b1d2dab7d8713187f38f1af733",
    							"clusterId": 72,
    							"name": "版型好",
    							"num": 15,
    							"positive": 1,
    							"text": "版型好(15)",
    							"view": {
    								"labelType": 0,
    								"backColor": "#FDEFEE",
    								"clickBackColor": "#F7D7D5",
    								"selectBackColor": "#E02E24",
    								"textColor": "#58595B",
    								"clickTextColor": "#7C7372",
    								"selectTextColor": "#FFFFFF"
    							}
    						}
    					],
    					"titleText": "该商品所属店铺评价",
    					"exps": {
    						"mall_functional_label": {
    							"bucket": 0,
    							"timestamp": 1704683791622
    						}
    					}
    				},
    				"exps": {
    					"label_info": {
    						"strategy_name": "N",
    						"timestamp": 1704683791638
    					},
    					"goods_detail_perfect_pic": {
    						"strategy_name": "N",
    						"timestamp": 1704683791621
    					},
    					"goods_detail": {
    						"strategy_name": "N",
    						"timestamp": 1704683791621
    					}
    				},
    				"reviewNumStr": "276",
    				"enableReviewNewStyle": false,
    				"extraMap": {
    					"extraMapOuterPositiveReviewNum": 0
    				}
    			},
    			"sectionList": [
    				{
    					"sectionId": "sku_preview_section"
    				},
    				{
    					"sectionId": "price_section"
    				},
    				{
    					"data": {
    						"mallPromotionNewCell": {
    							"cellDetailList": [
    								{
    									"copyWriting": "2件9.9折",
    									"cellTagType": 26,
    									"copyWritingColor": "#E02E24",
    									"frameColor": "#E02E24",
    									"backgroundColor": "#FFFFFF",
    									"showExpiredTips": false,
    									"showTips": false
    								}
    							]
    						}
    					},
    					"sectionId": "discount_section",
    					"sectionAction": {
    						"actionType": "discount_pop",
    						"actionData": {
    							"bizName": "discount_pop_section"
    						}
    					}
    				},
    				{
    					"sectionId": "pay_tip_section"
    				},
    				{
    					"data": {
    						"color": "#FFFFFF",
    						"height": 6
    					},
    					"sectionId": "space_section"
    				},
    				{
    					"sectionId": "title_section"
    				},
    				{
    					"data": {
    						"color": "#FFFFFF",
    						"height": 8
    					},
    					"sectionId": "space_section"
    				},
    				{
    					"data": {
    						"control": {
    							"topLine": 1
    						}
    					},
    					"sectionId": "rank_section"
    				},
    				{
    					"data": {
    						"control": {
    							"topLine": 1
    						}
    					},
    					"sectionId": "service_section"
    				},
    				{
    					"sectionId": "space_section"
    				},
    				{
    					"sectionId": "group_section"
    				},
    				{
    					"sectionId": "space_section"
    				},
    				{
    					"sectionId": "comment_section"
    				},
    				{
    					"sectionId": "space_section"
    				},
    				{
    					"sectionId": "mall_comment_section"
    				},
    				{
    					"sectionId": "space_section"
    				},
    				{
    					"sectionId": "mall_info_section"
    				},
    				{
    					"sectionId": "mall_goods_rec_section"
    				},
    				{
    					"sectionId": "space_section"
    				},
    				{
    					"sectionId": "goods_rec_list_section"
    				},
    				{
    					"sectionId": "space_section"
    				},
    				{
    					"sectionId": "goods_property_section"
    				},
    				{
    					"sectionId": "video_section"
    				},
    				{
    					"sectionId": "illustration_section"
    				},
    				{
    					"sectionId": "decoration_section"
    				},
    				{
    					"data": {
    						"pulldownTitle": "点击查看商品价格说明",
    						"content": [
    							{
    								"txt": "单独购买价:",
    								"color": "#151516"
    							},
    							{
    								"txt": "是您单独购买商品的价格\n",
    								"color": "#58595B"
    							},
    							{
    								"txt": "发起拼单价:",
    								"color": "#151516"
    							},
    							{
    								"txt": "是您拼单购买商品的价格\n",
    								"color": "#58595B"
    							},
    							{
    								"txt": "划线价:",
    								"color": "#151516"
    							},
    							{
    								"txt": "是指商品展示的参考价,是商品的专柜价、吊牌价、零售价、厂商指导价或该商品曾经展示过的销售价等,并非原价;由于地区、时间的差异性和市场行情波动,专柜价、零售价等可能会与您购物时展示的不一致,该价格仅供您参考\n",
    								"color": "#58595B"
    							},
    							{
    								"txt": "特别提示:",
    								"color": "#151516"
    							},
    							{
    								"txt": "实际的成交价格可能因您使用优惠券等发生变化,最终以订单结算页的价格为准。若商家单独对价格进行说明的,以商家的表述为准。如您发现活动商品售价或促销信息存在异常,建议购买前先联系商家进行咨询",
    								"color": "#58595B"
    							}
    						]
    					},
    					"sectionId": "usage_price_desc_section"
    				}
    			],
    			"servicePromise": [
    				{
    					"id": 3,
    					"type": "退货包运费",
    					"typeColor": "#58595B",
    					"dialogType": "退货包运费",
    					"dialogTypeColor": "#151516",
    					"desc": "订单发货后90天内申请退货退款或换货,将按照物流首重费用补贴退货运费",
    					"top": 1,
    					"topType": 1,
    					"navigation": 0,
    					"navigationUrl": "",
    					"showTip": "收货后如不满意,可以免费退货",
    					"detailHidden": 0
    				},
    				{
    					"id": 1,
    					"type": "全场包邮",
    					"typeColor": "#58595B",
    					"dialogType": "全场包邮",
    					"dialogTypeColor": "#151516",
    					"desc": "所有商品包邮",
    					"top": 0,
    					"topType": 0,
    					"navigation": 0,
    					"navigationUrl": "",
    					"detailHidden": 0
    				},
    				{
    					"id": 2,
    					"type": "7天无理由退货",
    					"typeColor": "#58595B",
    					"dialogType": "7天无理由退货",
    					"dialogTypeColor": "#151516",
    					"desc": "满足相应条件(吊牌无缺失、未洗涤)时,消费者可申请“7天无理由退货”,其中定制订单不支持“7天无理由退货”",
    					"top": 0,
    					"topType": 0,
    					"navigation": 0,
    					"navigationUrl": "",
    					"detailHidden": 0
    				},
    				{
    					"id": 13,
    					"type": "48小时发货",
    					"typeColor": "#58595B",
    					"dialogType": "48小时发货",
    					"dialogTypeColor": "#151516",
    					"desc": "订单支付成功后48小时内发货,若未在48小时内发货,消费者将会收到至少3元无门槛代金券",
    					"top": 0,
    					"topType": 0,
    					"navigation": 0,
    					"navigationUrl": "",
    					"detailHidden": 0
    				}
    			],
    			"subSections": {
    				"discountPopSection": {
    					"template": {
    						"content": ""
    					},
    					"data": {
    						"environmentContext": {
    							"pageFrom": "35",
    							"newVersion": true,
    							"functionTag": false
    						},
    						"extension": [],
    						"title": "优惠详情",
    						"simplePromDisplayList": [
    							{
    								"activityTag": "多件优惠",
    								"activityCopyWriting": "该商品满2件享9.9折",
    								"sourceType": 971
    							}
    						],
    						"isUnavailable": false
    					}
    				}
    			},
    			"neighborGroup": {
    				"neighborStatus": 1,
    				"neighborData": {
    					"simpleCombineGroup": {
    						"groupOrderId": "2459490487171880375",
    						"groupType": 0,
    						"isHasJoinGroup": true,
    						"prefixText": "参与",
    						"suffixText": "的拼单,立即拼成",
    						"memberInfoList": [
    							{
    								"avatar": "https://avatar3.pddpic.com/a/Q09RZUU2TzhwRUNIRnhiY1RIZTAzYjQrS2lLaitFUXR3dz09djA0-1680860094?imageMogr2/thumbnail/100x"
    							}
    						],
    						"trackList": [
    							{
    								"pageElSn": "7858429"
    							}
    						],
    						"clickTrack": {
    							"pageElSn": "7858429"
    						}
    					},
    					"combineGroup": {
    						"groupTotal": 1,
    						"combineGroupList": [
    							{
    								"groupOrderId": "2459490487171880375",
    								"memberInfoList": [
    									{
    										"nickname": "温文尔雅😘 😘 😘 😘",
    										"avatar": "https://avatar3.pddpic.com/a/Q09RZUU2TzhwRUNIRnhiY1RIZTAzYjQrS2lLaitFUXR3dz09djA0-1680860094?imageMogr2/thumbnail/100x",
    										"isFriend": false
    									}
    								],
    								"isSelfGroup": false,
    								"expireTime": "1704769797",
    								"buttonDesc": "去拼单",
    								"gender": 1,
    								"groupType": 0,
    								"isShared": false,
    								"tagList": [],
    								"trackList": [
    									{
    										"pageElSn": "4264980",
    										"extra": {
    											"groupOrderId": "2459490487171880375",
    											"type": 0,
    											"buttonDsc": "去拼单"
    										}
    									}
    								],
    								"clickTrack": {
    									"pageElSn": "4264980",
    									"extra": {
    										"type": 0
    									}
    								},
    								"groupDesc": [
    									{
    										"txt": "还差",
    										"color": "#151516",
    										"font": 13,
    										"type": 1
    									},
    									{
    										"txt": "1人",
    										"color": "#E02E24",
    										"font": 13
    									},
    									{
    										"txt": "拼成",
    										"color": "#151516",
    										"font": 13
    									}
    								]
    							}
    						],
    						"recommendGroup": {
    							"groupOrderId": "2459490487171880375",
    							"memberInfoList": [
    								{
    									"nickname": "温文尔雅😘 😘 😘 😘",
    									"avatar": "https://avatar3.pddpic.com/a/Q09RZUU2TzhwRUNIRnhiY1RIZTAzYjQrS2lLaitFUXR3dz09djA0-1680860094?imageMogr2/thumbnail/100x",
    									"isFriend": false
    								}
    							],
    							"isSelfGroup": false,
    							"expireTime": "1704769797",
    							"buttonDesc": "去拼单",
    							"gender": 1,
    							"groupType": 0,
    							"isShared": false,
    							"tagList": [],
    							"trackList": [
    								{
    									"pageElSn": "4264980",
    									"extra": {
    										"groupOrderId": "2459490487171880375",
    										"type": 0,
    										"buttonDsc": "去拼单"
    									}
    								}
    							],
    							"clickTrack": {
    								"pageElSn": "4264980",
    								"extra": {
    									"type": 0
    								}
    							},
    							"groupDesc": [
    								{
    									"txt": "还差",
    									"color": "#151516",
    									"font": 13,
    									"type": 1
    								},
    								{
    									"txt": "1人",
    									"color": "#E02E24",
    									"font": 13
    								},
    								{
    									"txt": "拼成",
    									"color": "#151516",
    									"font": 13
    								}
    							]
    						},
    						"combineGroupDesc": "1人在拼,参与可立即拼成",
    						"combineGroupPopupTitle": "可参与的拼单",
    						"combineGroupPopupFooter": "",
    						"combineGroupButtonDesc": "去拼单",
    						"pulldownGroup": {
    							"groupInfo": {
    								"groupOrderId": "2459490487171880375",
    								"memberInfoList": [
    									{
    										"nickname": "温文尔雅😘 😘 😘 😘",
    										"avatar": "https://avatar3.pddpic.com/a/Q09RZUU2TzhwRUNIRnhiY1RIZTAzYjQrS2lLaitFUXR3dz09djA0-1680860094?imageMogr2/thumbnail/100x",
    										"isFriend": false
    									}
    								],
    								"isSelfGroup": false,
    								"expireTime": "1704769797",
    								"buttonDesc": "去拼单",
    								"gender": 1,
    								"groupType": 0,
    								"isShared": false
    							},
    							"groupTitleInfo": {
    								"groupTitleDesc": "还差1人,参与可立即拼成",
    								"needJoinCountdown": true
    							}
    						},
    						"combineGroupListType": 0,
    						"avatarList": [
    							"https://avatar3.pddpic.com/a/Q09RZUU2TzhwRUNIRnhiY1RIZTAzYjQrS2lLaitFUXR3dz09djA0-1680860094?imageMogr2/thumbnail/100x"
    						],
    						"extraAvatarList": [
    							"https://avatar3.pddpic.com/a/Q09RZUU2TzhwRUNIRnhiY1RIZTAzYjQrS2lLaitFUXR3dz09djA0-1680860094?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q0VIUG1valNWbEFjSHIyUGR1UFM2bjlabXBPcmJaY29wZz09djA0-1638630960?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q0lvRUZzNVpBT044VUliZXp4NVdzYUN5ZFVCd0QvZkh0UT09djA0-1688273692?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q0xGb2xkYm5HZXJrb3pHNkVFRTZnSXd4N2Nyc01IVXZLQT09djA0-1613012825?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q010QWFDaVVYRllrM0pxd3dRbmFEZkorODFZYXVqVHdiUT09djA0-1689751996?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q0dxcDRUWnVWYTNsTGswODRGaE1HRGp1Wm1Vc21adlJHdz09djA0-1613911542?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q01IUC9EVGRWWCtTMjZqUTZuUEhvb1Q3WVZ0MFpObEdvdz09djA0-1642600554?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q0swQy9iRnc4bWVNZnNVZzJOSXd6MVJZaG5xNHJKU041Zz09djA0-1699957310?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q01adjdwOWMyWXpXQ1l6SE50ZythRmxaR2Y2b0hEbGRDUT09djA0-1596114214?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q0hhWnRhK2E4VEtXajFVMlNvTHg1VGx5T2syNFJ3Uk44QT09djA0-1585557971?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q0lBN1pjcnpQTFRML0x0RVRiZFl3Y2tONnNRSmJNYjlQdz09djA0-1645181912?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q0Fnd2tVU2hvalZJYmcrRklHN2JXRVljU2x1WHdUbWlhUT09djA0-1634442990?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q0ZtWHlFbHpPRVpvWHl4SUY5OXBFRlBIUUxMRmZXVHRDdz09djA0-1702030509?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q0pSbUlJa0FnZzZ5ajlOSkdpL2RCM0N4QVFocXAwTE5pUT09djA0-1695729907?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q1Axelh1ODQ2c1lxQitDQWdDTDJCZHNqOFhNY0laSmpPQT09djA0-1699703840?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q05rVTNLaXpoMXRNajFibVovemVrM1d1OVhxL0psV1RGdz09djA0-1645253996?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q05YRUt2RU42TkJqZmxVMjNLM0FBbWRrQzBpQS9lOFJIUT09djA0-1689902644?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q05uNFhUazVkdzRETXNMVHFkTzBBaGxlV1NXVWhFTW42QT09djA0-1699797272?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q05HVldYbFdnbm9mSEpHNjhrSTNOQitQekZCbXZ1ZjBoQT09djA0-1665185245?imageMogr2/thumbnail/100x",
    							"https://avatar3.pddpic.com/a/Q01kZWp5VDRBL0tWei9OWE8xV0JIQ3M2ZGdjTElBTUFnUT09djA0-1656078395?imageMogr2/thumbnail/100x"
    						]
    					}
    				}
    			},
    			"secondaryApi": {
    				"url": "/api/oak/integration/require_extra",
    				"method": "POST",
    				"params": {
    					"goods_id": "559707595804",
    					"page_from": "35",
    					"mall_id": 202682397,
    					"func_points": [
    						"mall_active_time"
    					]
    				}
    			},
    			"bottomSectionList": [
    				{
    					"control": {
    						"showType": 1,
    						"closeOptions": 0,
    						"limitType": 0,
    						"coverOptions": 0
    					},
    					"sectionId": "group_buy_section"
    				}
    			]
    		},
    		"isABRafLoadJS": true,
    		"isABChatActiveDuration": true,
    		"app_ver": "3.0.1-7.0",
    		"_ddf": "eow",
    		"app_ver_check": "ok",
    		"format_check": "ok"
    	},
    	"error": "",
    	"secache": "69f410de1c7f10e99b82a32be750da6f",
    	"secache_time": 1704683792,
    	"secache_date": "2024-01-08 11:16:32",
    	"reason": "",
    	"error_code": "0000",
    	"cache": 0,
    	"api_info": "today:101 max:10000 all[154=101+30+23];expires:2030-10-30",
    	"execution_time": "23.298",
    	"server_time": "Beijing/2024-01-08 11:16:32",
    	"client_ip": "61.131.236.75",
    	"call_args": {
    		"num_iid": "559707595804"
    	},
    	"api_type": "pinduoduo",
    	"translate_language": "zh-CN",
    	"translate_engine": "baidu",
    	"server_memory": "4.08MB",
    	"request_id": "3.659b68f93efc0",
    	"last_id": "2442039363"
    }
    异常示例
    {
    		"error": "item-not-found",
    		"reason": "商品没找到",
    		"error_code": "2000",
    		"success": 0,
    		"cache": 0,
    		"api_info": "today:0 max:10000",
    		"execution_time": 0.081,
    		"server_time": "Beijing/2023-11-09 13:34:59",
    		"call_args": [],
    		"api_type": "pinduoduo",
    		"request_id": "15ee0ffc041242"}
    相关资料
    错误码解释
    状态代码(error_code) 状态信息 详细描述 是否收费
    0000success接口调用成功并返回相关数据
    2000Search success but no result接口访问成功,但是搜索没有结果
    4000Server internal error服务器内部错误
    4001Network error网络错误
    4002Target server error目标服务器错误
    4003Param error用户输入参数错误忽略
    4004Account not found用户帐号不存在忽略
    4005Invalid authentication credentials授权失败忽略
    4006API stopped您的当前API已停用忽略
    4007Account stopped您的账户已停用忽略
    4008API rate limit exceeded并发已达上限忽略
    4009API maintenanceAPI维护中忽略
    4010API not found with these valuesAPI不存在忽略
    4012Please add api first请先添加api忽略
    4013Number of calls exceeded调用次数超限忽略
    4014Missing url param参数缺失忽略
    4015Wrong pageToken参数pageToken有误忽略
    4016Insufficient balance余额不足忽略
    4017timeout error请求超时
    5000unknown error未知错误
    API 工具
    如何获得此API
    立即开通 有疑问联系客服QQ:QQ:31424016063142401606(微信同号)