-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
143 lines (106 loc) · 3.98 KB
/
main.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
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
function answer () {
let calculator = confirm ("Рассчитать стоимость сайта?")
if (calculator == true) {
select_item();
};
};
let firstNum = 0;
let secondNum = 0;
let thirdNum = 0;
answer();
function select_item () {
let typeSite = prompt ("Выберите пункт: Тип сайта, Дизайн, Адаптивность.")
if (typeSite == null){}
else if (typeSite === "Тип сайта"){
choice();
} else if (typeSite === "Дизайн") {
design();
} else if (typeSite === "Адаптивность") {
adaptation();
} else {
alert("Выбран Неверный пункт.");
select_item();
};
};
function choice (){
let a = prompt ("Сайт-визитка, Корпоративный, Лэндинг.")
if (a == null){}
else if (a === "Сайт-визитка"){
firstNum = 1;
} else if (a === "Корпоративный"){
firstNum = 2;
} else if (a === "Лэндинг"){
firstNum = 3;
} else {
alert("Выбран Неверный пункт.")
choice();
};
if ((firstNum !=0 && (secondNum !=0 || thirdNum !=0))){
secondChecking();
} else {
alert("Выбраны не все пункты");
select_item();
}
return firstNum;
};
function design (){
let a = prompt ("Разработка, Макет, Шаблон.")
if (a == null){}
else if (a === "Разработка"){
secondNum = 1;
} else if (a === "Макет"){
secondNum = 2;
} else if (a === "Шаблон"){
secondNum = 3;
} else {
alert("Выбран Неверный пункт.")
design();
};
if ((secondNum !=0 && (firstNum !=0 || thirdNum !=0))){
secondChecking();
} else {
alert("Выбраны не все пункты");
select_item();
}
return secondNum;
};
function adaptation (){
let a = prompt ("Резиновый, Адаптивный, PP.")
if (a == null){}
else if (a === "Резиновый"){
thirdNum = 1;
} else if (a === "Адаптивный"){
thirdNum = 2;
} else if (a === "PP"){
thirdNum = 3;
} else {
alert("Выбран Неверный пункт.")
adaptation();
};
if ((thirdNum !=0 && (firstNum !=0 || secondNum !=0))){
secondChecking();
} else {
alert("Выбраны не все пункты");
select_item();
}
return thirdNum;
};
function secondChecking (){
if ((firstNum !=0) && (secondNum !=0) && (thirdNum !=0)){
checking();
} else {
alert ("Выбраны не все пункты")
select_item();
}
}
function checking (){
let all;
all = firstNum + secondNum + thirdNum;
alert (all + "Стоимость сайта.");
let checkAgain = confirm ("Рассчитать стоимость сайта ещё раз?")
if (checkAgain == null){}
if (checkAgain != true){
} else {
answer();
}
}