万邦阿里巴巴中国站获取1688app上原数据 API 返回值说明

item_get_app-获取1688app上原数据 [查看演示] API测试工具 注册开通

1688.item_get_app(Ver:1.0.0-6.0)

  • 1688.item_get_app-1.0.0-1.0.html
  • 1688.item_get_app-1.0.0-6.0.html
  • 1688.item_get_app-1.0.1-6.0.html
  • 公共参数

    请求地址: https://api-gw.onebound.cn/1688/item_get_app

    名称 类型 必须 描述
    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=533816674053

    参数说明:num_iid:1688商品ID

    响应参数

    Version: Date:

    名称 类型 必须 示例值 描述
    item
    item[] 0 获取1688app上原数据
    请求示例
    	
    -- 请求示例 url 默认请求参数已经URL编码处理
    curl -i "https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053"
    
    <?php
    
    // 请求示例 url 默认请求参数已经URL编码处理
    // 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
    $method = "GET";
    $url = "https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053";
    $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" =>"1688",
    	                "api_name" =>"item_get_app",
    	                "api_params"=>array (
      'num_iid' => '533816674053',
    )
                    )
                );
     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/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053";
    		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/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053";
    	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/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053"
    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/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053", 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/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json'
      },
      body: JSON.stringify({"num_iid":"533816674053"})// 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":"1688",
         "api_name" : "item_get_app",
         "api_params": {"num_iid":"533816674053"}//num_iid=533816674053,#具体参数请参考文档说明
         },
         function(e){
            document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
         }
    );
    </script>
    require "net/http"
    require "uri"
    url = URI("https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053")
    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/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053")!
    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/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053"];
    
    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/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053";
      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/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053");
             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/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053", (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/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053")
        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/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053")?;
        let mut content = String::new();
        resp.read_to_string(&mut content)?;
    
        println!("{}", content);
    
        Ok(())
    }
    
    
    library(httr)
    r <- GET("https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053")
    content(r)
    url = "https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053";
    response = webread(url);
    disp(response);
    
    响应示例
    {
        "item": {
            "desc_text": "var offer_details={\"content\":\"<div id=\\"offer-template-0\\"></div><div style=\\"width: 790.0px;\\">\r\n        \r\n        <div class=\\"rich-text-component\\" style=\\"width: 395.0px;padding: 10.0px;word-break: break-all;white-space: break-spaces;font-family: ali-webfont;zoom: 2;font-size: 0.0px;box-sizing: border-box;\\"><p><strong style=\\"font-size: 16.0px;background-color: #ffeb3b;color: #f44336;\\">注解:</strong><span style=\\"font-size: 16.0px;background-color: #ffeb3b;color: #f44336;\\">本店所有产品仅限国外销售,如需符合国内3C电池标准,请联系客服。</span></p></div>\r\n        \r\n        \r\n    \r\n        <div style=\\"display: none;\\" class=\\"sdmap-dynamic-offer-list\\">{&quot;styleType&quot;:&quot;offer-type-1&quot;,&quot;items&quot;:&quot;878653195828,703111807444,825145135782,878239368062,877326711205,862897896257,717614814987,722477743510,717188632043&quot;,&quot;usemap&quot;:&quot;_sdmap_1&quot;}</div>\r\n         <img class=\\"dynamic-backup-img\\" src=\\"https://cbu01.alicdn.com/img/ibank/O1CN01Oo6bMi1rQIwA16dQd_!!6000000005625-0-cib.jpg\\" style=\\"display: block;width: 100.0%;height: auto;\\" usemap=\\"#_sdmap_1\\" title=\\"预览状态下无法点击,发布后,可点击跳转到对应的商品页面\\"/>\r\n        \r\n        \r\n    \r\n        \r\n         <img src=\\"https://cbu01.alicdn.com/img/ibank/O1CN01fbjdgI2LiYyvIRlLZ_!!4087619726-0-cib.jpg?__r__=1685695954785\\" style=\\"display: block;width: 100.0%;height: auto;\\" usemap=\\"#_sdmap_2\\"/>\r\n        \r\n        \r\n    \r\n        \r\n         <img src=\\"https://cbu01.alicdn.com/img/ibank/O1CN01G6xNTV2LiYyrp73eS_!!4087619726-0-cib.jpg?__r__=1685695665867\\" style=\\"display: block;width: 100.0%;height: auto;\\" usemap=\\"#_sdmap_3\\"/>\r\n        \r\n        \r\n    \r\n        \r\n         <img src=\\"https://cbu01.alicdn.com/img/ibank/O1CN014L90bD2LiYyplOQ6w_!!4087619726-0-cib.jpg?__r__=1685695665867\\" style=\\"display: block;width: 100.0%;height: auto;\\" usemap=\\"#_sdmap_4\\"/>\r\n        \r\n        \r\n    \r\n        \r\n         <img src=\\"https://cbu01.alicdn.com/img/ibank/O1CN01XQ1c142LiYytUVTBr_!!4087619726-0-cib.jpg?__r__=1685695665867\\" style=\\"display: block;width: 100.0%;height: auto;\\" usemap=\\"#_sdmap_5\\"/>\r\n        \r\n        \r\n    \r\n        \r\n         <img src=\\"https://cbu01.alicdn.com/img/ibank/O1CN01O1DQGc2LiYyubc7hZ_!!4087619726-0-cib.jpg?__r__=1685695665867\\" style=\\"display: block;width: 100.0%;height: auto;\\" usemap=\\"#_sdmap_6\\"/>\r\n        \r\n        \r\n    \r\n        \r\n         <img src=\\"https://cbu01.alicdn.com/img/ibank/O1CN01WX0ZM42LiYz1F4aT1_!!4087619726-0-cib.jpg?__r__=1686102023468\\" style=\\"display: block;width: 100.0%;height: auto;\\" usemap=\\"#_sdmap_7\\"/>\r\n        \r\n        \r\n    \r\n        \r\n         <img src=\\"https://cbu01.alicdn.com/img/ibank/O1CN01aRf4g32LiYyyuipFI_!!4087619726-0-cib.jpg?__r__=1686102023469\\" style=\\"display: block;width: 100.0%;height: auto;\\" usemap=\\"#_sdmap_8\\"/>\r\n        \r\n        \r\n    \r\n        \r\n         <img src=\\"https://cbu01.alicdn.com/img/ibank/O1CN01aBHoyR2LiZ0HcjzX3_!!4087619726-0-cib.jpg\\" style=\\"display: block;width: 100.0%;height: auto;\\" usemap=\\"#_sdmap_9\\"/>\r\n        \r\n        \r\n    \r\n        \r\n         <img src=\\"https://cbu01.alicdn.com/img/ibank/O1CN01DHu3Tg2LiZ0EMEVMM_!!4087619726-0-cib.jpg\\" style=\\"display: block;width: 100.0%;height: auto;\\" usemap=\\"#_sdmap_10\\"/>\r\n        \r\n        \r\n    </div>\"};",
            "module": {
                "@ali/od-cart-sider": "0.0.9",
                "@ali/od-chrome-plugin": "0.0.1",
                "@ali/od-custom-made": "0.0.18",
                "@ali/od-custom-panel": "0.0.1",
                "@ali/od-discount-coupon": "0.0.2",
                "@ali/od-main-price": "0.0.9",
                "@ali/od-nav-tabs": "0.0.13",
                "@ali/od-picture-gallery": "0.0.12",
                "@ali/od-processing-price": "0.0.1",
                "@ali/od-product-attributes": "0.0.2",
                "@ali/od-product-description": "0.0.13",
                "@ali/od-product-evaluation": "0.0.5",
                "@ali/od-product-pack-info": "0.0.2",
                "@ali/od-product-warning": "0.0.9",
                "@ali/od-promotion-banner": "0.0.10",
                "@ali/od-region": "0.0.1",
                "@ali/od-scene-key": "0.0.3",
                "@ali/od-services": "0.0.2",
                "@ali/od-shipping-services": "0.1.9",
                "@ali/od-shop-navigation": "0.0.16",
                "@ali/od-shop-product-recommend": "0.0.8",
                "@ali/od-size-chart": "0.0.1",
                "@ali/od-sku-selection": "0.0.28",
                "@ali/od-submit-order": "0.1.27",
                "@ali/od-title": "0.0.3",
                "@ali/od-user-rights": "0.0.4",
                "@ali/od-widgets": "0.0.13"
            },
            "result": {
                "data": {
                    "Root": {
                        "fields": {
                            "dataJson": {
                                "abTestInfo": {
                                    "abTestValueInfo": {
                                        "gypsanweisku": "1",
                                        "od_new_black_brand_txt": "1",
                                        "page_add_custom_service": "1",
                                        "page_dsc_xhdz_upgrade": "1",
                                        "page_yanxuan_od_auth": "1",
                                        "page_yanxuan_qualityCert": "Y",
                                        "page_zgc_dimension": "0",
                                        "showOfferSizeTable": "1",
                                        "zeus_gyp_onhand_price": "1",
                                        "zeus_gyp_sku_select_hot_recommend": "0"
                                    },
                                    "exposeClickInfo": [
    
                                    ],
                                    "pvTrackInfo": {
                                        "AbIds": "2515414#2517407#2494220#2518968",
                                        "AbTIds": "30739"
                                    }
                                },
                                "activityModel": {
                                    "activityEndTimestamps": 0,
                                    "activityStartTimestamps": 0
                                },
                                "businessType": "default",
                                "canIgnoreConsignRelation": false,
                                "channelType": "dsc",
                                "componentType": "page",
                                "detailModel": [
    
                                ],
                                "easeBuyDealer": {
                                    "bgImage": "https://gw.alicdn.com/imgextra/i4/O1CN01PSCyn71m4hnAGoMEY_!!6000000004901-2-tps-1428-226.png",
                                    "image": "https://gw.alicdn.com/imgextra/i4/O1CN011mMQtb1FeXSdkkzba_!!6000000000512-2-tps-180-58.png",
                                    "isEaseBuyDealer": true,
                                    "link": "https://factory.1688.com/zgc/page/2hlo2m80.html?__pageId__=167928&cms_id=167928&wh_pha=true&__existtitle__=1",
                                    "showText": [
                                        "延期必赔",
                                        "品质保障",
                                        "资金安全"
                                    ]
                                },
                                "exposeInfo": {
                                    "exposeArgs": {
                                        "channelType": "dsc",
                                        "ipvId": "213e36a917525726480788673e6f70",
                                        "isPlusMember": "false",
                                        "isYanxuanOffer": "false",
                                        "offerId": "717614814987",
                                        "sceneType": "default",
                                        "verticalType": "default"
                                    }
                                },
                                "filterModel": [
    
                                ],
                                "hasBigPromotion": false,
                                "hasConsignReation": false,
                                "hasPurcharseMark": false,
                                "images": [
                                    {
                                        "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01FU9zIZ2LiYytUTr8y_!!4087619726-0-cib.jpg",
                                        "imageURI": "img/ibank/O1CN01FU9zIZ2LiYytUTr8y_!!4087619726-0-cib.jpg"
                                    },
                                    {
                                        "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01rfCZu52LiYyzKu8eh_!!4087619726-0-cib.jpg",
                                        "imageURI": "img/ibank/O1CN01rfCZu52LiYyzKu8eh_!!4087619726-0-cib.jpg"
                                    },
                                    {
                                        "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN018AwYqC2LiYyp62196_!!4087619726-0-cib.jpg",
                                        "imageURI": "img/ibank/O1CN018AwYqC2LiYyp62196_!!4087619726-0-cib.jpg"
                                    },
                                    {
                                        "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01NNzqyo2LiYyplKf1P_!!4087619726-0-cib.jpg",
                                        "imageURI": "img/ibank/O1CN01NNzqyo2LiYyplKf1P_!!4087619726-0-cib.jpg"
                                    },
                                    {
                                        "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01CCq5id2LiYypks415_!!4087619726-0-cib.jpg",
                                        "imageURI": "img/ibank/O1CN01CCq5id2LiYypks415_!!4087619726-0-cib.jpg"
                                    }
                                ],
                                "isActHottimingOffer": false,
                                "isPicPrivate": false,
                                "isPricePrivate": false,
                                "isSkuOffer": false,
                                "isSourcePromotion": false,
                                "marketScene": "default",
                                "mixModel": {
                                    "isSupportMix": true,
                                    "mixAmount": 15000,
                                    "mixNumber": 100,
                                    "mixOneForSale": false
                                },
                                "needSkuHide": false,
                                "offerBaseInfo": {
                                    "buyerLoginId": 0,
                                    "buyerUserId": 0,
                                    "catId": 122410004,
                                    "offerId": 717614814987,
                                    "sellerLoginId": "ylwtech",
                                    "sellerMemberId": "b2b-4087619726fb509",
                                    "sellerUserId": 4087619726,
                                    "sellerWinportUrl": "https://ylwtech.1688.com",
                                    "shieldPcOfferDetail": false,
                                    "tradeTemplateId": "[0]",
                                    "wholeNetworkEvaluation": false
                                },
                                "offerMemberTags": [
                                    21248,
                                    22784,
                                    4306497,
                                    140032,
                                    218112,
                                    210944,
                                    241408,
                                    235776,
                                    198400,
                                    476930,
                                    480770,
                                    481026,
                                    462850,
                                    473346,
                                    514818,
                                    481538,
                                    480002,
                                    4845121,
                                    546049,
                                    540930,
                                    5095745,
                                    5208129,
                                    5240641,
                                    5189697,
                                    5189441,
                                    5219905,
                                    5239617,
                                    5139777,
                                    5117249,
                                    5159233,
                                    5157953,
                                    5259841,
                                    5277505,
                                    5247553,
                                    5261377,
                                    5248065,
                                    5254209,
                                    5254721,
                                    5277761,
                                    5281345,
                                    4055553,
                                    4136449,
                                    21312,
                                    4209409,
                                    170816,
                                    241984,
                                    214592,
                                    242496,
                                    209216,
                                    232000,
                                    217408,
                                    426306,
                                    449090,
                                    448834,
                                    442434,
                                    439106,
                                    477762,
                                    493378,
                                    504641,
                                    4796161,
                                    660291,
                                    528962,
                                    562242,
                                    675905,
                                    573507,
                                    5059073,
                                    892225,
                                    5023233,
                                    5032961,
                                    4995585,
                                    5001473,
                                    5188609,
                                    5232385,
                                    5215745,
                                    5189633,
                                    5216257,
                                    5192449,
                                    5152257,
                                    5268993,
                                    5261313,
                                    5260289,
                                    5294337,
                                    5277441,
                                    5248001,
                                    4094529,
                                    24704,
                                    4249025,
                                    98688,
                                    4247489,
                                    220544,
                                    224384,
                                    215680,
                                    216960,
                                    201088,
                                    202112,
                                    448642,
                                    425858,
                                    397698,
                                    408194,
                                    424578,
                                    458114,
                                    421250,
                                    4503489,
                                    473218,
                                    516738,
                                    564610,
                                    531842,
                                    554370,
                                    5091265,
                                    5059009,
                                    5189569,
                                    5183681,
                                    5237185,
                                    5195201,
                                    5179073,
                                    5262529,
                                    5259713,
                                    5291713,
                                    5256129,
                                    5254849,
                                    3705729,
                                    3842177,
                                    4058497,
                                    4189569,
                                    21184,
                                    153024,
                                    139712,
                                    170944,
                                    209600,
                                    210880,
                                    456898,
                                    419010,
                                    408770,
                                    401090,
                                    399554,
                                    4480641,
                                    493506,
                                    463810,
                                    270786,
                                    361667,
                                    385730,
                                    359618,
                                    547778,
                                    557762,
                                    562370,
                                    584387,
                                    575939,
                                    5056385,
                                    5110401,
                                    5189761,
                                    5224833,
                                    5234049,
                                    5233793,
                                    5131649,
                                    5170049,
                                    5117313,
                                    5292417,
                                    5264257,
                                    5282433,
                                    5254785,
                                    3056835,
                                    3691713,
                                    3992769
                                ],
                                "offerModelSign": {
                                    "hasFreightTemplate": true,
                                    "hasOrder": true,
                                    "hasSearchPicture": true,
                                    "hasSendGoodsAddress": true,
                                    "hasWhitePicInOffer": true,
                                    "huiyuanhaokaidanyanxuan": true,
                                    "isAeJit": true,
                                    "isAegisTrade": true,
                                    "isAlipaySupported": true,
                                    "isBuyerProtection": true,
                                    "isCBDistribution": true,
                                    "isChtOffer": true,
                                    "isCrossBorderOffer": true,
                                    "isGovCouponOfferInOD": false,
                                    "isGpfOffer": true,
                                    "isHTQQOffer": true,
                                    "isOnDemandOffer": true,
                                    "isPublishFeed": true,
                                    "isSearchOffer": true,
                                    "isSsbxsfh": true,
                                    "isSupplyProcessOffer": true,
                                    "isSupplyStockOffer": true,
                                    "isSupportAxg": true,
                                    "isSupportMix": true,
                                    "isSupportStock": true,
                                    "isSupportVideo": true,
                                    "isVideoDemandOffer": true
                                },
                                "offerSign": {
                                    "hasBusinessPrice": false,
                                    "hasJoinBusinessPrice": false,
                                    "hasRelationOffer": true,
                                    "isChtSingleOffer": true,
                                    "isConsignMarketOffer": false,
                                    "isDetailForbidden": false,
                                    "isDistribution": true,
                                    "isOfferSupportOnlineTrade": true,
                                    "isOnlyNPorcessingOffer": false,
                                    "isPreSaleOffer": false,
                                    "isPreSell": false,
                                    "isSkuOffer": false,
                                    "isVirtualCategory": false,
                                    "preHeatOfferCanTrade": true
                                },
                                "operateDisplayStatus": "ORDER_NOW",
                                "orderParamModel": {
                                    "orderParam": {
                                        "addCartParam": {
                                            "cartType": ""
                                        },
                                        "beginNum": 1,
                                        "canBookedAmount": 3847,
                                        "flow": "general",
                                        "mixParam": {
                                            "mixAmount": 15000,
                                            "mixBegin": 0,
                                            "mixNum": 100,
                                            "shopMixNum": 2147483647,
                                            "supportMix": true
                                        },
                                        "saledCount": 450,
                                        "skuParam": {
                                            "skuPriceType": "rangePrice",
                                            "skuRangePrices": [
                                                {
                                                    "beginAmount": "1",
                                                    "price": "54.00"
                                                },
                                                {
                                                    "beginAmount": "1000",
                                                    "price": "52.00"
                                                },
                                                {
                                                    "beginAmount": "20000",
                                                    "price": "42.00"
                                                }
                                            ]
                                        }
                                    }
                                },
                                "qrCode": "https://m.1688.com/offer/717614814987.html?sk=order",
                                "reserveData": [
    
                                ],
                                "sellerSign": {
                                    "isChtMember": false,
                                    "isIndustrySeller": false,
                                    "isSlsj": false,
                                    "isTp": true,
                                    "signs": {
                                        "isChtMember": false,
                                        "isEaseBuyDealer": true,
                                        "isFactoryDealer": true,
                                        "isIndustrySeller": false,
                                        "isSlsj": false,
                                        "isTp": true
                                    }
                                },
                                "sevenDaysRefund": true,
                                "shareModel": [
    
                                ],
                                "showOldOD": false,
                                "skuModel": {
                                    "skuInfoMap": [
    
                                    ],
                                    "skuPriceScale": "42.00-54.00"
                                },
                                "supportPuhuo": true,
                                "tempModel": {
                                    "companyName": "亚利韦(深圳)科技实业有限公司",
                                    "defaultOfferImg": "",
                                    "offerId": 717614814987,
                                    "offerTitle": "厂家ps5游戏手柄充电底座双充快充座充带指示灯PS5充电器游戏周边",
                                    "offerUnit": "个",
                                    "postCategoryId": 122410004,
                                    "saledCount": 450,
                                    "sellerLoginId": "ylwtech",
                                    "sellerMemberId": "b2b-4087619726fb509",
                                    "sellerUserId": 4087619726,
                                    "topCategoryId": 7,
                                    "winportUrl": "https://winport.m.1688.com/page/index.html?memberId=b2b-4087619726fb509"
                                },
                                "tmPickScene": false,
                                "topBarModel": [
    
                                ]
                            },
                            "isRoot": true,
                            "label": "商品详情页",
                            "uiType": "od_region"
                        },
                        "id": "Root",
                        "meta": {
                            "scriptFileName": "pcOfferDetailDscGlobalDataViewcomposer"
                        },
                        "position": "body",
                        "tag": "Root",
                        "type": "od_region"
                    },
                    "bottom": {
                        "fields": {
                            "className": "region region-bottom",
                            "label": "页面尾部",
                            "uiType": "od_region"
                        },
                        "id": "bottom",
                        "meta": [
    
                        ],
                        "position": "body",
                        "tag": "bottom",
                        "type": "od_region"
                    },
                    "cart": {
                        "fields": {
                            "label": "选款区",
                            "partition": [
                                2,
                                1
                            ],
                            "uiType": "od_cart_sider"
                        },
                        "id": "cart",
                        "meta": [
    
                        ],
                        "position": "body",
                        "tag": "cart",
                        "type": "od_cart_sider"
                    },
                    "chromePlugin": {
                        "fields": {
                            "label": "chrome插件",
                            "uiType": "od_chrome_plugin"
                        },
                        "id": "chromePlugin",
                        "meta": [
    
                        ],
                        "position": "body",
                        "tag": "chromePlugin",
                        "type": "od_chrome_plugin"
                    },
                    "customMade": {
                        "fields": {
                            "label": "定制项",
                            "uiType": "od_custom_made"
                        },
                        "id": "customMade",
                        "meta": [
    
                        ],
                        "position": "body",
                        "tag": "customMade",
                        "type": "od_custom_made"
                    },
                    "description": {
                        "fields": {
                            "bigPromotionBanner": {
                                "bannerJumpUrl": "https://ylwtech.1688.com/page/activity.htm?offerId=717614814987#promotion",
                                "bannerUrl": "",
                                "hasBigPromotion": false
                            },
                            "detailUrl": "https://itemcdn.tmall.com/1688offer/icoss2883628019df4c4d8d714d6b80",
                            "label": "详情描述",
                            "uiType": "od_product_description"
                        },
                        "id": "description",
                        "meta": {
                            "scriptFileName": "pcOfferDetailDscDetailViewcomposer"
                        },
                        "position": "body",
                        "tag": "description",
                        "type": "od_product_description"
                    },
                    "discountCoupon": {
                        "fields": {
                            "bgColor": "#ff0e31",
                            "buttonName": "领券",
                            "couponInfoList": [
                                {
                                    "buttonName": "领券",
                                    "displayType": "text",
                                    "extraInfo": {
                                        "$ref": "$.result.data.discountCoupon.fields.promotionModel.promotionList[0].extraInfo"
                                    },
                                    "name": "互动优惠券",
                                    "promotionItems": [
                                        {
                                            "actionName": "立即领取",
                                            "applied": false,
                                            "availablePeriod": "有效期:2025.03.24 00:00:00-2025.09.20 23:59:59",
                                            "canApply": true,
                                            "couponType": 0,
                                            "detail": "入会有礼券",
                                            "extendDetail": "",
                                            "label": "满100减10券",
                                            "startTime": "Mon Mar 24 00:00:00 CST 2025",
                                            "summary": "入会有礼券"
                                        }
                                    ],
                                    "summary": "入会有礼券",
                                    "type": "INTERACT",
                                    "uiType": "INTERACT"
                                },
                                {
                                    "buttonName": "查看",
                                    "displayType": "coupon",
                                    "extraInfo": {
                                        "$ref": "$.result.data.discountCoupon.fields.promotionModel.promotionList[1].extraInfo"
                                    },
                                    "name": "混批",
                                    "promotionItems": [
                                        {
                                            "detail": "本店部分商品满15000元或100件可混批采购",
                                            "extendDetail": "",
                                            "label": "100件混批",
                                            "summary": "本店部分商品满15000元或100件可混批采购"
                                        }
                                    ],
                                    "summary": "本店部分商品满15000元或100件可混批采购",
                                    "type": "MIX_WHOLESALE",
                                    "uiType": "CARD"
                                }
                            ],
                            "couponList": [
                                {
                                    "couponContent": "满100减10券",
                                    "couponType": "INTERACT"
                                },
                                {
                                    "couponContent": "100件混批",
                                    "couponType": "CARD"
                                }
                            ],
                            "label": "折扣优惠",
                            "linkUrl": "https://cybert.m.1688.com/43ohz283.html?sceneName=chimera_16527",
                            "offerId": 717614814987,
                            "pageName": "Page_GetCoupon",
                            "promotionModel": {
                                "buttonName": "领券",
                                "promotionList": [
                                    {
                                        "buttonName": "领券",
                                        "displayType": "text",
                                        "extraInfo": {
                                            "uiType": "INTERACT"
                                        },
                                        "name": "互动优惠券",
                                        "promotionItems": [
                                            {
                                                "actionName": "立即领取",
                                                "applied": false,
                                                "availablePeriod": "有效期:2025.03.24 00:00:00-2025.09.20 23:59:59",
                                                "canApply": true,
                                                "couponType": 0,
                                                "detail": "入会有礼券",
                                                "extendDetail": "",
                                                "label": "满100减10券",
                                                "startTime": "Mon Mar 24 00:00:00 CST 2025",
                                                "summary": "入会有礼券"
                                            }
                                        ],
                                        "summary": "入会有礼券",
                                        "type": "INTERACT",
                                        "uiType": "INTERACT"
                                    },
                                    {
                                        "buttonName": "查看",
                                        "displayType": "coupon",
                                        "extraInfo": {
                                            "uiType": "CARD"
                                        },
                                        "name": "混批",
                                        "promotionItems": [
                                            {
                                                "detail": "本店部分商品满15000元或100件可混批采购",
                                                "extendDetail": "",
                                                "label": "100件混批",
                                                "summary": "本店部分商品满15000元或100件可混批采购"
                                            }
                                        ],
                                        "summary": "本店部分商品满15000元或100件可混批采购",
                                        "type": "MIX_WHOLESALE",
                                        "uiType": "CARD"
                                    }
                                ]
                            },
                            "style": {
                                "arrowsImg": "https://img.alicdn.com/tfs/TB19FQtP4D1gK0jSZFsXXbldVXa-26-44.png",
                                "textColor": "#FF4000"
                            },
                            "trackInfo": [
    
                            ],
                            "uiType": "od_discount_coupon"
                        },
                        "id": "discountCoupon",
                        "meta": {
                            "scriptFileName": "pcOfferDetailDscPromotionViewcomposer"
                        },
                        "position": "body",
                        "tag": "discountCoupon",
                        "type": "od_discount_coupon"
                    },
                    "gallery": {
                        "fields": {
                            "canShowAllImage": true,
                            "isBestOffer": false,
                            "isBestOfferUrl": "https://img.alicdn.com/tfs/TB1ZwSvqG6qK1RjSZFmXXX0PFXa-100-100.png",
                            "label": "商品主图",
                            "offerId": 717614814987,
                            "offerImgList": [
                                "https://cbu01.alicdn.com/img/ibank/O1CN01FU9zIZ2LiYytUTr8y_!!4087619726-0-cib.jpg",
                                "https://cbu01.alicdn.com/img/ibank/O1CN01rfCZu52LiYyzKu8eh_!!4087619726-0-cib.jpg",
                                "https://cbu01.alicdn.com/img/ibank/O1CN018AwYqC2LiYyp62196_!!4087619726-0-cib.jpg",
                                "https://cbu01.alicdn.com/img/ibank/O1CN01NNzqyo2LiYyplKf1P_!!4087619726-0-cib.jpg",
                                "https://cbu01.alicdn.com/img/ibank/O1CN01CCq5id2LiYypks415_!!4087619726-0-cib.jpg"
                            ],
                            "subject": "厂家ps5游戏手柄充电底座双充快充座充带指示灯PS5充电器游戏周边",
                            "uiType": "od_picture_gallery",
                            "video": {
                                "coverUrl": "https://img.alicdn.com/imgextra/i1/6000000001544/O1CN01zubSOt1NHCWGhw29U_!!6000000001544-0-tbvideo.jpg",
                                "state": 6,
                                "title": "P52",
                                "videoId": 483643989891,
                                "videoUrl": "https://cloud.video.taobao.com/play/u/4087619726/p/2/e/6/t/1/483643989891.mp4"
                            }
                        },
                        "id": "gallery",
                        "meta": {
                            "scriptFileName": "pcOfferDetailDscImageViewcomposer"
                        },
                        "position": "body",
                        "tag": "gallery",
                        "type": "od_picture_gallery"
                    },
                    "mainPrice": {
                        "fields": {
                            "activityModel": {
                                "beforePro": false,
                                "privilegesType": "default"
                            },
                            "bigPromotion": false,
                            "bigPromotionInfo": {
                                "bigPromotionCountdown": -1,
                                "bigPromotionStatus": "NONE",
                                "burstBeginTime": -1,
                                "burstEndTime": -1,
                                "preheatTime": -1,
                                "promotionResources": [
    
                                ]
                            },
                            "channel": "dsc",
                            "displayType": "normal-range",
                            "finalPriceModel": {
                                "tradeWithoutPromotion": {
                                    "OfferIsSkuTradeSupported": false,
                                    "canBookedAmountOriginal": 3847,
                                    "offerBeginAmount": 1,
                                    "offerMaxPrice": "54.00",
                                    "offerMinPrice": "42.00",
                                    "offerPriceDisplay": "42.00-54.00",
                                    "offerPriceRanges": [
                                        {
                                            "beginAmount": 1,
                                            "discountPrice": "54.00",
                                            "endAmount": 999,
                                            "price": "54.00"
                                        },
                                        {
                                            "beginAmount": 1000,
                                            "discountPrice": "52.00",
                                            "endAmount": 19999,
                                            "price": "52.00"
                                        },
                                        {
                                            "beginAmount": 20000,
                                            "discountPrice": "42.00",
                                            "endAmount": 0,
                                            "price": "42.00"
                                        }
                                    ]
                                }
                            },
                            "isBmPrice": false,
                            "isPlusPrice": false,
                            "isPrivatePrice": false,
                            "isVipPrice": false,
                            "label": "价格",
                            "marketScene": "default",
                            "originPriceType": "rangePrice",
                            "originalPricesWithoutPromotion": [
                                {
                                    "beginAmount": 1,
                                    "price": "54.00"
                                },
                                {
                                    "beginAmount": 1000,
                                    "price": "52.00"
                                },
                                {
                                    "beginAmount": 20000,
                                    "price": "42.00"
                                }
                            ],
                            "priceModel": {
                                "currentPrices": [
                                    {
                                        "beginAmount": 1,
                                        "price": "54.00"
                                    },
                                    {
                                        "beginAmount": 1000,
                                        "price": "52.00"
                                    },
                                    {
                                        "beginAmount": 20000,
                                        "price": "42.00"
                                    }
                                ],
                                "priceDisplayType": "rangePrice",
                                "priceLabel": ""
                            },
                            "promotionData": {
                                "bgColor": "#ff0e31",
                                "bgPic": "https://gw.alicdn.com/tfs/TB1gmeRp7cx_u4jSZFlXXXnUFXa-1071-138.png",
                                "buttonName": "领券",
                                "couponInfoList": [
                                    {
                                        "buttonName": "领券",
                                        "displayType": "text",
                                        "extraInfo": {
                                            "uiType": "INTERACT"
                                        },
                                        "name": "互动优惠券",
                                        "promotionItems": [
                                            {
                                                "actionName": "立即领取",
                                                "applied": false,
                                                "availablePeriod": "有效期:2025.03.24 00:00:00-2025.09.20 23:59:59",
                                                "canApply": true,
                                                "couponType": 0,
                                                "detail": "入会有礼券",
                                                "extendDetail": "",
                                                "label": "满100减10券",
                                                "startTime": "Mon Mar 24 00:00:00 CST 2025",
                                                "summary": "入会有礼券"
                                            }
                                        ],
                                        "summary": "入会有礼券",
                                        "type": "INTERACT",
                                        "uiType": "INTERACT"
                                    },
                                    {
                                        "buttonName": "查看",
                                        "displayType": "coupon",
                                        "extraInfo": {
                                            "uiType": "CARD"
                                        },
                                        "name": "混批",
                                        "promotionItems": [
                                            {
                                                "detail": "本店部分商品满15000元或100件可混批采购",
                                                "extendDetail": "",
                                                "label": "100件混批",
                                                "mixNumber": 100,
                                                "summary": "本店部分商品满15000元或100件可混批采购"
                                            }
                                        ],
                                        "summary": "本店部分商品满15000元或100件可混批采购",
                                        "type": "MIX_WHOLESALE",
                                        "uiType": "CARD"
                                    }
                                ],
                                "couponList": [
                                    {
                                        "couponContent": "满100减10券",
                                        "couponType": "INTERACT"
                                    },
                                    {
                                        "couponContent": "100件混批",
                                        "couponMixNumber": 100,
                                        "couponType": "CARD"
                                    }
                                ],
                                "linkUrl": "https://cybert.m.1688.com/43ohz283.html?sceneName=chimera_16527",
                                "offerId": 717614814987,
                                "pageName": "Page_GetCoupon"
                            },
                            "secondaryAtmosphere": [
    
                            ],
                            "trackInfo": [
    
                            ],
                            "uiType": "od_main_price",
                            "unit": "个"
                        },
                        "id": "mainPrice",
                        "meta": {
                            "scriptFileName": "pcOfferDetailDscPriceViewcomposer"
                        },
                        "position": "body",
                        "tag": "mainPrice",
                        "type": "od_main_price"
                    },
                    "mainServices": {
                        "fields": {
                            "guaranteeList": [
                                {
                                    "description": "满足相应条件下,卖家需支持7天无理由,其中定制订单不支持“7天无理由退货”。",
                                    "serviceName": "7天无理由退货",
                                    "textColor": "#222222"
                                },
                                {
                                    "description": "若商家未按订单约定的时间发货,您可以在订单详情申请赔付",
                                    "serviceLink": "https://show.1688.com/vip/other/1bpmrma4.html?__pageId__=227845&cms_id=227845",
                                    "serviceName": "晚发必赔",
                                    "textColor": "#222222"
                                }
                            ],
                            "label": "服务",
                            "trackInfo": [
    
                            ],
                            "uiType": "od_services"
                        },
                        "id": "mainServices",
                        "meta": {
                            "scriptFileName": "pcOfferDetailDscBuyerServiceViewcomposer"
                        },
                        "position": "body",
                        "tag": "mainServices",
                        "type": "od_services"
                    },
                    "navTabs": {
                        "fields": {
                            "label": "详情区域页签",
                            "uiType": "od_nav_tabs"
                        },
                        "id": "navTabs",
                        "meta": [
    
                        ],
                        "position": "body",
                        "tag": "navTabs",
                        "type": "od_nav_tabs"
                    },
                    "product": {
                        "fields": {
                            "className": "region region-screen-product",
                            "label": "产品",
                            "uiType": "od_region"
                        },
                        "id": "product",
                        "meta": [
    
                        ],
                        "position": "body",
                        "tag": "product",
                        "type": "od_region"
                    },
                    "productAttributes": {
                        "fields": {
                            "label": "商品参数",
                            "uiType": "od_product_attributes"
                        },
                        "id": "productAttributes",
                        "meta": {
                            "errorMessage": "class com.alibaba.fastjson.JSONArray cannot be cast to class com.alibaba.fastjson.JSONObject (com.alibaba.fastjson.JSONArray and com.alibaba.fastjson.JSONObject are in unnamed module of loader com.taobao.pandora.boot.loader.LaunchedURLClassLoader @e5a68e)",
                            "scriptFileName": "pcOfferDetailProcessingAttributesViewcomposer"
                        },
                        "position": "body",
                        "tag": "productAttributes",
                        "type": "od_product_attributes"
                    },
                    "productEvaluation": {
                        "fields": {
                            "label": "商品评价",
                            "uiType": "od_product_evaluation"
                        },
                        "id": "productEvaluation",
                        "meta": [
    
                        ],
                        "position": "body",
                        "tag": "productEvaluation",
                        "type": "od_product_evaluation"
                    },
                    "productPackInfo": {
                        "fields": {
                            "label": "商品件重尺",
                            "pieceWeightScale": {
                                "columnList": [
                                    {
                                        "label": "长(cm)",
                                        "name": "length",
                                        "precision": 2
                                    },
                                    {
                                        "label": "宽(cm)",
                                        "name": "width",
                                        "precision": 2
                                    },
                                    {
                                        "label": "高(cm)",
                                        "name": "height",
                                        "precision": 2
                                    },
                                    {
                                        "label": "体积(cm³)",
                                        "name": "volume",
                                        "precision": 3
                                    },
                                    {
                                        "label": "重量(g)",
                                        "name": "weight",
                                        "precision": 0
                                    }
                                ],
                                "pieceWeightScaleInfo": [
                                    {
                                        "height": 11,
                                        "length": 17.2,
                                        "volume": 1475.76,
                                        "weight": 181,
                                        "width": 7.8
                                    }
                                ]
                            },
                            "uiType": "od_product_pack_info",
                            "unitWeight": 0.181
                        },
                        "id": "productPackInfo",
                        "meta": {
                            "scriptFileName": "pcOfferDetailCrossAttributesViewcomposer"
                        },
                        "position": "body",
                        "tag": "productPackInfo",
                        "type": "od_product_pack_info"
                    },
                    "productTitle": {
                        "fields": {
                            "editUrl": "https://offer.1688.com/offer/post/fillProductInfo.htm?operator=edit&offerId=717614814987&pageSrc=fusion&frontVersion=2017",
                            "isBestOffer": false,
                            "isShowEdit": false,
                            "label": "产品标题",
                            "labels": [
    
                            ],
                            "officialActivityIcon": "",
                            "saleCountDate": "一年内",
                            "saleNum": "400+",
                            "tagList": [
                                {
                                    "detail": [
                                        {
                                            "icon": "https://gw.alicdn.com/imgextra/i2/O1CN01ocXV9u1k1qAcVUuZa_!!6000000004624-2-tps-41-36.png",
                                            "text": "品质严选,放心采购"
                                        },
                                        {
                                            "icon": "https://gw.alicdn.com/imgextra/i3/O1CN01H5WVsg28BVIahbDwn_!!6000000007894-2-tps-54-57.png",
                                            "text": "现货快发,服务保障"
                                        }
                                    ],
                                    "img": "https://gw.alicdn.com/imgextra/i2/O1CN01hNYSIf22eSkGGUwng_!!6000000007145-2-tps-188-56.png",
                                    "text": "1688严选",
                                    "type": "1688_ELECTION"
                                }
                            ],
                            "title": "厂家ps5游戏手柄充电底座双充快充座充带指示灯PS5充电器游戏周边",
                            "uiType": "od_title",
                            "unit": "个"
                        },
                        "id": "productTitle",
                        "meta": {
                            "scriptFileName": "pcOfferDetailDscTitleViewcomposer"
                        },
                        "position": "body",
                        "tag": "productTitle",
                        "type": "od_title"
                    },
                    "productWarning": {
                        "fields": {
                            "cautionText": "1688提醒您:",
                            "isCautionOffer": false,
                            "label": "警示证书",
                            "officialDocInfos": [
    
                            ],
                            "uiType": "od_product_warning"
                        },
                        "id": "productWarning",
                        "meta": {
                            "scriptFileName": "pcOfferDetailDscOfficialDocViewcomposer"
                        },
                        "position": "body",
                        "tag": "productWarning",
                        "type": "od_product_warning"
                    },
                    "promotionBanner": {
                        "fields": {
                            "bannerImage": "",
                            "label": "营销氛围",
                            "uiType": "od_promotion_banner"
                        },
                        "id": "promotionBanner",
                        "meta": {
                            "scriptFileName": "pcOfferDetailDscDacubannerViewcomposer"
                        },
                        "position": "body",
                        "tag": "promotionBanner",
                        "type": "od_promotion_banner"
                    },
                    "sceneKey": {
                        "fields": {
                            "coord": {
                                "appPlatform": "",
                                "appVersion": "",
                                "atmosphere": "normal",
                                "business": "default",
                                "channel": "dsc",
                                "custom": [
    
                                ],
                                "role": "defaultBuyer",
                                "scene": "default",
                                "useCase": "1688_pc_detail"
                            },
                            "handleProcessingTab": false,
                            "label": "场景页签",
                            "memberId": "b2b-4087619726fb509",
                            "offerId": 717614814987,
                            "sceneList": [
                                {
                                    "sceneKey": "order",
                                    "sceneName": "批发",
                                    "url": "https://detail.1688.com/offer/717614814987.html?sk=order"
                                },
                                {
                                    "sceneKey": "consign",
                                    "sceneName": "代发",
                                    "url": "https://detail.1688.com/offer/717614814987.html?sk=consign"
                                }
                            ],
                            "selectedScene": {
                                "sceneKey": "order",
                                "sceneName": "批发"
                            },
                            "trackInfo": [
    
                            ],
                            "uiType": "od_scene_key"
                        },
                        "id": "sceneKey",
                        "meta": {
                            "scriptFileName": "pcOfferDetailDscTabViewViewcomposer"
                        },
                        "position": "body",
                        "tag": "sceneKey",
                        "type": "od_scene_key"
                    },
                    "screen": {
                        "fields": {
                            "className": "region region-screen",
                            "label": "主屏幕",
                            "uiType": "od_region"
                        },
                        "id": "screen",
                        "meta": [
    
                        ],
                        "position": "body",
                        "tag": "screen",
                        "type": "od_region"
                    },
                    "shippingServices": {
                        "fields": {
                            "buyerProtectionModel": [
                                {
                                    "agreementPage": "https://rule.1688.com/?+tracelog=aliguize_wzdh01&type=detail&ruleId=20004568&cId=3044#/rule/detail?ruleId=20004568&cId=3044",
                                    "bigLogo": "https://img.alicdn.com/imgextra/i2/O1CN01dNPHxv1UZhbWE3yPO_!!6000000002532-2-tps-32-32.png",
                                    "enabled": true,
                                    "extendInfo": {
                                        "popDescription": "卖家承诺买家签收货物后7天内,在“商品完好”的情形下,向买家提供退货服务。"
                                    },
                                    "forceUseSubPtsCodes": false,
                                    "hugeLogo": "https://img.alicdn.com/imgextra/i1/O1CN01qUUUwV1RIo98arRvQ_!!6000000002089-2-tps-58-58.png",
                                    "instruction": "当前开放类目: 1)纺织、皮革 2)家用电器 3)数码、电脑 4)能源 5)交通运输 6)传媒、广电 7)橡塑 8)灯饰照明 9)五金、工具 10)环保 11)医药、保养 12)办公、文化 13)包装 14)商务服务 15)汽摩及配件 16)美容护肤/彩妆 17)玩具 18)男装 19)女装 20)仪器仪表 21)个护/家清 22)成人用品 23)建材 24)农业 25)食品酒水 26)电工电气 27)化工 28)冶金矿产 29)家装建材 30)居家日用品 31)运动户外 32)服饰配件、饰品 33)电子元器件 34)机械及行业设备 35)安全、防护 36)印刷 37)家纺家饰 38)童装 39)内衣 40)通信产品 41)机床 42)加工 43)二手设备转让 44)鞋 45)箱包皮具 46)宠物及园艺 47)汽车用品 48)钢铁 49)餐饮生鲜 50)日用餐厨饮具 51)收纳清洁用具",
                                    "largeLogo": "https://img.alicdn.com/imgextra/i2/O1CN01iYPe5E1YGhdWMDnh8_!!6000000003032-2-tps-48-48.png",
                                    "littleLogo": "https://img.alicdn.com/imgextra/i1/O1CN01YIe8Lk1vxyDWgdkPQ_!!6000000006240-2-tps-16-16.png",
                                    "logicGroupId": "4",
                                    "logo": "https://img.alicdn.com/imgextra/i2/O1CN01NyKX2m1pKgXu54Rve_!!6000000005342-2-tps-64-64.png",
                                    "middleLogo": "https://img.alicdn.com/imgextra/i2/O1CN01H10f2n1gAJ1vgHRgN_!!6000000004101-2-tps-24-24.png",
                                    "moreHugeLogo": "https://img.alicdn.com/imgextra/i2/O1CN01NyKX2m1pKgXu54Rve_!!6000000005342-2-tps-64-64.png",
                                    "packageBuyerDesc": "7天无理由退货",
                                    "serviceCode": "qtwlybt",
                                    "serviceName": "7天无理由退货",
                                    "serviceShortCode": "qtwlybt",
                                    "serviceVersion": 2,
                                    "shortBuyerDesc": "满足相应条件下,卖家需支持7天无理由,其中定制订单不支持“7天无理由退货”。",
                                    "shortSellerDesc": "卖家承诺买家签收货物后7天内,在“商品完好”的情形下,向买家提供退货服务。",
                                    "textDesc": "卖家承诺买家签收货物后7天内,在“商品完好”的情形下,向买家提供退货服务。",
                                    "type": "protect",
                                    "userId": 4087619726
                                },
                                {
                                    "agreeDeliveryHours": 48,
                                    "agreementPage": "https://terms.alicdn.com/legal-agreement/terms/suit_bu1_b2b/suit_bu1_b2b202104072140_25758.html",
                                    "bigLogo": "https://cbu01.alicdn.com/cms/upload/2015/839/305/2503938_1964054271.png",
                                    "currentStep": 1,
                                    "enabled": true,
                                    "extendInfo": {
                                        "delivery_days": "2",
                                        "popDescription": "卖家在承诺买家保障服务的基础上,向买家提供“48小时发货延必赔”的服务。在买家通过支付宝担保交易完成付款或通过货到付款下单成功后,卖家承诺在买家支付成功起48小时内发货。如卖家未履行前述承诺,买家可在指定期限内发起维权,并申请赔付。"
                                    },
                                    "forceUseSubPtsCodes": false,
                                    "hugeLogo": "https://cbu01.alicdn.com/cms/upload/2015/008/705/2507800_1964054271.png",
                                    "instruction": "当前开放类目: 1)纺织、皮革 2)家用电器 3)数码、电脑 4)能源 5)交通运输 6)传媒、广电 7)橡塑 8)灯饰照明 9)五金、工具 10)环保 11)医药、保养 12)办公、文化 13)包装 14)商务服务 15)汽摩及配件 16)美容护肤/彩妆 17)玩具 18)男装 19)女装 20)仪器仪表 21)个护/家清 22)成人用品 23)建材 24)农业 25)食品酒水 26)电工电气 27)化工 28)冶金矿产 29)家装建材 30)居家日用品 31)运动户外 32)服饰配件、饰品 33)电子元器件 34)机械及行业设备 35)安全、防护 36)印刷 37)家纺家饰 38)童装 39)内衣 40)通信产品 41)机床 42)加工 43)二手设备转让 44)鞋 45)箱包皮具 46)宠物及园艺 47)汽车用品 48)钢铁 49)餐饮生鲜 50)日用餐厨饮具 51)收纳清洁用具 52)新能源",
                                    "largeLogo": "https://cbu01.alicdn.com/cms/upload/2015/610/615/2516016_1964054271.png",
                                    "littleLogo": "https://cbu01.alicdn.com/cms/upload/2015/177/505/2505771_1964054271.png",
                                    "logicGroupId": "1",
                                    "logo": "https://cbu01.alicdn.com/cms/upload/2015/460/315/2513064_1964054271.png",
                                    "middleLogo": "https://cbu01.alicdn.com/cms/upload/2015/867/805/2508768_1964054271.png",
                                    "moreHugeLogo": "https://cbu01.alicdn.com/cms/upload/2015/460/315/2513064_1964054271.png",
                                    "packageBuyerDesc": "晚发必赔",
                                    "productPage": "https://show.1688.com/vip/other/1bpmrma4.html?__pageId__=227845&cms_id=227845",
                                    "ptsOfferStepModels": [
                                        {
                                            "selected": false,
                                            "selectedPtsOfferTagModel": {
                                                "agreeDeliveryHours": 48,
                                                "disabled": false,
                                                "required": false,
                                                "selected": false,
                                                "serviceCode": "ssbxsfh",
                                                "serviceName": "48小时发货"
                                            },
                                            "selectedStartQuantity": 1
                                        }
                                    ],
                                    "serviceCode": "ssbxsfh",
                                    "serviceName": "晚发必赔",
                                    "serviceShortCode": "D",
                                    "serviceVersion": 2,
                                    "shortBuyerDesc": "若商家未按订单约定的时间发货,您可以在订单详情申请赔付",
                                    "shortSellerDesc": "开通此服务的卖家,优先获得专场曝光,醒目的标识展示,现货保障刺激买家下单。",
                                    "textDesc": "卖家在承诺买家保障服务的基础上,向买家提供“48小时发货延必赔”的服务。在买家通过支付宝担保交易完成付款或通过货到付款下单成功后,卖家承诺在买家支付成功起48小时内发货。如卖家未履行前述承诺,买家可在指定期限内发起维权,并申请赔付。",
                                    "type": "protect",
                                    "userId": 4087619726
                                }
                            ],
                            "buyerProtectionScene": "dsc",
                            "deliveryFee": "TEMPLATED",
                            "deliveryLimitText": "承诺48小时发货",
                            "deliveryLimitTimeModel": {
                                "attrs": {
                                    "offerUnit": "个",
                                    "ptsOfferStepModels": [
                                        {
                                            "selected": false,
                                            "selectedPtsOfferTagModel": {
                                                "agreeDeliveryHours": 48,
                                                "disabled": false,
                                                "required": false,
                                                "selected": false,
                                                "serviceCode": "ssbxsfh",
                                                "serviceName": "48小时发货"
                                            },
                                            "selectedStartQuantity": 1
                                        }
                                    ]
                                },
                                "expectTimeDesc": "",
                                "limitTimeDay": 2,
                                "limitTimeDesc": "承诺48小时发货",
                                "offerId": 717614814987,
                                "orderCntLevelText": ""
                            },
                            "freeDeliverFee": false,
                            "freeEndAmount": -1,
                            "freightInfo": {
                                "deliveryFee": {
                                    "name": "TEMPLATED"
                                },
                                "deliveryLimit": 2,
                                "freeDeliverFee": false,
                                "freeEndAmount": -1,
                                "location": "广东省深圳市",
                                "locationCode": "14730233",
                                "locationDivisionCode": "440306",
                                "logisticsText": "承诺48小时发货",
                                "officialLogistics": false,
                                "skuWeight": [
    
                                ],
                                "subTemplateId": 12401568,
                                "totalCost": 8,
                                "unitWeight": 0.181
                            },
                            "hideDeliveryTime": false,
                            "hideLogisticsClick": false,
                            "isShowLogistics": true,
                            "isSkuTradeSupported": false,
                            "label": "物流发货",
                            "location": "广东省深圳市",
                            "logistics": "",
                            "minWeight": 0.181,
                            "officialLogistics": false,
                            "postFeeValue": 8,
                            "postFree": false,
                            "price": "42.00",
                            "protectionInfos": [
                                {
                                    "buyerDescription": "7天无理由退货",
                                    "description": "满足相应条件下,卖家需支持7天无理由,其中定制订单不支持“7天无理由退货”。",
                                    "logoUrl": "https://img.alicdn.com/imgextra/i2/O1CN01NyKX2m1pKgXu54Rve_!!6000000005342-2-tps-64-64.png",
                                    "logoUrl_16_16": "https://img.alicdn.com/imgextra/i1/O1CN01YIe8Lk1vxyDWgdkPQ_!!6000000006240-2-tps-16-16.png",
                                    "logoUrl_64_64": "https://img.alicdn.com/imgextra/i2/O1CN01NyKX2m1pKgXu54Rve_!!6000000005342-2-tps-64-64.png",
                                    "longDescription": "卖家承诺买家签收货物后7天内,在“商品完好”的情形下,向买家提供退货服务。",
                                    "serviceCode": "qtwlybt",
                                    "serviceName": "7天无理由退货",
                                    "type": "protect"
                                },
                                {
                                    "agreeDeliveryHours": 48,
                                    "buyerDescription": "晚发必赔",
                                    "description": "若商家未按订单约定的时间发货,您可以在订单详情申请赔付",
                                    "logoUrl": "https://cbu01.alicdn.com/cms/upload/2015/460/315/2513064_1964054271.png",
                                    "logoUrl_16_16": "https://cbu01.alicdn.com/cms/upload/2015/177/505/2505771_1964054271.png",
                                    "logoUrl_64_64": "https://cbu01.alicdn.com/cms/upload/2015/460/315/2513064_1964054271.png",
                                    "longDescription": "卖家在承诺买家保障服务的基础上,向买家提供“48小时发货延必赔”的服务。在买家通过支付宝担保交易完成付款或通过货到付款下单成功后,卖家承诺在买家支付成功起48小时内发货。如卖家未履行前述承诺,买家可在指定期限内发起维权,并申请赔付。",
                                    "serviceCode": "ssbxsfh",
                                    "serviceLink": "https://show.1688.com/vip/other/1bpmrma4.html?__pageId__=227845&cms_id=227845",
                                    "serviceName": "晚发必赔",
                                    "type": "protect"
                                }
                            ],
                            "sendAddressCode": "14730233",
                            "skuWeight": {
                                "$ref": "$.result.data.shippingServices.fields.freightInfo.skuWeight"
                            },
                            "startAmount": 1,
                            "targetLocation": "选择配送地址为您计算运费及送达时间",
                            "templateId": 12401568,
                            "text": "",
                            "totalCost": 8,
                            "trackInfo": [
    
                            ],
                            "uiType": "od_shipping_services",
                            "unit": "个",
                            "unitWeight": 0.181,
                            "volume": 0
                        },
                        "id": "shippingServices",
                        "meta": {
                            "scriptFileName": "pcOfferDetailDscLogisticsViewcomposer"
                        },
                        "position": "body",
                        "tag": "shippingServices",
                        "type": "od_shipping_services"
                    },
                    "shopNavigation": {
                        "fields": {
                            "label": "旺铺导航",
                            "uiType": "od_shop_navigation"
                        },
                        "id": "shopNavigation",
                        "meta": [
    
                        ],
                        "position": "body",
                        "tag": "shopNavigation",
                        "type": "od_shop_navigation"
                    },
                    "shopProductRecommend": {
                        "fields": {
                            "label": "商家自营销推荐",
                            "uiType": "od_shop_product_recommend"
                        },
                        "id": "shopProductRecommend",
                        "meta": [
    
                        ],
                        "position": "body",
                        "tag": "shopProductRecommend",
                        "type": "od_shop_product_recommend"
                    },
                    "sizeChart": {
                        "fields": {
                            "label": "商品尺码表",
                            "uiType": "od_size_chart"
                        },
                        "id": "sizeChart",
                        "meta": [
    
                        ],
                        "position": "body",
                        "tag": "sizeChart",
                        "type": "od_size_chart"
                    },
                    "skuSelection": {
                        "fields": {
                            "label": "规格选择器",
                            "uiType": "od_sku_selection"
                        },
                        "id": "skuSelection",
                        "meta": [
    
                        ],
                        "position": "body",
                        "tag": "skuSelection",
                        "type": "od_sku_selection"
                    },
                    "submitOrder": {
                        "fields": {
                            "businessType": "default",
                            "channelType": "dsc",
                            "freightInfo": {
                                "officialLogistics": false,
                                "queryFlag": true,
                                "skuWeight": [
    
                                ],
                                "subTemplateId": 12401568,
                                "unitWeight": 0.181
                            },
                            "isAddCartPromotion": false,
                            "isPicPrivate": false,
                            "isPricePrivate": false,
                            "isSkuOffer": false,
                            "label": "下单",
                            "marketScene": "default",
                            "operateItems": [
                                {
                                    "data": [
    
                                    ],
                                    "disType": "TEXT",
                                    "imgUrl": "",
                                    "name": "立即订购",
                                    "operateType": "ORDER"
                                },
                                {
                                    "data": [
    
                                    ],
                                    "disType": "TEXT",
                                    "imgUrl": "",
                                    "name": "加采购车",
                                    "operateType": "ADD_CART"
                                }
                            ],
                            "pstatus": "remind",
                            "remindSceneKey": "",
                            "remindText": "",
                            "uiType": "od_submit_order"
                        },
                        "id": "submitOrder",
                        "meta": {
                            "scriptFileName": "pcOfferDetailDscOrderViewcomposer"
                        },
                        "position": "body",
                        "tag": "submitOrder",
                        "type": "od_submit_order"
                    },
                    "userRights": {
                        "fields": {
                            "isShow": false,
                            "label": "月卡、权益",
                            "operateType": "QUERY_BENEFIT",
                            "testParam": "test",
                            "trackInfo": [
    
                            ],
                            "uiType": "od_user_rights"
                        },
                        "id": "userRights",
                        "meta": {
                            "scriptFileName": "pcOfferDetailDscFinaceServiceViewcomposer"
                        },
                        "position": "body",
                        "tag": "userRights",
                        "type": "od_user_rights"
                    },
                    "widgets": {
                        "fields": {
                            "label": "边角工具插件",
                            "uiType": "od_widgets"
                        },
                        "id": "widgets",
                        "meta": [
    
                        ],
                        "position": "body",
                        "tag": "widgets",
                        "type": "od_widgets"
                    }
                },
                "endpoint": {
                    "mode": "PC",
                    "osVersion": "9.9.9",
                    "protocolVersion": "3.0",
                    "standard": true,
                    "ultronage": true
                },
                "global": {
                    "globalData": {
                        "model": {
                            "buyerModel": {
                                "buyerExtendInfo": {
                                    "UserAgentKey": "100",
                                    "shieldPcOfferDetail": "false",
                                    "shieldTowardUnLogin": "true"
                                },
                                "buyerSign": {
                                    "businessBuyer": false,
                                    "hasAuth": true,
                                    "privateBuyer": false,
                                    "self": false,
                                    "sellerPartner": false,
                                    "signs": {
                                        "hasAuth": true,
                                        "isBusinessBuyer": false,
                                        "isSelf": false,
                                        "isSellerPartner": false,
                                        "visitorPicAuth": true,
                                        "visitorPriceAuth": true
                                    },
                                    "visitorPicAuth": true,
                                    "visitorPriceAuth": true
                                },
                                "gradeLevel": "0",
                                "vipBuyer": false
                            },
                            "channelBizType": "DSC",
                            "channelType": "dsc",
                            "consignModel": {
                                "consignOffer": false,
                                "consignSign": {
                                    "canIgnoreConsignRelation": false,
                                    "signs": {
                                        "hasConsignReation": false,
                                        "isCanIgnoreConsignRelation": false,
                                        "isSupportConsignIssuing": false,
                                        "supportDistribution": true
                                    },
                                    "supportConsignIssuing": false,
                                    "supportDistribution": true
                                },
                                "distributeChannels": [
                                    {
                                        "name": "Lazada",
                                        "typeCode": "lazada"
                                    },
                                    {
                                        "name": "Amazon",
                                        "typeCode": "amazon"
                                    },
                                    {
                                        "name": "Shopify",
                                        "typeCode": "shopify"
                                    },
                                    {
                                        "name": "Shopee",
                                        "typeCode": "shopee"
                                    }
                                ],
                                "hasConsignPrice": false
                            },
                            "detailBusiness": {
                                "buyerProtectionModel": [
                                    {
                                        "agreementPage": "https://rule.1688.com/?+tracelog=aliguize_wzdh01&type=detail&ruleId=20004568&cId=3044#/rule/detail?ruleId=20004568&cId=3044",
                                        "bigLogo": "https://img.alicdn.com/imgextra/i2/O1CN01dNPHxv1UZhbWE3yPO_!!6000000002532-2-tps-32-32.png",
                                        "enabled": true,
                                        "extendInfo": {
                                            "popDescription": "卖家承诺买家签收货物后7天内,在“商品完好”的情形下,向买家提供退货服务。"
                                        },
                                        "forceUseSubPtsCodes": false,
                                        "hugeLogo": "https://img.alicdn.com/imgextra/i1/O1CN01qUUUwV1RIo98arRvQ_!!6000000002089-2-tps-58-58.png",
                                        "instruction": "当前开放类目: 1)纺织、皮革 2)家用电器 3)数码、电脑 4)能源 5)交通运输 6)传媒、广电 7)橡塑 8)灯饰照明 9)五金、工具 10)环保 11)医药、保养 12)办公、文化 13)包装 14)商务服务 15)汽摩及配件 16)美容护肤/彩妆 17)玩具 18)男装 19)女装 20)仪器仪表 21)个护/家清 22)成人用品 23)建材 24)农业 25)食品酒水 26)电工电气 27)化工 28)冶金矿产 29)家装建材 30)居家日用品 31)运动户外 32)服饰配件、饰品 33)电子元器件 34)机械及行业设备 35)安全、防护 36)印刷 37)家纺家饰 38)童装 39)内衣 40)通信产品 41)机床 42)加工 43)二手设备转让 44)鞋 45)箱包皮具 46)宠物及园艺 47)汽车用品 48)钢铁 49)餐饮生鲜 50)日用餐厨饮具 51)收纳清洁用具",
                                        "largeLogo": "https://img.alicdn.com/imgextra/i2/O1CN01iYPe5E1YGhdWMDnh8_!!6000000003032-2-tps-48-48.png",
                                        "littleLogo": "https://img.alicdn.com/imgextra/i1/O1CN01YIe8Lk1vxyDWgdkPQ_!!6000000006240-2-tps-16-16.png",
                                        "logicGroupId": "4",
                                        "logo": "https://img.alicdn.com/imgextra/i2/O1CN01NyKX2m1pKgXu54Rve_!!6000000005342-2-tps-64-64.png",
                                        "middleLogo": "https://img.alicdn.com/imgextra/i2/O1CN01H10f2n1gAJ1vgHRgN_!!6000000004101-2-tps-24-24.png",
                                        "moreHugeLogo": "https://img.alicdn.com/imgextra/i2/O1CN01NyKX2m1pKgXu54Rve_!!6000000005342-2-tps-64-64.png",
                                        "packageBuyerDesc": "7天无理由退货",
                                        "serviceCode": "qtwlybt",
                                        "serviceName": "7天无理由退货",
                                        "serviceShortCode": "qtwlybt",
                                        "serviceVersion": 2,
                                        "shortBuyerDesc": "满足相应条件下,卖家需支持7天无理由,其中定制订单不支持“7天无理由退货”。",
                                        "shortSellerDesc": "卖家承诺买家签收货物后7天内,在“商品完好”的情形下,向买家提供退货服务。",
                                        "textDesc": "卖家承诺买家签收货物后7天内,在“商品完好”的情形下,向买家提供退货服务。",
                                        "type": "protect",
                                        "userId": 4087619726
                                    },
                                    {
                                        "agreeDeliveryHours": 48,
                                        "agreementPage": "https://terms.alicdn.com/legal-agreement/terms/suit_bu1_b2b/suit_bu1_b2b202104072140_25758.html",
                                        "bigLogo": "https://cbu01.alicdn.com/cms/upload/2015/839/305/2503938_1964054271.png",
                                        "currentStep": 1,
                                        "enabled": true,
                                        "extendInfo": {
                                            "delivery_days": "2",
                                            "popDescription": "卖家在承诺买家保障服务的基础上,向买家提供“48小时发货延必赔”的服务。在买家通过支付宝担保交易完成付款或通过货到付款下单成功后,卖家承诺在买家支付成功起48小时内发货。如卖家未履行前述承诺,买家可在指定期限内发起维权,并申请赔付。"
                                        },
                                        "forceUseSubPtsCodes": false,
                                        "hugeLogo": "https://cbu01.alicdn.com/cms/upload/2015/008/705/2507800_1964054271.png",
                                        "instruction": "当前开放类目: 1)纺织、皮革 2)家用电器 3)数码、电脑 4)能源 5)交通运输 6)传媒、广电 7)橡塑 8)灯饰照明 9)五金、工具 10)环保 11)医药、保养 12)办公、文化 13)包装 14)商务服务 15)汽摩及配件 16)美容护肤/彩妆 17)玩具 18)男装 19)女装 20)仪器仪表 21)个护/家清 22)成人用品 23)建材 24)农业 25)食品酒水 26)电工电气 27)化工 28)冶金矿产 29)家装建材 30)居家日用品 31)运动户外 32)服饰配件、饰品 33)电子元器件 34)机械及行业设备 35)安全、防护 36)印刷 37)家纺家饰 38)童装 39)内衣 40)通信产品 41)机床 42)加工 43)二手设备转让 44)鞋 45)箱包皮具 46)宠物及园艺 47)汽车用品 48)钢铁 49)餐饮生鲜 50)日用餐厨饮具 51)收纳清洁用具 52)新能源",
                                        "largeLogo": "https://cbu01.alicdn.com/cms/upload/2015/610/615/2516016_1964054271.png",
                                        "littleLogo": "https://cbu01.alicdn.com/cms/upload/2015/177/505/2505771_1964054271.png",
                                        "logicGroupId": "1",
                                        "logo": "https://cbu01.alicdn.com/cms/upload/2015/460/315/2513064_1964054271.png",
                                        "middleLogo": "https://cbu01.alicdn.com/cms/upload/2015/867/805/2508768_1964054271.png",
                                        "moreHugeLogo": "https://cbu01.alicdn.com/cms/upload/2015/460/315/2513064_1964054271.png",
                                        "packageBuyerDesc": "晚发必赔",
                                        "productPage": "https://show.1688.com/vip/other/1bpmrma4.html?__pageId__=227845&cms_id=227845",
                                        "ptsOfferStepModels": [
                                            {
                                                "selected": false,
                                                "selectedPtsOfferTagModel": {
                                                    "agreeDeliveryHours": 48,
                                                    "disabled": false,
                                                    "required": false,
                                                    "selected": false,
                                                    "serviceCode": "ssbxsfh",
                                                    "serviceName": "48小时发货"
                                                },
                                                "selectedStartQuantity": 1
                                            }
                                        ],
                                        "serviceCode": "ssbxsfh",
                                        "serviceName": "晚发必赔",
                                        "serviceShortCode": "D",
                                        "serviceVersion": 2,
                                        "shortBuyerDesc": "若商家未按订单约定的时间发货,您可以在订单详情申请赔付",
                                        "shortSellerDesc": "开通此服务的卖家,优先获得专场曝光,醒目的标识展示,现货保障刺激买家下单。",
                                        "textDesc": "卖家在承诺买家保障服务的基础上,向买家提供“48小时发货延必赔”的服务。在买家通过支付宝担保交易完成付款或通过货到付款下单成功后,卖家承诺在买家支付成功起48小时内发货。如卖家未履行前述承诺,买家可在指定期限内发起维权,并申请赔付。",
                                        "type": "protect",
                                        "userId": 4087619726
                                    }
                                ],
                                "buyerProtectionScene": "dsc",
                                "deliveryLimitTimeModel": {
                                    "attrs": {
                                        "offerUnit": "个",
                                        "ptsOfferStepModels": [
                                            {
                                                "selected": false,
                                                "selectedPtsOfferTagModel": {
                                                    "agreeDeliveryHours": 48,
                                                    "disabled": false,
                                                    "required": false,
                                                    "selected": false,
                                                    "serviceCode": "ssbxsfh",
                                                    "serviceName": "48小时发货"
                                                },
                                                "selectedStartQuantity": 1
                                            }
                                        ]
                                    },
                                    "expectTimeDesc": "",
                                    "limitTimeDay": 2,
                                    "limitTimeDesc": "承诺48小时发货",
                                    "offerId": 717614814987,
                                    "orderCntLevelText": ""
                                },
                                "favorCount": 5,
                                "offerSupply": "xh"
                            },
                            "detailDescription": {
                                "abTestInfo": {
                                    "abTestValueInfo": {
                                        "gypsanweisku": "1",
                                        "od_new_black_brand_txt": "1",
                                        "page_add_custom_service": "1",
                                        "page_dsc_xhdz_upgrade": "1",
                                        "page_yanxuan_od_auth": "1",
                                        "page_yanxuan_qualityCert": "Y",
                                        "page_zgc_dimension": "0",
                                        "showOfferSizeTable": "1",
                                        "zeus_gyp_onhand_price": "1",
                                        "zeus_gyp_sku_select_hot_recommend": "0"
                                    },
                                    "exposeClickInfo": [
    
                                    ],
                                    "pvTrackInfo": {
                                        "AbIds": "2515414#2517407#2494220#2518968",
                                        "AbTIds": "30739"
                                    }
                                },
                                "banners": {
                                    "aliPayOfferDetailBanner": {
                                        "bannerJumpUrl": "",
                                        "bannerUrl": ""
                                    },
                                    "bigPromotionBanner": {
                                        "bannerJumpUrl": "https://ylwtech.1688.com/page/activity.htm?offerId=717614814987#promotion",
                                        "bannerUrl": ""
                                    },
                                    "dacuBanner": {
                                        "bannerJumpUrl": "",
                                        "bannerUrl": ""
                                    },
                                    "offerDetailBanner": {
                                        "bannerJumpUrl": "",
                                        "bannerUrl": ""
                                    },
                                    "offerDetailBanner24V1": {
                                        "bannerJumpUrl": "",
                                        "bannerUrl": ""
                                    }
                                },
                                "crossBorderInfos": [
    
                                ],
                                "dataDesc": {
                                    "payOrder30DayStr": "1万+"
                                },
                                "deliveryLimit": 2,
                                "exposeInfo": {
                                    "exposeArgs": {
                                        "channelType": "dsc",
                                        "ipvId": "213e36a917525726480788673e6f70",
                                        "isPlusMember": "false",
                                        "isYanxuanOffer": "false",
                                        "offerId": "717614814987",
                                        "sceneType": "default",
                                        "verticalType": "default"
                                    }
                                },
                                "freightInfo": {
                                    "deliveryFee": "TEMPLATED",
                                    "deliveryLimit": 2,
                                    "freeDeliverFee": false,
                                    "freeEndAmount": -1,
                                    "location": "广东省深圳市",
                                    "locationCode": "14730233",
                                    "locationDivisionCode": "440306",
                                    "logisticsText": "承诺48小时发货",
                                    "officialLogistics": false,
                                    "skuWeight": [
    
                                    ],
                                    "subTemplateId": 12401568,
                                    "totalCost": 8,
                                    "unitWeight": 0.181
                                },
                                "images": {
                                    "activityBackColor": "",
                                    "activityUrl": "",
                                    "background": "",
                                    "backgroundIcon": "",
                                    "cautionImageUrl": "",
                                    "iconUrl": "",
                                    "officialActivityIcon": "",
                                    "shareWithGiftIcon": "https://gw.alicdn.com/tfs/TB1YYyRuhTpK1RjSZFMXXbG_VXa-36-36.png",
                                    "wirelessCorner": "",
                                    "wirelessLabel": ""
                                },
                                "officialDocInfos": [
    
                                ],
                                "pieceWeightScale": {
                                    "columnList": [
                                        {
                                            "label": "长(cm)",
                                            "name": "length",
                                            "precision": 2
                                        },
                                        {
                                            "label": "宽(cm)",
                                            "name": "width",
                                            "precision": 2
                                        },
                                        {
                                            "label": "高(cm)",
                                            "name": "height",
                                            "precision": 2
                                        },
                                        {
                                            "label": "体积(cm³)",
                                            "name": "volume",
                                            "precision": 3
                                        },
                                        {
                                            "label": "重量(g)",
                                            "name": "weight",
                                            "precision": 0
                                        }
                                    ],
                                    "pieceWeightScaleInfo": [
                                        {
                                            "height": 11,
                                            "length": 17.2,
                                            "volume": 1475.76,
                                            "weight": 181,
                                            "width": 7.8
                                        }
                                    ]
                                },
                                "protectionInfoList": [
                                    {
                                        "buyerDescription": "7天无理由退货",
                                        "description": "满足相应条件下,卖家需支持7天无理由,其中定制订单不支持“7天无理由退货”。",
                                        "logoUrl": "https://img.alicdn.com/imgextra/i2/O1CN01NyKX2m1pKgXu54Rve_!!6000000005342-2-tps-64-64.png",
                                        "logoUrl_16_16": "https://img.alicdn.com/imgextra/i1/O1CN01YIe8Lk1vxyDWgdkPQ_!!6000000006240-2-tps-16-16.png",
                                        "logoUrl_64_64": "https://img.alicdn.com/imgextra/i2/O1CN01NyKX2m1pKgXu54Rve_!!6000000005342-2-tps-64-64.png",
                                        "longDescription": "卖家承诺买家签收货物后7天内,在“商品完好”的情形下,向买家提供退货服务。",
                                        "serviceCode": "qtwlybt",
                                        "serviceName": "7天无理由退货",
                                        "type": "protect"
                                    },
                                    {
                                        "agreeDeliveryHours": 48,
                                        "buyerDescription": "晚发必赔",
                                        "description": "若商家未按订单约定的时间发货,您可以在订单详情申请赔付",
                                        "logoUrl": "https://cbu01.alicdn.com/cms/upload/2015/460/315/2513064_1964054271.png",
                                        "logoUrl_16_16": "https://cbu01.alicdn.com/cms/upload/2015/177/505/2505771_1964054271.png",
                                        "logoUrl_64_64": "https://cbu01.alicdn.com/cms/upload/2015/460/315/2513064_1964054271.png",
                                        "longDescription": "卖家在承诺买家保障服务的基础上,向买家提供“48小时发货延必赔”的服务。在买家通过支付宝担保交易完成付款或通过货到付款下单成功后,卖家承诺在买家支付成功起48小时内发货。如卖家未履行前述承诺,买家可在指定期限内发起维权,并申请赔付。",
                                        "serviceCode": "ssbxsfh",
                                        "serviceLink": "https://show.1688.com/vip/other/1bpmrma4.html?__pageId__=227845&cms_id=227845",
                                        "serviceName": "晚发必赔",
                                        "type": "protect"
                                    }
                                ],
                                "shareActivityInfo": [
    
                                ],
                                "texts": {
                                    "brandName": "",
                                    "brandRelationType": "",
                                    "cautionText": "",
                                    "tradeTemplateId": "[0]",
                                    "wirelessLabelText": ""
                                },
                                "urls": [
    
                                ]
                            },
                            "offerDetail": {
                                "detailUrl": "https://itemcdn.tmall.com/1688offer/icoss2883628019df4c4d8d714d6b80",
                                "featureAttributes": [
                                    {
                                        "fid": 2176,
                                        "isSpecial": false,
                                        "lectotype": false,
                                        "name": "品牌",
                                        "outputType": 0,
                                        "value": "GAMINJA",
                                        "values": [
                                            "GAMINJA"
                                        ]
                                    },
                                    {
                                        "fid": 1547,
                                        "isSpecial": false,
                                        "lectotype": false,
                                        "name": "接口",
                                        "outputType": 0,
                                        "value": "Type-C",
                                        "values": [
                                            "Type-C"
                                        ]
                                    },
                                    {
                                        "fid": 1398,
                                        "isSpecial": false,
                                        "lectotype": false,
                                        "name": "货号",
                                        "outputType": 0,
                                        "value": "P52",
                                        "values": [
                                            "P52"
                                        ]
                                    },
                                    {
                                        "fid": 3151,
                                        "isSpecial": false,
                                        "lectotype": false,
                                        "name": "型号",
                                        "outputType": 0,
                                        "value": "P52",
                                        "values": [
                                            "P52"
                                        ]
                                    },
                                    {
                                        "fid": 2642,
                                        "isSpecial": false,
                                        "lectotype": false,
                                        "name": "输出参数",
                                        "outputType": 0,
                                        "value": "DC 5V",
                                        "values": [
                                            "DC 5V"
                                        ]
                                    },
                                    {
                                        "fid": 453,
                                        "isSpecial": false,
                                        "lectotype": false,
                                        "name": "充电电流",
                                        "outputType": 0,
                                        "value": "(单个PS5充电)≤850mA",
                                        "values": [
                                            "(单个PS5充电)≤850mA"
                                        ]
                                    },
                                    {
                                        "fid": 2675,
                                        "isSpecial": false,
                                        "lectotype": false,
                                        "name": "输入参数",
                                        "outputType": 0,
                                        "value": "L171.08*W76.50*H100.06",
                                        "values": [
                                            "L171.08*W76.50*H100.06"
                                        ]
                                    },
                                    {
                                        "fid": 1836,
                                        "isSpecial": false,
                                        "lectotype": false,
                                        "name": "类型",
                                        "outputType": 0,
                                        "value": "ps5手柄充电底座",
                                        "values": [
                                            "ps5手柄充电底座"
                                        ]
                                    },
                                    {
                                        "fid": 182318189,
                                        "isSpecial": false,
                                        "lectotype": false,
                                        "name": "主要下游平台",
                                        "outputType": 0,
                                        "value": "ebay,亚马逊,wish,速卖通,独立站,LAZADA",
                                        "values": [
                                            "ebay",
                                            "亚马逊",
                                            "wish",
                                            "速卖通",
                                            "独立站",
                                            "LAZADA"
                                        ]
                                    },
                                    {
                                        "fid": 193290002,
                                        "isSpecial": false,
                                        "lectotype": false,
                                        "name": "主要销售地区",
                                        "outputType": 0,
                                        "value": "欧洲,南美,东南亚,北美,东北亚,中东",
                                        "values": [
                                            "欧洲",
                                            "南美",
                                            "东南亚",
                                            "北美",
                                            "东北亚",
                                            "中东"
                                        ]
                                    },
                                    {
                                        "fid": 193290003,
                                        "isSpecial": false,
                                        "lectotype": false,
                                        "name": "有可授权的自有品牌",
                                        "outputType": 0,
                                        "value": "是",
                                        "values": [
                                            "是"
                                        ]
                                    },
                                    {
                                        "fid": 182282223,
                                        "isSpecial": false,
                                        "lectotype": false,
                                        "name": "是否跨境出口专供货源",
                                        "outputType": 0,
                                        "value": "是",
                                        "values": [
                                            "是"
                                        ]
                                    }
                                ],
                                "imageList": [
                                    {
                                        "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01FU9zIZ2LiYytUTr8y_!!4087619726-0-cib.jpg",
                                        "imageURI": "img/ibank/O1CN01FU9zIZ2LiYytUTr8y_!!4087619726-0-cib.jpg"
                                    },
                                    {
                                        "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01rfCZu52LiYyzKu8eh_!!4087619726-0-cib.jpg",
                                        "imageURI": "img/ibank/O1CN01rfCZu52LiYyzKu8eh_!!4087619726-0-cib.jpg"
                                    },
                                    {
                                        "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN018AwYqC2LiYyp62196_!!4087619726-0-cib.jpg",
                                        "imageURI": "img/ibank/O1CN018AwYqC2LiYyp62196_!!4087619726-0-cib.jpg"
                                    },
                                    {
                                        "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01NNzqyo2LiYyplKf1P_!!4087619726-0-cib.jpg",
                                        "imageURI": "img/ibank/O1CN01NNzqyo2LiYyplKf1P_!!4087619726-0-cib.jpg"
                                    },
                                    {
                                        "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01CCq5id2LiYypks415_!!4087619726-0-cib.jpg",
                                        "imageURI": "img/ibank/O1CN01CCq5id2LiYypks415_!!4087619726-0-cib.jpg"
                                    }
                                ],
                                "leafCategoryId": 122410004,
                                "leafCategoryName": "游戏机充电器",
                                "mainImageList": [
                                    {
                                        "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01FU9zIZ2LiYytUTr8y_!!4087619726-0-cib.jpg",
                                        "imageURI": "img/ibank/O1CN01FU9zIZ2LiYytUTr8y_!!4087619726-0-cib.jpg"
                                    },
                                    {
                                        "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01rfCZu52LiYyzKu8eh_!!4087619726-0-cib.jpg",
                                        "imageURI": "img/ibank/O1CN01rfCZu52LiYyzKu8eh_!!4087619726-0-cib.jpg"
                                    },
                                    {
                                        "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN018AwYqC2LiYyp62196_!!4087619726-0-cib.jpg",
                                        "imageURI": "img/ibank/O1CN018AwYqC2LiYyp62196_!!4087619726-0-cib.jpg"
                                    },
                                    {
                                        "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01NNzqyo2LiYyplKf1P_!!4087619726-0-cib.jpg",
                                        "imageURI": "img/ibank/O1CN01NNzqyo2LiYyplKf1P_!!4087619726-0-cib.jpg"
                                    },
                                    {
                                        "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01CCq5id2LiYypks415_!!4087619726-0-cib.jpg",
                                        "imageURI": "img/ibank/O1CN01CCq5id2LiYypks415_!!4087619726-0-cib.jpg"
                                    }
                                ],
                                "offerId": 717614814987,
                                "offerMemberTags": [
                                    21248,
                                    22784,
                                    4306497,
                                    140032,
                                    218112,
                                    210944,
                                    241408,
                                    235776,
                                    198400,
                                    476930,
                                    480770,
                                    481026,
                                    462850,
                                    473346,
                                    514818,
                                    481538,
                                    480002,
                                    4845121,
                                    546049,
                                    540930,
                                    5095745,
                                    5208129,
                                    5240641,
                                    5189697,
                                    5189441,
                                    5219905,
                                    5239617,
                                    5139777,
                                    5117249,
                                    5159233,
                                    5157953,
                                    5259841,
                                    5277505,
                                    5247553,
                                    5261377,
                                    5248065,
                                    5254209,
                                    5254721,
                                    5277761,
                                    5281345,
                                    4055553,
                                    4136449,
                                    21312,
                                    4209409,
                                    170816,
                                    241984,
                                    214592,
                                    242496,
                                    209216,
                                    232000,
                                    217408,
                                    426306,
                                    449090,
                                    448834,
                                    442434,
                                    439106,
                                    477762,
                                    493378,
                                    504641,
                                    4796161,
                                    660291,
                                    528962,
                                    562242,
                                    675905,
                                    573507,
                                    5059073,
                                    892225,
                                    5023233,
                                    5032961,
                                    4995585,
                                    5001473,
                                    5188609,
                                    5232385,
                                    5215745,
                                    5189633,
                                    5216257,
                                    5192449,
                                    5152257,
                                    5268993,
                                    5261313,
                                    5260289,
                                    5294337,
                                    5277441,
                                    5248001,
                                    4094529,
                                    24704,
                                    4249025,
                                    98688,
                                    4247489,
                                    215680,
                                    216960,
                                    201088,
                                    202112,
                                    220544,
                                    224384,
                                    448642,
                                    425858,
                                    397698,
                                    408194,
                                    424578,
                                    458114,
                                    421250,
                                    4503489,
                                    473218,
                                    516738,
                                    564610,
                                    531842,
                                    554370,
                                    5091265,
                                    5059009,
                                    5189569,
                                    5183681,
                                    5237185,
                                    5195201,
                                    5179073,
                                    5262529,
                                    5259713,
                                    5291713,
                                    5256129,
                                    5254849,
                                    3705729,
                                    3842177,
                                    4058497,
                                    4189569,
                                    21184,
                                    153024,
                                    139712,
                                    170944,
                                    209600,
                                    210880,
                                    456898,
                                    419010,
                                    408770,
                                    401090,
                                    399554,
                                    4480641,
                                    493506,
                                    463810,
                                    270786,
                                    361667,
                                    385730,
                                    359618,
                                    547778,
                                    557762,
                                    562370,
                                    584387,
                                    575939,
                                    5056385,
                                    5110401,
                                    5189761,
                                    5224833,
                                    5234049,
                                    5233793,
                                    5131649,
                                    5170049,
                                    5117313,
                                    5292417,
                                    5264257,
                                    5282433,
                                    5254785,
                                    3056835,
                                    3691713,
                                    3992769
                                ],
                                "offerSign": {
                                    "chtSingleOffer": true,
                                    "consignMarketOffer": false,
                                    "detailForbidden": false,
                                    "distribution": true,
                                    "hasBusinessPrice": false,
                                    "hasJoinBusinessPrice": false,
                                    "hasRelationOffer": true,
                                    "offerModelSign": {
                                        "hasFreightTemplate": true,
                                        "hasOrder": true,
                                        "hasSearchPicture": true,
                                        "hasSendGoodsAddress": true,
                                        "hasWhitePicInOffer": true,
                                        "huiyuanhaokaidanyanxuan": true,
                                        "isAeJit": true,
                                        "isAegisTrade": true,
                                        "isAlipaySupported": true,
                                        "isBuyerProtection": true,
                                        "isCBDistribution": true,
                                        "isChtOffer": true,
                                        "isCrossBorderOffer": true,
                                        "isGovCouponOfferInOD": false,
                                        "isGpfOffer": true,
                                        "isHTQQOffer": true,
                                        "isOnDemandOffer": true,
                                        "isPublishFeed": true,
                                        "isSearchOffer": true,
                                        "isSsbxsfh": true,
                                        "isSupplyProcessOffer": true,
                                        "isSupplyStockOffer": true,
                                        "isSupportAxg": true,
                                        "isSupportMix": true,
                                        "isSupportStock": true,
                                        "isSupportVideo": true,
                                        "isVideoDemandOffer": true
                                    },
                                    "offerSupportOnlineTrade": true,
                                    "onlyNPorcessingOffer": false,
                                    "preSaleOffer": false,
                                    "preSell": false,
                                    "signs": {
                                        "hasBusinessPrice": false,
                                        "hasJoinBusinessPrice": false,
                                        "hasRelationOffer": true,
                                        "isChtSingleOffer": true,
                                        "isConsignMarketOffer": false,
                                        "isDetailForbidden": false,
                                        "isDistribution": true,
                                        "isOfferSupportOnlineTrade": true,
                                        "isOnlyNPorcessingOffer": false,
                                        "isPreSaleOffer": false,
                                        "isPreSell": false,
                                        "isSkuOffer": false,
                                        "isVirtualCategory": false,
                                        "preHeatOfferCanTrade": true
                                    },
                                    "skuOffer": false,
                                    "stockProcessingLightOffer": false,
                                    "stockReserveLightOffer": false,
                                    "virtualCategory": false
                                },
                                "offerSystemAttributes": {
                                    "approveDate": 1752558526000,
                                    "clientLastOperateDate": 1752558526000,
                                    "createDate": 1683546974000,
                                    "expireDate": 2067918526000,
                                    "modifyDate": 1752558653000,
                                    "postDate": 1752558526000,
                                    "sellStarts": -28800000,
                                    "sellStartsTime": 19700101,
                                    "selling": true
                                },
                                "offerType": "fashion",
                                "preHeatStartTime": "1970-01-01 00:00:00",
                                "skuFeatures": [
    
                                ],
                                "status": "PUBLISHED",
                                "subject": "厂家ps5游戏手柄充电底座双充快充座充带指示灯PS5充电器游戏周边",
                                "topCategoryId": 7,
                                "wirelessVideo": {
                                    "coverUrl": "https://img.alicdn.com/imgextra/i1/6000000001544/O1CN01zubSOt1NHCWGhw29U_!!6000000001544-0-tbvideo.jpg",
                                    "state": 6,
                                    "title": "P52",
                                    "videoId": 483643989891,
                                    "videoUrls": {
                                        "android": "https://cloud.video.taobao.com/play/u/4087619726/p/2/e/6/t/1/483643989891.mp4",
                                        "ios": "https://cloud.video.taobao.com/play/u/4087619726/p/2/e/6/t/1/483643989891.mp4"
                                    }
                                },
                                "xoneMaterial": [
    
                                ]
                            },
                            "promotionModel": {
                                "aggregateNewPromotionInfo": [
                                    {
                                        "features": {
                                            "calSkuCartFromMkc": "false"
                                        },
                                        "groupType": "DEFAULT_GROUP",
                                        "singlePromotionInfoModels": [
                                            {
                                                "detailPromotionModels": [
                                                    {
                                                        "apply": false,
                                                        "canApply": true,
                                                        "couopnTypeName": "入会有礼",
                                                        "couponId": 7310358391,
                                                        "couponType": 0,
                                                        "displayContent": "10",
                                                        "endtime": 1758383999000,
                                                        "finishApply": false,
                                                        "onlySupportMobile": false,
                                                        "promotionDisplayName": "入会有礼券",
                                                        "promotionInfoDetail": "入会有礼券",
                                                        "promotionInfoSummary": "入会有礼券",
                                                        "promotionInfoTime": "有效期:2025.03.24 00:00:00-2025.09.20 23:59:59",
                                                        "promotionInfoType": "RHYL",
                                                        "promotionLabel": "满100减10券",
                                                        "sellerId": 4087619726,
                                                        "showDiscoutFee": true,
                                                        "startFee": 10000,
                                                        "startTime": 1742745600000
                                                    }
                                                ],
                                                "promotionExtend": {
                                                    "uiType": "INTERACT"
                                                },
                                                "promotionName": "互动优惠券",
                                                "promotionType": "INTERACT"
                                            },
                                            {
                                                "detailPromotionModels": [
                                                    {
                                                        "bizType": 1,
                                                        "canApply": false,
                                                        "mixAmount": 15000,
                                                        "mixNumber": 100,
                                                        "promotionDisplayName": "混批",
                                                        "promotionInfoDetail": "本店部分商品满15000元或100件可混批采购",
                                                        "promotionInfoSummary": "本店部分商品满15000元或100件可混批采购",
                                                        "promotionInfoType": "MIX_WHOLESALE",
                                                        "promotionLabel": "100件混批",
                                                        "wholesaleDetail": ""
                                                    }
                                                ],
                                                "promotionExtend": {
                                                    "uiType": "CARD"
                                                },
                                                "promotionName": "混批",
                                                "promotionType": "MIX_WHOLESALE"
                                            }
                                        ]
                                    }
                                ],
                                "aggregatePromotionInfo": [
                                    {
                                        "detailPromotionModels": [
                                            {
                                                "apply": false,
                                                "canApply": true,
                                                "couopnTypeName": "入会有礼",
                                                "couponId": 7310358391,
                                                "couponType": 0,
                                                "displayContent": "10",
                                                "endtime": 1758383999000,
                                                "finishApply": false,
                                                "onlySupportMobile": false,
                                                "promotionDisplayName": "入会有礼券",
                                                "promotionInfoDetail": "入会有礼券",
                                                "promotionInfoSummary": "入会有礼券",
                                                "promotionInfoTime": "有效期:2025.03.24 00:00:00-2025.09.20 23:59:59",
                                                "promotionInfoType": "RHYL",
                                                "promotionLabel": "满100减10券",
                                                "sellerId": 4087619726,
                                                "showDiscoutFee": true,
                                                "startFee": 10000,
                                                "startTime": 1742745600000
                                            }
                                        ],
                                        "promotionExtend": {
                                            "uiType": "INTERACT"
                                        },
                                        "promotionName": "互动优惠券",
                                        "promotionType": "INTERACT"
                                    },
                                    {
                                        "detailPromotionModels": [
                                            {
                                                "bizType": 1,
                                                "canApply": false,
                                                "mixAmount": 15000,
                                                "mixNumber": 100,
                                                "promotionDisplayName": "混批",
                                                "promotionInfoDetail": "本店部分商品满15000元或100件可混批采购",
                                                "promotionInfoSummary": "本店部分商品满15000元或100件可混批采购",
                                                "promotionInfoType": "MIX_WHOLESALE",
                                                "promotionLabel": "100件混批",
                                                "wholesaleDetail": ""
                                            }
                                        ],
                                        "promotionExtend": {
                                            "uiType": "CARD"
                                        },
                                        "promotionName": "混批",
                                        "promotionType": "MIX_WHOLESALE"
                                    }
                                ],
                                "bigPromotionInfo": {
                                    "bigPromotionCountdown": -1,
                                    "bigPromotionStatus": "NONE",
                                    "burstBeginTime": -1,
                                    "burstEndTime": -1,
                                    "preheatTime": -1,
                                    "promotionResources": [
    
                                    ]
                                },
                                "endTime": 0,
                                "hotTime": 0,
                                "promotionExtendInfo": {
                                    "offerDetailUrgeBarModel": "null"
                                },
                                "promotionExtends": [
    
                                ],
                                "promotionSign": {
                                    "cross2buy": false,
                                    "freePostage": false,
                                    "freshmanActivity": false,
                                    "fxOfficialTimeLimitActivity": false,
                                    "fxSellerTimeLimitActivity": false,
                                    "hasBigPromotion": false,
                                    "hasMarketPromotion": false,
                                    "hasPurcharseMark": false,
                                    "hpAdditionalDiscount": false,
                                    "limitedTimePromotion": false,
                                    "promotionRemoteCal": false,
                                    "shareWithGift": false,
                                    "signs": {
                                        "hasBigPromotion": false,
                                        "hasPurcharseMark": false,
                                        "isDisPricePromotion": false,
                                        "isFixedPricePromotion": false,
                                        "isFreePostage": false,
                                        "isFreshmanActivity": false,
                                        "isFxOfficialTimeLimitActivity": false,
                                        "isFxSellerTimeLimitActivity": false,
                                        "isHpAdditionalDiscount": false,
                                        "isLimitedTimePromotion": false,
                                        "isShareWithGift": false,
                                        "promotionRemoteCal": false,
                                        "skuFixPromotion": false
                                    },
                                    "skuFixPromotion": false
                                },
                                "startTime": 0
                            },
                            "sceneBizType": "DEFAULT",
                            "sceneType": "default",
                            "sellerModel": {
                                "companyName": "亚利韦(深圳)科技实业有限公司",
                                "loginId": "ylwtech",
                                "memberId": "b2b-4087619726fb509",
                                "sellerFeature": {
                                    "brandShopTypeName": "",
                                    "features": {
                                        "brandShopTypeName": ""
                                    }
                                },
                                "sellerIdentity": "cht",
                                "sellerSign": {
                                    "chtMember": false,
                                    "industrySeller": false,
                                    "signs": {
                                        "isChtMember": false,
                                        "isEaseBuyDealer": true,
                                        "isFactoryDealer": true,
                                        "isIndustrySeller": false,
                                        "isSlsj": false,
                                        "isTp": true
                                    },
                                    "slsj": false,
                                    "tp": true
                                },
                                "sellerWinportUrlMap": {
                                    "contactinfoUrl": "https://ylwtech.1688.com/page/contactinfo.html",
                                    "creditdetailUrl": "https://ylwtech.1688.com/page/creditdetail.html",
                                    "defaultUrl": "https://ylwtech.1688.com",
                                    "indexUrl": "https://ylwtech.1688.com/page/index.html",
                                    "offerlistUrl": "https://ylwtech.1688.com/page/index.html",
                                    "shopdynamicUrl": "https://ylwtech.1688.com/page/shopdynamic.html"
                                },
                                "userId": 4087619726,
                                "winportUrl": "https://ylwtech.1688.com"
                            },
                            "tradeModel": {
                                "beginAmount": 1,
                                "canBookedAmount": 3847,
                                "disPriceRanges": [
                                    {
                                        "beginAmount": 1,
                                        "discountPrice": "54.00",
                                        "endAmount": 999,
                                        "price": "54.00"
                                    },
                                    {
                                        "beginAmount": 1000,
                                        "discountPrice": "52.00",
                                        "endAmount": 19999,
                                        "price": "52.00"
                                    },
                                    {
                                        "beginAmount": 20000,
                                        "discountPrice": "42.00",
                                        "endAmount": 0,
                                        "price": "42.00"
                                    }
                                ],
                                "hasPromotion": false,
                                "maxPrice": "54.00",
                                "minPrice": "42.00",
                                "mixModel": {
                                    "mixAmount": 15000,
                                    "mixNumber": 100,
                                    "mixOneForSale": false,
                                    "supportMix": true
                                },
                                "offerId": 717614814987,
                                "offerPriceModel": {
                                    "currentPrices": [
                                        {
                                            "beginAmount": 1,
                                            "price": "54.00"
                                        },
                                        {
                                            "beginAmount": 1000,
                                            "price": "52.00"
                                        },
                                        {
                                            "beginAmount": 20000,
                                            "price": "42.00"
                                        }
                                    ],
                                    "priceDisplayType": "rangePrice"
                                },
                                "priceDisplay": "42.00-54.00",
                                "saleCount": 450,
                                "skuTradeSupported": false,
                                "supportWirelessOnly": false,
                                "tradeWithoutPromotion": {
                                    "canBookedAmountOriginal": 3847,
                                    "offerBeginAmount": 1,
                                    "offerIsSkuTradeSupported": false,
                                    "offerMaxPrice": "54.00",
                                    "offerMinPrice": "42.00",
                                    "offerPriceDisplay": "42.00-54.00",
                                    "offerPriceRanges": [
                                        {
                                            "$ref": "$.result.global.globalData.model.tradeModel.disPriceRanges[0]"
                                        },
                                        {
                                            "$ref": "$.result.global.globalData.model.tradeModel.disPriceRanges[1]"
                                        },
                                        {
                                            "$ref": "$.result.global.globalData.model.tradeModel.disPriceRanges[2]"
                                        }
                                    ]
                                },
                                "unit": "个"
                            },
                            "verticalBizType": "DEFAULT",
                            "verticalType": "default"
                        },
                        "parametersMap": {
                            "offerId": 717614814987,
                            "offerLoginId": "ylwtech"
                        },
                        "traceId": "213e36a917525726480788673e6f70"
                    },
                    "name": "default",
                    "renderData": [
    
                    ],
                    "systemParam": [
    
                    ],
                    "version": "1.0.0"
                },
                "hierarchy": {
                    "root": "Root",
                    "structure": {
                        "Root": [
                            "screen",
                            "bottom"
                        ],
                        "bottom": [
                            "shopProductRecommend",
                            "widgets"
                        ],
                        "cart": [
                            "productTitle",
                            "sceneKey",
                            "promotionBanner",
                            "mainPrice",
                            "discountCoupon",
                            "userRights",
                            "mainServices",
                            "shippingServices",
                            "skuSelection",
                            "customMade",
                            "submitOrder"
                        ],
                        "navTabs": [
                            "chromePlugin",
                            "productEvaluation",
                            "productAttributes",
                            "productWarning",
                            "sizeChart",
                            "productPackInfo",
                            "description"
                        ],
                        "product": [
                            "shopNavigation",
                            "gallery",
                            "navTabs"
                        ],
                        "screen": [
                            "product",
                            "cart"
                        ]
                    }
                },
                "reload": false
            },
            "version": "0.0.36",
            "_ddf": "alex",
            "app_ver": "1.0.0-6.0",
            "app_ver_check": "ok",
            "format_check": "ok"
        },
        "error": "",
        "secache": "af63fad9516dfec8f66cca760613c328",
        "secache_time": 1752572649,
        "secache_date": "2025-07-15 17:44:09",
        "reason": "",
        "error_code": "0000",
        "cache": 0,
        "api_info": "today:3 max:5000 all[13=3+9+1];expires:2025-12-31",
        "execution_time": "3.619",
        "server_time": "Beijing/2025-07-15 17:44:09",
        "client_ip": "106.6.43.91",
        "call_args": {
            "num_iid": "717614814987"
        },
        "api_type": "1688",
        "server_memory": "3.95MB",
        "request_id": "1.687622e673bc2",
        "last_id": "delay"
    }
    异常示例
    {
      "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/2020-06-10 23:44:00",
      "call_args": [],
      "api_type": "taobao",
      "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:3142401606 3142401606 万邦科技企业微信