產品簡介
🌟🌱 本賣場販售商品全素可食 🌱🌟
🌟賣場為單包販售,若需要10包裝成一袋請於訂單備註,否則就為散裝出貨🌟
🥜 本品含有堅果類成分,不適者請斟酌購買 🥜
🌍 旅途中想享用營養豐富的飲品嗎?展榮商號推出全新升級版的「30味元氣堅果飲隨身包」,讓你隨時隨地都能享用高品質飲品!
🌿採用了30種堅果和植物性成分,每一種成分都經過嚴格檢驗和製作而成。無添加糖分,不含防腐劑和其他化學添加物,健康且天然。
🏃♂️ 隨身包設計方便沖泡,無論工作、旅遊或健身,都能輕鬆享用這款營養豐富的飲品。提供豐富營養,維持體力、精神穩定,增強免疫力,保持健康活力!
🥤【商品品名:展榮商號-28味元氣堅果飲隨身包(無糖)】 🔺目前成分已升級為30味 🔺
🌾 成分:松子、腰果、核桃、胡桃、杏仁、南瓜子、杏仁果、夏威夷果、紅藜麥、白藜麥、黑藜麥、百果、百合、燕麥、黑芝麻、白芝麻、糙米、小麥、蕎麥、麥仁、高粱米、麥冬、玉米、雪蓮子、蓮子、芡實、淮山、茯苓、黑(糙)米、糯小米
🇹🇼 加工產地:台灣
⚖️ 規格重量:35g±10%
🌟 商品特色 :
🔹 原味呈現品質,篩選每一樣食材,經得起原味烘培的考驗。
🔹 製作流程自選材、篩選、清滌、烘培、包裝全由展榮商號本店操作完成,天然食材有獨特香味、美味可口,清爽不油膩。
🔹 無論獨享、朋友聚會都適合,搭配茶或咖啡,更是享受!
💚 這款飲品的優點: ✔️ 豐富的礦物質 ✔️ 超營養 ✔️ 膳食纖維 ✔️ 爽口美味 ✔️ 補充人體所需維生素 ✔️ 豐富的色胺酸、脂肪酸 ✔️ 新鮮、美味、無油耗味 ✔️ 營養價值非常豐富
🍹 試試這款美味健康的「30味元氣堅果飲隨身包」,讓你的旅途更加充滿活力和健康!💪
parseInt(review.rate)).reverse().slice()[0]
if (highestReview) {
var reviewData = {
"@context":"https://schema.org/",
"@type":"AggregateRating",
"itemReviewed":{
"@type":"Product",
"name" : "元氣堅果飲隨身包",
"review": [
{
"@type": "Review",
"reviewRating": {
"@type": "Rating",
"ratingValue": highestReview.rate
},
"author": {
"@type": "Person",
"name": highestReview.customer_name
},
"reviewBody": highestReview.comments
}
],
},
"ratingValue": average_rate,
"ratingCount": total_count,
"bestRating": "5",
"worstRating":"1",
};
var script = document.createElement('script');
script.type = "application/ld+json";
script.appendChild(document.createTextNode(JSON.stringify(reviewData)));
document.getElementsByTagName('head')[0].appendChild(script);
}
}
if(data.comments.length > 0){
var html = "";
data.comments.forEach(function(value){
var variant_name = value['variant_name'] ? '
'+value['variant_name']+'
' : '';
var is_verified = value['is_verified'] ? 'sr-app-is_verified' : '';
html += '';
})
}else{
var html = '
'+tt.no_comments+'
';
}
var comment_table = document.getElementById('es-sr-app-table');
comment_table.insertAdjacentHTML('beforeend', html);
updateAvgStarRating();
});
}
if (
document.readyState === "complete" ||
(document.readyState !== "loading" && !document.documentElement.doScroll)
) {
callback();
} else {
document.addEventListener("DOMContentLoaded", callback);
}
var rating_button = document.getElementById('es-sr-app-post-comment-btn'); // Check existence of rating button before add listener
if (rating_button) {
rating_button.addEventListener('click', function() {
document.getElementById('sr-comment-error').innerHTML = "";
if((document.getElementById('sr-comments').value).trim().length > 255){
document.getElementById('sr-comment-error').innerHTML = tt.msg_too_many_char;
return false;
}
if(document.getElementById('es-sr-input-rating').value == 0){
document.getElementById('sr-comment-error').innerHTML = tt.msg_rate_more;
return false;
}
if("" == 0){
document.getElementById('sr-comment-error').innerHTML = tt.msg_login;
return false;
}
var data = {
customer_id: "",
product_id: "9530833",
customer_name: "",
rate : document.getElementById('es-sr-input-rating').value,
comments : document.getElementById('sr-comments').value
};
document.getElementById('es-sr-app-post-comment-btn').className += " btn--loading";
fetch("/apps/rating/"+ '9530833' +"/rates", {
method: 'post',
headers: {
"Content-Type": "application/json; charset=utf-8",
},
body: JSON.stringify({
customer_id: "",
product_id: "9530833",
customer_name: "",
rate : document.getElementById('es-sr-input-rating').value,
comments : document.getElementById('sr-comments').value
})
})
.then(function(response) {
return response.json()
})
.then(function(data) {
if(data.success){
document.getElementById('sr-comment-error').innerHTML = "";
location.reload()
}
});
},
false);
}