Commit d8dd6ce1 authored by 顾文旭's avatar 顾文旭

七牛图片获取

parent d45e13f5
...@@ -363,7 +363,8 @@ class MarketingService ...@@ -363,7 +363,8 @@ class MarketingService
$lists[$key]["life_account_name"] = $lifeAccountList[$currentLifeAccountId]["life_account_name"]; $lists[$key]["life_account_name"] = $lifeAccountList[$currentLifeAccountId]["life_account_name"];
} }
if (substr($priceData[$value["marketing_id"]]["pindan_pic"], 0, 2) === "SHQ") { if (empty($priceData[$value["marketing_id"]]["pindan_pic"]) ||
substr($priceData[$value["marketing_id"]]["pindan_pic"], 0, 2) === "SHQ") {
$picUrl = GoodsService::getUrlList($priceData[$value["marketing_id"]]["pindan_pic"]); $picUrl = GoodsService::getUrlList($priceData[$value["marketing_id"]]["pindan_pic"]);
} else { } else {
$picUrl = "https://pingouimg.jwshq.cn/" . $priceData[$value["marketing_id"]]["pindan_pic"]; $picUrl = "https://pingouimg.jwshq.cn/" . $priceData[$value["marketing_id"]]["pindan_pic"];
...@@ -1109,12 +1110,12 @@ class MarketingService ...@@ -1109,12 +1110,12 @@ class MarketingService
$marketingData["marketing_type"] = $marketingInfo["marketing_type"]; $marketingData["marketing_type"] = $marketingInfo["marketing_type"];
$marketingData["publish_life_account_id"] = $pindanMarketing["publish_life_account_id"]; $marketingData["publish_life_account_id"] = $pindanMarketing["publish_life_account_id"];
$marketingData["pindan_pic"] = $pindanMarketing["pindan_pic"]; $marketingData["pindan_pic"] = $pindanMarketing["pindan_pic"];
if (substr($marketingData["pindan_pic"], 0, 2) === "SHQ") { if (empty($priceData[$value["marketing_id"]]["pindan_pic"]) || substr($marketingData["pindan_pic"], 0, 2) === "SHQ") {
$picUrl = GoodsService::getUrlList($marketingData["pindan_pic"]); $picUrl = GoodsService::getUrlList($marketingData["pindan_pic"]);
} else { } else {
$picUrl = "https://pingouimg.jwshq.cn/" . $marketingData["pindan_pic"]; $picUrl = "https://pingouimg.jwshq.cn/" . $marketingData["pindan_pic"];
} }
$marketingData["pindan_pic_url"] = $picUrl; $marketingData["pindan_pic_url"] = $picUrl;
$marketingData["pindan_desc"] = $pindanMarketing["pindan_desc"]; $marketingData["pindan_desc"] = $pindanMarketing["pindan_desc"];
$marketingData["max_price"] = sprintf("%.2f", $pindanMarketing["max_price"] / 100); $marketingData["max_price"] = sprintf("%.2f", $pindanMarketing["max_price"] / 100);
$marketingData["min_price"] = sprintf("%.2f", $pindanMarketing["min_price"] / 100); $marketingData["min_price"] = sprintf("%.2f", $pindanMarketing["min_price"] / 100);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment