-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaddress2.js
39 lines (32 loc) · 1.41 KB
/
address2.js
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
//update priceBlock-container
updatePriceblock();
function updatePriceblock() {
let mrp = JSON.parse(localStorage.getItem("MRP")) || [];
console.log("mrp: ", mrp);
let x = document.getElementById("priceDetail-value actual-price")
x.innerText = `₹ ${mrp}`
let discount = JSON.parse(localStorage.getItem("discount")) || [];
let y = document.getElementById("priceDetail-value discount-price teal-1") || [];
y.innerText = `₹ ${discount}`
let orderData = JSON.parse(localStorage.getItem("amount")) || [];
// if (orderData < 300) {
// orderData.innerHTML = "300"
// } else {
// orderData.innerText = `₹ ${orderData}`
// }
let z = document.getElementById("priceDetail-total")
z.innerText = `₹ ${orderData}`
}
let addDetails = JSON.parse(localStorage.getItem("addDetails"));
console.log("addDetails: ", addDetails);
document.querySelector("#name").innerHTML = addDetails.name;
document.querySelector("#add").innerHTML = addDetails.address;
document.querySelector("#loc").innerHTML = addDetails.locality;
document.querySelector("#city").innerHTML = addDetails.city;
document.querySelector("#state").innerHTML = addDetails.state;
document.querySelector("#pin").innerHTML = addDetails.pin;
document.querySelector("#mob").innerHTML = addDetails.mobile;
document.querySelector("#continue").addEventListener("click", payFun);
function payFun(event) {
window.location.href = "payment.html";
}