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

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

pinduoduo.item_get_app_pro

  • 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:

    名称 类型 必须 示例值 描述
    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": 1701143447,
    			"serverTimeTen": 17011434470,
    			"catID": 20512,
    			"goodsID": 373913035272,
    			"brandId": "",
    			"goodsName": "夏季休闲女鞋皮鞋爆款网红单鞋",
    			"shareDesc": "【极速退款】夏季休闲女鞋皮鞋爆款网红单鞋",
    			"goodsType": 1,
    			"localGroups": [],
    			"hasLocalGroup": 0,
    			"topGallery": [
    				{
    					"url": "https://img.pddpic.com/mms-material-img/2022-06-11/ea26f652-6564-4a22-8acc-959e737c3ff3.jpeg.a.jpeg",
    					"id": 774736340916,
    					"aspectRatio": 1
    				},
    				{
    					"url": "https://img.pddpic.com/mms-material-img/2022-06-11/3b134f05-aaf7-4727-bcba-f69291d628fd.jpeg.a.jpeg",
    					"id": 774736340917,
    					"aspectRatio": 1
    				},
    				{
    					"url": "https://img.pddpic.com/mms-material-img/2022-06-11/026fcee7-8d73-4f29-8025-365f65196a13.jpeg.a.jpeg",
    					"id": 774736340918,
    					"aspectRatio": 1
    				},
    				{
    					"url": "https://img.pddpic.com/mms-material-img/2022-06-11/ddd07ff4-13d2-4689-a490-e791087578db.jpeg.a.jpeg",
    					"id": 774736340919,
    					"aspectRatio": 1
    				},
    				{
    					"url": "https://img.pddpic.com/mms-material-img/2022-06-11/eb3de74e-6dee-4dbf-aa01-ced2dd255b84.jpeg.a.jpeg",
    					"id": 774736340920,
    					"aspectRatio": 1
    				},
    				{
    					"url": "https://img.pddpic.com/mms-material-img/2022-06-11/ecd99a81-0b2b-48f7-91ee-3e0a8e3f8aed.jpeg.a.jpeg",
    					"id": 774736340921,
    					"aspectRatio": 1
    				}
    			],
    			"viewImageData": [
    				"https://img.pddpic.com/mms-material-img/2022-06-11/ea26f652-6564-4a22-8acc-959e737c3ff3.jpeg.a.jpeg",
    				"https://img.pddpic.com/mms-material-img/2022-06-11/3b134f05-aaf7-4727-bcba-f69291d628fd.jpeg.a.jpeg",
    				"https://img.pddpic.com/mms-material-img/2022-06-11/026fcee7-8d73-4f29-8025-365f65196a13.jpeg.a.jpeg",
    				"https://img.pddpic.com/mms-material-img/2022-06-11/ddd07ff4-13d2-4689-a490-e791087578db.jpeg.a.jpeg",
    				"https://img.pddpic.com/mms-material-img/2022-06-11/eb3de74e-6dee-4dbf-aa01-ced2dd255b84.jpeg.a.jpeg",
    				"https://img.pddpic.com/mms-material-img/2022-06-11/ecd99a81-0b2b-48f7-91ee-3e0a8e3f8aed.jpeg.a.jpeg"
    			],
    			"detailGallery": [
    				{
    					"url": "https://img.pddpic.com/mms-material-img/2022-06-11/ea26f652-6564-4a22-8acc-959e737c3ff3.jpeg.a.jpeg",
    					"width": 800,
    					"height": 800
    				},
    				{
    					"url": "https://img.pddpic.com/mms-material-img/2022-06-11/3b134f05-aaf7-4727-bcba-f69291d628fd.jpeg.a.jpeg",
    					"width": 800,
    					"height": 800
    				},
    				{
    					"url": "https://img.pddpic.com/mms-material-img/2022-06-11/ddd07ff4-13d2-4689-a490-e791087578db.jpeg.a.jpeg",
    					"width": 800,
    					"height": 800
    				},
    				{
    					"url": "https://img.pddpic.com/mms-material-img/2022-06-11/026fcee7-8d73-4f29-8025-365f65196a13.jpeg.a.jpeg",
    					"width": 800,
    					"height": 800
    				},
    				{
    					"url": "https://img.pddpic.com/mms-material-img/2022-06-11/eb3de74e-6dee-4dbf-aa01-ced2dd255b84.jpeg.a.jpeg",
    					"width": 800,
    					"height": 800
    				},
    				{
    					"url": "https://img.pddpic.com/mms-material-img/2022-06-11/ecd99a81-0b2b-48f7-91ee-3e0a8e3f8aed.jpeg.a.jpeg",
    					"width": 800,
    					"height": 800
    				}
    			],
    			"videoGallery": [],
    			"descVideoGallery": [],
    			"mallID": 169170553,
    			"groupTypes": [
    				{
    					"requireNum": "1",
    					"price": "0",
    					"groupID": 72204045042,
    					"startTime": 1451577600,
    					"endTime": 2082729600,
    					"orderLimit": 999999
    				},
    				{
    					"requireNum": "2",
    					"price": "0",
    					"groupID": 72204045043,
    					"startTime": 1451577600,
    					"endTime": 2082729600,
    					"orderLimit": 999999
    				}
    			],
    			"skus": [
    				{
    					"skuId": 1194468971507,
    					"goodsId": 373913035272,
    					"thumbUrl": "https://img.pddpic.com/mms-material-img/2022-06-11/25e3a68a-0388-4bdd-8fbb-ef8b73709c39.jpeg.a.jpeg",
    					"initQuantity": 0,
    					"quantity": 0,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 0,
    					"isOnsale": 1,
    					"spec": "54780,48566",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "白色",
    							"spec_key_id": 8640,
    							"spec_value_id": 54780
    						},
    						{
    							"spec_key": "鞋码",
    							"spec_value": "35",
    							"spec_key_id": 26908,
    							"spec_value_id": 48566
    						}
    					],
    					"price": 0,
    					"normalPrice": "163",
    					"groupPrice": "99",
    					"oldGroupPrice": 9900,
    					"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}",
    					"groupTip": "券前¥99",
    					"groupTipType": 5,
    					"groupTipColor": "#58595B",
    					"groupTipFont": 14,
    					"normalSavePrice": "64",
    					"priceDisplay": {
    						"prefix": "新客",
    						"rmb": "¥",
    						"price": "97"
    					},
    					"skuID": 1194468971507,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1194468971508,
    					"goodsId": 373913035272,
    					"thumbUrl": "https://img.pddpic.com/mms-material-img/2022-06-11/25e3a68a-0388-4bdd-8fbb-ef8b73709c39.jpeg.a.jpeg",
    					"initQuantity": 0,
    					"quantity": 760,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 100,
    					"isOnsale": 1,
    					"spec": "54780,48567",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "白色",
    							"spec_key_id": 8640,
    							"spec_value_id": 54780
    						},
    						{
    							"spec_key": "鞋码",
    							"spec_value": "36",
    							"spec_key_id": 26908,
    							"spec_value_id": 48567
    						}
    					],
    					"price": 0,
    					"normalPrice": "163",
    					"groupPrice": "99",
    					"oldGroupPrice": 9900,
    					"marketPrice": 0,
    					"weight": 0,
    					"yellowLabelList": [
    						{
    							"labelText": "2件5折",
    							"labelType": "single_goods_percentage_event"
    						},
    						{
    							"labelText": "满910减9",
    							"labelType": "mall_area_event"
    						}
    					],
    					"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}",
    					"groupTip": "券前¥99",
    					"groupTipType": 5,
    					"groupTipColor": "#58595B",
    					"groupTipFont": 14,
    					"normalSavePrice": "64",
    					"priceDisplay": {
    						"prefix": "新客",
    						"rmb": "¥",
    						"price": "97"
    					},
    					"skuID": 1194468971508,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1194468971509,
    					"goodsId": 373913035272,
    					"thumbUrl": "https://img.pddpic.com/mms-material-img/2022-06-11/25e3a68a-0388-4bdd-8fbb-ef8b73709c39.jpeg.a.jpeg",
    					"initQuantity": 0,
    					"quantity": 0,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 0,
    					"isOnsale": 1,
    					"spec": "54780,26913",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "白色",
    							"spec_key_id": 8640,
    							"spec_value_id": 54780
    						},
    						{
    							"spec_key": "鞋码",
    							"spec_value": "37",
    							"spec_key_id": 26908,
    							"spec_value_id": 26913
    						}
    					],
    					"price": 0,
    					"normalPrice": "163",
    					"groupPrice": "99",
    					"oldGroupPrice": 9900,
    					"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}",
    					"groupTip": "券前¥99",
    					"groupTipType": 5,
    					"groupTipColor": "#58595B",
    					"groupTipFont": 14,
    					"normalSavePrice": "64",
    					"priceDisplay": {
    						"prefix": "新客",
    						"rmb": "¥",
    						"price": "97"
    					},
    					"skuID": 1194468971509,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1194468971510,
    					"goodsId": 373913035272,
    					"thumbUrl": "https://img.pddpic.com/mms-material-img/2022-06-11/25e3a68a-0388-4bdd-8fbb-ef8b73709c39.jpeg.a.jpeg",
    					"initQuantity": 0,
    					"quantity": 0,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 0,
    					"isOnsale": 1,
    					"spec": "54780,48568",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "白色",
    							"spec_key_id": 8640,
    							"spec_value_id": 54780
    						},
    						{
    							"spec_key": "鞋码",
    							"spec_value": "38",
    							"spec_key_id": 26908,
    							"spec_value_id": 48568
    						}
    					],
    					"price": 0,
    					"normalPrice": "163",
    					"groupPrice": "99",
    					"oldGroupPrice": 9900,
    					"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}",
    					"groupTip": "券前¥99",
    					"groupTipType": 5,
    					"groupTipColor": "#58595B",
    					"groupTipFont": 14,
    					"normalSavePrice": "64",
    					"priceDisplay": {
    						"prefix": "新客",
    						"rmb": "¥",
    						"price": "97"
    					},
    					"skuID": 1194468971510,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1194468971511,
    					"goodsId": 373913035272,
    					"thumbUrl": "https://img.pddpic.com/mms-material-img/2022-06-11/25e3a68a-0388-4bdd-8fbb-ef8b73709c39.jpeg.a.jpeg",
    					"initQuantity": 0,
    					"quantity": 0,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 0,
    					"isOnsale": 1,
    					"spec": "54780,51553",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "白色",
    							"spec_key_id": 8640,
    							"spec_value_id": 54780
    						},
    						{
    							"spec_key": "鞋码",
    							"spec_value": "39",
    							"spec_key_id": 26908,
    							"spec_value_id": 51553
    						}
    					],
    					"price": 0,
    					"normalPrice": "163",
    					"groupPrice": "99",
    					"oldGroupPrice": 9900,
    					"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}",
    					"groupTip": "券前¥99",
    					"groupTipType": 5,
    					"groupTipColor": "#58595B",
    					"groupTipFont": 14,
    					"normalSavePrice": "64",
    					"priceDisplay": {
    						"prefix": "新客",
    						"rmb": "¥",
    						"price": "97"
    					},
    					"skuID": 1194468971511,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1194468971512,
    					"goodsId": 373913035272,
    					"thumbUrl": "https://img.pddpic.com/mms-material-img/2022-06-11/026fcee7-8d73-4f29-8025-365f65196a13.jpeg.a.jpeg",
    					"initQuantity": 0,
    					"quantity": 0,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 0,
    					"isOnsale": 1,
    					"spec": "49751,48566",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "黑色",
    							"spec_key_id": 8640,
    							"spec_value_id": 49751
    						},
    						{
    							"spec_key": "鞋码",
    							"spec_value": "35",
    							"spec_key_id": 26908,
    							"spec_value_id": 48566
    						}
    					],
    					"price": 0,
    					"normalPrice": "163",
    					"groupPrice": "99",
    					"oldGroupPrice": 9900,
    					"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}",
    					"groupTip": "券前¥99",
    					"groupTipType": 5,
    					"groupTipColor": "#58595B",
    					"groupTipFont": 14,
    					"normalSavePrice": "64",
    					"priceDisplay": {
    						"prefix": "新客",
    						"rmb": "¥",
    						"price": "97"
    					},
    					"skuID": 1194468971512,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1194468971513,
    					"goodsId": 373913035272,
    					"thumbUrl": "https://img.pddpic.com/mms-material-img/2022-06-11/026fcee7-8d73-4f29-8025-365f65196a13.jpeg.a.jpeg",
    					"initQuantity": 0,
    					"quantity": 0,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 0,
    					"isOnsale": 1,
    					"spec": "49751,48567",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "黑色",
    							"spec_key_id": 8640,
    							"spec_value_id": 49751
    						},
    						{
    							"spec_key": "鞋码",
    							"spec_value": "36",
    							"spec_key_id": 26908,
    							"spec_value_id": 48567
    						}
    					],
    					"price": 0,
    					"normalPrice": "163",
    					"groupPrice": "99",
    					"oldGroupPrice": 9900,
    					"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}",
    					"groupTip": "券前¥99",
    					"groupTipType": 5,
    					"groupTipColor": "#58595B",
    					"groupTipFont": 14,
    					"normalSavePrice": "64",
    					"priceDisplay": {
    						"prefix": "新客",
    						"rmb": "¥",
    						"price": "97"
    					},
    					"skuID": 1194468971513,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1194468971514,
    					"goodsId": 373913035272,
    					"thumbUrl": "https://img.pddpic.com/mms-material-img/2022-06-11/026fcee7-8d73-4f29-8025-365f65196a13.jpeg.a.jpeg",
    					"initQuantity": 0,
    					"quantity": 0,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 0,
    					"isOnsale": 1,
    					"spec": "49751,26913",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "黑色",
    							"spec_key_id": 8640,
    							"spec_value_id": 49751
    						},
    						{
    							"spec_key": "鞋码",
    							"spec_value": "37",
    							"spec_key_id": 26908,
    							"spec_value_id": 26913
    						}
    					],
    					"price": 0,
    					"normalPrice": "163",
    					"groupPrice": "99",
    					"oldGroupPrice": 9900,
    					"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}",
    					"groupTip": "券前¥99",
    					"groupTipType": 5,
    					"groupTipColor": "#58595B",
    					"groupTipFont": 14,
    					"normalSavePrice": "64",
    					"priceDisplay": {
    						"prefix": "新客",
    						"rmb": "¥",
    						"price": "97"
    					},
    					"skuID": 1194468971514,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1194468971515,
    					"goodsId": 373913035272,
    					"thumbUrl": "https://img.pddpic.com/mms-material-img/2022-06-11/026fcee7-8d73-4f29-8025-365f65196a13.jpeg.a.jpeg",
    					"initQuantity": 0,
    					"quantity": 0,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 0,
    					"isOnsale": 1,
    					"spec": "49751,48568",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "黑色",
    							"spec_key_id": 8640,
    							"spec_value_id": 49751
    						},
    						{
    							"spec_key": "鞋码",
    							"spec_value": "38",
    							"spec_key_id": 26908,
    							"spec_value_id": 48568
    						}
    					],
    					"price": 0,
    					"normalPrice": "163",
    					"groupPrice": "99",
    					"oldGroupPrice": 9900,
    					"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}",
    					"groupTip": "券前¥99",
    					"groupTipType": 5,
    					"groupTipColor": "#58595B",
    					"groupTipFont": 14,
    					"normalSavePrice": "64",
    					"priceDisplay": {
    						"prefix": "新客",
    						"rmb": "¥",
    						"price": "97"
    					},
    					"skuID": 1194468971515,
    					"skuExpansionPrice": "0"
    				},
    				{
    					"skuId": 1194468971516,
    					"goodsId": 373913035272,
    					"thumbUrl": "https://img.pddpic.com/mms-material-img/2022-06-11/026fcee7-8d73-4f29-8025-365f65196a13.jpeg.a.jpeg",
    					"initQuantity": 0,
    					"quantity": 0,
    					"limitQuantity": 999999,
    					"soldQuantity": 0,
    					"defaultQuantity": 0,
    					"isOnsale": 1,
    					"spec": "49751,51553",
    					"specs": [
    						{
    							"spec_key": "颜色分类",
    							"spec_value": "黑色",
    							"spec_key_id": 8640,
    							"spec_value_id": 49751
    						},
    						{
    							"spec_key": "鞋码",
    							"spec_value": "39",
    							"spec_key_id": 26908,
    							"spec_value_id": 51553
    						}
    					],
    					"price": 0,
    					"normalPrice": "163",
    					"groupPrice": "99",
    					"oldGroupPrice": 9900,
    					"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}",
    					"groupTip": "券前¥99",
    					"groupTipType": 5,
    					"groupTipColor": "#58595B",
    					"groupTipFont": 14,
    					"normalSavePrice": "64",
    					"priceDisplay": {
    						"prefix": "新客",
    						"rmb": "¥",
    						"price": "97"
    					},
    					"skuID": 1194468971516,
    					"skuExpansionPrice": "0"
    				}
    			],
    			"thumbUrl": "https://img.pddpic.com/gaudit-image/2022-06-11/30a3515b7957263d71d93d8c5f197e07.jpeg",
    			"hdThumbUrl": "https://img.pddpic.com/gaudit-image/2022-06-11/1a2e4afec8395feabb6e13ad756ee1b3.jpeg",
    			"eventType": 0,
    			"isApp": 0,
    			"isFreshmanApp": 0,
    			"sideSalesTip": "已拼1件",
    			"catID1": 8509,
    			"catID2": 8517,
    			"catID3": 20512,
    			"catID4": 0,
    			"spuID": 0,
    			"eventComing": false,
    			"isSpike": false,
    			"isTodaySpike": false,
    			"isTomorrowSpike": false,
    			"isSpikeComing": false,
    			"overseaType": 0,
    			"gpv": null,
    			"quickRefund": false,
    			"rv": true,
    			"maxNormalPrice": "163",
    			"minNormalPrice": "163",
    			"maxGroupPrice": "99",
    			"minGroupPrice": "99",
    			"maxOnSaleGroupPrice": "99",
    			"minOnSaleGroupPrice": "99",
    			"maxOnSaleGroupPriceInCent": 9900,
    			"minOnSaleGroupPriceInCent": 9900,
    			"maxOnSaleNormalPrice": "163",
    			"minOnSaleNormalPrice": "163",
    			"unselectNormalSavePrice": "64",
    			"oldMinOnSaleGroupPriceInCent": 9900,
    			"skipGoodsIDs": [
    				"0"
    			],
    			"tag": null,
    			"icon": null,
    			"tagIcon": [],
    			"isSecondHand": 0,
    			"appClientOnly": 0,
    			"isColdGoods": 1,
    			"goodsProperty": [
    				{
    					"key": "后跟高",
    					"values": [
    						"低跟(1cm-3cm)"
    					],
    					"ref_pid": 1617,
    					"reference_id": 0
    				},
    				{
    					"key": "鞋底材质",
    					"values": [
    						"橡胶"
    					],
    					"ref_pid": 402,
    					"reference_id": 0
    				},
    				{
    					"key": "闭合方式",
    					"values": [
    						"一字式扣带"
    					],
    					"ref_pid": 330,
    					"reference_id": 0
    				},
    				{
    					"key": "风格",
    					"values": [
    						"甜美"
    					],
    					"ref_pid": 322,
    					"reference_id": 0
    				},
    				{
    					"key": "款式",
    					"values": [
    						"健步鞋"
    					],
    					"ref_pid": 324,
    					"reference_id": 0
    				},
    				{
    					"key": "上市时节",
    					"values": [
    						"2022年夏季"
    					],
    					"ref_pid": 1906,
    					"reference_id": 0
    				},
    				{
    					"key": "制作工艺",
    					"values": [
    						"胶粘"
    					],
    					"ref_pid": 392,
    					"reference_id": 0
    				},
    				{
    					"key": "鞋面内里材质",
    					"values": [
    						"PU"
    					],
    					"ref_pid": 1981,
    					"reference_id": 0
    				},
    				{
    					"key": "鞋垫材质",
    					"values": [
    						"棉"
    					],
    					"ref_pid": 1982,
    					"reference_id": 0
    				},
    				{
    					"key": "鞋头款式",
    					"values": [
    						"圆头"
    					],
    					"ref_pid": 336,
    					"reference_id": 0
    				},
    				{
    					"key": "跟底款式",
    					"values": [
    						"松糕底"
    					],
    					"ref_pid": 331,
    					"reference_id": 0
    				},
    				{
    					"key": "开口深度",
    					"values": [
    						"浅口"
    					],
    					"ref_pid": 1616,
    					"reference_id": 0
    				},
    				{
    					"key": "功能",
    					"values": [
    						"透气"
    					],
    					"ref_pid": 351,
    					"reference_id": 0
    				},
    				{
    					"key": "图案",
    					"values": [
    						"纯色"
    					],
    					"ref_pid": 750,
    					"reference_id": 0
    				},
    				{
    					"key": "流行元素",
    					"values": [
    						"铆钉"
    					],
    					"ref_pid": 321,
    					"reference_id": 0
    				},
    				{
    					"key": "适用人群",
    					"values": [
    						"青年(18-40周岁)"
    					],
    					"ref_pid": 338,
    					"reference_id": 0
    				},
    				{
    					"key": "适用场合",
    					"values": [
    						"运动"
    					],
    					"ref_pid": 333,
    					"reference_id": 0
    				}
    			],
    			"skuProperty": [],
    			"propertyShowNum": 6,
    			"linePrice": "206",
    			"priceStyle": 0,
    			"quicklyExpire": [],
    			"userNoticeDynamic": {
    				"notice": "",
    				"notice_type": 0,
    				"priority": 1,
    				"type": 0
    			},
    			"goodsExpansionPrice": "0",
    			"beforeRemindSeconds": 300,
    			"newShareTitle": {
    				"price": "99元 ",
    				"suf": "夏季休闲女鞋皮鞋爆款网红单鞋",
    				"not_null": true
    			},
    			"bottomBanner": null,
    			"isAppFlow": true,
    			"isPersonalFav": 0,
    			"groupNumFull": false,
    			"showHistoryGroup": 1,
    			"shareLink": "goods2.html?goods_id=373913035272&page_from=0&pxq_secret_key=UWCEUUTBZQMGOXYUPSWGNZVEAQLAXGSB3TQEI43MLEMUZFIJTPRA&_oak_share_snapshot_num=9900&_oak_share_time=1701143447",
    			"promptExplain": "鞋类商品如出现磨损,或已洗涤,或吊牌已摘等影响二次销售情形,且无质量问题的,不支持七天无理由退换。",
    			"isAbnormalStatus": false,
    			"statusExplain": "",
    			"checkQuantity": 1,
    			"destinationUrl": "order_checkout.html",
    			"hideMall": false,
    			"isMallRec": true,
    			"status": 1,
    			"isGoodsOnSale": true,
    			"isSkuOnSale": true,
    			"isOnSale": true,
    			"quantity": 760,
    			"propertyCardClick": 0,
    			"showRecTitle": 1,
    			"showRec": 1,
    			"options": [
    				54,
    				9,
    				13
    			],
    			"eventTime": 1701143447,
    			"mallService": {
    				"service": [
    					{
    						"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
    					},
    					{
    						"id": 24,
    						"type": "极速退款",
    						"type_color": "#58595B",
    						"dialog_type": "极速退款",
    						"dialog_type_color": "#151516",
    						"desc": "满足相应条件时,拼单成功12小时内,待发货状态下,提交退款申请将立即退款",
    						"top": 1,
    						"top_type": 11,
    						"navigation": 0,
    						"navigation_url": "",
    						"detail_hidden": 0
    					}
    				],
    				"vipService": [],
    				"honorService": []
    			},
    			"skuDirectOrder": false,
    			"vasTemplateId": [],
    			"skuNewPricePrefix": "券前",
    			"ui": {
    				"price_section": {
    					"type": "normal",
    					"data": {
    						"after_coupon_tag_desc": "券后¥97",
    						"after_coupon_tag_rich": [
    							{
    								"txt": "券后",
    								"font": 16,
    								"type": 1
    							},
    							{
    								"type": 2,
    								"space": 3
    							},
    							{
    								"txt": "¥",
    								"font": 17,
    								"type": 1
    							},
    							{
    								"txt": "97",
    								"font": 17,
    								"type": 1
    							}
    						],
    						"after_coupon_jump_url": "lego_goods_detail_coupon_price_popup_goods_detail_coupon_price_popup.html?lego_type=v8&lego_minversion=5.28.0&lego_ssr_api=/api/goods_detail_coupon_price_popup/get_config/goods_detail_coupon_price_popup&rp=0&goods_id=373913035272&mall_id=169170553&cat_id=20512&cat_id1=8509&cat_id2=8517&cat_id3=20512&cat_id4=0&goods_type=1&event_type=0&oversea_type=0&min_on_sale_group_price=9900&from_page=0&promo_price_version=1701143447076&options=%5B54%2C9%2C13%5D&promo_price=9700&fb_send_amount=0&best_single_price_num=2&best_single_price_price=9900&has_suffix=0",
    						"after_coupon_has_suffix": 0,
    						"after_coupon_fb_amount": 0
    					}
    				},
    				"new_price_section": {
    					"is_normal": 1,
    					"type": "normal",
    					"price": "97",
    					"price_rich": [
    						{
    							"txt": "97",
    							"font": 28,
    							"type": 1
    						}
    					],
    					"prefix": "新客",
    					"prefix_rich": [
    						{
    							"txt": "新客",
    							"font": 15,
    							"type": 1
    						},
    						{
    							"type": 2,
    							"space": 2
    						},
    						{
    							"txt": "¥",
    							"font": 16,
    							"type": 1
    						}
    					],
    					"color": "#E02E24",
    					"bg_color": "#FFFFFF",
    					"after_coupon": {
    						"tag_rich": [
    							{
    								"txt": "券后",
    								"font": 16,
    								"type": 1
    							},
    							{
    								"type": 2,
    								"space": 3
    							},
    							{
    								"txt": "¥",
    								"font": 17,
    								"type": 1
    							},
    							{
    								"txt": "97",
    								"font": 17,
    								"type": 1
    							}
    						],
    						"click_url": "lego_goods_detail_coupon_price_popup_goods_detail_coupon_price_popup.html?lego_type=v8&lego_minversion=5.28.0&lego_ssr_api=/api/goods_detail_coupon_price_popup/get_config/goods_detail_coupon_price_popup&rp=0&goods_id=373913035272&mall_id=169170553&cat_id=20512&cat_id1=8509&cat_id2=8517&cat_id3=20512&cat_id4=0&goods_type=1&event_type=0&oversea_type=0&min_on_sale_group_price=9900&from_page=0&promo_price_version=1701143447076&options=%5B54%2C9%2C13%5D&promo_price=9700&fb_send_amount=0&best_single_price_num=2&best_single_price_price=9900&has_suffix=0",
    						"has_suffix": 0,
    						"fb_amount": 0,
    						"color": "#FFFFFF",
    						"bg_color": "#E02E24",
    						"click_color": "#910A0A"
    					},
    					"desc_labels": [
    						"已拼1件"
    					],
    					"desc_color": "#58595B",
    					"imp_tracks": [
    						{
    							"extra": {
    								"single_price": "163",
    								"line_price": "206",
    								"sales_tip": "已拼1件",
    								"type": 0,
    								"pindan_price": "99",
    								"cp_price": "97",
    								"desc_labels": "已拼1件"
    							},
    							"page_el_sn": "5049756"
    						},
    						{
    							"extra": {
    								"tag_num": 2
    							},
    							"page_el_sn": "6571701"
    						}
    					],
    					"price_tag": {
    						"txt": "¥49.5/件",
    						"prefix_txt": "2件",
    						"color": "#FFFFFF",
    						"click_url": "lego_goods_detail_coupon_price_popup_goods_detail_coupon_price_popup.html?lego_type=v8&lego_minversion=5.28.0&lego_ssr_api=/api/goods_detail_coupon_price_popup/get_config/goods_detail_coupon_price_popup&rp=0&goods_id=373913035272&mall_id=169170553&cat_id=20512&cat_id1=8509&cat_id2=8517&cat_id3=20512&cat_id4=0&goods_type=1&event_type=0&oversea_type=0&min_on_sale_group_price=9900&from_page=0&promo_price_version=1701143447076&options=%5B54%2C9%2C13%5D&promo_price=9700&fb_send_amount=0&best_single_price_num=2&best_single_price_price=9900&has_suffix=0",
    						"bg_color": "#E02E24",
    						"click_bg_color": "#C51E14",
    						"click_color": "#EDBBB8",
    						"medium_font": 0,
    						"click_track": {
    							"page_el_sn": "6571701"
    						}
    					},
    					"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": "163",
    								"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": 4
    								},
    								"page_el_sn": "99809"
    							}
    						],
    						"click_track": {
    							"extra": {
    								"type": 4
    							},
    							"page_el_sn": "99809"
    						}
    					},
    					"right_button": {
    						"title": [
    							{
    								"txt": "新客",
    								"font": 17,
    								"type": 1
    							},
    							{
    								"type": 2,
    								"space": 3
    							},
    							{
    								"txt": "¥",
    								"font": 19,
    								"type": 1
    							},
    							{
    								"type": 2,
    								"space": 1
    							},
    							{
    								"txt": "97",
    								"font": 19,
    								"type": 1
    							}
    						],
    						"desc": "免拼购买",
    						"click_action": "groupBuy",
    						"action_data": {
    							"order_extra_type": 1
    						},
    						"text_color": "#FFFFFF",
    						"bg_color": "#E02E24",
    						"text_click_color": "#EDBBB8",
    						"bg_click_color": "#C51E14",
    						"use_backup": 0,
    						"imp_tracks": [
    							{
    								"page_el_sn": "6324500"
    							}
    						],
    						"click_track": {
    							"page_el_sn": "6324500"
    						}
    					}
    				},
    				"title_section": {
    					"green_icon": {
    						"id": 24,
    						"type": "极速退款",
    						"desc": "满足相应条件时,拼单成功12小时内,待发货状态下,提交退款申请将立即退款"
    					},
    					"suffix_tag_list": [
    						{
    							"text": "极速退款",
    							"text_color": "#FFFFFF",
    							"text_click_color": "#BCDEC8",
    							"bg_color": "#25B513",
    							"bg_click_color": "#1F9347",
    							"click_notice": "满足相应条件时,拼单成功12小时内,待发货状态下,提交退款申请将立即退款",
    							"icon_id": 24,
    							"page_el_sn": "96095"
    						}
    					],
    					"channel_icon_bef": []
    				},
    				"live_section": {
    					"on_live": 0,
    					"float_from_type": 0
    				},
    				"bottom_section": {
    					"direct_confirm_group_tip": {
    						"tip": "恭喜获得限时免拼特权,无需等待,立即拼成"
    					}
    				},
    				"bubble_section": {
    					"show_bubble": 1
    				},
    				"sku_section": {
    					"view_style": 1,
    					"view_style_v2": 1,
    					"yellow_label_list": [
    						{
    							"label_text": "2件5折",
    							"label_type": "single_goods_percentage_event"
    						},
    						{
    							"label_text": "满910减9",
    							"label_type": "mall_area_event"
    						}
    					],
    					"sku_unselect_tip": "券前¥99",
    					"sku_unselect_tip_type": 5,
    					"sku_unselect_tip_color": "#58595B",
    					"sku_unselect_tip_font": 14,
    					"sku_take_coupon": 1,
    					"consult_promotion_price": 1,
    					"price_display": {
    						"prefix": "新客",
    						"rmb": "¥",
    						"price": "97"
    					},
    					"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": "满足相应条件时,拼单成功12小时内,待发货状态下,提交退款申请将立即退款"
    					},
    					"imp_tracks": [],
    					"carousel_bar": {
    						"header_bar_carousels": [
    							{
    								"type": 1,
    								"priority": 0,
    								"display_contents": [
    									{
    										"font_size": 14,
    										"display_type": 1,
    										"url": "https://img.pddpic.com/a/coupon/72abe8ba-6bbd-4c2d-9d0a-e93cc96144a8.png.slim.png",
    										"width": 13,
    										"height": 16,
    										"margin_left": 0,
    										"margin_right": 6
    									},
    									{
    										"text": "全场包邮",
    										"font_color": "#25B513",
    										"font_size": 14,
    										"display_type": 0
    									},
    									{
    										"font_size": 14,
    										"display_type": 1,
    										"url": "https://img.pddpic.com/a/coupon/cadac31b-571d-4cae-91eb-9f73b9ded093.png.slim.png",
    										"width": 17,
    										"height": 14,
    										"margin_left": 0,
    										"margin_right": 0
    									},
    									{
    										"text": "7天无理由退货",
    										"font_color": "#25B513",
    										"font_size": 14,
    										"display_type": 0
    									},
    									{
    										"font_size": 14,
    										"display_type": 1,
    										"url": "https://img.pddpic.com/a/coupon/cadac31b-571d-4cae-91eb-9f73b9ded093.png.slim.png",
    										"width": 17,
    										"height": 14,
    										"margin_left": 0,
    										"margin_right": 0
    									},
    									{
    										"text": "48小时发货",
    										"font_color": "#25B513",
    										"font_size": 14,
    										"display_type": 0
    									}
    								]
    							}
    						]
    					}
    				},
    				"bottom_buying_section": {
    					"type": "after_coupon",
    					"data": {
    						"price_prefix": "新客",
    						"after_coupon_price": 9700,
    						"price_bottom_desc": "发起拼单"
    					}
    				},
    				"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": "comm_goods_complaint.html?goods_id=373913035272&counterfeitBrandProducts=false"
    						}
    					]
    				},
    				"price_explain_section": {
    					"pulldown_title": "点击查看商品价格说明"
    				},
    				"photo_bottom_section": {
    					"price_rich": [
    						{
    							"txt": "97",
    							"font": 24,
    							"type": 1
    						}
    					],
    					"prefix_rich": [
    						{
    							"txt": "新客",
    							"font": 13,
    							"type": 1
    						},
    						{
    							"type": 2,
    							"space": 2
    						},
    						{
    							"txt": "¥",
    							"font": 15,
    							"type": 1
    						}
    					],
    					"color": "#FFFFFF",
    					"after_coupon": {
    						"tag_rich": [
    							{
    								"txt": "券后",
    								"font": 16,
    								"type": 1
    							},
    							{
    								"type": 2,
    								"space": 3
    							},
    							{
    								"txt": "¥",
    								"font": 17,
    								"type": 1
    							},
    							{
    								"txt": "97",
    								"font": 17,
    								"type": 1
    							}
    						],
    						"click_url": "lego_goods_detail_coupon_price_popup_goods_detail_coupon_price_popup.html?lego_type=v8&lego_minversion=5.28.0&lego_ssr_api=/api/goods_detail_coupon_price_popup/get_config/goods_detail_coupon_price_popup&rp=0&goods_id=373913035272&mall_id=169170553&cat_id=20512&cat_id1=8509&cat_id2=8517&cat_id3=20512&cat_id4=0&goods_type=1&event_type=0&oversea_type=0&min_on_sale_group_price=9900&from_page=0&promo_price_version=1701143447076&options=%5B54%2C9%2C13%5D&promo_price=9700&fb_send_amount=0&best_single_price_num=2&best_single_price_price=9900&has_suffix=0",
    						"has_suffix": 0,
    						"fb_amount": 0,
    						"color": "#FFFFFF",
    						"bg_color": "#E02E24",
    						"click_color": "#910A0A"
    					},
    					"desc_color": "#9C9C9C",
    					"price_tag": {
    						"txt": "¥49.5/件",
    						"prefix_txt": "2件",
    						"color": "#FFFFFF",
    						"click_url": "lego_goods_detail_coupon_price_popup_goods_detail_coupon_price_popup.html?lego_type=v8&lego_minversion=5.28.0&lego_ssr_api=/api/goods_detail_coupon_price_popup/get_config/goods_detail_coupon_price_popup&rp=0&goods_id=373913035272&mall_id=169170553&cat_id=20512&cat_id1=8509&cat_id2=8517&cat_id3=20512&cat_id4=0&goods_type=1&event_type=0&oversea_type=0&min_on_sale_group_price=9900&from_page=0&promo_price_version=1701143447076&options=%5B54%2C9%2C13%5D&promo_price=9700&fb_send_amount=0&best_single_price_num=2&best_single_price_price=9900&has_suffix=0"
    					},
    					"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": "2280007534069392982",
    						"group_type": 1,
    						"is_has_join_group": true,
    						"prefix_text": "参与",
    						"suffix_text": "的拼单,立即拼成",
    						"member_info_list": [
    							{
    								"avatar": "https://avatar3.pddpic.com/a/Q0NBZ1VDanl3bWxNb0NRbUFCSWxSRFNjM215TTl4VEpXUT09djA0-1689210781?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": "2280007534069392982",
    								"member_info_list": [
    									{
    										"nickname": "我如刺猬能拥谁",
    										"avatar": "https://avatar3.pddpic.com/a/Q0NBZ1VDanl3bWxNb0NRbUFCSWxSRFNjM215TTl4VEpXUT09djA0-1689210781?imageMogr2/thumbnail/100x",
    										"is_friend": false
    									}
    								],
    								"is_self_group": false,
    								"button_desc": "去拼单",
    								"group_type": 1,
    								"is_shared": false,
    								"tag_list": [
    									{
    										"desc": "拼过2次",
    										"type": 2
    									}
    								],
    								"track_list": [
    									{
    										"page_el_sn": "4264980",
    										"extra": {
    											"group_order_id": "2280007534069392982",
    											"tag_type": "2",
    											"type": 1,
    											"button_dsc": "去拼单"
    										}
    									}
    								],
    								"click_track": {
    									"page_el_sn": "4264980",
    									"extra": {
    										"type": 1
    									}
    								}
    							}
    						],
    						"recommend_group": {
    							"group_order_id": "2280007534069392982",
    							"member_info_list": [
    								{
    									"nickname": "我如刺猬能拥谁",
    									"avatar": "https://avatar3.pddpic.com/a/Q0NBZ1VDanl3bWxNb0NRbUFCSWxSRFNjM215TTl4VEpXUT09djA0-1689210781?imageMogr2/thumbnail/100x",
    									"is_friend": false
    								}
    							],
    							"is_self_group": false,
    							"button_desc": "去拼单",
    							"group_type": 1,
    							"is_shared": false,
    							"tag_list": [
    								{
    									"desc": "拼过2次",
    									"type": 2
    								}
    							],
    							"track_list": [
    								{
    									"page_el_sn": "4264980",
    									"extra": {
    										"group_order_id": "2280007534069392982",
    										"tag_type": "2",
    										"type": 1,
    										"button_dsc": "去拼单"
    									}
    								}
    							],
    							"click_track": {
    								"page_el_sn": "4264980",
    								"extra": {
    									"type": 1
    								}
    							}
    						},
    						"combine_group_desc": "这些人已拼,参与可立即拼成",
    						"combine_group_popup_title": "可参与的拼单",
    						"combine_group_popup_footer": "",
    						"combine_group_button_desc": "去拼单",
    						"pulldown_group": {
    							"group_info": {
    								"group_order_id": "2280007534069392982",
    								"member_info_list": [
    									{
    										"nickname": "我如刺猬能拥谁",
    										"avatar": "https://avatar3.pddpic.com/a/Q0NBZ1VDanl3bWxNb0NRbUFCSWxSRFNjM215TTl4VEpXUT09djA0-1689210781?imageMogr2/thumbnail/100x",
    										"is_friend": false
    									}
    								],
    								"is_self_group": false,
    								"button_desc": "去拼单",
    								"group_type": 1,
    								"is_shared": false
    							},
    							"group_title_info": {
    								"group_title_desc": "这些人已拼,参与可立即拼成",
    								"need_join_countdown": false
    							}
    						},
    						"combine_group_list_type": 1,
    						"avatar_list": [
    							"https://avatar3.pddpic.com/a/Q0NBZ1VDanl3bWxNb0NRbUFCSWxSRFNjM215TTl4VEpXUT09djA0-1689210781?imageMogr2/thumbnail/100x"
    						],
    						"extra_avatar_list": [
    							"https://avatar3.pddpic.com/a/Q0NBZ1VDanl3bWxNb0NRbUFCSWxSRFNjM215TTl4VEpXUT09djA0-1689210781?imageMogr2/thumbnail/100x"
    						],
    						"hit_query_goods_purchase_num_grey_config": true
    					}
    				}
    			},
    			"control": {
    				"require_mall_active_time": 1,
    				"in_price_tag_gray": 1,
    				"direct_confirm_group": 1,
    				"quantity_check_request_params": {
    					"from_goods_detail": 1
    				}
    			},
    			"transmission": {
    				"promotion_extend_info": [],
    				"sku_direct_order_extend_info": {
    					"carousel_tag_list": "[{\"type\":1,\"icon\":null,\"descList\":[\"全场包邮\",\"7天无理由退货\",\"48小时发货\",\"极速退款\"],\"highLightList\":null}]",
    					"service_tag_list": "[\"全场包邮\",\"7天无理由退货\",\"48小时发货\",\"极速退款\"]"
    				}
    			},
    			"uin": "7EOKHPFY3FVNOAUBIVJZIQAZ5Y_GEXDA",
    			"contextData": {
    				"isNativePlatform": false,
    				"hostname": "mobile.yangkeduo.com",
    				"isMiniProgram": false
    			},
    			"DDType": false,
    			"isDuoDuoSingleGroup": false,
    			"isDuoDuoDoubleGroup": false,
    			"isNewBottomTips": true,
    			"isLowGroupNewBottomTips": false,
    			"combineGroups": {
    				"groupsTotal": 1,
    				"combineGroupList": [
    					{
    						"groupOrderId": "2280007534069392982",
    						"memberInfoList": [
    							{
    								"nickname": "我如刺猬能拥谁",
    								"avatar": "https://avatar3.pddpic.com/a/Q0NBZ1VDanl3bWxNb0NRbUFCSWxSRFNjM215TTl4VEpXUT09djA0-1689210781?imageMogr2/thumbnail/100x",
    								"isFriend": false
    							}
    						],
    						"isSelfGroup": false,
    						"buttonDesc": "去拼单",
    						"groupType": 1,
    						"isShared": false,
    						"tagList": [
    							{
    								"desc": "拼过2次",
    								"type": 2
    							}
    						],
    						"trackList": [
    							{
    								"pageElSn": "4264980",
    								"extra": {
    									"groupOrderId": "2280007534069392982",
    									"tagType": "2",
    									"type": 1,
    									"buttonDsc": "去拼单"
    								}
    							}
    						],
    						"clickTrack": {
    							"pageElSn": "4264980",
    							"extra": {
    								"type": 1
    							}
    						},
    						"groupOrderID": "2280007534069392982"
    					}
    				],
    				"fixedTopGroupList": [],
    				"sliderGroupList": [],
    				"localGroupWithFriend": [],
    				"localGroupListNew": [],
    				"historyGroupListNew": [
    					{
    						"groupOrderId": "2280007534069392982",
    						"memberInfoList": [
    							{
    								"nickname": "我如刺猬能拥谁",
    								"avatar": "https://avatar3.pddpic.com/a/Q0NBZ1VDanl3bWxNb0NRbUFCSWxSRFNjM215TTl4VEpXUT09djA0-1689210781?imageMogr2/thumbnail/100x",
    								"isFriend": false
    							}
    						],
    						"isSelfGroup": false,
    						"buttonDesc": "去拼单",
    						"groupType": 1,
    						"isShared": false,
    						"tagList": [
    							{
    								"desc": "拼过2次",
    								"type": 2
    							}
    						],
    						"trackList": [
    							{
    								"pageElSn": "4264980",
    								"extra": {
    									"groupOrderId": "2280007534069392982",
    									"tagType": "2",
    									"type": 1,
    									"buttonDsc": "去拼单"
    								}
    							}
    						],
    						"clickTrack": {
    							"pageElSn": "4264980",
    							"extra": {
    								"type": 1
    							}
    						},
    						"groupOrderID": "2280007534069392982"
    					}
    				],
    				"historyVistorListNew": [],
    				"popupTwoAvatarsStyle": false,
    				"outTwoAvatarsStyle": false,
    				"recommendGroup": {
    					"groupOrderId": "2280007534069392982",
    					"memberInfoList": [
    						{
    							"nickname": "我如刺猬能拥谁",
    							"avatar": "https://avatar3.pddpic.com/a/Q0NBZ1VDanl3bWxNb0NRbUFCSWxSRFNjM215TTl4VEpXUT09djA0-1689210781?imageMogr2/thumbnail/100x",
    							"isFriend": false
    						}
    					],
    					"isSelfGroup": false,
    					"buttonDesc": "去拼单",
    					"groupType": 1,
    					"isShared": false,
    					"tagList": [
    						{
    							"desc": "拼过2次",
    							"type": 2
    						}
    					],
    					"trackList": [
    						{
    							"pageElSn": "4264980",
    							"extra": {
    								"groupOrderId": "2280007534069392982",
    								"tagType": "2",
    								"type": 1,
    								"buttonDsc": "去拼单"
    							}
    						}
    					],
    					"clickTrack": {
    						"pageElSn": "4264980",
    						"extra": {
    							"type": 1
    						}
    					}
    				},
    				"firstScreenGroup": [],
    				"pulldownGroup": {
    					"groupInfo": {
    						"groupOrderId": "2280007534069392982",
    						"memberInfoList": [
    							{
    								"nickname": "我如刺猬能拥谁",
    								"avatar": "https://avatar3.pddpic.com/a/Q0NBZ1VDanl3bWxNb0NRbUFCSWxSRFNjM215TTl4VEpXUT09djA0-1689210781?imageMogr2/thumbnail/100x",
    								"isFriend": false
    							}
    						],
    						"isSelfGroup": false,
    						"buttonDesc": "去拼单",
    						"groupType": 1,
    						"isShared": false
    					},
    					"groupTitleInfo": {
    						"groupTitleDesc": "这些人已拼,参与可立即拼成",
    						"needJoinCountdown": false
    					},
    					"groupOrderId": "2280007534069392982",
    					"memberInfoList": [
    						{
    							"nickname": "我如刺猬能拥谁",
    							"avatar": "https://avatar3.pddpic.com/a/Q0NBZ1VDanl3bWxNb0NRbUFCSWxSRFNjM215TTl4VEpXUT09djA0-1689210781?imageMogr2/thumbnail/100x",
    							"isFriend": false
    						}
    					],
    					"isSelfGroup": false,
    					"buttonDesc": "去拼单",
    					"groupType": 1,
    					"isShared": false,
    					"groupOrderID": "2280007534069392982"
    				}
    			},
    			"combineUserGroup": [],
    			"groupPopupTitle": "可参与的拼单",
    			"groupPopupFooter": "",
    			"groupButtonDesc": "去拼单",
    			"groupDesc": "这些人已拼,参与可立即拼成",
    			"nowTime": 1701143447,
    			"nowTimeTen": 17011434470,
    			"isABTestGoodsPrerenderOC": true,
    			"isAbDirectOrderRepayModifyPanel": true,
    			"isAbDirectOrderMianmiV2": true,
    			"isAbSwitchToWechatIfSignXyhfFailed": false,
    			"hasAddressLine": false,
    			"ignoreShowSkuSelector": false,
    			"useBestPromotion": true,
    			"usePayPromotion": true,
    			"isABGoodsRecOffset": false,
    			"isABfastGroupBuyQa": false,
    			"isABLongBannerMode": true,
    			"isGoodsBottomAfterCouponRefresh": true,
    			"isABBottomMallIconStyle": true,
    			"isABWxGotoAppEnforce": false,
    			"ifLiveCouponSkuSelector": true,
    			"showGoodsLabel": true,
    			"guideXyhfCountdown": false,
    			"supportGbs": true,
    			"balanceNotEnoughToMianMi": true,
    			"payCanceledToXyhf": true,
    			"applyDuoDuoPayCancelToMianMi": true,
    			"enableSkuMask": true,
    			"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": "169170553",
    			"mallName": "潮里优品鞋",
    			"mallShowType": 0,
    			"mallTransferType": 0,
    			"salesTip": "已拼29件",
    			"salesTipV2": "全店已拼29件",
    			"mallSales": 29,
    			"mallLogo": "http://t16img.yangkeduo.com/pdd_ims/img_check/v2/E9F6E9469B460020200112154811880/694230ad5ddd4d87a741f250601a6311.png",
    			"goodsNum": 2,
    			"goodsNumDesc": "商品数量: 2",
    			"pddRoute": "mall_page.html?mall_id=169170553&msn=agmednj5mwekpav5yejzj2bs3u_axbuy&mall_info=%7B%22mall_name%22%3A%22%E6%BD%AE%E9%87%8C%E4%BC%98%E5%93%81%E9%9E%8B%22%7D",
    			"pddRouteName": "进店逛逛",
    			"mallServiceTag": "客服",
    			"isFlagShip": false,
    			"logoList": [],
    			"mallLogoList": [],
    			"dsr": {
    				"descScore": 0,
    				"descStatus": 0,
    				"logisticsScore": 0,
    				"logisticsStatus": 0,
    				"serviceScore": 0,
    				"serviceStatus": 0,
    				"descRankPercent": 0,
    				"logisticsRankPercent": 0,
    				"serviceRankPercent": 0,
    				"descRankStatus": 0,
    				"logisticsRankStatus": 0,
    				"serviceRankStatus": 0,
    				"hideRankInfo": 1,
    				"isShowMallStar": true
    			},
    			"isGuideMall": false,
    			"extras": {
    				"2": false,
    				"3": false,
    				"5": 1,
    				"7": false,
    				"8": true
    			},
    			"msn": "agmednj5mwekpav5yejzj2bs3u_axbuy",
    			"merchantType": 1,
    			"hasMallDecoration": false,
    			"hideShipAddress": false,
    			"mallFavVo": {
    				"showButton": false
    			},
    			"mallID": "169170553",
    			"logo": "https://t16img.yangkeduo.com/pdd_ims/img_check/v2/E9F6E9469B460020200112154811880/694230ad5ddd4d87a741f250601a6311.png"
    		},
    		"liveInfo": null,
    		"queries": {
    			"goods_id": "373913035272"
    		},
    		"isIOS": false,
    		"isSystemIOS": false,
    		"guideConfig": {
    			"waitTime": 20000,
    			"presentTime": 5000
    		},
    		"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36",
    		"webp": true,
    		"oakData": {
    			"activityCollection": [],
    			"ui": {
    				"priceSection": {
    					"type": "normal",
    					"data": {
    						"afterCouponTagDesc": "券后¥97",
    						"afterCouponTagRich": [
    							{
    								"txt": "券后",
    								"font": 16,
    								"type": 1
    							},
    							{
    								"type": 2,
    								"space": 3
    							},
    							{
    								"txt": "¥",
    								"font": 17,
    								"type": 1
    							},
    							{
    								"txt": "97",
    								"font": 17,
    								"type": 1
    							}
    						],
    						"afterCouponJumpUrl": "lego_goods_detail_coupon_price_popup_goods_detail_coupon_price_popup.html?lego_type=v8&lego_minversion=5.28.0&lego_ssr_api=/api/goods_detail_coupon_price_popup/get_config/goods_detail_coupon_price_popup&rp=0&goods_id=373913035272&mall_id=169170553&cat_id=20512&cat_id1=8509&cat_id2=8517&cat_id3=20512&cat_id4=0&goods_type=1&event_type=0&oversea_type=0&min_on_sale_group_price=9900&from_page=0&promo_price_version=1701143447076&options=%5B54%2C9%2C13%5D&promo_price=9700&fb_send_amount=0&best_single_price_num=2&best_single_price_price=9900&has_suffix=0",
    						"afterCouponHasSuffix": 0,
    						"afterCouponFbAmount": 0
    					}
    				},
    				"newPriceSection": {
    					"isNormal": 1,
    					"type": "normal",
    					"price": "97",
    					"priceRich": [
    						{
    							"txt": "97",
    							"font": 28,
    							"type": 1
    						}
    					],
    					"prefix": "新客",
    					"prefixRich": [
    						{
    							"txt": "新客",
    							"font": 15,
    							"type": 1
    						},
    						{
    							"type": 2,
    							"space": 2
    						},
    						{
    							"txt": "¥",
    							"font": 16,
    							"type": 1
    						}
    					],
    					"color": "#E02E24",
    					"bgColor": "#FFFFFF",
    					"afterCoupon": {
    						"tagRich": [
    							{
    								"txt": "券后",
    								"font": 16,
    								"type": 1
    							},
    							{
    								"type": 2,
    								"space": 3
    							},
    							{
    								"txt": "¥",
    								"font": 17,
    								"type": 1
    							},
    							{
    								"txt": "97",
    								"font": 17,
    								"type": 1
    							}
    						],
    						"clickUrl": "lego_goods_detail_coupon_price_popup_goods_detail_coupon_price_popup.html?lego_type=v8&lego_minversion=5.28.0&lego_ssr_api=/api/goods_detail_coupon_price_popup/get_config/goods_detail_coupon_price_popup&rp=0&goods_id=373913035272&mall_id=169170553&cat_id=20512&cat_id1=8509&cat_id2=8517&cat_id3=20512&cat_id4=0&goods_type=1&event_type=0&oversea_type=0&min_on_sale_group_price=9900&from_page=0&promo_price_version=1701143447076&options=%5B54%2C9%2C13%5D&promo_price=9700&fb_send_amount=0&best_single_price_num=2&best_single_price_price=9900&has_suffix=0",
    						"hasSuffix": 0,
    						"fbAmount": 0,
    						"color": "#FFFFFF",
    						"bgColor": "#E02E24",
    						"clickColor": "#910A0A"
    					},
    					"descLabels": [
    						"已拼1件"
    					],
    					"descColor": "#58595B",
    					"impTracks": [
    						{
    							"extra": {
    								"singlePrice": "163",
    								"linePrice": "206",
    								"salesTip": "已拼1件",
    								"type": 0,
    								"pindanPrice": "99",
    								"cpPrice": "97",
    								"descLabels": "已拼1件"
    							},
    							"pageElSn": "5049756"
    						},
    						{
    							"extra": {
    								"tagNum": 2
    							},
    							"pageElSn": "6571701"
    						}
    					],
    					"priceTag": {
    						"txt": "¥49.5/件",
    						"prefixTxt": "2件",
    						"color": "#FFFFFF",
    						"clickUrl": "lego_goods_detail_coupon_price_popup_goods_detail_coupon_price_popup.html?lego_type=v8&lego_minversion=5.28.0&lego_ssr_api=/api/goods_detail_coupon_price_popup/get_config/goods_detail_coupon_price_popup&rp=0&goods_id=373913035272&mall_id=169170553&cat_id=20512&cat_id1=8509&cat_id2=8517&cat_id3=20512&cat_id4=0&goods_type=1&event_type=0&oversea_type=0&min_on_sale_group_price=9900&from_page=0&promo_price_version=1701143447076&options=%5B54%2C9%2C13%5D&promo_price=9700&fb_send_amount=0&best_single_price_num=2&best_single_price_price=9900&has_suffix=0",
    						"bgColor": "#E02E24",
    						"clickBgColor": "#C51E14",
    						"clickColor": "#EDBBB8",
    						"mediumFont": 0,
    						"clickTrack": {
    							"pageElSn": "6571701"
    						}
    					},
    					"isElder": 0,
    					"useNewDescLabelsRule": false
    				},
    				"newBottomSection": {
    					"leftButton": {
    						"title": [
    							{
    								"txt": "¥",
    								"font": 19,
    								"type": 1
    							},
    							{
    								"type": 2,
    								"space": 1
    							},
    							{
    								"txt": "163",
    								"font": 19,
    								"type": 1
    							}
    						],
    						"desc": "单独购买",
    						"clickAction": "directBuy",
    						"textColor": "#FFFFFF",
    						"bgColor": "#F4ABA7",
    						"textClickColor": "#F9E0DF",
    						"bgClickColor": "#EB9894",
    						"impTracks": [
    							{
    								"extra": {
    									"type": 4
    								},
    								"pageElSn": "99809"
    							}
    						],
    						"clickTrack": {
    							"extra": {
    								"type": 4
    							},
    							"pageElSn": "99809"
    						}
    					},
    					"rightButton": {
    						"title": [
    							{
    								"txt": "新客",
    								"font": 17,
    								"type": 1
    							},
    							{
    								"type": 2,
    								"space": 3
    							},
    							{
    								"txt": "¥",
    								"font": 19,
    								"type": 1
    							},
    							{
    								"type": 2,
    								"space": 1
    							},
    							{
    								"txt": "97",
    								"font": 19,
    								"type": 1
    							}
    						],
    						"desc": "免拼购买",
    						"clickAction": "groupBuy",
    						"actionData": {
    							"orderExtraType": 1
    						},
    						"textColor": "#FFFFFF",
    						"bgColor": "#E02E24",
    						"textClickColor": "#EDBBB8",
    						"bgClickColor": "#C51E14",
    						"useBackup": 0,
    						"impTracks": [
    							{
    								"pageElSn": "6324500"
    							}
    						],
    						"clickTrack": {
    							"pageElSn": "6324500"
    						}
    					}
    				},
    				"titleSection": {
    					"greenIcon": {
    						"id": 24,
    						"type": "极速退款",
    						"desc": "满足相应条件时,拼单成功12小时内,待发货状态下,提交退款申请将立即退款"
    					},
    					"suffixTagList": [
    						{
    							"text": "极速退款",
    							"textColor": "#FFFFFF",
    							"textClickColor": "#BCDEC8",
    							"bgColor": "#25B513",
    							"bgClickColor": "#1F9347",
    							"clickNotice": "满足相应条件时,拼单成功12小时内,待发货状态下,提交退款申请将立即退款",
    							"iconId": 24,
    							"pageElSn": "96095"
    						}
    					],
    					"channelIconBef": []
    				},
    				"liveSection": {
    					"onLive": 0,
    					"floatFromType": 0
    				},
    				"bottomSection": {
    					"directConfirmGroupTip": {
    						"tip": "恭喜获得限时免拼特权,无需等待,立即拼成"
    					}
    				},
    				"bubbleSection": {
    					"showBubble": 1
    				},
    				"skuSection": {
    					"viewStyle": 1,
    					"viewStyleV2": 1,
    					"yellowLabelList": [
    						{
    							"labelText": "2件5折",
    							"labelType": "single_goods_percentage_event"
    						},
    						{
    							"labelText": "满910减9",
    							"labelType": "mall_area_event"
    						}
    					],
    					"skuUnselectTip": "券前¥99",
    					"skuUnselectTipType": 5,
    					"skuUnselectTipColor": "#58595B",
    					"skuUnselectTipFont": 14,
    					"skuTakeCoupon": 1,
    					"consultPromotionPrice": 1,
    					"priceDisplay": {
    						"prefix": "新客",
    						"rmb": "¥",
    						"price": "97"
    					},
    					"skuPaneTitleSuffixTag": {
    						"text": "极速退款",
    						"textColor": "#FFFFFF",
    						"textClickColor": "#BCDEC8",
    						"bgColor": "#25B513",
    						"bgClickColor": "#1F9347",
    						"borderColor": "#25B513",
    						"borderClickColor": "#1F9347",
    						"clickNotice": "满足相应条件时,拼单成功12小时内,待发货状态下,提交退款申请将立即退款"
    					},
    					"impTracks": [],
    					"carouselBar": {
    						"headerBarCarousels": [
    							{
    								"type": 1,
    								"priority": 0,
    								"displayContents": [
    									{
    										"fontSize": 14,
    										"displayType": 1,
    										"url": "https://img.pddpic.com/a/coupon/72abe8ba-6bbd-4c2d-9d0a-e93cc96144a8.png.slim.png",
    										"width": 13,
    										"height": 16,
    										"marginLeft": 0,
    										"marginRight": 6
    									},
    									{
    										"text": "全场包邮",
    										"fontColor": "#25B513",
    										"fontSize": 14,
    										"displayType": 0
    									},
    									{
    										"fontSize": 14,
    										"displayType": 1,
    										"url": "https://img.pddpic.com/a/coupon/cadac31b-571d-4cae-91eb-9f73b9ded093.png.slim.png",
    										"width": 17,
    										"height": 14,
    										"marginLeft": 0,
    										"marginRight": 0
    									},
    									{
    										"text": "7天无理由退货",
    										"fontColor": "#25B513",
    										"fontSize": 14,
    										"displayType": 0
    									},
    									{
    										"fontSize": 14,
    										"displayType": 1,
    										"url": "https://img.pddpic.com/a/coupon/cadac31b-571d-4cae-91eb-9f73b9ded093.png.slim.png",
    										"width": 17,
    										"height": 14,
    										"marginLeft": 0,
    										"marginRight": 0
    									},
    									{
    										"text": "48小时发货",
    										"fontColor": "#25B513",
    										"fontSize": 14,
    										"displayType": 0
    									}
    								]
    							}
    						]
    					}
    				},
    				"bottomBuyingSection": {
    					"type": "after_coupon",
    					"data": {
    						"pricePrefix": "新客",
    						"afterCouponPrice": 9700,
    						"priceBottomDesc": "发起拼单"
    					}
    				},
    				"morePopNaviButton": {
    					"naviList": [
    						{
    							"iconId": "59210",
    							"text": "常见问题",
    							"url": "questions.html"
    						},
    						{
    							"iconId": "59213",
    							"text": "意见反馈",
    							"url": "personal_feedback.html"
    						},
    						{
    							"iconId": "59212",
    							"text": "举报商品",
    							"url": "comm_goods_complaint.html?goods_id=373913035272&counterfeitBrandProducts=false"
    						}
    					]
    				},
    				"priceExplainSection": {
    					"pulldownTitle": "点击查看商品价格说明"
    				},
    				"photoBottomSection": {
    					"priceRich": [
    						{
    							"txt": "97",
    							"font": 24,
    							"type": 1
    						}
    					],
    					"prefixRich": [
    						{
    							"txt": "新客",
    							"font": 13,
    							"type": 1
    						},
    						{
    							"type": 2,
    							"space": 2
    						},
    						{
    							"txt": "¥",
    							"font": 15,
    							"type": 1
    						}
    					],
    					"color": "#FFFFFF",
    					"afterCoupon": {
    						"tagRich": [
    							{
    								"txt": "券后",
    								"font": 16,
    								"type": 1
    							},
    							{
    								"type": 2,
    								"space": 3
    							},
    							{
    								"txt": "¥",
    								"font": 17,
    								"type": 1
    							},
    							{
    								"txt": "97",
    								"font": 17,
    								"type": 1
    							}
    						],
    						"clickUrl": "lego_goods_detail_coupon_price_popup_goods_detail_coupon_price_popup.html?lego_type=v8&lego_minversion=5.28.0&lego_ssr_api=/api/goods_detail_coupon_price_popup/get_config/goods_detail_coupon_price_popup&rp=0&goods_id=373913035272&mall_id=169170553&cat_id=20512&cat_id1=8509&cat_id2=8517&cat_id3=20512&cat_id4=0&goods_type=1&event_type=0&oversea_type=0&min_on_sale_group_price=9900&from_page=0&promo_price_version=1701143447076&options=%5B54%2C9%2C13%5D&promo_price=9700&fb_send_amount=0&best_single_price_num=2&best_single_price_price=9900&has_suffix=0",
    						"hasSuffix": 0,
    						"fbAmount": 0,
    						"color": "#FFFFFF",
    						"bgColor": "#E02E24",
    						"clickColor": "#910A0A"
    					},
    					"descColor": "#9C9C9C",
    					"priceTag": {
    						"txt": "¥49.5/件",
    						"prefixTxt": "2件",
    						"color": "#FFFFFF",
    						"clickUrl": "lego_goods_detail_coupon_price_popup_goods_detail_coupon_price_popup.html?lego_type=v8&lego_minversion=5.28.0&lego_ssr_api=/api/goods_detail_coupon_price_popup/get_config/goods_detail_coupon_price_popup&rp=0&goods_id=373913035272&mall_id=169170553&cat_id=20512&cat_id1=8509&cat_id2=8517&cat_id3=20512&cat_id4=0&goods_type=1&event_type=0&oversea_type=0&min_on_sale_group_price=9900&from_page=0&promo_price_version=1701143447076&options=%5B54%2C9%2C13%5D&promo_price=9700&fb_send_amount=0&best_single_price_num=2&best_single_price_price=9900&has_suffix=0"
    					},
    					"openGroupTxt": "免拼购买",
    					"useNewDescLabelsRule": false
    				},
    				"carouselSection": {
    					"sellPointTagList": []
    				}
    			},
    			"goods": {
    				"decoration": [
    					{
    						"floorId": 14360051937,
    						"key": "DecImage",
    						"type": "image",
    						"priority": 0,
    						"contents": [
    							{
    								"imgUrl": "https://img.pddpic.com/mms-material-img/2022-06-11/ea26f652-6564-4a22-8acc-959e737c3ff3.jpeg.a.jpeg",
    								"height": 800,
    								"width": 800
    							}
    						],
    						"enableShare": 1
    					},
    					{
    						"floorId": 14360051938,
    						"key": "DecImage",
    						"type": "image",
    						"priority": 1,
    						"contents": [
    							{
    								"imgUrl": "https://img.pddpic.com/mms-material-img/2022-06-11/3b134f05-aaf7-4727-bcba-f69291d628fd.jpeg.a.jpeg",
    								"height": 800,
    								"width": 800
    							}
    						],
    						"enableShare": 1
    					},
    					{
    						"floorId": 14360051939,
    						"key": "DecImage",
    						"type": "image",
    						"priority": 2,
    						"contents": [
    							{
    								"imgUrl": "https://img.pddpic.com/mms-material-img/2022-06-11/ddd07ff4-13d2-4689-a490-e791087578db.jpeg.a.jpeg",
    								"height": 800,
    								"width": 800
    							}
    						],
    						"enableShare": 1
    					},
    					{
    						"floorId": 14360051940,
    						"key": "DecImage",
    						"type": "image",
    						"priority": 3,
    						"contents": [
    							{
    								"imgUrl": "https://img.pddpic.com/mms-material-img/2022-06-11/026fcee7-8d73-4f29-8025-365f65196a13.jpeg.a.jpeg",
    								"height": 800,
    								"width": 800
    							}
    						],
    						"enableShare": 1
    					},
    					{
    						"floorId": 14360051941,
    						"key": "DecImage",
    						"type": "image",
    						"priority": 4,
    						"contents": [
    							{
    								"imgUrl": "https://img.pddpic.com/mms-material-img/2022-06-11/eb3de74e-6dee-4dbf-aa01-ced2dd255b84.jpeg.a.jpeg",
    								"height": 800,
    								"width": 800
    							}
    						],
    						"enableShare": 1
    					},
    					{
    						"floorId": 14360051942,
    						"key": "DecImage",
    						"type": "image",
    						"priority": 5,
    						"contents": [
    							{
    								"imgUrl": "https://img.pddpic.com/mms-material-img/2022-06-11/ecd99a81-0b2b-48f7-91ee-3e0a8e3f8aed.jpeg.a.jpeg",
    								"height": 800,
    								"width": 800
    							}
    						],
    						"enableShare": 1
    					}
    				],
    				"country": "",
    				"goodsProperty": [
    					{
    						"key": "后跟高",
    						"values": [
    							"低跟(1cm-3cm)"
    						],
    						"refPid": 1617,
    						"referenceId": 0
    					},
    					{
    						"key": "鞋底材质",
    						"values": [
    							"橡胶"
    						],
    						"refPid": 402,
    						"referenceId": 0
    					},
    					{
    						"key": "闭合方式",
    						"values": [
    							"一字式扣带"
    						],
    						"refPid": 330,
    						"referenceId": 0
    					},
    					{
    						"key": "风格",
    						"values": [
    							"甜美"
    						],
    						"refPid": 322,
    						"referenceId": 0
    					},
    					{
    						"key": "款式",
    						"values": [
    							"健步鞋"
    						],
    						"refPid": 324,
    						"referenceId": 0
    					},
    					{
    						"key": "上市时节",
    						"values": [
    							"2022年夏季"
    						],
    						"refPid": 1906,
    						"referenceId": 0
    					},
    					{
    						"key": "制作工艺",
    						"values": [
    							"胶粘"
    						],
    						"refPid": 392,
    						"referenceId": 0
    					},
    					{
    						"key": "鞋面内里材质",
    						"values": [
    							"PU"
    						],
    						"refPid": 1981,
    						"referenceId": 0
    					},
    					{
    						"key": "鞋垫材质",
    						"values": [
    							"棉"
    						],
    						"refPid": 1982,
    						"referenceId": 0
    					},
    					{
    						"key": "鞋头款式",
    						"values": [
    							"圆头"
    						],
    						"refPid": 336,
    						"referenceId": 0
    					},
    					{
    						"key": "跟底款式",
    						"values": [
    							"松糕底"
    						],
    						"refPid": 331,
    						"referenceId": 0
    					},
    					{
    						"key": "开口深度",
    						"values": [
    							"浅口"
    						],
    						"refPid": 1616,
    						"referenceId": 0
    					},
    					{
    						"key": "功能",
    						"values": [
    							"透气"
    						],
    						"refPid": 351,
    						"referenceId": 0
    					},
    					{
    						"key": "图案",
    						"values": [
    							"纯色"
    						],
    						"refPid": 750,
    						"referenceId": 0
    					},
    					{
    						"key": "流行元素",
    						"values": [
    							"铆钉"
    						],
    						"refPid": 321,
    						"referenceId": 0
    					},
    					{
    						"key": "适用人群",
    						"values": [
    							"青年(18-40周岁)"
    						],
    						"refPid": 338,
    						"referenceId": 0
    					},
    					{
    						"key": "适用场合",
    						"values": [
    							"运动"
    						],
    						"refPid": 333,
    						"referenceId": 0
    					}
    				],
    				"goodsPropertyType": 0
    			},
    			"control": {
    				"requireMallActiveTime": 1,
    				"inPriceTagGray": 1,
    				"directConfirmGroup": 1,
    				"quantityCheckRequestParams": {
    					"fromGoodsDetail": 1
    				}
    			},
    			"review": {
    				"reviewNum": 0,
    				"reviewMergeOuterNum": 0,
    				"reviewNumText": "",
    				"reviewMergeOuterNumText": "",
    				"newMerchantQaPatternGray": false,
    				"merchantQaAnswerShow": false,
    				"merchantQaNumText": "",
    				"merchantQaTitleText": "商品答疑",
    				"newOuterReviewGray": true,
    				"outerPositiveReviewNumText": "",
    				"mergeReviewWithOuterReview": 1,
    				"mallReviewEntranceInfo": {
    					"labelList": [],
    					"exps": []
    				},
    				"exps": {
    					"goods_detail_perfect_pic": {
    						"strategy_name": "V2.27",
    						"timestamp": 1701143447039
    					}
    				},
    				"reviewNumStr": "",
    				"enableReviewNewStyle": false,
    				"extraMap": {
    					"extraMapOuterPositiveReviewNum": 0
    				}
    			},
    			"sectionList": [
    				{
    					"sectionId": "price_section"
    				},
    				{
    					"data": {
    						"mallPromotionNewCell": {
    							"cellDetailList": [
    								{
    									"copyWriting": "店铺新客立减2元",
    									"cellTagType": 25,
    									"copyWritingColor": "#E02E24",
    									"frameColor": "#E02E24",
    									"backgroundColor": "#FFFFFF",
    									"showExpiredTips": false,
    									"showTips": false
    								},
    								{
    									"copyWriting": "2件5折",
    									"cellTagType": 26,
    									"copyWritingColor": "#E02E24",
    									"frameColor": "#E02E24",
    									"backgroundColor": "#FFFFFF",
    									"showExpiredTips": false,
    									"showTips": false
    								},
    								{
    									"copyWriting": "满910减9",
    									"cellTagType": 4,
    									"copyWritingColor": "#E02E24",
    									"frameColor": "#E02E24",
    									"backgroundColor": "#FFFFFF",
    									"showExpiredTips": false,
    									"showTips": false
    								}
    							]
    						}
    					},
    					"sectionId": "discount_section",
    					"sectionAction": {
    						"actionType": "discount_pop",
    						"actionData": {
    							"bizName": "discount_pop_section"
    						}
    					}
    				},
    				{
    					"sectionId": "title_section"
    				},
    				{
    					"data": {
    						"color": "#FFFFFF",
    						"height": 8
    					},
    					"sectionId": "space_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": "drag_style_rec_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": 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
    				},
    				{
    					"id": 24,
    					"type": "极速退款",
    					"typeColor": "#58595B",
    					"dialogType": "极速退款",
    					"dialogTypeColor": "#151516",
    					"desc": "满足相应条件时,拼单成功12小时内,待发货状态下,提交退款申请将立即退款",
    					"top": 1,
    					"topType": 11,
    					"navigation": 0,
    					"navigationUrl": "",
    					"detailHidden": 0
    				}
    			],
    			"subSections": {
    				"discountPopSection": {
    					"template": {
    						"content": ""
    					},
    					"data": {
    						"mallPromoList": [
    							{
    								"sn": "Z0659MM-639088941867075193",
    								"mallId": 169170553,
    								"discount": 900,
    								"sourceType": 659,
    								"minAmount": 91000,
    								"discountType": 1,
    								"richRulesDesc": [
    									{
    										"txt": "满910元减9元"
    									}
    								],
    								"promotionDetailType": 2,
    								"tagDesc": "满减优惠",
    								"buttonClickable": true,
    								"buttonDesc": "去使用",
    								"ruleSubDesc": "当前商品可用",
    								"clickOperationType": 4,
    								"linkUrl": "mall_page.html?mall_id=169170553&mall_tab_key_list=%5B%22mall_goods%22%5D&refer_page_param=%7B%22goodsIds%22%3A%5B373913035272%5D%7D",
    								"transmissionData": []
    							}
    						],
    						"extension": [],
    						"mallPromoTitle": "店铺优惠",
    						"environmentContext": {
    							"pageFrom": "0",
    							"newVersion": true,
    							"functionTag": false
    						},
    						"title": "优惠详情",
    						"simplePromDisplayList": [
    							{
    								"activityTag": "店铺新客立减",
    								"activityCopyWriting": "店铺新客购买该商品立减2元",
    								"sourceType": 775
    							},
    							{
    								"activityTag": "多件优惠",
    								"activityCopyWriting": "该商品满2件享5折",
    								"sourceType": 971
    							}
    						],
    						"isUnavailable": false
    					}
    				}
    			},
    			"neighborGroup": {
    				"neighborStatus": 1,
    				"neighborData": {
    					"simpleCombineGroup": {
    						"groupOrderId": "2280007534069392982",
    						"groupType": 1,
    						"isHasJoinGroup": true,
    						"prefixText": "参与",
    						"suffixText": "的拼单,立即拼成",
    						"memberInfoList": [
    							{
    								"avatar": "https://avatar3.pddpic.com/a/Q0NBZ1VDanl3bWxNb0NRbUFCSWxSRFNjM215TTl4VEpXUT09djA0-1689210781?imageMogr2/thumbnail/100x"
    							}
    						],
    						"trackList": [
    							{
    								"pageElSn": "7858429"
    							}
    						],
    						"clickTrack": {
    							"pageElSn": "7858429"
    						}
    					},
    					"combineGroup": {
    						"groupTotal": 1,
    						"combineGroupList": [
    							{
    								"groupOrderId": "2280007534069392982",
    								"memberInfoList": [
    									{
    										"nickname": "我如刺猬能拥谁",
    										"avatar": "https://avatar3.pddpic.com/a/Q0NBZ1VDanl3bWxNb0NRbUFCSWxSRFNjM215TTl4VEpXUT09djA0-1689210781?imageMogr2/thumbnail/100x",
    										"isFriend": false
    									}
    								],
    								"isSelfGroup": false,
    								"buttonDesc": "去拼单",
    								"groupType": 1,
    								"isShared": false,
    								"tagList": [
    									{
    										"desc": "拼过2次",
    										"type": 2
    									}
    								],
    								"trackList": [
    									{
    										"pageElSn": "4264980",
    										"extra": {
    											"groupOrderId": "2280007534069392982",
    											"tagType": "2",
    											"type": 1,
    											"buttonDsc": "去拼单"
    										}
    									}
    								],
    								"clickTrack": {
    									"pageElSn": "4264980",
    									"extra": {
    										"type": 1
    									}
    								}
    							}
    						],
    						"recommendGroup": {
    							"groupOrderId": "2280007534069392982",
    							"memberInfoList": [
    								{
    									"nickname": "我如刺猬能拥谁",
    									"avatar": "https://avatar3.pddpic.com/a/Q0NBZ1VDanl3bWxNb0NRbUFCSWxSRFNjM215TTl4VEpXUT09djA0-1689210781?imageMogr2/thumbnail/100x",
    									"isFriend": false
    								}
    							],
    							"isSelfGroup": false,
    							"buttonDesc": "去拼单",
    							"groupType": 1,
    							"isShared": false,
    							"tagList": [
    								{
    									"desc": "拼过2次",
    									"type": 2
    								}
    							],
    							"trackList": [
    								{
    									"pageElSn": "4264980",
    									"extra": {
    										"groupOrderId": "2280007534069392982",
    										"tagType": "2",
    										"type": 1,
    										"buttonDsc": "去拼单"
    									}
    								}
    							],
    							"clickTrack": {
    								"pageElSn": "4264980",
    								"extra": {
    									"type": 1
    								}
    							}
    						},
    						"combineGroupDesc": "这些人已拼,参与可立即拼成",
    						"combineGroupPopupTitle": "可参与的拼单",
    						"combineGroupPopupFooter": "",
    						"combineGroupButtonDesc": "去拼单",
    						"pulldownGroup": {
    							"groupInfo": {
    								"groupOrderId": "2280007534069392982",
    								"memberInfoList": [
    									{
    										"nickname": "我如刺猬能拥谁",
    										"avatar": "https://avatar3.pddpic.com/a/Q0NBZ1VDanl3bWxNb0NRbUFCSWxSRFNjM215TTl4VEpXUT09djA0-1689210781?imageMogr2/thumbnail/100x",
    										"isFriend": false
    									}
    								],
    								"isSelfGroup": false,
    								"buttonDesc": "去拼单",
    								"groupType": 1,
    								"isShared": false
    							},
    							"groupTitleInfo": {
    								"groupTitleDesc": "这些人已拼,参与可立即拼成",
    								"needJoinCountdown": false
    							}
    						},
    						"combineGroupListType": 1,
    						"avatarList": [
    							"https://avatar3.pddpic.com/a/Q0NBZ1VDanl3bWxNb0NRbUFCSWxSRFNjM215TTl4VEpXUT09djA0-1689210781?imageMogr2/thumbnail/100x"
    						],
    						"extraAvatarList": [
    							"https://avatar3.pddpic.com/a/Q0NBZ1VDanl3bWxNb0NRbUFCSWxSRFNjM215TTl4VEpXUT09djA0-1689210781?imageMogr2/thumbnail/100x"
    						],
    						"hitQueryGoodsPurchaseNumGreyConfig": true
    					}
    				}
    			},
    			"secondaryApi": {
    				"url": "/api/oak/integration/require_extra",
    				"method": "POST",
    				"params": {
    					"goods_id": "373913035272",
    					"page_from": "0",
    					"mall_id": 169170553,
    					"func_points": [
    						"mall_active_time",
    						"drag_style_rec"
    					],
    					"cat_id": 20512,
    					"version_num": 2,
    					"drag_style_landing_page_exp": 1,
    					"cat_id_1": 8509
    				}
    			},
    			"bottomSectionList": [
    				{
    					"control": {
    						"showType": 3,
    						"closeOptions": 4,
    						"displayTime": 5000,
    						"limitType": 0,
    						"coverOptions": 0
    					},
    					"sectionId": "new_user_tip_section"
    				}
    			]
    		},
    		"isABRafLoadJS": true,
    		"isABChatActiveDuration": true
    	},
    	"_ddf": "jc",
    	"error": "",
    	"reason": "",
    	"error_code": "0000",
    	"cache": 0,
    	"api_info": "today:0 max:10000 all[3=0+3+0];expires:2024-06-22",
    	"execution_time": "0.867",
    	"server_time": "Beijing/2023-11-28 11:54:29",
    	"client_ip": "117.162.199.252",
    	"call_args": [],
    	"api_type": "pinduoduo",
    	"translate_language": "zh-CN",
    	"translate_engine": "baidu",
    	"server_memory": "3.82MB",
    	"request_id": "1.65656475245e0",
    	"last_id": "2313604114"
    }
    异常示例
    {
    		"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-28 11:55: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(微信同号)