Init
This commit is contained in:
50
Prefab.Web/wwwroot/template/sources/src/data/cart.json
Normal file
50
Prefab.Web/wwwroot/template/sources/src/data/cart.json
Normal file
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"products": [
|
||||
{
|
||||
"name": "Aluminum Chandelier",
|
||||
"category": "Chandeliers",
|
||||
"options": [
|
||||
{"title": "Color", "value": "Gray"},
|
||||
{"title": "Material", "value": "Aluminum"}
|
||||
],
|
||||
"image": "images/products/product1-1",
|
||||
"price": "$249.00",
|
||||
"quantity": 1,
|
||||
"total": "$249.00"
|
||||
},
|
||||
{
|
||||
"name": "Wooden Closet",
|
||||
"category": "Cabinets",
|
||||
"options": [
|
||||
{"title": "Color", "value": "Dark Brown"}
|
||||
],
|
||||
"image": "images/products/product3-1",
|
||||
"price": "$439.00",
|
||||
"quantity": 3,
|
||||
"total": "$1,317.00"
|
||||
},
|
||||
{
|
||||
"name": "Monero Chair",
|
||||
"category": "Wooden Chairs",
|
||||
"options": [
|
||||
{"title": "Color", "value": "Brown"}
|
||||
],
|
||||
"image": "images/products/product4-1",
|
||||
"price": "$17.00",
|
||||
"quantity": 2,
|
||||
"total": "$34.00"
|
||||
}
|
||||
],
|
||||
"totals": [
|
||||
{"title": "Subtotal", "value": "$2,459.00"},
|
||||
{"title": "Shipping", "value": "Free Shipping"},
|
||||
{"title": "Tax", "value": "$0.00"},
|
||||
{"title": "Total", "value": "$2,459.00"}
|
||||
],
|
||||
"checkout_totals": [
|
||||
{"title": "Subtotal", "value": "$2,459.00"},
|
||||
{"title": "Store Credit", "value": "$-20.00"},
|
||||
{"title": "Shipping", "value": "$25.00"},
|
||||
{"title": "Total", "value": "$2,464.00"}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user