万邦阿里巴巴中国站获取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": {
            "activityModel": {
                "activityEndTimestamps": 0,
                "activityStartTimestamps": 0
            },
            "apiStack": [
                {
                    "name": "esi",
                    "value": "{\"1081181309884\": {\"componentType\": \"@ali/tdmod-pc-od-dsc-order\", \"data\": {\"businessType\": \"default\", \"channelType\": \"dsc\", \"marketScene\": \"default\", \"isPicPrivate\": false, \"isPricePrivate\": false, \"operateItems\": [{\"operateType\": \"ORDER\", \"disType\": \"TEXT\", \"imgUrl\": \"\", \"data\": {}, \"name\": \"立即订购\"}, {\"operateType\": \"ADD_CART\", \"disType\": \"TEXT\", \"imgUrl\": \"\", \"data\": {}, \"name\": \"加采购车\"}, {\"operateType\": \"CROSS_BORDER\", \"disType\": \"TEXT\", \"imgUrl\": \"\", \"data\": {}, \"name\": \"跨境铺货\"}], \"isSkuOffer\": true, \"isAddCartPromotion\": false, \"remindSceneKey\": \"\", \"remindText\": \"\", \"pstatus\": \"remind\", \"freightInfo\": {\"officialLogistics\": false, \"subTemplateId\": 17357738, \"unitWeight\": 0, \"skuWeight\": {}, \"queryFlag\": true}}}, \"1081181309201\": {\"componentType\": \"@ali/tdmod-od-pc-attribute-new\", \"data\": [{\"fid\": 1398, \"name\": \"货号\", \"value\": \"G菲凡*2064\", \"values\": [\"G菲凡*2064\"], \"isSpecial\": false, \"outputType\": 0, \"lectotype\": false}, {\"fid\": 2900, \"name\": \"图案\", \"value\": \"纯色\", \"values\": [\"纯色\"], \"isSpecial\": false, \"outputType\": 0, \"lectotype\": false}, {\"fid\": 8614, \"name\": \"流行元素\", \"value\": \"撞色\", \"values\": [\"撞色\"], \"isSpecial\": false, \"outputType\": 0, \"lectotype\": false}, {\"fid\": 1085, \"name\": \"工艺\", \"value\": \"免烫处理\", \"values\": [\"免烫处理\"], \"isSpecial\": false, \"outputType\": 0, \"lectotype\": false}, {\"fid\": 20666, \"name\": \"上市年份/季节\", \"value\": \"2023年夏季\", \"values\": [\"2023年夏季\"], \"isSpecial\": false, \"outputType\": 0, \"lectotype\": false}, {\"fid\": 100031521, \"name\": \"面料名称\", \"value\": \"涤纶\", \"values\": [\"涤纶\"], \"isSpecial\": false, \"outputType\": 0, \"lectotype\": false}, {\"fid\": 117130178, \"name\": \"主面料成分\", \"value\": \"涤纶(聚酯纤维)\", \"values\": [\"涤纶(聚酯纤维)\"], \"isSpecial\": false, \"outputType\": 0, \"lectotype\": false}, {\"fid\": 151844178, \"name\": \"主面料成分2\", \"value\": \"涤纶(聚酯纤维)\", \"values\": [\"涤纶(聚酯纤维)\"], \"isSpecial\": false, \"outputType\": 0, \"lectotype\": false}, {\"fid\": 2176, \"name\": \"品牌\", \"value\": \"珍衣优品\", \"values\": [\"珍衣优品\"], \"isSpecial\": false, \"outputType\": 0, \"lectotype\": false}, {\"fid\": 3216, \"name\": \"颜色\", \"value\": \"上衣*2064,短裙*2064\", \"values\": [\"上衣*2064\", \"短裙*2064\"], \"isSpecial\": false, \"outputType\": 0, \"lectotype\": false}, {\"fid\": 450, \"name\": \"尺码\", \"value\": \"S,M,L\", \"values\": [\"S\", \"M\", \"L\"], \"isSpecial\": false, \"outputType\": 0, \"lectotype\": false}, {\"fid\": 2489638, \"name\": \"风格类型\", \"value\": \"清新甜美\", \"values\": [\"清新甜美\"], \"isSpecial\": false, \"outputType\": 0, \"lectotype\": false}, {\"fid\": 149092418, \"name\": \"主面料成分含量\", \"value\": \"30%(含)-50%(不含)\", \"values\": [\"30%(含)-50%(不含)\"], \"isSpecial\": false, \"lectotype\": false}, {\"fid\": 401, \"name\": \"风格\", \"value\": \"公主风\", \"values\": [\"公主风\"], \"isSpecial\": false, \"lectotype\": false}, {\"fid\": 22690, \"name\": \"套装款式\", \"value\": \"上衣套装\", \"values\": [\"上衣套装\"], \"isSpecial\": false, \"lectotype\": false}, {\"fid\": 2917380, \"name\": \"袖型\", \"value\": \"泡泡袖\", \"values\": [\"泡泡袖\"], \"isSpecial\": false, \"lectotype\": false}, {\"fid\": 7001, \"name\": \"袖长\", \"value\": \"三分袖\", \"values\": [\"三分袖\"], \"isSpecial\": false, \"lectotype\": false}, {\"fid\": 221796513, \"name\": \"是否跨境货源\", \"value\": \"否\", \"values\": [\"否\"], \"isSpecial\": false, \"lectotype\": false}, {\"fid\": 153610427, \"name\": \"主面料成分2含量\", \"value\": \"30%(含)-50%(不含)\", \"values\": [\"30%(含)-50%(不含)\"], \"isSpecial\": false, \"lectotype\": false}]}, \"1081181309894\": {\"componentType\": \"@ali/tdmod-od-pc-offer-description\", \"data\": {\"detailUrl\": \"https://itemcdn.tmall.com/1688offer/icoss31317128359dfc2f04dfff7e36\", \"bigPromotionBanner\": {\"hasBigPromotion\": false, \"bannerUrl\": \"\", \"bannerJumpUrl\": \"https://shop6635296196660.1688.com/page/activity.htm?offerId=710046693089#promotion\"}}}, \"1081181309101\": {\"componentType\": \"@ali/tdmod-od-pc-offer-logistics\", \"trackInfo\": {}, \"data\": {\"location\": \"广东省揭阳市\", \"totalCost\": 3.9, \"templateId\": 17357738, \"deliveryFee\": \"TEMPLATED\", \"freeDeliverFee\": false, \"isShowLogistics\": true, \"text\": \"\", \"startAmount\": 2, \"unitWeight\": 0, \"skuWeight\": {}, \"minWeight\": 0, \"unit\": \"件\", \"price\": \"31.98\", \"volume\": 0, \"freightInfo\": {\"unitWeight\": 0, \"freeEndAmount\": -1, \"deliveryLimit\": 5, \"officialLogistics\": false, \"subTemplateId\": 17357738, \"logisticsText\": \"承诺5天发货\", \"deliveryFee\": {\"name\": \"TEMPLATED\"}, \"freeDeliverFee\": false, \"location\": \"广东省揭阳市\", \"locationCode\": \"34786219\", \"locationDivisionCode\": \"445281\", \"totalCost\": 3.9, \"skuWeight\": {}}, \"officialLogistics\": false, \"isSkuTradeSupported\": true, \"sendAddressCode\": \"34786219\", \"targetLocation\": \"选择配送地址为您计算运费及送达时间\", \"protectionInfos\": [{\"longDescription\": \"卖家承诺买家签收货物后7天内,在“商品完好”的情形下,向买家提供退货服务。\", \"serviceCode\": \"qtwlybt\", \"description\": \"满足相应条件下,卖家需支持7天无理由,其中定制订单不支持“7天无理由退货”。\", \"serviceName\": \"7天无理由退货\", \"type\": \"protect\", \"logoUrl\": \"https://img.alicdn.com/imgextra/i2/O1CN01NyKX2m1pKgXu54Rve_!!6000000005342-2-tps-64-64.png\", \"logoUrl_64_64\": \"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\", \"buyerDescription\": \"7天无理由退货\"}, {\"longDescription\": \"卖家在承诺买家保障服务的基础上,向买家提供“5天发货延必赔”的服务。在买家通过支付宝担保交易完成付款或通过货到付款下单成功后,卖家承诺在买家支付成功起5天内发货。如卖家未履行前述承诺,买家可在指定期限内发起维权,并申请赔付。\", \"serviceLink\": \"https://show.1688.com/vip/other/1bpmrma4.html?__pageId__=227845&cms_id=227845\", \"serviceCode\": \"wtfh\", \"description\": \"若商家未按订单约定的时间发货,您可以在订单详情申请赔付\", \"serviceName\": \"晚发必赔\", \"type\": \"protect\", \"logoUrl\": \"https://img.alicdn.com/imgextra/i4/O1CN01VY8aZP22biChDedq3_!!6000000007139-2-tps-64-64.png\", \"logoUrl_64_64\": \"https://img.alicdn.com/imgextra/i4/O1CN01VY8aZP22biChDedq3_!!6000000007139-2-tps-64-64.png\", \"logoUrl_16_16\": \"https://img.alicdn.com/imgextra/i2/O1CN0172OP7Y2775nyfP7aW_!!6000000007749-2-tps-16-16.png\", \"agreeDeliveryHours\": 120}, {\"longDescription\": \"“在符合一定的退款申请原因、时效和退款金额范围内,可享受0秒退款服务。\", \"serviceLink\": \"https://show.1688.com/vip/other/2csfppfe.html?spm=a2637k.pagelist.0.0.7c69370aqRcuVa&__pageId__=227465&cms_id=227465\", \"serviceCode\": \"jstk_p\", \"description\": \"在符合一定的退款申请原因、时效和退款金额范围内,可享受0秒退款服务。\", \"serviceName\": \"极速退款\", \"type\": \"protect\", \"logoUrl\": \"https://img.alicdn.com/imgextra/i3/O1CN01dcTxhB1f7j6hzsS7s_!!6000000003960-2-tps-64-64.png\", \"logoUrl_64_64\": \"https://img.alicdn.com/imgextra/i3/O1CN01dcTxhB1f7j6hzsS7s_!!6000000003960-2-tps-64-64.png\", \"logoUrl_16_16\": \"https://img.alicdn.com/imgextra/i4/O1CN01tnZSFq1Gfk8BH5kkH_!!6000000000650-2-tps-16-16.png\", \"buyerDescription\": \"极速退款\"}], \"deliveryLimitTimeModel\": {\"limitTimeDay\": 5, \"expectSendHour\": 7, \"offerId\": 710046693089, \"orderCntLevelText\": \"\", \"limitTimeDesc\": \"承诺5天发货\", \"expectTimeDesc\": \"\", \"attrs\": {\"offerUnit\": \"件\", \"ptsOfferStepModels\": [{\"selectedStartQuantity\": 1, \"selectedPtsOfferTagModel\": {\"serviceCode\": \"wtfh\", \"serviceName\": \"5天发货\", \"required\": false, \"disabled\": false, \"agreeDeliveryHours\": 120, \"selected\": false}, \"selected\": false}]}}, \"buyerProtectionScene\": \"dsc\", \"buyerProtectionModel\": [{\"serviceCode\": \"qtwlybt\", \"serviceShortCode\": \"qtwlybt\", \"type\": \"protect\", \"enabled\": true, \"forceUseSubPtsCodes\": false, \"serviceVersion\": 2, \"bigLogo\": \"https://img.alicdn.com/imgextra/i2/O1CN01dNPHxv1UZhbWE3yPO_!!6000000002532-2-tps-32-32.png\", \"packageBuyerDesc\": \"7天无理由退货\", \"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\", \"agreementPage\": \"https://rule.1688.com/?+tracelog=aliguize_wzdh01&type=detail&ruleId=20004568&cId=3044#/rule/detail?ruleId=20004568&cId=3044\", \"hugeLogo\": \"https://img.alicdn.com/imgextra/i1/O1CN01qUUUwV1RIo98arRvQ_!!6000000002089-2-tps-58-58.png\", \"littleLogo\": \"https://img.alicdn.com/imgextra/i1/O1CN01YIe8Lk1vxyDWgdkPQ_!!6000000006240-2-tps-16-16.png\", \"shortSellerDesc\": \"卖家承诺买家签收货物后7天内,在“商品完好”的情形下,向买家提供退货服务。\", \"shortBuyerDesc\": \"满足相应条件下,卖家需支持7天无理由,其中定制订单不支持“7天无理由退货”。\", \"largeLogo\": \"https://img.alicdn.com/imgextra/i2/O1CN01iYPe5E1YGhdWMDnh8_!!6000000003032-2-tps-48-48.png\", \"serviceName\": \"7天无理由退货\", \"extendInfo\": {\"popDescription\": \"卖家承诺买家签收货物后7天内,在“商品完好”的情形下,向买家提供退货服务。\"}, \"userId\": 2215638340252, \"moreHugeLogo\": \"https://img.alicdn.com/imgextra/i2/O1CN01NyKX2m1pKgXu54Rve_!!6000000005342-2-tps-64-64.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)收纳清洁用具\", \"textDesc\": \"卖家承诺买家签收货物后7天内,在“商品完好”的情形下,向买家提供退货服务。\", \"logicGroupId\": \"4\"}, {\"serviceCode\": \"wtfh\", \"serviceShortCode\": \"wtfh\", \"productPage\": \"https://show.1688.com/vip/other/1bpmrma4.html?__pageId__=227845&cms_id=227845\", \"type\": \"protect\", \"enabled\": true, \"forceUseSubPtsCodes\": false, \"serviceVersion\": 1, \"bigLogo\": \"https://img.alicdn.com/imgextra/i3/O1CN01N8u67r1aIeTqltAUI_!!6000000003307-2-tps-32-32.png\", \"logo\": \"https://img.alicdn.com/imgextra/i4/O1CN01VY8aZP22biChDedq3_!!6000000007139-2-tps-64-64.png\", \"middleLogo\": \"https://img.alicdn.com/imgextra/i3/O1CN01bTdfLk1j9nMNcPA6F_!!6000000004506-2-tps-24-24.png\", \"agreementPage\": \"https://terms.alicdn.com/legal-agreement/terms/suit_bu1_b2b/suit_bu1_b2b201802011726_70295.html\", \"agreeDeliveryHours\": 120, \"hugeLogo\": \"https://img.alicdn.com/imgextra/i4/O1CN017Ot6XN21ymXQgeKyo_!!6000000007054-2-tps-58-58.png\", \"littleLogo\": \"https://img.alicdn.com/imgextra/i2/O1CN0172OP7Y2775nyfP7aW_!!6000000007749-2-tps-16-16.png\", \"shortSellerDesc\": \"开通此服务的卖家,将宝贝详情页面的买家保障区域有独特标识展示,让买家清晰明白所提供的服务的含义,消除买家下单顾虑。\", \"shortBuyerDesc\": \"若商家未按订单约定的时间发货,您可以在订单详情申请赔付\", \"largeLogo\": \"https://img.alicdn.com/imgextra/i2/O1CN010mPcUz1dsmZL9Hbwp_!!6000000003792-2-tps-48-48.png\", \"serviceName\": \"晚发必赔\", \"extendInfo\": {\"popDescription\": \"卖家在承诺买家保障服务的基础上,向买家提供“5天发货延必赔”的服务。在买家通过支付宝担保交易完成付款或通过货到付款下单成功后,卖家承诺在买家支付成功起5天内发货。如卖家未履行前述承诺,买家可在指定期限内发起维权,并申请赔付。\", \"delivery_days\": \"5\"}, \"userId\": 2215638340252, \"moreHugeLogo\": \"https://img.alicdn.com/imgextra/i4/O1CN01VY8aZP22biChDedq3_!!6000000007139-2-tps-64-64.png\", \"currentStep\": 1, \"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)收纳清洁用具 53)男装 54)运动户外 55)内衣 56)女装 57)童装 58)办公、文化 59)数码、电脑 60)汽摩及配件 61)加工 62)橡塑 63)冶金矿产 64)钢铁 65)能源 66)电工电气 67)机械及行业设备 68)机床 69)安全、防护 70)仪器仪表 71)交通运输 72)五金、工具 73)印刷 74)通信产品 75)传媒、广电 76)包装 77)二手设备转让 78)环保 79)化工 80)电子元器件 81)灯饰照明 82)纺织、皮革 83)玩具 84)宠物及园艺 85)居家日用品 86)眼镜及配件 87)家用电器 88)汽车用品 89)家装建材 90)汽摩及配件 91)箱包皮具 92)内衣 93)农业 94)鞋 95)餐饮生鲜 96)服饰配件、饰品 97)个护/家清 98)家纺家饰 99)美容护肤/彩妆 100)食品酒水 101)成人用品 102)建材 103)日用餐厨饮具 104)收纳清洁用具 105)男装 106)运动户外 107)内衣 108)女装 109)童装 110)办公、文化 111)数码、电脑 112)汽摩及配件 113)加工 114)橡塑 115)冶金矿产 116)钢铁 117)能源 118)电工电气 119)机械及行业设备 120)机床 121)安全、防护 122)仪器仪表 123)交通运输 124)五金、工具 125)印刷 126)通信产品 127)传媒、广电 128)包装 129)二手设备转让 130)环保 131)化工 132)电子元器件 133)灯饰照明 134)纺织、皮革 135)玩具 136)宠物及园艺 137)居家日用品 138)眼镜及配件 139)家用电器 140)汽车用品 141)家装建材 142)汽摩及配件 143)箱包皮具 144)内衣 145)农业 146)鞋 147)餐饮生鲜 148)服饰配件、饰品 149)个护/家清 150)家纺家饰 151)美容护肤/彩妆 152)食品酒水 153)成人用品 154)建材 155)日用餐厨饮具 156)收纳清洁用具 157)男装 158)运动户外 159)内衣 160)女装 161)童装 162)办公、文化 163)数码、电脑 164)汽摩及配件 165)加工 166)橡塑 167)冶金矿产 168)钢铁 169)能源 170)电工电气 171)机械及行业设备 172)机床 173)安全、防护 174)仪器仪表 175)交通运输 176)五金、工具 177)印刷 178)通信产品 179)传媒、广电 180)包装 181)二手设备转让 182)环保 183)化工 184)电子元器件 185)灯饰照明 186)纺织、皮革 187)玩具 188)宠物及园艺 189)居家日用品 190)眼镜及配件 191)家用电器 192)汽车用品 193)家装建材 194)汽摩及配件 195)箱包皮具 196)内衣 197)农业 198)鞋 199)餐饮生鲜 200)服饰配件、饰品 201)个护/家清 202)家纺家饰 203)美容护肤/彩妆 204)食品酒水 205)成人用品 206)建材 207)日用餐厨饮具 208)收纳清洁用具 209)医药、保养 210)新能源\", \"textDesc\": \"卖家在承诺买家保障服务的基础上,向买家提供“5天发货延必赔”的服务。在买家通过支付宝担保交易完成付款或通过货到付款下单成功后,卖家承诺在买家支付成功起5天内发货。如卖家未履行前述承诺,买家可在指定期限内发起维权,并申请赔付。\", \"ptsOfferStepModels\": [{\"selectedStartQuantity\": 1, \"selectedPtsOfferTagModel\": {\"serviceCode\": \"wtfh\", \"serviceName\": \"5天发货\", \"required\": false, \"disabled\": false, \"agreeDeliveryHours\": 120, \"selected\": false}, \"selected\": false}], \"logicGroupId\": \"1\"}, {\"serviceCode\": \"jstk_p\", \"serviceShortCode\": \"jstk_p\", \"productPage\": \"https://show.1688.com/vip/other/2csfppfe.html?spm=a2637k.pagelist.0.0.7c69370aqRcuVa&__pageId__=227465&cms_id=227465\", \"type\": \"protect\", \"enabled\": true, \"forceUseSubPtsCodes\": false, \"serviceVersion\": 1, \"bigLogo\": \"https://img.alicdn.com/imgextra/i1/O1CN01VvqbTG1K5nVfaHhdS_!!6000000001113-2-tps-32-32.png\", \"packageBuyerDesc\": \"极速退款\", \"logo\": \"https://img.alicdn.com/imgextra/i3/O1CN01dcTxhB1f7j6hzsS7s_!!6000000003960-2-tps-64-64.png\", \"middleLogo\": \"https://img.alicdn.com/imgextra/i2/O1CN01y8loDJ21Ie6CBum7n_!!6000000006962-2-tps-24-24.png\", \"hugeLogo\": \"https://img.alicdn.com/imgextra/i1/O1CN01MKJkrw1ksy2RwBtJO_!!6000000004740-2-tps-58-58.png\", \"littleLogo\": \"https://img.alicdn.com/imgextra/i4/O1CN01tnZSFq1Gfk8BH5kkH_!!6000000000650-2-tps-16-16.png\", \"shortSellerDesc\": \"在符合一定的退款申请原因、时效和退款金额范围内,可享受0秒退款服务。\", \"shortBuyerDesc\": \"在符合一定的退款申请原因、时效和退款金额范围内,可享受0秒退款服务。\", \"largeLogo\": \"https://img.alicdn.com/imgextra/i3/O1CN01ASkwpL1cIloQXSmWF_!!6000000003578-2-tps-48-48.png\", \"serviceName\": \"极速退款\", \"extendInfo\": {\"popDescription\": \"“在符合一定的退款申请原因、时效和退款金额范围内,可享受0秒退款服务。\"}, \"userId\": 2215638340252, \"moreHugeLogo\": \"https://img.alicdn.com/imgextra/i3/O1CN01dcTxhB1f7j6hzsS7s_!!6000000003960-2-tps-64-64.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)收纳清洁用具\", \"textDesc\": \"“在符合一定的退款申请原因、时效和退款金额范围内,可享受0秒退款服务。\", \"logicGroupId\": \"7\"}], \"hideDeliveryTime\": false, \"postFeeValue\": 3.9, \"postFree\": false, \"freeEndAmount\": -1, \"deliveryLimitText\": \"承诺5天发货\"}}, \"1081181309812\": {\"componentType\": \"@ali/tdmod-od-pc-offer-tab\", \"trackInfo\": {}, \"data\": {\"sceneList\": [{\"sceneKey\": \"order\", \"sceneName\": \"批发\", \"url\": \"https://detail.1688.com/offer/710046693089.html?sk=order\"}, {\"sceneKey\": \"consign\", \"sceneName\": \"代发\", \"url\": \"https://detail.1688.com/offer/710046693089.html?sk=consign\"}], \"selectedScene\": {\"sceneKey\": \"order\", \"sceneName\": \"批发\"}, \"coord\": {\"business\": \"default\", \"scene\": \"default\", \"useCase\": \"1688_pc_detail\", \"atmosphere\": \"normal\", \"role\": \"defaultBuyer\", \"appPlatform\": \"\", \"appVersion\": \"\", \"custom\": [], \"channel\": \"dsc\"}, \"handleProcessingTab\": false, \"offerId\": 710046693089, \"memberId\": \"b2b-2215638340252280b9\"}}, \"108118130208085\": {\"componentType\": \"@ali/tdmod-od-pc-offer-legal-right\", \"trackInfo\": {}, \"data\": {\"isShow\": false, \"operateType\": \"QUERY_BENEFIT\", \"testParam\": \"test\"}}, \"1081181309095\": {\"componentType\": \"@ali/tdmod-od-pc-offer-title\", \"data\": {\"tagList\": [{\"img\": \"https://gw.alicdn.com/imgextra/i2/O1CN01rlJIlM1l9SNC4fBpZ_!!6000000004776-2-tps-182-56.png\", \"text\": \"镇店之宝\", \"type\": \"BEST_OFFER\", \"detail\": [{\"icon\": \"https://gw.alicdn.com/imgextra/i1/O1CN01hnefLF1Vk4AiuDWHQ_!!6000000002690-2-tps-63-57.png\", \"text\": \"近期热销,店铺主推\"}, {\"icon\": \"https://gw.alicdn.com/imgextra/i3/O1CN01H5WVsg28BVIahbDwn_!!6000000007894-2-tps-54-57.png\", \"text\": \"快速响应,服务保障\"}]}], \"title\": \"小香风套装女2024年夏季新款高级感小个子网红炸街洋气减龄两件套\", \"saleNum\": \"3300+\", \"saleCountDate\": \"一年内\", \"unit\": \"件\", \"isBestOffer\": true, \"officialActivityIcon\": \"\", \"labels\": [\"一件代发\"], \"isShowEdit\": false, \"editUrl\": \"https://offer.1688.com/offer/post/fillProductInfo.htm?operator=edit&offerId=710046693089&pageSrc=fusion&frontVersion=2017\"}}, \"10811813029416\": {\"componentType\": \"@ali/tdmod-od-pc-activity-stock\"}, \"1081181309881\": {\"componentType\": \"@ali/tdmod-pc-od-main-pic\", \"data\": {\"offerImgList\": [\"https://cbu01.alicdn.com/img/ibank/O1CN01VY8OxK1DjSdT4ra33_!!2215638340252-0-cib.jpg\", \"https://cbu01.alicdn.com/img/ibank/O1CN01GWsUGp1DjSdMyuMmL_!!2215638340252-0-cib.jpg\", \"https://cbu01.alicdn.com/img/ibank/O1CN01UJXiQZ1DjSdT4sNvG_!!2215638340252-0-cib.jpg\", \"https://cbu01.alicdn.com/img/ibank/O1CN01IS7FQZ1DjSdMyvVR2_!!2215638340252-0-cib.jpg\", \"https://cbu01.alicdn.com/img/ibank/O1CN01Fx2Lgm1Bs2pFyPU2Q_!!0-0-cib.jpg\", \"https://cbu01.alicdn.com/img/ibank/O1CN01I5iG1t1DjSdJ1ryFk_!!2215638340252-0-cib.jpg\", \"https://cbu01.alicdn.com/img/ibank/O1CN01o1FDg91DjSdR710UE_!!2215638340252-0-cib.jpg\"], \"video\": {\"videoId\": 0, \"state\": 0}, \"canShowAllImage\": true, \"isBestOffer\": true, \"isBestOfferUrl\": \"https://img.alicdn.com/tfs/TB1ZwSvqG6qK1RjSZFmXXX0PFXa-100-100.png\", \"offerId\": 710046693089, \"subject\": \"小香风套装女2024年夏季新款高级感小个子网红炸街洋气减龄两件套\"}}, \"1081181309100\": {\"componentType\": \"@ali/tdmod-od-pc-offer-service\", \"trackInfo\": {}, \"data\": {\"guaranteeList\": [{\"serviceName\": \"7天无理由退货\", \"description\": \"满足相应条件下,卖家需支持7天无理由,其中定制订单不支持“7天无理由退货”。\", \"textColor\": \"#222222\"}, {\"serviceName\": \"晚发必赔\", \"description\": \"若商家未按订单约定的时间发货,您可以在订单详情申请赔付\", \"serviceLink\": \"https://show.1688.com/vip/other/1bpmrma4.html?__pageId__=227845&cms_id=227845\", \"textColor\": \"#222222\"}, {\"serviceName\": \"极速退款\", \"description\": \"在符合一定的退款申请原因、时效和退款金额范围内,可享受0秒退款服务。\", \"serviceLink\": \"https://show.1688.com/vip/other/2csfppfe.html?spm=a2637k.pagelist.0.0.7c69370aqRcuVa&__pageId__=227465&cms_id=227465\", \"textColor\": \"#222222\"}]}}, \"1081181309582\": {\"componentType\": \"@ali/tdmod-od-pc-offer-price\", \"trackInfo\": {}, \"data\": {\"offerDomain\": \"{\\"detailDescription\\":{\\"dataDesc\\":{\\"payOrder30DayStr\\":\\"1万+\\"},\\"abTestInfo\\":{\\"exposeClickInfo\\":{},\\"pvTrackInfo\\":{\\"AbIds\\":\\"2515414#2517407#2518968\\"},\\"abTestValueInfo\\":{\\"page_zgc_dimension\\":\\"0\\",\\"page_yanxuan_qualityCert\\":\\"Y\\",\\"page_dsc_xhdz_upgrade\\":\\"1\\",\\"page_add_custom_service\\":\\"1\\"}},\\"images\\":{\\"activityBackColor\\":\\"\\",\\"cautionImageUrl\\":\\"\\",\\"shareWithGiftIcon\\":\\"https://gw.alicdn.com/tfs/TB1YYyRuhTpK1RjSZFMXXbG_VXa-36-36.png\\",\\"wirelessCorner\\":\\"\\",\\"activityUrl\\":\\"\\",\\"wirelessLabel\\":\\"\\",\\"background\\":\\"\\",\\"backgroundIcon\\":\\"\\",\\"iconUrl\\":\\"\\",\\"officialActivityIcon\\":\\"\\"},\\"deliveryLimit\\":5,\\"exposeInfo\\":{\\"exposeArgs\\":{\\"isYanxuanOffer\\":\\"false\\",\\"sceneType\\":\\"default\\",\\"ipvId\\":\\"213e388417219663413288901ee1bf\\",\\"isPlusMember\\":\\"false\\",\\"verticalType\\":\\"default\\",\\"offerId\\":\\"710046693089\\",\\"channelType\\":\\"dsc\\"}},\\"protectionInfoList\\":[{\\"longDescription\\":\\"卖家承诺买家签收货物后7天内,在“商品完好”的情形下,向买家提供退货服务。\\",\\"serviceCode\\":\\"qtwlybt\\",\\"description\\":\\"满足相应条件下,卖家需支持7天无理由,其中定制订单不支持“7天无理由退货”。\\",\\"serviceName\\":\\"7天无理由退货\\",\\"type\\":\\"protect\\",\\"logoUrl\\":\\"https://img.alicdn.com/imgextra/i2/O1CN01NyKX2m1pKgXu54Rve_!!6000000005342-2-tps-64-64.png\\",\\"logoUrl_64_64\\":\\"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\\",\\"buyerDescription\\":\\"7天无理由退货\\"},{\\"longDescription\\":\\"卖家在承诺买家保障服务的基础上,向买家提供“5天发货延必赔”的服务。在买家通过支付宝担保交易完成付款或通过货到付款下单成功后,卖家承诺在买家支付成功起5天内发货。如卖家未履行前述承诺,买家可在指定期限内发起维权,并申请赔付。\\",\\"serviceLink\\":\\"https://show.1688.com/vip/other/1bpmrma4.html?__pageId__=227845&cms_id=227845\\",\\"serviceCode\\":\\"wtfh\\",\\"description\\":\\"若商家未按订单约定的时间发货,您可以在订单详情申请赔付\\",\\"serviceName\\":\\"晚发必赔\\",\\"type\\":\\"protect\\",\\"logoUrl\\":\\"https://img.alicdn.com/imgextra/i4/O1CN01VY8aZP22biChDedq3_!!6000000007139-2-tps-64-64.png\\",\\"logoUrl_64_64\\":\\"https://img.alicdn.com/imgextra/i4/O1CN01VY8aZP22biChDedq3_!!6000000007139-2-tps-64-64.png\\",\\"logoUrl_16_16\\":\\"https://img.alicdn.com/imgextra/i2/O1CN0172OP7Y2775nyfP7aW_!!6000000007749-2-tps-16-16.png\\",\\"agreeDeliveryHours\\":120},{\\"longDescription\\":\\"“在符合一定的退款申请原因、时效和退款金额范围内,可享受0秒退款服务。\\",\\"serviceLink\\":\\"https://show.1688.com/vip/other/2csfppfe.html?spm=a2637k.pagelist.0.0.7c69370aqRcuVa&__pageId__=227465&cms_id=227465\\",\\"serviceCode\\":\\"jstk_p\\",\\"description\\":\\"在符合一定的退款申请原因、时效和退款金额范围内,可享受0秒退款服务。\\",\\"serviceName\\":\\"极速退款\\",\\"type\\":\\"protect\\",\\"logoUrl\\":\\"https://img.alicdn.com/imgextra/i3/O1CN01dcTxhB1f7j6hzsS7s_!!6000000003960-2-tps-64-64.png\\",\\"logoUrl_64_64\\":\\"https://img.alicdn.com/imgextra/i3/O1CN01dcTxhB1f7j6hzsS7s_!!6000000003960-2-tps-64-64.png\\",\\"logoUrl_16_16\\":\\"https://img.alicdn.com/imgextra/i4/O1CN01tnZSFq1Gfk8BH5kkH_!!6000000000650-2-tps-16-16.png\\",\\"buyerDescription\\":\\"极速退款\\"}],\\"banners\\":{\\"aliPayOfferDetailBanner\\":{\\"bannerJumpUrl\\":\\"\\",\\"BannerUrl\\":\\"\\"},\\"offerDetailBanner\\":{\\"bannerJumpUrl\\":\\"\\",\\"BannerUrl\\":\\"\\"},\\"dacuBanner\\":{\\"bannerJumpUrl\\":\\"\\",\\"BannerUrl\\":\\"\\"},\\"bigPromotionBanner\\":{\\"bannerJumpUrl\\":\\"https://shop6635296196660.1688.com/page/activity.htm?offerId=710046693089#promotion\\",\\"BannerUrl\\":\\"\\"}},\\"urls\\":{},\\"texts\\":{\\"brandRelationType\\":\\"\\",\\"brandName\\":\\"\\",\\"cautionText\\":\\"\\",\\"wirelessLabelText\\":\\"\\",\\"tradeTemplateId\\":\\"[0]\\"},\\"offerUVOf7Day\\":1545,\\"shareActivityInfo\\":{},\\"officialDocInfos\\":[],\\"freightInfo\\":{\\"unitWeight\\":0,\\"freeEndAmount\\":-1,\\"deliveryLimit\\":5,\\"officialLogistics\\":false,\\"subTemplateId\\":17357738,\\"logisticsText\\":\\"承诺5天发货\\",\\"deliveryFee\\":{\\"name\\":\\"TEMPLATED\\"},\\"freeDeliverFee\\":false,\\"location\\":\\"广东省揭阳市\\",\\"locationCode\\":\\"34786219\\",\\"locationDivisionCode\\":\\"445281\\",\\"totalCost\\":3.90,\\"skuWeight\\":{}}},\\"channelBizType\\":{\\"name\\":\\"DSC\\"},\\"consignModel\\":{\\"distributeChannels\\":[{\\"name\\":\\"淘宝\\",\\"typeCode\\":\\"thyny\\"},{\\"name\\":\\"抖音\\",\\"typeCode\\":\\"douyin\\"},{\\"name\\":\\"快手\\",\\"typeCode\\":\\"kuaishou\\"},{\\"name\\":\\"微信\\",\\"typeCode\\":\\"wg\\"},{\\"name\\":\\"Lazada\\",\\"typeCode\\":\\"lazada\\"},{\\"name\\":\\"Amazon\\",\\"typeCode\\":\\"amazon\\"},{\\"name\\":\\"Shopify\\",\\"typeCode\\":\\"shopify\\"},{\\"name\\":\\"Shopee\\",\\"typeCode\\":\\"shopee\\"}],\\"consignSign\\":{\\"isSupportConsignIssuing\\":false,\\"supportDistribution\\":true,\\"signs\\":{\\"isSupportConsignIssuing\\":false,\\"supportDistribution\\":true,\\"hasConsignReation\\":false,\\"isCanIgnoreConsignRelation\\":false},\\"isCanIgnoreConsignRelation\\":false},\\"isConsignOffer\\":false,\\"hasConsignPrice\\":false},\\"verticalType\\":\\"default\\",\\"sellerModel\\":{\\"loginId\\":\\"广州依思可服装厂\\",\\"winportUrl\\":\\"https://shop6635296196660.1688.com\\",\\"companyName\\":\\"广州依思可服装有限公司\\",\\"sellerSign\\":{\\"isIndustrySeller\\":false,\\"isSlsj\\":false,\\"signs\\":{\\"isIndustrySeller\\":false,\\"isSlsj\\":false,\\"isEaseBuyDealer\\":false,\\"isChtMember\\":false,\\"isTp\\":true,\\"isFactoryDealer\\":false},\\"isTp\\":true,\\"isChtMember\\":false},\\"sellerIdentity\\":\\"default\\",\\"userId\\":2215638340252,\\"sellerFeature\\":{\\"features\\":{\\"brandShopTypeName\\":\\"\\"},\\"brandShopTypeName\\":\\"\\"},\\"memberId\\":\\"b2b-2215638340252280b9\\"},\\"tradeModel\\":{\\"canBookedAmount\\":47594,\\"beginAmount\\":2,\\"isSupportWirelessOnly\\":false,\\"tradeWithoutPromotion\\":{\\"skuMapOriginal\\":[{\\"specId\\":\\"18880e7022b7b140602d4183260ab0a0\\",\\"specAttrs\\":\\"短裙*2064&gt;S\\",\\"price\\":\\"31.98\\",\\"saleCount\\":0,\\"discountPrice\\":\\"31.98\\",\\"canBookCount\\":8662,\\"skuId\\":5149904430045,\\"isPromotionSku\\":false},{\\"specId\\":\\"32d9603d4d0d16ef8af2f8867ad6d935\\",\\"specAttrs\\":\\"上衣*2064&gt;M\\",\\"price\\":\\"32.98\\",\\"saleCount\\":0,\\"discountPrice\\":\\"32.98\\",\\"canBookCount\\":6081,\\"skuId\\":5149904430046,\\"isPromotionSku\\":false},{\\"specId\\":\\"7b4d2c4f195be4546af99de69d6e12cc\\",\\"specAttrs\\":\\"上衣*2064&gt;L\\",\\"price\\":\\"32.98\\",\\"saleCount\\":0,\\"discountPrice\\":\\"32.98\\",\\"canBookCount\\":8881,\\"skuId\\":5149904430048,\\"isPromotionSku\\":false},{\\"specId\\":\\"f0b4ec80477d1198e9be1848b5ba39d7\\",\\"specAttrs\\":\\"上衣*2064&gt;S\\",\\"price\\":\\"32.98\\",\\"saleCount\\":0,\\"discountPrice\\":\\"32.98\\",\\"canBookCount\\":8341,\\"skuId\\":5149904430044,\\"isPromotionSku\\":false},{\\"specId\\":\\"39ffb6c0e549a523f9074cb9110e370c\\",\\"specAttrs\\":\\"短裙*2064&gt;M\\",\\"price\\":\\"31.98\\",\\"saleCount\\":0,\\"discountPrice\\":\\"31.98\\",\\"canBookCount\\":6256,\\"skuId\\":5149904430047,\\"isPromotionSku\\":false},{\\"specId\\":\\"3c8c844cb6bcf2a8d690f999b38512e5\\",\\"specAttrs\\":\\"短裙*2064&gt;L\\",\\"price\\":\\"31.98\\",\\"saleCount\\":0,\\"discountPrice\\":\\"31.98\\",\\"canBookCount\\":9373,\\"skuId\\":5149904430049,\\"isPromotionSku\\":false}],\\"OfferIsSkuTradeSupported\\":true,\\"offerMaxPrice\\":\\"32.98\\",\\"offerBeginAmount\\":2,\\"offerPriceDisplay\\":\\"31.98-32.98\\",\\"canBookedAmountOriginal\\":47594,\\"offerMinPrice\\":\\"31.98\\"},\\"isSkuTradeSupported\\":true,\\"priceDisplay\\":\\"31.98-32.98\\",\\"offerPriceModel\\":{\\"priceAdv\\":{\\"advRate\\":\\"48.0%\\",\\"source\\":\\"OTHER\\"},\\"currentPrices\\":[{\\"price\\":\\"31.98\\",\\"beginAmount\\":1},{\\"price\\":\\"32.98\\",\\"beginAmount\\":2}],\\"priceDisplayType\\":\\"skuPrice\\",\\"priceLabel\\":\\"\\"},\\"saleCount\\":3388,\\"skuMap\\":[{\\"specId\\":\\"18880e7022b7b140602d4183260ab0a0\\",\\"specAttrs\\":\\"短裙*2064&gt;S\\",\\"price\\":\\"31.98\\",\\"saleCount\\":0,\\"discountPrice\\":\\"31.98\\",\\"canBookCount\\":8662,\\"skuId\\":5149904430045,\\"isPromotionSku\\":false},{\\"specId\\":\\"32d9603d4d0d16ef8af2f8867ad6d935\\",\\"specAttrs\\":\\"上衣*2064&gt;M\\",\\"price\\":\\"32.98\\",\\"saleCount\\":0,\\"discountPrice\\":\\"32.98\\",\\"canBookCount\\":6081,\\"skuId\\":5149904430046,\\"isPromotionSku\\":false},{\\"specId\\":\\"7b4d2c4f195be4546af99de69d6e12cc\\",\\"specAttrs\\":\\"上衣*2064&gt;L\\",\\"price\\":\\"32.98\\",\\"saleCount\\":0,\\"discountPrice\\":\\"32.98\\",\\"canBookCount\\":8881,\\"skuId\\":5149904430048,\\"isPromotionSku\\":false},{\\"specId\\":\\"f0b4ec80477d1198e9be1848b5ba39d7\\",\\"specAttrs\\":\\"上衣*2064&gt;S\\",\\"price\\":\\"32.98\\",\\"saleCount\\":0,\\"discountPrice\\":\\"32.98\\",\\"canBookCount\\":8341,\\"skuId\\":5149904430044,\\"isPromotionSku\\":false},{\\"specId\\":\\"39ffb6c0e549a523f9074cb9110e370c\\",\\"specAttrs\\":\\"短裙*2064&gt;M\\",\\"price\\":\\"31.98\\",\\"saleCount\\":0,\\"discountPrice\\":\\"31.98\\",\\"canBookCount\\":6256,\\"skuId\\":5149904430047,\\"isPromotionSku\\":false},{\\"specId\\":\\"3c8c844cb6bcf2a8d690f999b38512e5\\",\\"specAttrs\\":\\"短裙*2064&gt;L\\",\\"price\\":\\"31.98\\",\\"saleCount\\":0,\\"discountPrice\\":\\"31.98\\",\\"canBookCount\\":9373,\\"skuId\\":5149904430049,\\"isPromotionSku\\":false}],\\"mixModel\\":{\\"mixOneForSale\\":true,\\"isSupportMix\\":true,\\"mixNumber\\":1,\\"mixAmount\\":10},\\"unit\\":\\"件\\",\\"hasPromotion\\":false,\\"minPrice\\":\\"31.98\\",\\"offerId\\":710046693089,\\"maxPrice\\":\\"32.98\\"},\\"detailBusiness\\":{\\"buyerProtectionModel\\":[{\\"serviceCode\\":\\"qtwlybt\\",\\"serviceShortCode\\":\\"qtwlybt\\",\\"type\\":\\"protect\\",\\"enabled\\":true,\\"forceUseSubPtsCodes\\":false,\\"serviceVersion\\":2,\\"bigLogo\\":\\"https://img.alicdn.com/imgextra/i2/O1CN01dNPHxv1UZhbWE3yPO_!!6000000002532-2-tps-32-32.png\\",\\"packageBuyerDesc\\":\\"7天无理由退货\\",\\"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\\",\\"agreementPage\\":\\"https://rule.1688.com/?+tracelog=aliguize_wzdh01&type=detail&ruleId=20004568&cId=3044#/rule/detail?ruleId=20004568&cId=3044\\",\\"hugeLogo\\":\\"https://img.alicdn.com/imgextra/i1/O1CN01qUUUwV1RIo98arRvQ_!!6000000002089-2-tps-58-58.png\\",\\"littleLogo\\":\\"https://img.alicdn.com/imgextra/i1/O1CN01YIe8Lk1vxyDWgdkPQ_!!6000000006240-2-tps-16-16.png\\",\\"shortSellerDesc\\":\\"卖家承诺买家签收货物后7天内,在“商品完好”的情形下,向买家提供退货服务。\\",\\"shortBuyerDesc\\":\\"满足相应条件下,卖家需支持7天无理由,其中定制订单不支持“7天无理由退货”。\\",\\"largeLogo\\":\\"https://img.alicdn.com/imgextra/i2/O1CN01iYPe5E1YGhdWMDnh8_!!6000000003032-2-tps-48-48.png\\",\\"serviceName\\":\\"7天无理由退货\\",\\"extendInfo\\":{\\"popDescription\\":\\"卖家承诺买家签收货物后7天内,在“商品完好”的情形下,向买家提供退货服务。\\"},\\"userId\\":2215638340252,\\"moreHugeLogo\\":\\"https://img.alicdn.com/imgextra/i2/O1CN01NyKX2m1pKgXu54Rve_!!6000000005342-2-tps-64-64.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)收纳清洁用具\\",\\"textDesc\\":\\"卖家承诺买家签收货物后7天内,在“商品完好”的情形下,向买家提供退货服务。\\",\\"logicGroupId\\":\\"4\\"},{\\"serviceCode\\":\\"wtfh\\",\\"serviceShortCode\\":\\"wtfh\\",\\"productPage\\":\\"https://show.1688.com/vip/other/1bpmrma4.html?__pageId__=227845&cms_id=227845\\",\\"type\\":\\"protect\\",\\"enabled\\":true,\\"forceUseSubPtsCodes\\":false,\\"serviceVersion\\":1,\\"bigLogo\\":\\"https://img.alicdn.com/imgextra/i3/O1CN01N8u67r1aIeTqltAUI_!!6000000003307-2-tps-32-32.png\\",\\"logo\\":\\"https://img.alicdn.com/imgextra/i4/O1CN01VY8aZP22biChDedq3_!!6000000007139-2-tps-64-64.png\\",\\"middleLogo\\":\\"https://img.alicdn.com/imgextra/i3/O1CN01bTdfLk1j9nMNcPA6F_!!6000000004506-2-tps-24-24.png\\",\\"agreementPage\\":\\"https://terms.alicdn.com/legal-agreement/terms/suit_bu1_b2b/suit_bu1_b2b201802011726_70295.html\\",\\"agreeDeliveryHours\\":120,\\"hugeLogo\\":\\"https://img.alicdn.com/imgextra/i4/O1CN017Ot6XN21ymXQgeKyo_!!6000000007054-2-tps-58-58.png\\",\\"littleLogo\\":\\"https://img.alicdn.com/imgextra/i2/O1CN0172OP7Y2775nyfP7aW_!!6000000007749-2-tps-16-16.png\\",\\"shortSellerDesc\\":\\"开通此服务的卖家,将宝贝详情页面的买家保障区域有独特标识展示,让买家清晰明白所提供的服务的含义,消除买家下单顾虑。\\",\\"shortBuyerDesc\\":\\"若商家未按订单约定的时间发货,您可以在订单详情申请赔付\\",\\"largeLogo\\":\\"https://img.alicdn.com/imgextra/i2/O1CN010mPcUz1dsmZL9Hbwp_!!6000000003792-2-tps-48-48.png\\",\\"serviceName\\":\\"晚发必赔\\",\\"extendInfo\\":{\\"popDescription\\":\\"卖家在承诺买家保障服务的基础上,向买家提供“5天发货延必赔”的服务。在买家通过支付宝担保交易完成付款或通过货到付款下单成功后,卖家承诺在买家支付成功起5天内发货。如卖家未履行前述承诺,买家可在指定期限内发起维权,并申请赔付。\\",\\"delivery_days\\":\\"5\\"},\\"userId\\":2215638340252,\\"moreHugeLogo\\":\\"https://img.alicdn.com/imgextra/i4/O1CN01VY8aZP22biChDedq3_!!6000000007139-2-tps-64-64.png\\",\\"currentStep\\":1,\\"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)收纳清洁用具 53)男装 54)运动户外 55)内衣 56)女装 57)童装 58)办公、文化 59)数码、电脑 60)汽摩及配件 61)加工 62)橡塑 63)冶金矿产 64)钢铁 65)能源 66)电工电气 67)机械及行业设备 68)机床 69)安全、防护 70)仪器仪表 71)交通运输 72)五金、工具 73)印刷 74)通信产品 75)传媒、广电 76)包装 77)二手设备转让 78)环保 79)化工 80)电子元器件 81)灯饰照明 82)纺织、皮革 83)玩具 84)宠物及园艺 85)居家日用品 86)眼镜及配件 87)家用电器 88)汽车用品 89)家装建材 90)汽摩及配件 91)箱包皮具 92)内衣 93)农业 94)鞋 95)餐饮生鲜 96)服饰配件、饰品 97)个护/家清 98)家纺家饰 99)美容护肤/彩妆 100)食品酒水 101)成人用品 102)建材 103)日用餐厨饮具 104)收纳清洁用具 105)男装 106)运动户外 107)内衣 108)女装 109)童装 110)办公、文化 111)数码、电脑 112)汽摩及配件 113)加工 114)橡塑 115)冶金矿产 116)钢铁 117)能源 118)电工电气 119)机械及行业设备 120)机床 121)安全、防护 122)仪器仪表 123)交通运输 124)五金、工具 125)印刷 126)通信产品 127)传媒、广电 128)包装 129)二手设备转让 130)环保 131)化工 132)电子元器件 133)灯饰照明 134)纺织、皮革 135)玩具 136)宠物及园艺 137)居家日用品 138)眼镜及配件 139)家用电器 140)汽车用品 141)家装建材 142)汽摩及配件 143)箱包皮具 144)内衣 145)农业 146)鞋 147)餐饮生鲜 148)服饰配件、饰品 149)个护/家清 150)家纺家饰 151)美容护肤/彩妆 152)食品酒水 153)成人用品 154)建材 155)日用餐厨饮具 156)收纳清洁用具 157)男装 158)运动户外 159)内衣 160)女装 161)童装 162)办公、文化 163)数码、电脑 164)汽摩及配件 165)加工 166)橡塑 167)冶金矿产 168)钢铁 169)能源 170)电工电气 171)机械及行业设备 172)机床 173)安全、防护 174)仪器仪表 175)交通运输 176)五金、工具 177)印刷 178)通信产品 179)传媒、广电 180)包装 181)二手设备转让 182)环保 183)化工 184)电子元器件 185)灯饰照明 186)纺织、皮革 187)玩具 188)宠物及园艺 189)居家日用品 190)眼镜及配件 191)家用电器 192)汽车用品 193)家装建材 194)汽摩及配件 195)箱包皮具 196)内衣 197)农业 198)鞋 199)餐饮生鲜 200)服饰配件、饰品 201)个护/家清 202)家纺家饰 203)美容护肤/彩妆 204)食品酒水 205)成人用品 206)建材 207)日用餐厨饮具 208)收纳清洁用具 209)医药、保养 210)新能源\\",\\"textDesc\\":\\"卖家在承诺买家保障服务的基础上,向买家提供“5天发货延必赔”的服务。在买家通过支付宝担保交易完成付款或通过货到付款下单成功后,卖家承诺在买家支付成功起5天内发货。如卖家未履行前述承诺,买家可在指定期限内发起维权,并申请赔付。\\",\\"ptsOfferStepModels\\":[{\\"selectedStartQuantity\\":1,\\"selectedPtsOfferTagModel\\":{\\"serviceCode\\":\\"wtfh\\",\\"serviceName\\":\\"5天发货\\",\\"required\\":false,\\"disabled\\":false,\\"agreeDeliveryHours\\":120,\\"selected\\":false},\\"selected\\":false}],\\"logicGroupId\\":\\"1\\"},{\\"serviceCode\\":\\"jstk_p\\",\\"serviceShortCode\\":\\"jstk_p\\",\\"productPage\\":\\"https://show.1688.com/vip/other/2csfppfe.html?spm=a2637k.pagelist.0.0.7c69370aqRcuVa&__pageId__=227465&cms_id=227465\\",\\"type\\":\\"protect\\",\\"enabled\\":true,\\"forceUseSubPtsCodes\\":false,\\"serviceVersion\\":1,\\"bigLogo\\":\\"https://img.alicdn.com/imgextra/i1/O1CN01VvqbTG1K5nVfaHhdS_!!6000000001113-2-tps-32-32.png\\",\\"packageBuyerDesc\\":\\"极速退款\\",\\"logo\\":\\"https://img.alicdn.com/imgextra/i3/O1CN01dcTxhB1f7j6hzsS7s_!!6000000003960-2-tps-64-64.png\\",\\"middleLogo\\":\\"https://img.alicdn.com/imgextra/i2/O1CN01y8loDJ21Ie6CBum7n_!!6000000006962-2-tps-24-24.png\\",\\"hugeLogo\\":\\"https://img.alicdn.com/imgextra/i1/O1CN01MKJkrw1ksy2RwBtJO_!!6000000004740-2-tps-58-58.png\\",\\"littleLogo\\":\\"https://img.alicdn.com/imgextra/i4/O1CN01tnZSFq1Gfk8BH5kkH_!!6000000000650-2-tps-16-16.png\\",\\"shortSellerDesc\\":\\"在符合一定的退款申请原因、时效和退款金额范围内,可享受0秒退款服务。\\",\\"shortBuyerDesc\\":\\"在符合一定的退款申请原因、时效和退款金额范围内,可享受0秒退款服务。\\",\\"largeLogo\\":\\"https://img.alicdn.com/imgextra/i3/O1CN01ASkwpL1cIloQXSmWF_!!6000000003578-2-tps-48-48.png\\",\\"serviceName\\":\\"极速退款\\",\\"extendInfo\\":{\\"popDescription\\":\\"“在符合一定的退款申请原因、时效和退款金额范围内,可享受0秒退款服务。\\"},\\"userId\\":2215638340252,\\"moreHugeLogo\\":\\"https://img.alicdn.com/imgextra/i3/O1CN01dcTxhB1f7j6hzsS7s_!!6000000003960-2-tps-64-64.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)收纳清洁用具\\",\\"textDesc\\":\\"“在符合一定的退款申请原因、时效和退款金额范围内,可享受0秒退款服务。\\",\\"logicGroupId\\":\\"7\\"}],\\"buyerProtectionScene\\":\\"dsc\\",\\"deliveryLimitTimeModel\\":{\\"limitTimeDay\\":5,\\"expectSendHour\\":7,\\"offerId\\":710046693089,\\"orderCntLevelText\\":\\"\\",\\"limitTimeDesc\\":\\"承诺5天发货\\",\\"expectTimeDesc\\":\\"\\",\\"attrs\\":{\\"ptsOfferStepModels\\":[{\\"selectedStartQuantity\\":1,\\"selectedPtsOfferTagModel\\":{\\"serviceCode\\":\\"wtfh\\",\\"serviceName\\":\\"5天发货\\",\\"required\\":false,\\"disabled\\":false,\\"agreeDeliveryHours\\":120,\\"selected\\":false},\\"selected\\":false}],\\"offerUnit\\":\\"件\\"}}},\\"channelType\\":\\"dsc\\",\\"offerDetail\\":{\\"topCategoryId\\":10166,\\"subject\\":\\"小香风套装女2024年夏季新款高级感小个子网红炸街洋气减龄两件套\\",\\"skuFeatures\\":{\\"5149904430046\\":{\\"cbu_hot_type\\":\\"skuprice_v1\\"}},\\"offerMemberTags\\":[4266049,218112,210944,201728,401410,428546,394242,360450,4845121,4890177,3775489,3780097,3791873,3824129,3823617,3833857,3825665,3824641,3823105,3997697,3953153,4136449,4131841,4134913,4109313,4247553,4341249,229952,448578,393794,401474,476738,477762,335938,576067,5032961,5132801,3768385,3778625,3824193,3825217,3820097,3803201,3825729,3833921,4001345,4056129,4020801,3977281,4158017,4134977,4109889,4094529,4307649,232064,235648,424066,449154,424578,404098,341122,5179073,3768961,3873409,3872385,3825281,3823745,3824257,3823233,3825793,3833985,4047489,4147329,4135041,4157057,4100737,4087937,4320385,209600,419010,446658,399554,401090,475330,475842,472258,4457089,302786,305858,365762,4817025,4907649,5110401,5064833,3778753,3824833,3825345,3824321,3823297,3822785,3825857,3849921,3832001,3819713,3801793,4157121,4080321,4321601,140032,241408,201984,205056,198400,414978,453378,393474,398594,437506,446722,342786,5117249,5125953,3824385,3824897,3825409,3823361,3823873,21312,4307713,4288257,170816,144704,227648,225088,242496,202048,209216,206656,448834,399682,427330,382274,377666,4813569,548163,5056257,3881793,3819841,3823425,3824449,3824961,3822913,3945793,4134721,4087105,4099393,4249025,161664,214912,216960,220544,201088,448898,425858,441218,4503489,306562,385922,4798913,4817345,3770753,3791233,3822977,3824001,3819393,3820417,3825537,3833729,3825025,3953025,4189569,4134785,4112257,4212097,4214145,153024,210880,414146,455106,394178,412098,305602,333250,393154,339394,388034,5028737,5117313,5170049,3775425,3778497,3768769,3792321,3824577,3825089,3823041,3819969,3825601,3811777,3982273],\\"mainImageList\\":[{\\"imageURI\\":\\"img/ibank/O1CN01VY8OxK1DjSdT4ra33_!!2215638340252-0-cib.jpg\\",\\"fullPathImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01VY8OxK1DjSdT4ra33_!!2215638340252-0-cib.jpg\\"},{\\"imageURI\\":\\"img/ibank/O1CN01GWsUGp1DjSdMyuMmL_!!2215638340252-0-cib.jpg\\",\\"fullPathImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01GWsUGp1DjSdMyuMmL_!!2215638340252-0-cib.jpg\\"},{\\"imageURI\\":\\"img/ibank/O1CN01UJXiQZ1DjSdT4sNvG_!!2215638340252-0-cib.jpg\\",\\"fullPathImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01UJXiQZ1DjSdT4sNvG_!!2215638340252-0-cib.jpg\\"},{\\"imageURI\\":\\"img/ibank/O1CN01IS7FQZ1DjSdMyvVR2_!!2215638340252-0-cib.jpg\\",\\"fullPathImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01IS7FQZ1DjSdMyvVR2_!!2215638340252-0-cib.jpg\\"},{\\"imageURI\\":\\"img/ibank/O1CN01Fx2Lgm1Bs2pFyPU2Q_!!0-0-cib.jpg\\",\\"fullPathImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01Fx2Lgm1Bs2pFyPU2Q_!!0-0-cib.jpg\\"}],\\"preHeatStartTime\\":\\"1970-01-01 00:00:00\\",\\"offerType\\":\\"fashion\\",\\"skuProps\\":[{\\"fid\\":3216,\\"value\\":[{\\"name\\":\\"上衣*2064\\",\\"imageUrl\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01I5iG1t1DjSdJ1ryFk_!!2215638340252-0-cib.jpg\\"},{\\"name\\":\\"短裙*2064\\",\\"imageUrl\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01o1FDg91DjSdR710UE_!!2215638340252-0-cib.jpg\\"}],\\"prop\\":\\"颜色\\"},{\\"fid\\":450,\\"value\\":[{\\"name\\":\\"S\\"},{\\"name\\":\\"M\\"},{\\"name\\":\\"L\\"}],\\"prop\\":\\"尺码\\"}],\\"featureAttributes\\":[{\\"fid\\":1398,\\"isSpecial\\":false,\\"values\\":[\\"G菲凡*2064\\"],\\"name\\":\\"货号\\",\\"outputType\\":0,\\"lectotype\\":false},{\\"fid\\":2900,\\"isSpecial\\":false,\\"values\\":[\\"纯色\\"],\\"name\\":\\"图案\\",\\"outputType\\":0,\\"lectotype\\":false},{\\"fid\\":8614,\\"isSpecial\\":false,\\"values\\":[\\"撞色\\"],\\"name\\":\\"流行元素\\",\\"outputType\\":0,\\"lectotype\\":false},{\\"fid\\":1085,\\"isSpecial\\":false,\\"values\\":[\\"免烫处理\\"],\\"name\\":\\"工艺\\",\\"outputType\\":0,\\"lectotype\\":false},{\\"fid\\":20666,\\"isSpecial\\":false,\\"values\\":[\\"2023年夏季\\"],\\"name\\":\\"上市年份/季节\\",\\"outputType\\":0,\\"lectotype\\":false},{\\"fid\\":100031521,\\"isSpecial\\":false,\\"values\\":[\\"涤纶\\"],\\"name\\":\\"面料名称\\",\\"outputType\\":0,\\"lectotype\\":false},{\\"fid\\":117130178,\\"isSpecial\\":false,\\"values\\":[\\"涤纶(聚酯纤维)\\"],\\"name\\":\\"主面料成分\\",\\"outputType\\":0,\\"lectotype\\":false},{\\"fid\\":151844178,\\"isSpecial\\":false,\\"values\\":[\\"涤纶(聚酯纤维)\\"],\\"name\\":\\"主面料成分2\\",\\"outputType\\":0,\\"lectotype\\":false},{\\"fid\\":2176,\\"isSpecial\\":false,\\"values\\":[\\"珍衣优品\\"],\\"name\\":\\"品牌\\",\\"outputType\\":0,\\"lectotype\\":false},{\\"fid\\":3216,\\"isSpecial\\":false,\\"values\\":[\\"上衣*2064\\",\\"短裙*2064\\"],\\"name\\":\\"颜色\\",\\"outputType\\":0,\\"lectotype\\":false},{\\"fid\\":450,\\"isSpecial\\":false,\\"values\\":[\\"S\\",\\"M\\",\\"L\\"],\\"name\\":\\"尺码\\",\\"outputType\\":0,\\"lectotype\\":false},{\\"fid\\":2489638,\\"isSpecial\\":false,\\"values\\":[\\"清新甜美\\"],\\"name\\":\\"风格类型\\",\\"outputType\\":0,\\"lectotype\\":false},{\\"fid\\":149092418,\\"isSpecial\\":false,\\"values\\":[\\"30%(含)-50%(不含)\\"],\\"name\\":\\"主面料成分含量\\",\\"lectotype\\":false},{\\"fid\\":401,\\"isSpecial\\":false,\\"values\\":[\\"公主风\\"],\\"name\\":\\"风格\\",\\"lectotype\\":false},{\\"fid\\":22690,\\"isSpecial\\":false,\\"values\\":[\\"上衣套装\\"],\\"name\\":\\"套装款式\\",\\"lectotype\\":false},{\\"fid\\":2917380,\\"isSpecial\\":false,\\"values\\":[\\"泡泡袖\\"],\\"name\\":\\"袖型\\",\\"lectotype\\":false},{\\"fid\\":7001,\\"isSpecial\\":false,\\"values\\":[\\"三分袖\\"],\\"name\\":\\"袖长\\",\\"lectotype\\":false},{\\"fid\\":221796513,\\"isSpecial\\":false,\\"values\\":[\\"否\\"],\\"name\\":\\"是否跨境货源\\",\\"lectotype\\":false},{\\"fid\\":153610427,\\"isSpecial\\":false,\\"values\\":[\\"30%(含)-50%(不含)\\"],\\"name\\":\\"主面料成分2含量\\",\\"lectotype\\":false}],\\"offerId\\":710046693089,\\"detailUrl\\":\\"https://itemcdn.tmall.com/1688offer/icoss31317128359dfc2f04dfff7e36\\",\\"leafCategoryId\\":1048256,\\"imageList\\":[{\\"size220x220ImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01VY8OxK1DjSdT4ra33_!!2215638340252-0-cib.220x220.jpg\\",\\"imageURI\\":\\"img/ibank/O1CN01VY8OxK1DjSdT4ra33_!!2215638340252-0-cib.jpg\\",\\"searchImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01VY8OxK1DjSdT4ra33_!!2215638340252-0-cib.search.jpg\\",\\"summImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01VY8OxK1DjSdT4ra33_!!2215638340252-0-cib.summ.jpg\\",\\"size310x310ImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01VY8OxK1DjSdT4ra33_!!2215638340252-0-cib.310x310.jpg\\",\\"fullPathImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01VY8OxK1DjSdT4ra33_!!2215638340252-0-cib.jpg\\"},{\\"size220x220ImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01GWsUGp1DjSdMyuMmL_!!2215638340252-0-cib.220x220.jpg\\",\\"imageURI\\":\\"img/ibank/O1CN01GWsUGp1DjSdMyuMmL_!!2215638340252-0-cib.jpg\\",\\"searchImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01GWsUGp1DjSdMyuMmL_!!2215638340252-0-cib.search.jpg\\",\\"summImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01GWsUGp1DjSdMyuMmL_!!2215638340252-0-cib.summ.jpg\\",\\"size310x310ImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01GWsUGp1DjSdMyuMmL_!!2215638340252-0-cib.310x310.jpg\\",\\"fullPathImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01GWsUGp1DjSdMyuMmL_!!2215638340252-0-cib.jpg\\"},{\\"size220x220ImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01UJXiQZ1DjSdT4sNvG_!!2215638340252-0-cib.220x220.jpg\\",\\"imageURI\\":\\"img/ibank/O1CN01UJXiQZ1DjSdT4sNvG_!!2215638340252-0-cib.jpg\\",\\"searchImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01UJXiQZ1DjSdT4sNvG_!!2215638340252-0-cib.search.jpg\\",\\"summImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01UJXiQZ1DjSdT4sNvG_!!2215638340252-0-cib.summ.jpg\\",\\"size310x310ImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01UJXiQZ1DjSdT4sNvG_!!2215638340252-0-cib.310x310.jpg\\",\\"fullPathImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01UJXiQZ1DjSdT4sNvG_!!2215638340252-0-cib.jpg\\"},{\\"size220x220ImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01IS7FQZ1DjSdMyvVR2_!!2215638340252-0-cib.220x220.jpg\\",\\"imageURI\\":\\"img/ibank/O1CN01IS7FQZ1DjSdMyvVR2_!!2215638340252-0-cib.jpg\\",\\"searchImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01IS7FQZ1DjSdMyvVR2_!!2215638340252-0-cib.search.jpg\\",\\"summImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01IS7FQZ1DjSdMyvVR2_!!2215638340252-0-cib.summ.jpg\\",\\"size310x310ImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01IS7FQZ1DjSdMyvVR2_!!2215638340252-0-cib.310x310.jpg\\",\\"fullPathImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01IS7FQZ1DjSdMyvVR2_!!2215638340252-0-cib.jpg\\"},{\\"size220x220ImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01Fx2Lgm1Bs2pFyPU2Q_!!0-0-cib.220x220.jpg\\",\\"imageURI\\":\\"img/ibank/O1CN01Fx2Lgm1Bs2pFyPU2Q_!!0-0-cib.jpg\\",\\"searchImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01Fx2Lgm1Bs2pFyPU2Q_!!0-0-cib.search.jpg\\",\\"summImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01Fx2Lgm1Bs2pFyPU2Q_!!0-0-cib.summ.jpg\\",\\"size310x310ImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01Fx2Lgm1Bs2pFyPU2Q_!!0-0-cib.310x310.jpg\\",\\"fullPathImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01Fx2Lgm1Bs2pFyPU2Q_!!0-0-cib.jpg\\"},{\\"size220x220ImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01o1FDg91DjSdR710UE_!!2215638340252-0-cib.220x220.jpg\\",\\"imageURI\\":\\"img/ibank/O1CN01o1FDg91DjSdR710UE_!!2215638340252-0-cib.jpg\\",\\"searchImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01o1FDg91DjSdR710UE_!!2215638340252-0-cib.search.jpg\\",\\"summImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01o1FDg91DjSdR710UE_!!2215638340252-0-cib.summ.jpg\\",\\"size310x310ImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01o1FDg91DjSdR710UE_!!2215638340252-0-cib.310x310.jpg\\",\\"fullPathImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01o1FDg91DjSdR710UE_!!2215638340252-0-cib.jpg\\"},{\\"size220x220ImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01I5iG1t1DjSdJ1ryFk_!!2215638340252-0-cib.220x220.jpg\\",\\"imageURI\\":\\"img/ibank/O1CN01I5iG1t1DjSdJ1ryFk_!!2215638340252-0-cib.jpg\\",\\"searchImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01I5iG1t1DjSdJ1ryFk_!!2215638340252-0-cib.search.jpg\\",\\"summImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01I5iG1t1DjSdJ1ryFk_!!2215638340252-0-cib.summ.jpg\\",\\"size310x310ImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01I5iG1t1DjSdJ1ryFk_!!2215638340252-0-cib.310x310.jpg\\",\\"fullPathImageURI\\":\\"https://cbu01.alicdn.com/img/ibank/O1CN01I5iG1t1DjSdJ1ryFk_!!2215638340252-0-cib.jpg\\"}],\\"status\\":{\\"name\\":\\"PUBLISHED\\"},\\"offerSign\\":{\\"isSkuOffer\\":true,\\"isPreSell\\":false,\\"isConsignMarketOffer\\":true,\\"offerModelSign\\":{\\"isBuyerProtection\\":true,\\"isWeChatSupply\\":true,\\"isConsignMarketOffer\\":true,\\"isCrossBorderOffer\\":true,\\"isSupportMix\\":true,\\"isOnePsale\\":true,\\"isWholesaleOffer\\":true,\\"isSupplyStockOffer\\":true,\\"isPublishFeed\\":true,\\"hasFreightTemplate\\":true,\\"isGovCouponOfferInOD\\":false,\\"hasSearchPicture\\":true,\\"hasWhitePicInOffer\\":true,\\"hasOrder\\":true,\\"isTbDistributionOffer\\":true,\\"isToKuaiShou\\":true,\\"isAegisTrade\\":true,\\"isToTikTok\\":true,\\"isQsexsfh\\":true,\\"isBestOffer\\":true,\\"isSkuTradeSupported\\":true,\\"isSearchOffer\\":true,\\"isCBDistribution\\":true,\\"isGspOffer\\":true,\\"isOpenOffer\\":true,\\"isZeroWholesaleOffer\\":true,\\"isAlipaySupported\\":true,\\"isGpfOffer\\":true,\\"isSupportStock\\":true,\\"isPopularOffer\\":true,\\"hasSendGoodsAddress\\":true},\\"isOnlyNPorcessingOffer\\":false,\\"isOfferSupportOnlineTrade\\":true,\\"isDistribution\\":true,\\"stockProcessingLightOffer\\":false,\\"hasBusinessPrice\\":false,\\"stockReserveLightOffer\\":false,\\"hasJoinBusinessPrice\\":false,\\"isPreSaleOffer\\":false,\\"isVirtualCategory\\":false,\\"hasRelationOffer\\":true,\\"signs\\":{\\"isSkuOffer\\":true,\\"isPreSell\\":false,\\"isConsignMarketOffer\\":true,\\"isOnlyNPorcessingOffer\\":false,\\"isOfferSupportOnlineTrade\\":true,\\"isDistribution\\":true,\\"hasBusinessPrice\\":false,\\"hasJoinBusinessPrice\\":false,\\"isPreSaleOffer\\":false,\\"isVirtualCategory\\":false,\\"preHeatOfferCanTrade\\":true,\\"hasRelationOffer\\":true,\\"isChtSingleOffer\\":false,\\"isDetailForbidden\\":false},\\"isChtSingleOffer\\":false,\\"isDetailForbidden\\":false},\\"wirelessVideo\\":{\\"videoId\\":0,\\"state\\":0}},\\"promotionModel\\":{\\"hotTime\\":0,\\"promotionExtendInfo\\":{\\"offerDetailUrgeBarModel\\":\\"null\\"},\\"onHandPriceBO\\":{\\"onHandPrice\\":\\"30.98\\",\\"offerPrice\\":\\"31.98\\",\\"onHandPriceCalInfos\\":[{\\"perDiscountSumFee\\":\\"1.0\\",\\"promotionLabel\\":\\"满20减1券\\",\\"promotionDisplayName\\":\\"优惠券\\"}],\\"promotionDetailShowText\\":\\"当前购买1件,可使用以下优惠\\",\\"onHandPriceQuantity\\":1,\\"promotionText\\":\\"1件预估¥30.98元/件\\",\\"orderText\\":\\"领券下单\\",\\"onHandPriceAmount\\":\\"30.98\\",\\"name\\":\\"\\",\\"priceTypeText\\":\\"券后价\\",\\"handPriceShowText\\":\\"现在购买1件券后单价\\"},\\"aggregatePromotionInfo\\":[{\\"promotionName\\":\\"优惠券\\",\\"promotionType\\":\\"COUPON\\",\\"detailPromotionModels\\":[{\\"promotionInfoSummary\\":\\"满20元减1元\\",\\"promotionInfoDetail\\":\\"满20元减1元\\",\\"couponId\\":5761404607,\\"onlySupportMobile\\":false,\\"showDiscoutFee\\":true,\\"sellerId\\":2215638340252,\\"displayContent\\":\\"1\\",\\"promotionDisplayName\\":\\"优惠券\\",\\"couponType\\":0,\\"startTime\\":1680019200000,\\"promotionInfoType\\":\\"COUPON\\",\\"apply\\":false,\\"endtime\\":1767283199000,\\"canApply\\":true,\\"promotionLabel\\":\\"满20减1券\\",\\"finishApply\\":false,\\"couopnTypeName\\":\\"收藏有礼\\",\\"promotionInfoTime\\":\\"有效期:2023.03.29 00:00:00-2026.01.01 23:59:59\\",\\"startFee\\":2000}],\\"promotionExtend\\":{\\"uiType\\":\\"COUPON\\"}},{\\"promotionName\\":\\"混批\\",\\"promotionType\\":\\"MIX_WHOLESALE\\",\\"detailPromotionModels\\":[{\\"promotionInfoSummary\\":\\"本店部分商品满10元或1件可混批采购\\",\\"promotionInfoDetail\\":\\"本店部分商品满10元或1件可混批采购\\",\\"promotionInfoType\\":\\"MIX_WHOLESALE\\",\\"bizType\\":1,\\"wholesaleDetail\\":\\"\\",\\"mixNumber\\":1,\\"canApply\\":false,\\"promotionLabel\\":\\"1件混批\\",\\"promotionDisplayName\\":\\"混批\\",\\"mixAmount\\":10}],\\"promotionExtend\\":{\\"uiType\\":\\"CARD\\"}}],\\"aggregateNewPromotionInfo\\":[{\\"features\\":{\\"calSkuCartFromMkc\\":\\"true\\"},\\"groupType\\":\\"DEFAULT_GROUP\\",\\"singlePromotionInfoModels\\":[{\\"detailPromotionModels\\":[{\\"promotionInfoSummary\\":\\"满20元减1元\\",\\"promotionInfoDetail\\":\\"满20元减1元\\",\\"couponId\\":5761404607,\\"onlySupportMobile\\":false,\\"isApply\\":false,\\"sellerId\\":2215638340252,\\"displayContent\\":\\"1\\",\\"promotionDisplayName\\":\\"优惠券\\",\\"couponType\\":0,\\"startTime\\":1680019200000,\\"promotionInfoType\\":\\"COUPON\\",\\"isShowDiscoutFee\\":true,\\"endtime\\":1767283199000,\\"canApply\\":true,\\"isFinishApply\\":false,\\"promotionLabel\\":\\"满20减1券\\",\\"couopnTypeName\\":\\"收藏有礼\\",\\"promotionInfoTime\\":\\"有效期:2023.03.29 00:00:00-2026.01.01 23:59:59\\",\\"startFee\\":2000}],\\"promotionName\\":\\"优惠券\\",\\"promotionType\\":\\"COUPON\\",\\"promotionExtend\\":{\\"uiType\\":\\"COUPON\\"}},{\\"detailPromotionModels\\":[{\\"promotionInfoSummary\\":\\"本店部分商品满10元或1件可混批采购\\",\\"promotionInfoDetail\\":\\"本店部分商品满10元或1件可混批采购\\",\\"promotionInfoType\\":\\"MIX_WHOLESALE\\",\\"bizType\\":1,\\"wholesaleDetail\\":\\"\\",\\"mixNumber\\":1,\\"canApply\\":false,\\"promotionLabel\\":\\"1件混批\\",\\"promotionDisplayName\\":\\"混批\\",\\"mixAmount\\":10}],\\"promotionName\\":\\"混批\\",\\"promotionType\\":\\"MIX_WHOLESALE\\",\\"promotionExtend\\":{\\"uiType\\":\\"CARD\\"}}]}],\\"startTime\\":0,\\"bigPromotionInfo\\":{\\"bigPromotionCountdown\\":-1,\\"preheatTime\\":-1,\\"promotionResources\\":{},\\"burstEndTime\\":-1,\\"bigPromotionStatus\\":\\"NONE\\",\\"burstBeginTime\\":-1},\\"endTime\\":0,\\"promotionSign\\":{\\"isHpAdditionalDiscount\\":false,\\"hasBigPromotion\\":false,\\"isFreshmanActivity\\":false,\\"promotionRemoteCal\\":true,\\"skuFixPromotion\\":false,\\"isFreePostage\\":false,\\"cross2buy\\":false,\\"isShareWithGift\\":false,\\"isFxSellerTimeLimitActivity\\":false,\\"isLimitedTimePromotion\\":false,\\"signs\\":{\\"isLimitedTimePromotion\\":false,\\"isHpAdditionalDiscount\\":false,\\"hasBigPromotion\\":false,\\"isFreshmanActivity\\":false,\\"promotionRemoteCal\\":true,\\"isFxOfficialTimeLimitActivity\\":false,\\"hasPurcharseMark\\":false,\\"skuFixPromotion\\":false,\\"isFreePostage\\":false,\\"isShareWithGift\\":false,\\"isFxSellerTimeLimitActivity\\":false},\\"hasMarketPromotion\\":false,\\"isFxOfficialTimeLimitActivity\\":false,\\"hasPurcharseMark\\":false}},\\"verticalBizType\\":{\\"name\\":\\"DEFAULT\\"},\\"sceneType\\":\\"default\\",\\"buyerModel\\":{\\"buyerSign\\":{\\"hasAuth\\":true,\\"privateBuyer\\":false,\\"signs\\":{\\"hasAuth\\":true,\\"visitorPicAuth\\":true,\\"isSellerPartner\\":false,\\"isBusinessBuyer\\":false,\\"isSelf\\":false,\\"visitorPriceAuth\\":true},\\"visitorPicAuth\\":true,\\"isSellerPartner\\":false,\\"isBusinessBuyer\\":false,\\"isSelf\\":false,\\"visitorPriceAuth\\":true},\\"gradeLevel\\":\\"0\\",\\"buyerExtendInfo\\":{\\"shieldPcOfferDetail\\":\\"false\\"}},\\"sceneBizType\\":{\\"name\\":\\"DEFAULT\\"}}\", \"promotionData\": {\"couponList\": [{\"couponType\": \"COUPON\", \"couponContent\": \"满20减1券\"}, {\"couponType\": \"CARD\", \"couponContent\": \"1件混批\", \"couponMixNumber\": 1}], \"linkUrl\": \"https://cybert.m.1688.com/43ohz283.html?sceneName=chimera_16527\", \"pageName\": \"Page_GetCoupon\", \"couponInfoList\": [{\"type\": \"COUPON\", \"name\": \"优惠券\", \"displayType\": \"coupon\", \"extraInfo\": {\"uiType\": \"COUPON\"}, \"uiType\": \"COUPON\", \"summary\": \"满20元减1元\", \"buttonName\": \"领券\", \"promotionItems\": [{\"couponType\": 0, \"couponTypeName\": \"收藏有礼\", \"displayContent\": \"1\", \"showDiscountFee\": true, \"couponId\": 5761404607, \"sellerId\": 2215638340252, \"onlySupportMobile\": false, \"detail\": \"满20元减1元\", \"summary\": \"满20元减1元\", \"label\": \"满20减1券\", \"extendDetail\": \"\", \"availablePeriod\": \"有效期:2023.03.29 00:00:00-2026.01.01 23:59:59\", \"startTime\": \"Wed Mar 29 00:00:00 CST 2023\", \"canApply\": true, \"applied\": false, \"actionName\": \"立即领取\"}]}, {\"type\": \"MIX_WHOLESALE\", \"name\": \"混批\", \"displayType\": \"coupon\", \"extraInfo\": {\"uiType\": \"CARD\"}, \"uiType\": \"CARD\", \"summary\": \"本店部分商品满10元或1件可混批采购\", \"buttonName\": \"查看\", \"promotionItems\": [{\"detail\": \"本店部分商品满10元或1件可混批采购\", \"summary\": \"本店部分商品满10元或1件可混批采购\", \"label\": \"1件混批\", \"mixNumber\": 1, \"extendDetail\": \"\"}]}], \"buttonName\": \"领券\", \"bgColor\": \"#ff0e31\", \"offerId\": 710046693089, \"onHandPrice\": \"30.98\", \"bgPic\": \"https://gw.alicdn.com/tfs/TB1gmeRp7cx_u4jSZFlXXXnUFXa-1071-138.png\", \"prefix\": \"券后价\", \"sufix\": \"起\"}, \"displayType\": \"normal-sku\", \"priceModel\": {\"priceAdv\": {\"advRate\": \"48.0%\", \"source\": \"OTHER\"}, \"currentPrices\": [{\"price\": \"31.98\", \"beginAmount\": 1}, {\"price\": \"32.98\", \"beginAmount\": 2}], \"priceDisplayType\": \"skuPrice\", \"priceLabel\": \"\"}, \"activityModel\": {\"beforePro\": false}, \"marketScene\": \"default\", \"isVipPrice\": false, \"isBmPrice\": false, \"bigPromotion\": false, \"isPrivatePrice\": false, \"isPlusPrice\": false, \"unit\": \"件\", \"channel\": \"dsc\", \"bigPromotionInfo\": {\"bigPromotionCountdown\": -1, \"preheatTime\": -1, \"promotionResources\": {}, \"burstEndTime\": -1, \"bigPromotionStatus\": \"NONE\", \"burstBeginTime\": -1}, \"finalPriceModel\": {\"onHandPrice\": \"30.98\", \"onHandPriceNum\": 1, \"onHandPriceTypeText\": \"券后价\", \"showText\": \"1件券后价\"}}}, \"1081181309098\": {\"componentType\": \"@ali/tdmod-od-pc-offer-discount\", \"trackInfo\": {}, \"data\": {\"couponList\": [{\"couponType\": \"COUPON\", \"couponContent\": \"满20减1券\"}, {\"couponType\": \"CARD\", \"couponContent\": \"1件混批\"}], \"linkUrl\": \"https://cybert.m.1688.com/43ohz283.html?sceneName=chimera_16527\", \"pageName\": \"Page_GetCoupon\", \"couponInfoList\": [{\"type\": \"COUPON\", \"name\": \"优惠券\", \"displayType\": \"coupon\", \"extraInfo\": {\"uiType\": \"COUPON\"}, \"uiType\": \"COUPON\", \"summary\": \"满20元减1元\", \"buttonName\": \"领券\", \"promotionItems\": [{\"couponType\": 0, \"couponTypeName\": \"收藏有礼\", \"displayContent\": \"1\", \"showDiscountFee\": true, \"couponId\": 5761404607, \"sellerId\": 2215638340252, \"onlySupportMobile\": false, \"detail\": \"满20元减1元\", \"summary\": \"满20元减1元\", \"label\": \"满20减1券\", \"extendDetail\": \"\", \"availablePeriod\": \"有效期:2023.03.29 00:00:00-2026.01.01 23:59:59\", \"startTime\": \"Wed Mar 29 00:00:00 CST 2023\", \"canApply\": true, \"applied\": false, \"actionName\": \"立即领取\"}]}, {\"type\": \"MIX_WHOLESALE\", \"name\": \"混批\", \"displayType\": \"coupon\", \"extraInfo\": {\"uiType\": \"CARD\"}, \"uiType\": \"CARD\", \"summary\": \"本店部分商品满10元或1件可混批采购\", \"buttonName\": \"查看\", \"promotionItems\": [{\"detail\": \"本店部分商品满10元或1件可混批采购\", \"summary\": \"本店部分商品满10元或1件可混批采购\", \"label\": \"1件混批\", \"extendDetail\": \"\"}]}], \"buttonName\": \"领券\", \"bgColor\": \"#ff0e31\", \"offerId\": 710046693089, \"style\": {\"textColor\": \"#FF4000\", \"arrowsImg\": \"https://img.alicdn.com/tfs/TB19FQtP4D1gK0jSZFsXXbldVXa-26-44.png\"}}}, \"10811813013427\": {\"componentType\": \"@ali/tdmod-od-pc-warning-cert\", \"data\": {\"officialDocInfos\": [], \"isCautionOffer\": false, \"cautionText\": \"1688提醒您:\"}}, \"10811813012119\": {\"componentType\": \"@ali/tdmod-od-pc-offer-cross\", \"data\": {\"unitWeight\": 0}}, \"10811813041859\": {\"componentType\": \"@ali/tdmod-od-pc-offerdetail-shipmentCycle\"}, \"10811813011505\": {\"componentType\": \"@ali/tdmod-od-pc-activity-banner\", \"data\": {\"bannerImage\": \"\", \"bannerUrl\": \"\"}}}"
                }
            ],
            "businessType": "default",
            "canIgnoreConsignRelation": false,
            "channelType": "dsc",
            "componentType": "page",
            "detailModel": [
    
            ],
            "exposeInfo": {
                "exposeArgs": {
                    "channelType": "dsc",
                    "ipvId": "213e388417219663413288901ee1bf",
                    "isPlusMember": "false",
                    "isYanxuanOffer": "false",
                    "offerId": "710046693089",
                    "sceneType": "default",
                    "verticalType": "default"
                }
            },
            "filterModel": [
    
            ],
            "hasBigPromotion": false,
            "hasConsignReation": false,
            "hasPurcharseMark": false,
            "images": [
                {
                    "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01VY8OxK1DjSdT4ra33_!!2215638340252-0-cib.jpg",
                    "imageURI": "img/ibank/O1CN01VY8OxK1DjSdT4ra33_!!2215638340252-0-cib.jpg",
                    "searchImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01VY8OxK1DjSdT4ra33_!!2215638340252-0-cib.search.jpg",
                    "size220x220ImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01VY8OxK1DjSdT4ra33_!!2215638340252-0-cib.220x220.jpg",
                    "size310x310ImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01VY8OxK1DjSdT4ra33_!!2215638340252-0-cib.310x310.jpg",
                    "summImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01VY8OxK1DjSdT4ra33_!!2215638340252-0-cib.summ.jpg"
                },
                {
                    "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01GWsUGp1DjSdMyuMmL_!!2215638340252-0-cib.jpg",
                    "imageURI": "img/ibank/O1CN01GWsUGp1DjSdMyuMmL_!!2215638340252-0-cib.jpg",
                    "searchImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01GWsUGp1DjSdMyuMmL_!!2215638340252-0-cib.search.jpg",
                    "size220x220ImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01GWsUGp1DjSdMyuMmL_!!2215638340252-0-cib.220x220.jpg",
                    "size310x310ImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01GWsUGp1DjSdMyuMmL_!!2215638340252-0-cib.310x310.jpg",
                    "summImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01GWsUGp1DjSdMyuMmL_!!2215638340252-0-cib.summ.jpg"
                },
                {
                    "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01UJXiQZ1DjSdT4sNvG_!!2215638340252-0-cib.jpg",
                    "imageURI": "img/ibank/O1CN01UJXiQZ1DjSdT4sNvG_!!2215638340252-0-cib.jpg",
                    "searchImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01UJXiQZ1DjSdT4sNvG_!!2215638340252-0-cib.search.jpg",
                    "size220x220ImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01UJXiQZ1DjSdT4sNvG_!!2215638340252-0-cib.220x220.jpg",
                    "size310x310ImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01UJXiQZ1DjSdT4sNvG_!!2215638340252-0-cib.310x310.jpg",
                    "summImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01UJXiQZ1DjSdT4sNvG_!!2215638340252-0-cib.summ.jpg"
                },
                {
                    "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01IS7FQZ1DjSdMyvVR2_!!2215638340252-0-cib.jpg",
                    "imageURI": "img/ibank/O1CN01IS7FQZ1DjSdMyvVR2_!!2215638340252-0-cib.jpg",
                    "searchImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01IS7FQZ1DjSdMyvVR2_!!2215638340252-0-cib.search.jpg",
                    "size220x220ImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01IS7FQZ1DjSdMyvVR2_!!2215638340252-0-cib.220x220.jpg",
                    "size310x310ImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01IS7FQZ1DjSdMyvVR2_!!2215638340252-0-cib.310x310.jpg",
                    "summImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01IS7FQZ1DjSdMyvVR2_!!2215638340252-0-cib.summ.jpg"
                },
                {
                    "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01Fx2Lgm1Bs2pFyPU2Q_!!0-0-cib.jpg",
                    "imageURI": "img/ibank/O1CN01Fx2Lgm1Bs2pFyPU2Q_!!0-0-cib.jpg",
                    "searchImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01Fx2Lgm1Bs2pFyPU2Q_!!0-0-cib.search.jpg",
                    "size220x220ImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01Fx2Lgm1Bs2pFyPU2Q_!!0-0-cib.220x220.jpg",
                    "size310x310ImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01Fx2Lgm1Bs2pFyPU2Q_!!0-0-cib.310x310.jpg",
                    "summImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01Fx2Lgm1Bs2pFyPU2Q_!!0-0-cib.summ.jpg"
                },
                {
                    "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01o1FDg91DjSdR710UE_!!2215638340252-0-cib.jpg",
                    "imageURI": "img/ibank/O1CN01o1FDg91DjSdR710UE_!!2215638340252-0-cib.jpg",
                    "searchImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01o1FDg91DjSdR710UE_!!2215638340252-0-cib.search.jpg",
                    "size220x220ImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01o1FDg91DjSdR710UE_!!2215638340252-0-cib.220x220.jpg",
                    "size310x310ImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01o1FDg91DjSdR710UE_!!2215638340252-0-cib.310x310.jpg",
                    "summImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01o1FDg91DjSdR710UE_!!2215638340252-0-cib.summ.jpg"
                },
                {
                    "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01I5iG1t1DjSdJ1ryFk_!!2215638340252-0-cib.jpg",
                    "imageURI": "img/ibank/O1CN01I5iG1t1DjSdJ1ryFk_!!2215638340252-0-cib.jpg",
                    "searchImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01I5iG1t1DjSdJ1ryFk_!!2215638340252-0-cib.search.jpg",
                    "size220x220ImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01I5iG1t1DjSdJ1ryFk_!!2215638340252-0-cib.220x220.jpg",
                    "size310x310ImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01I5iG1t1DjSdJ1ryFk_!!2215638340252-0-cib.310x310.jpg",
                    "summImageURI": "https://cbu01.alicdn.com/img/ibank/O1CN01I5iG1t1DjSdJ1ryFk_!!2215638340252-0-cib.summ.jpg"
                }
            ],
            "isActHottimingOffer": false,
            "isPicPrivate": false,
            "isPricePrivate": false,
            "isSkuOffer": true,
            "isSourcePromotion": false,
            "marketScene": "default",
            "mixModel": {
                "isSupportMix": true,
                "mixAmount": 10,
                "mixNumber": 1,
                "mixOneForSale": true
            },
            "offerBaseInfo": {
                "buyerLoginId": 0,
                "buyerUserId": 0,
                "catId": 1048256,
                "offerId": 710046693089,
                "sellerLoginId": "广州依思可服装厂",
                "sellerMemberId": "b2b-2215638340252280b9",
                "sellerUserId": 2215638340252,
                "sellerWinportUrl": "https://shop6635296196660.1688.com",
                "shieldPcOfferDetail": false,
                "tradeTemplateId": "[0]",
                "wholeNetworkEvaluation": false
            },
            "operateDisplayStatus": "ORDER_NOW",
            "orderParamModel": {
                "orderParam": {
                    "addCartParam": {
                        "cartType": ""
                    },
                    "beginNum": 2,
                    "canBookedAmount": 47594,
                    "flow": "general",
                    "mixParam": {
                        "mixAmount": 10,
                        "mixBegin": 0,
                        "mixNum": 1,
                        "shopMixNum": 2147483647,
                        "supportMix": true
                    },
                    "saledCount": 3388,
                    "skuParam": {
                        "skuPriceType": "skuPrice",
                        "skuRangePrices": [
                            {
                                "beginAmount": "2",
                                "price": "31.98"
                            },
                            {
                                "beginAmount": "2",
                                "price": "32.98"
                            }
                        ]
                    }
                }
            },
            "qrCode": "https://m.1688.com/offer/710046693089.html?sk=order",
            "reserveData": [
    
            ],
            "shareModel": [
    
            ],
            "showOldOD": false,
            "skuModel": {
                "skuInfoMap": {
                    "上衣*2064&gt;L": {
                        "canBookCount": 8881,
                        "discountPrice": "32.98",
                        "isPromotionSku": false,
                        "price": "32.98",
                        "saleCount": 0,
                        "skuId": 5149904430048,
                        "specAttrs": "上衣*2064&gt;L",
                        "specId": "7b4d2c4f195be4546af99de69d6e12cc"
                    },
                    "上衣*2064&gt;M": {
                        "canBookCount": 6081,
                        "discountPrice": "32.98",
                        "isPromotionSku": false,
                        "price": "32.98",
                        "saleCount": 0,
                        "skuId": 5149904430046,
                        "specAttrs": "上衣*2064&gt;M",
                        "specId": "32d9603d4d0d16ef8af2f8867ad6d935"
                    },
                    "上衣*2064&gt;S": {
                        "canBookCount": 8341,
                        "discountPrice": "32.98",
                        "isPromotionSku": false,
                        "price": "32.98",
                        "saleCount": 0,
                        "skuId": 5149904430044,
                        "specAttrs": "上衣*2064&gt;S",
                        "specId": "f0b4ec80477d1198e9be1848b5ba39d7"
                    },
                    "短裙*2064&gt;L": {
                        "canBookCount": 9373,
                        "discountPrice": "31.98",
                        "isPromotionSku": false,
                        "price": "31.98",
                        "saleCount": 0,
                        "skuId": 5149904430049,
                        "specAttrs": "短裙*2064&gt;L",
                        "specId": "3c8c844cb6bcf2a8d690f999b38512e5"
                    },
                    "短裙*2064&gt;M": {
                        "canBookCount": 6256,
                        "discountPrice": "31.98",
                        "isPromotionSku": false,
                        "price": "31.98",
                        "saleCount": 0,
                        "skuId": 5149904430047,
                        "specAttrs": "短裙*2064&gt;M",
                        "specId": "39ffb6c0e549a523f9074cb9110e370c"
                    },
                    "短裙*2064&gt;S": {
                        "canBookCount": 8662,
                        "discountPrice": "31.98",
                        "isPromotionSku": false,
                        "price": "31.98",
                        "saleCount": 0,
                        "skuId": 5149904430045,
                        "specAttrs": "短裙*2064&gt;S",
                        "specId": "18880e7022b7b140602d4183260ab0a0"
                    }
                },
                "skuInfoMapOriginal": {
                    "上衣*2064&gt;L": {
                        "canBookCount": 8881,
                        "discountPrice": "32.98",
                        "isPromotionSku": false,
                        "price": "32.98",
                        "saleCount": 0,
                        "skuId": 5149904430048,
                        "specAttrs": "上衣*2064&gt;L",
                        "specId": "7b4d2c4f195be4546af99de69d6e12cc"
                    },
                    "上衣*2064&gt;M": {
                        "canBookCount": 6081,
                        "discountPrice": "32.98",
                        "isPromotionSku": false,
                        "price": "32.98",
                        "saleCount": 0,
                        "skuId": 5149904430046,
                        "specAttrs": "上衣*2064&gt;M",
                        "specId": "32d9603d4d0d16ef8af2f8867ad6d935"
                    },
                    "上衣*2064&gt;S": {
                        "canBookCount": 8341,
                        "discountPrice": "32.98",
                        "isPromotionSku": false,
                        "price": "32.98",
                        "saleCount": 0,
                        "skuId": 5149904430044,
                        "specAttrs": "上衣*2064&gt;S",
                        "specId": "f0b4ec80477d1198e9be1848b5ba39d7"
                    },
                    "短裙*2064&gt;L": {
                        "canBookCount": 9373,
                        "discountPrice": "31.98",
                        "isPromotionSku": false,
                        "price": "31.98",
                        "saleCount": 0,
                        "skuId": 5149904430049,
                        "specAttrs": "短裙*2064&gt;L",
                        "specId": "3c8c844cb6bcf2a8d690f999b38512e5"
                    },
                    "短裙*2064&gt;M": {
                        "canBookCount": 6256,
                        "discountPrice": "31.98",
                        "isPromotionSku": false,
                        "price": "31.98",
                        "saleCount": 0,
                        "skuId": 5149904430047,
                        "specAttrs": "短裙*2064&gt;M",
                        "specId": "39ffb6c0e549a523f9074cb9110e370c"
                    },
                    "短裙*2064&gt;S": {
                        "canBookCount": 8662,
                        "discountPrice": "31.98",
                        "isPromotionSku": false,
                        "price": "31.98",
                        "saleCount": 0,
                        "skuId": 5149904430045,
                        "specAttrs": "短裙*2064&gt;S",
                        "specId": "18880e7022b7b140602d4183260ab0a0"
                    }
                },
                "skuPriceScale": "31.98-32.98",
                "skuPriceScaleOriginal": "31.98-32.98",
                "skuProps": [
                    {
                        "fid": 3216,
                        "prop": "颜色",
                        "value": [
                            {
                                "imageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01I5iG1t1DjSdJ1ryFk_!!2215638340252-0-cib.jpg",
                                "name": "上衣*2064"
                            },
                            {
                                "imageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01o1FDg91DjSdR710UE_!!2215638340252-0-cib.jpg",
                                "name": "短裙*2064"
                            }
                        ]
                    },
                    {
                        "fid": 450,
                        "prop": "尺码",
                        "value": [
                            {
                                "name": "S"
                            },
                            {
                                "name": "M"
                            },
                            {
                                "name": "L"
                            }
                        ]
                    }
                ]
            },
            "supportPuhuo": true,
            "tempModel": {
                "companyName": "广州依思可服装有限公司",
                "defaultOfferImg": "",
                "offerId": 710046693089,
                "offerTitle": "小香风套装女2024年夏季新款高级感小个子网红炸街洋气减龄两件套",
                "offerUnit": "件",
                "postCategoryId": 1048256,
                "saledCount": 3388,
                "sellerLoginId": "广州依思可服装厂",
                "sellerMemberId": "b2b-2215638340252280b9",
                "sellerUserId": 2215638340252,
                "topCategoryId": 10166,
                "winportUrl": "https://winport.m.1688.com/page/index.html?memberId=b2b-2215638340252280b9"
            },
            "topBarModel": [
    
            ],
            "videos": [
    
            ],
            "_ddf": "ti",
            "format_check": "ok"
        },
        "error": "",
        "secache": "d6c55a806090d24aa194a1b43bff8fb6",
        "secache_time": 1721966342,
        "secache_date": "2024-07-26 11:59:02",
        "reason": "",
        "error_code": "0000",
        "cache": 0,
        "api_info": "today: max:15000 all[=++];expires:2031-01-01",
        "execution_time": "2.001",
        "server_time": "Beijing/2024-07-26 11:59:02",
        "client_ip": "127.0.0.1",
        "call_args": {
            "num_iid": "710046693089"
        },
        "api_type": "1688",
        "server_memory": "4.04MB",
        "last_id": false
    }
    异常示例
    {
      "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:31424016063142401606(微信同号)