Phone & Computer Repair Calculator

Give your device repair shop a professional edge with an interactive pricing calculator. This template helps customers get instant estimates based on device type (iPhone, Samsung, MacBook, PC), repair needed (screen, battery, charging port, virus removal), parts quality options (aftermarket, OEM, refurbished), and express service availability. Build trust with transparent pricing and convert website visitors into walk-in customers.

Freelance & Business

Try the Calculator

Device Repair Cost Calculator
๐Ÿ“ฑ Device Information
 
๐Ÿ”ง Phone Repairs
โœจ Additional Services

๐Ÿ’ฐ Repair Estimate
$ 89.00
$ 0.00
+
$ 0.00
+
$ 0.00
๐Ÿงพ Summary
$ 89.00
Free diagnostics with repair. 30-day warranty on all repairs. Final price confirmed after inspection.
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
export function phoneComputerRepairCalculator(form: FormTs) {
// Base repair prices by device and repair type
const defaultPhonePrices = { 'screen': 69, 'battery': 39, 'charging': 45, 'speaker': 35, 'camera': 59, 'water': 69 };
const phonePrices: Record<string, Record<string, number>> = {
'iphone-standard': { 'screen': 89, 'battery': 49, 'charging': 59, 'speaker': 45, 'camera': 79, 'water': 89 },
'iphone-pro': { 'screen': 149, 'battery': 69, 'charging': 79, 'speaker': 55, 'camera': 129, 'water': 99 },
'iphone-promax': { 'screen': 199, 'battery': 79, 'charging': 89, 'speaker': 65, 'camera': 159, 'water': 109 },
'samsung-standard': { 'screen': 79, 'battery': 45, 'charging': 49, 'speaker': 39, 'camera': 69, 'water': 79 },
'samsung-premium': { 'screen': 159, 'battery': 65, 'charging': 69, 'speaker': 55, 'camera': 119, 'water': 99 },
'other-phone': { 'screen': 69, 'battery': 39, 'charging': 45, 'speaker': 35, 'camera': 59, 'water': 69 }
};
 
const defaultComputerPrices = { 'screen': 149, 'battery': 89, 'keyboard': 99, 'ssd': 79, 'ram': 49, 'virus': 79, 'os': 69, 'fan': 59 };
const computerPrices: Record<string, Record<string, number>> = {
'laptop': { 'screen': 149, 'battery': 89, 'keyboard': 99, 'ssd': 79, 'ram': 49, 'virus': 79, 'os': 69, 'fan': 59 },
'macbook': { 'screen': 299, 'battery': 149, 'keyboard': 199, 'ssd': 129, 'ram': 99, 'virus': 89, 'os': 99, 'fan': 89 },
'desktop': { 'screen': 0, 'battery': 0, 'keyboard': 29, 'ssd': 69, 'ram': 39, 'virus': 69, 'os': 59, 'fan': 39 }
};
 
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'Device Repair Cost Calculator',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Device Type Section
const deviceSection = form.addSubform('deviceType', { title: '๐Ÿ“ฑ Device Information' });
 
deviceSection.addRow(row => {
row.addRadioButton('deviceCategory', {
label: 'Device Category',
options: [
{ id: 'phone', name: 'Phone/Tablet' },
{ id: 'computer', name: 'Computer/Laptop' }
],
defaultValue: 'phone',
orientation: 'horizontal',
isRequired: true
});
});
 
deviceSection.addRow(row => {
row.addDropdown('phoneModel', {
label: 'Phone Model',
options: [
{ id: 'iphone-standard', name: 'iPhone (Standard models)' },
{ id: 'iphone-pro', name: 'iPhone Pro' },
{ id: 'iphone-promax', name: 'iPhone Pro Max / Plus' },
{ id: 'samsung-standard', name: 'Samsung Galaxy (Standard)' },
{ id: 'samsung-premium', name: 'Samsung Galaxy (Premium/Ultra)' },
{ id: 'other-phone', name: 'Other Phone/Tablet' }
],
defaultValue: 'iphone-standard',
isRequired: true,
isVisible: () => deviceSection.radioButton('deviceCategory')?.value() === 'phone'
}, '1fr');
row.addDropdown('computerModel', {
label: 'Computer Type',
options: [
{ id: 'laptop', name: 'Windows Laptop' },
{ id: 'macbook', name: 'MacBook' },
{ id: 'desktop', name: 'Desktop PC' }
],
defaultValue: 'laptop',
isRequired: true,
isVisible: () => deviceSection.radioButton('deviceCategory')?.value() === 'computer'
}, '1fr');
});
 
deviceSection.addRow(row => {
row.addDropdown('deviceAge', {
label: 'Device Age',
options: [
{ id: 'new', name: 'Less than 1 year' },
{ id: '1-2', name: '1-2 years' },
{ id: '3-4', name: '3-4 years' },
{ id: '5plus', name: '5+ years (parts may be limited)' }
],
defaultValue: '1-2',
tooltip: 'Older devices may have limited part availability'
}, '1fr');
});
 
// Phone Repairs Section
const phoneRepairsSection = form.addSubform('phoneRepairs', {
title: '๐Ÿ”ง Phone Repairs',
isVisible: () => deviceSection.radioButton('deviceCategory')?.value() === 'phone'
});
 
phoneRepairsSection.addRow(row => {
row.addCheckbox('screenRepair', {
label: 'Screen Replacement',
defaultValue: true,
tooltip: 'Cracked or non-responsive display'
}, '1fr');
row.addCheckbox('batteryRepair', {
label: 'Battery Replacement',
defaultValue: false,
tooltip: 'Poor battery life or swelling'
}, '1fr');
});
 
phoneRepairsSection.addRow(row => {
row.addCheckbox('chargingRepair', {
label: 'Charging Port Repair',
defaultValue: false,
tooltip: 'Not charging or loose connection'
}, '1fr');
row.addCheckbox('speakerRepair', {
label: 'Speaker/Microphone Repair',
defaultValue: false,
tooltip: 'Audio issues during calls or media'
}, '1fr');
});
 
phoneRepairsSection.addRow(row => {
row.addCheckbox('cameraRepair', {
label: 'Camera Repair',
defaultValue: false,
tooltip: 'Blurry photos or camera not working'
}, '1fr');
row.addCheckbox('waterDamage', {
label: 'Water Damage Treatment',
defaultValue: false,
tooltip: 'Cleaning and component replacement'
}, '1fr');
});
 
// Computer Repairs Section
const computerRepairsSection = form.addSubform('computerRepairs', {
title: '๐Ÿ’ป Computer Repairs',
isVisible: () => deviceSection.radioButton('deviceCategory')?.value() === 'computer'
});
 
computerRepairsSection.addRow(row => {
row.addCheckbox('compScreenRepair', {
label: 'Screen Replacement',
defaultValue: false,
tooltip: 'Cracked or damaged laptop display',
isVisible: () => deviceSection.dropdown('computerModel')?.value() !== 'desktop'
}, '1fr');
row.addCheckbox('compBatteryRepair', {
label: 'Battery Replacement',
defaultValue: false,
tooltip: 'Not holding charge',
isVisible: () => deviceSection.dropdown('computerModel')?.value() !== 'desktop'
}, '1fr');
});
 
computerRepairsSection.addRow(row => {
row.addCheckbox('keyboardRepair', {
label: 'Keyboard Repair/Replacement',
defaultValue: false,
tooltip: 'Keys not working or damaged keyboard'
}, '1fr');
row.addCheckbox('fanRepair', {
label: 'Fan/Cooling System',
defaultValue: false,
tooltip: 'Overheating or noisy fan'
}, '1fr');
});
 
computerRepairsSection.addRow(row => {
row.addCheckbox('ssdUpgrade', {
label: 'SSD Upgrade/Replacement',
defaultValue: false,
tooltip: 'Faster storage or failed drive'
}, '1fr');
row.addCheckbox('ramUpgrade', {
label: 'RAM Upgrade',
defaultValue: false,
tooltip: 'More memory for better performance'
}, '1fr');
});
 
computerRepairsSection.addRow(row => {
row.addCheckbox('virusRemoval', {
label: 'Virus/Malware Removal',
defaultValue: false,
tooltip: 'Deep scan and cleaning'
}, '1fr');
row.addCheckbox('osReinstall', {
label: 'OS Reinstallation',
defaultValue: false,
tooltip: 'Fresh system install with data backup'
}, '1fr');
});
 
// Additional Options
const optionsSection = form.addSubform('options', { title: 'โœจ Additional Services' });
 
optionsSection.addRow(row => {
row.addCheckbox('diagnostics', {
label: 'Full Diagnostics (+$25)',
defaultValue: false,
tooltip: 'Complete device inspection and report'
}, '1fr');
row.addCheckbox('dataBackup', {
label: 'Data Backup (+$35)',
defaultValue: false,
tooltip: 'Backup important files before repair'
}, '1fr');
});
 
optionsSection.addRow(row => {
row.addCheckbox('expressService', {
label: 'Express Service (+50%)',
defaultValue: false,
tooltip: 'Same-day or next-day repair'
}, '1fr');
row.addCheckbox('extendedWarranty', {
label: 'Extended Warranty (+$29)',
defaultValue: false,
tooltip: '90-day warranty on repairs (standard: 30 days)'
}, '1fr');
});
 
optionsSection.addRow(row => {
row.addDropdown('partsQuality', {
label: 'Parts Quality',
options: [
{ id: 'aftermarket', name: 'Quality Aftermarket' },
{ id: 'oem', name: 'OEM/Original (+25%)' },
{ id: 'refurbished', name: 'Certified Refurbished (-15%)' }
],
defaultValue: 'aftermarket',
tooltip: 'OEM parts come with manufacturer warranty'
}, '1fr');
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Price Summary Section
const summarySection = form.addSubform('summary', { title: '๐Ÿ’ฐ Repair Estimate', isCollapsible: false });
 
summarySection.addRow(row => {
row.addPriceDisplay('repairsTotal', {
label: 'Repairs',
computedValue: () => {
const deviceCategory = deviceSection.radioButton('deviceCategory')?.value() || 'phone';
let total = 0;
 
if (deviceCategory === 'phone') {
const model = deviceSection.dropdown('phoneModel')?.value() || 'iphone-standard';
const prices = phonePrices[model] || defaultPhonePrices;
 
if (phoneRepairsSection.checkbox('screenRepair')?.value()) total += prices['screen'];
if (phoneRepairsSection.checkbox('batteryRepair')?.value()) total += prices['battery'];
if (phoneRepairsSection.checkbox('chargingRepair')?.value()) total += prices['charging'];
if (phoneRepairsSection.checkbox('speakerRepair')?.value()) total += prices['speaker'];
if (phoneRepairsSection.checkbox('cameraRepair')?.value()) total += prices['camera'];
if (phoneRepairsSection.checkbox('waterDamage')?.value()) total += prices['water'];
} else {
const model = deviceSection.dropdown('computerModel')?.value() || 'laptop';
const prices = computerPrices[model] || defaultComputerPrices;
 
if (computerRepairsSection.checkbox('compScreenRepair')?.value()) total += prices['screen'];
if (computerRepairsSection.checkbox('compBatteryRepair')?.value()) total += prices['battery'];
if (computerRepairsSection.checkbox('keyboardRepair')?.value()) total += prices['keyboard'];
if (computerRepairsSection.checkbox('fanRepair')?.value()) total += prices['fan'];
if (computerRepairsSection.checkbox('ssdUpgrade')?.value()) total += prices['ssd'];
if (computerRepairsSection.checkbox('ramUpgrade')?.value()) total += prices['ram'];
if (computerRepairsSection.checkbox('virusRemoval')?.value()) total += prices['virus'];
if (computerRepairsSection.checkbox('osReinstall')?.value()) total += prices['os'];
}
 
return total;
},
variant: 'default'
}, '1fr');
row.addPriceDisplay('partsAdjustment', {
label: 'Parts Quality',
computedValue: () => {
const partsQuality = optionsSection.dropdown('partsQuality')?.value() || 'aftermarket';
const deviceCategory = deviceSection.radioButton('deviceCategory')?.value() || 'phone';
let repairsTotal = 0;
 
if (deviceCategory === 'phone') {
const model = deviceSection.dropdown('phoneModel')?.value() || 'iphone-standard';
const prices = phonePrices[model] || defaultPhonePrices;
 
if (phoneRepairsSection.checkbox('screenRepair')?.value()) repairsTotal += prices['screen'];
if (phoneRepairsSection.checkbox('batteryRepair')?.value()) repairsTotal += prices['battery'];
if (phoneRepairsSection.checkbox('chargingRepair')?.value()) repairsTotal += prices['charging'];
if (phoneRepairsSection.checkbox('speakerRepair')?.value()) repairsTotal += prices['speaker'];
if (phoneRepairsSection.checkbox('cameraRepair')?.value()) repairsTotal += prices['camera'];
if (phoneRepairsSection.checkbox('waterDamage')?.value()) repairsTotal += prices['water'];
} else {
const model = deviceSection.dropdown('computerModel')?.value() || 'laptop';
const prices = computerPrices[model] || defaultComputerPrices;
 
if (computerRepairsSection.checkbox('compScreenRepair')?.value()) repairsTotal += prices['screen'];
if (computerRepairsSection.checkbox('compBatteryRepair')?.value()) repairsTotal += prices['battery'];
if (computerRepairsSection.checkbox('keyboardRepair')?.value()) repairsTotal += prices['keyboard'];
if (computerRepairsSection.checkbox('fanRepair')?.value()) repairsTotal += prices['fan'];
if (computerRepairsSection.checkbox('ssdUpgrade')?.value()) repairsTotal += prices['ssd'];
if (computerRepairsSection.checkbox('ramUpgrade')?.value()) repairsTotal += prices['ram'];
if (computerRepairsSection.checkbox('virusRemoval')?.value()) repairsTotal += prices['virus'];
if (computerRepairsSection.checkbox('osReinstall')?.value()) repairsTotal += prices['os'];
}
 
if (partsQuality === 'oem') return Math.round(repairsTotal * 0.25);
if (partsQuality === 'refurbished') return Math.round(-repairsTotal * 0.15);
return 0;
},
variant: 'default',
prefix: ''
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('additionalServices', {
label: 'Additional Services',
computedValue: () => {
let total = 0;
if (optionsSection.checkbox('diagnostics')?.value()) total += 25;
if (optionsSection.checkbox('dataBackup')?.value()) total += 35;
if (optionsSection.checkbox('extendedWarranty')?.value()) total += 29;
return total;
},
variant: 'default',
prefix: '+'
}, '1fr');
row.addPriceDisplay('expressCharge', {
label: 'Express Service',
computedValue: () => {
if (!optionsSection.checkbox('expressService')?.value()) return 0;
 
const deviceCategory = deviceSection.radioButton('deviceCategory')?.value() || 'phone';
let repairsTotal = 0;
 
if (deviceCategory === 'phone') {
const model = deviceSection.dropdown('phoneModel')?.value() || 'iphone-standard';
const prices = phonePrices[model] || defaultPhonePrices;
 
if (phoneRepairsSection.checkbox('screenRepair')?.value()) repairsTotal += prices['screen'];
if (phoneRepairsSection.checkbox('batteryRepair')?.value()) repairsTotal += prices['battery'];
if (phoneRepairsSection.checkbox('chargingRepair')?.value()) repairsTotal += prices['charging'];
if (phoneRepairsSection.checkbox('speakerRepair')?.value()) repairsTotal += prices['speaker'];
if (phoneRepairsSection.checkbox('cameraRepair')?.value()) repairsTotal += prices['camera'];
if (phoneRepairsSection.checkbox('waterDamage')?.value()) repairsTotal += prices['water'];
} else {
const model = deviceSection.dropdown('computerModel')?.value() || 'laptop';
const prices = computerPrices[model] || defaultComputerPrices;
 
if (computerRepairsSection.checkbox('compScreenRepair')?.value()) repairsTotal += prices['screen'];
if (computerRepairsSection.checkbox('compBatteryRepair')?.value()) repairsTotal += prices['battery'];
if (computerRepairsSection.checkbox('keyboardRepair')?.value()) repairsTotal += prices['keyboard'];
if (computerRepairsSection.checkbox('fanRepair')?.value()) repairsTotal += prices['fan'];
if (computerRepairsSection.checkbox('ssdUpgrade')?.value()) repairsTotal += prices['ssd'];
if (computerRepairsSection.checkbox('ramUpgrade')?.value()) repairsTotal += prices['ram'];
if (computerRepairsSection.checkbox('virusRemoval')?.value()) repairsTotal += prices['virus'];
if (computerRepairsSection.checkbox('osReinstall')?.value()) repairsTotal += prices['os'];
}
 
return Math.round(repairsTotal * 0.5);
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
const finalSection = form.addSubform('final', {
title: '๐Ÿงพ Summary',
isCollapsible: false,
sticky: 'bottom'
});
 
finalSection.addRow(row => {
row.addPriceDisplay('totalPrice', {
label: 'Total Estimate',
computedValue: () => {
const deviceCategory = deviceSection.radioButton('deviceCategory')?.value() || 'phone';
const partsQuality = optionsSection.dropdown('partsQuality')?.value() || 'aftermarket';
let repairsTotal = 0;
 
if (deviceCategory === 'phone') {
const model = deviceSection.dropdown('phoneModel')?.value() || 'iphone-standard';
const prices = phonePrices[model] || defaultPhonePrices;
 
if (phoneRepairsSection.checkbox('screenRepair')?.value()) repairsTotal += prices['screen'];
if (phoneRepairsSection.checkbox('batteryRepair')?.value()) repairsTotal += prices['battery'];
if (phoneRepairsSection.checkbox('chargingRepair')?.value()) repairsTotal += prices['charging'];
if (phoneRepairsSection.checkbox('speakerRepair')?.value()) repairsTotal += prices['speaker'];
if (phoneRepairsSection.checkbox('cameraRepair')?.value()) repairsTotal += prices['camera'];
if (phoneRepairsSection.checkbox('waterDamage')?.value()) repairsTotal += prices['water'];
} else {
const model = deviceSection.dropdown('computerModel')?.value() || 'laptop';
const prices = computerPrices[model] || defaultComputerPrices;
 
if (computerRepairsSection.checkbox('compScreenRepair')?.value()) repairsTotal += prices['screen'];
if (computerRepairsSection.checkbox('compBatteryRepair')?.value()) repairsTotal += prices['battery'];
if (computerRepairsSection.checkbox('keyboardRepair')?.value()) repairsTotal += prices['keyboard'];
if (computerRepairsSection.checkbox('fanRepair')?.value()) repairsTotal += prices['fan'];
if (computerRepairsSection.checkbox('ssdUpgrade')?.value()) repairsTotal += prices['ssd'];
if (computerRepairsSection.checkbox('ramUpgrade')?.value()) repairsTotal += prices['ram'];
if (computerRepairsSection.checkbox('virusRemoval')?.value()) repairsTotal += prices['virus'];
if (computerRepairsSection.checkbox('osReinstall')?.value()) repairsTotal += prices['os'];
}
 
// Parts quality adjustment
if (partsQuality === 'oem') repairsTotal *= 1.25;
if (partsQuality === 'refurbished') repairsTotal *= 0.85;
 
// Express service
if (optionsSection.checkbox('expressService')?.value()) repairsTotal *= 1.5;
 
// Additional services
if (optionsSection.checkbox('diagnostics')?.value()) repairsTotal += 25;
if (optionsSection.checkbox('dataBackup')?.value()) repairsTotal += 35;
if (optionsSection.checkbox('extendedWarranty')?.value()) repairsTotal += 29;
 
return Math.round(repairsTotal);
},
variant: 'large'
}, '1fr');
});
 
finalSection.addRow(row => {
row.addTextPanel('disclaimer', {
computedValue: () => 'Free diagnostics with repair. 30-day warranty on all repairs. Final price confirmed after inspection.',
customStyles: { 'font-size': '0.85rem', 'color': '#64748b', 'font-style': 'italic' }
});
});
 
form.configureSubmitButton({
label: 'Book Repair'
});
}
 

Frequently Asked Questions

Can I set different prices for different phone models?

Yes, each phone category (iPhone, Samsung, etc.) has its own pricing structure. You can add specific models like iPhone 15 Pro or Galaxy S24 with individual pricing.

How do parts quality options work?

The calculator offers aftermarket, OEM, and refurbished parts with different price points. OEM parts add a premium while refurbished offers a discount. Customize these percentages to match your costs.

Can I add computer and laptop repairs?

Absolutely. The calculator includes Windows laptops, MacBooks, and desktop PCs with repairs like screen replacement, keyboard repair, SSD/RAM upgrades, and virus removal.

How does express service pricing work?

Express service adds a percentage (default 50%) to the repair cost for same-day or next-day service. You can adjust this fee based on your capacity.

Can I add my own repair types?

Yes. Add custom repairs like motherboard repair, data recovery, unlocking services, or specialized fixes. Each repair can have device-specific pricing.