Blame view

src/pages/Parent/parents.vue 40.2 KB
813e55a79   Neeraj Sharma   implement parents...
1
  <template>
68d742034   Neeraj Sharma   implement new des...
2
3
4
5
6
    <v-container fluid class="body-color">
      <v-dialog v-model="editParentDilaog" max-width="600px" scrollable>
        <v-card flat class="card-style pa-2" dark>
          <v-layout>
            <v-flex xs12>
688f289c3   Shikha Mishra   minor changes
7
              <label class="title text-xs-center">Edit Parents Details</label>
68d742034   Neeraj Sharma   implement new des...
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
              <v-icon size="24" class="right" @click="editParentDilaog = false">cancel</v-icon>
            </v-flex>
          </v-layout>
          <v-card-text class="hidden-xs-only hidden-sm-only">
            <v-form ref="editParentForm" v-model="validEditParent" lazy-validation>
              <v-flex xs12>
                <v-layout>
                  <v-flex xs3 sm4 class="pt-4 subheading">
                    <label class="right">Email ID:</label>
                  </v-flex>
                  <v-flex xs8 sm6 class="ml-3">
                    <v-text-field
                      placeholder="fill your email"
                      v-model="editedItem.email"
                      type="text"
                      name="email"
                      required
                    ></v-text-field>
                  </v-flex>
                </v-layout>
              </v-flex>
              <v-flex xs12>
                <v-layout>
                  <v-flex xs3 sm4 class="pt-4 subheading">
                    <label class="right">Father Name:</label>
                  </v-flex>
                  <v-flex xs8 sm6 class="ml-3">
                    <v-text-field
                      v-model="editedItem.fatherName"
                      placeholder="fill your father Name"
                      required
                    ></v-text-field>
                  </v-flex>
                </v-layout>
              </v-flex>
              <v-flex xs12>
                <v-layout>
                  <v-flex xs3 sm4 class="pt-4 subheading">
                    <label class="right">Father Cell No:</label>
                  </v-flex>
                  <v-flex xs8 sm6 class="ml-3">
                    <v-text-field
                      v-model="editedItem.fatherCellNo"
                      placeholder="fill your father Cell Number"
                      :rules="editFatherNoRule"
                      type="number"
                      required
                    ></v-text-field>
                  </v-flex>
                </v-layout>
              </v-flex>
              <v-flex xs12>
                <v-layout>
                  <v-flex xs3 sm4 class="pt-4 subheading">
                    <label class="right">Father Profession:</label>
                  </v-flex>
                  <v-flex xs8 sm6 class="ml-3">
                    <v-text-field
                      v-model="editedItem.fatherProfession"
                      placeholder="fill your father Profession"
                      required
                    ></v-text-field>
                  </v-flex>
                </v-layout>
              </v-flex>
              <v-flex xs12>
                <v-layout>
                  <v-flex xs3 sm4 class="pt-4 subheading">
                    <label class="right">Mother Name:</label>
                  </v-flex>
                  <v-flex xs8 sm6 class="ml-3">
                    <v-text-field
                      v-model="editedItem.motherName"
                      placeholder="fill your Mother Name"
                      type="text"
                      required
                    ></v-text-field>
                  </v-flex>
                </v-layout>
              </v-flex>
              <v-flex xs12>
                <v-layout>
                  <v-flex xs3 sm4 class="pt-4 subheading">
                    <label class="right">Mother Cell No:</label>
                  </v-flex>
                  <v-flex xs8 sm6 class="ml-3">
                    <v-text-field
                      v-model="editedItem.motherCellNo"
                      placeholder="fill your  Mother Cell Number"
                      type="number"
                      required
                    ></v-text-field>
                  </v-flex>
                </v-layout>
              </v-flex>
              <v-flex xs12>
                <v-layout>
                  <v-flex xs3 sm4 class="pt-4 subheading">
                    <label class="right">Mother Profession:</label>
                  </v-flex>
                  <v-flex xs8 sm6 class="ml-3">
                    <v-text-field
                      v-model="editedItem.motherProfession"
                      placeholder="fill your Mother Profession"
                      type="text"
                      required
                    ></v-text-field>
                  </v-flex>
                </v-layout>
11797ea5a   Shikha Mishra   added password field
117
118
119
120
121
122
                <v-layout>
                  <v-flex xs4 class="pt-4 subheading">
                    <label class="right">Password:</label>
                  </v-flex>
                  <v-flex xs8 class="ml-3">
                    <v-text-field
229463bd5   Neeraj Sharma   implement design ...
123
124
125
                      v-model="editedItem.password"
                      placeholder="Enter Password"
                      type="text"
11797ea5a   Shikha Mishra   added password field
126
127
128
129
                      required
                    ></v-text-field>
                  </v-flex>
                </v-layout>
68d742034   Neeraj Sharma   implement new des...
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
              </v-flex>
              <v-layout>
                <v-flex xs12 sm12>
                  <v-card-actions>
                    <v-spacer></v-spacer>
                    <v-btn round dark @click="save" class="add-button">Save</v-btn>
                    <v-spacer></v-spacer>
                  </v-card-actions>
                </v-flex>
              </v-layout>
            </v-form>
          </v-card-text>
          <v-card-text style="height: 600px;" class="hidden-lg-only hidden-xl-only hidden-md-only">
            <v-flex xs12>
              <v-layout wrap>
                <v-flex xs12 class="pt-4 subheading">
                  <label>Email ID:</label>
                </v-flex>
                <v-flex xs12>
                  <v-text-field
                    placeholder="fill your email"
                    v-model="editedItem.email"
                    type="text"
                    name="email"
                    required
                  ></v-text-field>
                </v-flex>
              </v-layout>
            </v-flex>
            <v-flex xs12>
              <v-layout wrap>
                <v-flex xs12 class="pt-4 subheading">
                  <label>Father Name:</label>
                </v-flex>
                <v-flex xs12>
                  <v-text-field
                    v-model="editedItem.fatherName"
                    placeholder="fill your father Name"
                    required
                  ></v-text-field>
                </v-flex>
              </v-layout>
            </v-flex>
            <v-flex xs12>
              <v-layout wrap>
                <v-flex xs12 class="pt-4 subheading">
                  <label>Father Cell No:</label>
                </v-flex>
                <v-flex xs12>
                  <v-text-field
                    v-model="editedItem.fatherCellNo"
                    placeholder="fill your father Cell Number"
                    type="number"
                    required
                  ></v-text-field>
                </v-flex>
              </v-layout>
            </v-flex>
            <v-flex xs12>
              <v-layout wrap>
                <v-flex xs12 class="pt-4 subheading">
                  <label>Father Profession:</label>
                </v-flex>
                <v-flex xs12>
                  <v-text-field
                    v-model="editedItem.fatherProfession"
                    placeholder="fill your father Profession"
                    required
                  ></v-text-field>
                </v-flex>
              </v-layout>
            </v-flex>
            <v-flex xs12>
              <v-layout wrap>
                <v-flex xs12 class="pt-4 subheading">
                  <label>Mother Name:</label>
                </v-flex>
                <v-flex xs12>
                  <v-text-field
                    v-model="editedItem.motherName"
                    placeholder="fill your Mother Name"
                    type="text"
                    required
                  ></v-text-field>
                </v-flex>
              </v-layout>
            </v-flex>
            <v-flex xs12>
              <v-layout wrap>
                <v-flex xs12 class="pt-4 subheading">
                  <label>Mother Cell No:</label>
                </v-flex>
                <v-flex xs12>
                  <v-text-field
                    v-model="editedItem.motherCellNo"
                    placeholder="fill your  Mother Cell Number"
                    type="number"
                    required
                  ></v-text-field>
                </v-flex>
              </v-layout>
            </v-flex>
            <v-flex xs12>
              <v-layout wrap>
                <v-flex xs12 class="pt-4 subheading">
                  <label>Mother Profession:</label>
                </v-flex>
                <v-flex xs12>
                  <v-text-field
                    v-model="editedItem.motherProfession"
                    placeholder="fill your Mother Profession"
                    type="text"
                    required
                  ></v-text-field>
                </v-flex>
11797ea5a   Shikha Mishra   added password field
245
246
247
248
249
250
251
252
253
254
255
                <v-flex xs12 class="pt-4 subheading">
                  <label>Password:</label>
                </v-flex>
                <v-flex xs12>
                  <v-text-field
                    v-model="editedItem.password"
                    placeholder="Enter Password"
                    type="text"
                    required
                  ></v-text-field>
                </v-flex>
68d742034   Neeraj Sharma   implement new des...
256
257
258
259
260
261
262
263
264
265
266
267
268
269
              </v-layout>
            </v-flex>
            <v-layout>
              <v-flex xs12 sm12>
                <v-card-actions>
                  <v-spacer></v-spacer>
                  <v-btn round dark @click="save" class="add-button">Save</v-btn>
                  <v-spacer></v-spacer>
                </v-card-actions>
              </v-flex>
            </v-layout>
          </v-card-text>
        </v-card>
      </v-dialog>
813e55a79   Neeraj Sharma   implement parents...
270

cb844617e   Shikha Mishra   Added functionali...
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
      <!-- ****** RESET Parents MPIN ******  -->
      <v-dialog v-model="resetParentMpin" max-width="500px" scrollable>
        <v-card class="card-style pa-2" dark>
          <v-layout>
            <v-flex xs12>
              <label class="title text-xs-center">Reset Mpin</label>
              <v-icon size="24" class="right" @click="resetParentMpin = false">cancel</v-icon>
            </v-flex>
          </v-layout>
          <v-card-text class="hidden-xs-only hidden-sm-only">
            <v-form ref="resetParentMpinForm" v-model="validParentMpin" lazy-validation>
              <v-flex xs12>
                <v-layout>
                  <v-flex xs3 sm4 class="pt-4 subheading">
                    <label class="right">Change Mpin:</label>
                  </v-flex>
                  <v-flex xs8 sm6 class="ml-3">
                    <v-text-field
                      placeholder="change mpin"
                      :rules="mPinRules"
                      v-model="editMpin.mPin"
                      type="number"
                      counter="4"
                      required
                    ></v-text-field>
                  </v-flex>
                </v-layout>
              </v-flex>
            </v-form>
            <v-layout>
              <v-flex xs12 sm12>
                <v-card-actions>
                  <v-spacer></v-spacer>
                  <v-btn round dark @click="resetMpin" class="add-button">Reset</v-btn>
                  <v-spacer></v-spacer>
                </v-card-actions>
              </v-flex>
            </v-layout>
          </v-card-text>
        </v-card>
058c4a6cf   Shikha Mishra   Improve the funct...
311
      </v-dialog>
cb844617e   Shikha Mishra   Added functionali...
312

68d742034   Neeraj Sharma   implement new des...
313
      <!-- ****** PROFILE VIEW Parents DEATILS ******  -->
813e55a79   Neeraj Sharma   implement parents...
314

68d742034   Neeraj Sharma   implement new des...
315
316
317
318
      <v-dialog v-model="profileParentDialog" max-width="500px" scrollable>
        <v-card class="card-style pa-2" dark>
          <v-layout>
            <v-flex xs12>
688f289c3   Shikha Mishra   minor changes
319
              <label class="title text-xs-center">View Parent Details</label>
68d742034   Neeraj Sharma   implement new des...
320
321
322
              <v-icon size="24" class="right" @click="profileParentDialog = false">cancel</v-icon>
            </v-flex>
          </v-layout>
710438de6   Shikha Mishra   added teacher mod...
323
324
325
326
327
328
          <v-flex align-center justify-center layout text-xs-center class="mt-3">
            <v-avatar size="100px">
              <img src="/static/icon/user.png" v-if="!editedItem.profilePicUrl" />
              <img :src="editedItem.profilePicUrl" v-else-if="editedItem.profilePicUrl" />
            </v-avatar>
          </v-flex>
68d742034   Neeraj Sharma   implement new des...
329
330
331
332
333
          <v-container grid-list-md>
            <v-layout wrap>
              <v-flex xs12>
                <v-layout>
                  <v-flex xs12 sm12>
4efdca564   Neeraj Sharma   solve bugs parent...
334
                    <v-layout>
68d742034   Neeraj Sharma   implement new des...
335
336
337
338
                      <v-flex xs6>
                        <h5 class="right my-1">
                          <b>Email:</b>
                        </h5>
4efdca564   Neeraj Sharma   solve bugs parent...
339
                      </v-flex>
68d742034   Neeraj Sharma   implement new des...
340
341
                      <v-flex xs6>
                        <h5 class="my-1">{{ editedItem.email }}</h5>
4efdca564   Neeraj Sharma   solve bugs parent...
342
343
344
                      </v-flex>
                    </v-layout>
                  </v-flex>
68d742034   Neeraj Sharma   implement new des...
345
346
                </v-layout>
                <v-layout>
4efdca564   Neeraj Sharma   solve bugs parent...
347
348
                  <v-flex xs12>
                    <v-layout>
68d742034   Neeraj Sharma   implement new des...
349
350
351
352
353
354
                      <v-flex xs6>
                        <b>
                          <h5 class="right my-1">
                            <b>Fahter Name:</b>
                          </h5>
                        </b>
4efdca564   Neeraj Sharma   solve bugs parent...
355
                      </v-flex>
68d742034   Neeraj Sharma   implement new des...
356
357
                      <v-flex xs6>
                        <h5 class="my-1">{{ editedItem.fatherName }}</h5>
4efdca564   Neeraj Sharma   solve bugs parent...
358
359
360
                      </v-flex>
                    </v-layout>
                  </v-flex>
68d742034   Neeraj Sharma   implement new des...
361
362
                </v-layout>
                <v-layout>
4efdca564   Neeraj Sharma   solve bugs parent...
363
364
                  <v-flex xs12>
                    <v-layout>
68d742034   Neeraj Sharma   implement new des...
365
366
367
368
369
370
                      <v-flex xs6>
                        <b>
                          <h5 class="right my-1">
                            <b>Mother Name:</b>
                          </h5>
                        </b>
4efdca564   Neeraj Sharma   solve bugs parent...
371
                      </v-flex>
68d742034   Neeraj Sharma   implement new des...
372
373
                      <v-flex xs6>
                        <h5 class="my-1">{{ editedItem.motherName }}</h5>
4efdca564   Neeraj Sharma   solve bugs parent...
374
375
376
                      </v-flex>
                    </v-layout>
                  </v-flex>
68d742034   Neeraj Sharma   implement new des...
377
378
                </v-layout>
                <v-layout>
4efdca564   Neeraj Sharma   solve bugs parent...
379
380
                  <v-flex xs12>
                    <v-layout>
68d742034   Neeraj Sharma   implement new des...
381
382
383
384
385
386
                      <v-flex sm6 xs6>
                        <b>
                          <h5 class="right my-1">
                            <b>Father Cell No:</b>
                          </h5>
                        </b>
4efdca564   Neeraj Sharma   solve bugs parent...
387
                      </v-flex>
68d742034   Neeraj Sharma   implement new des...
388
389
                      <v-flex sm6 xs6>
                        <h5 class="my-1">{{ editedItem.fatherCellNo }}</h5>
4efdca564   Neeraj Sharma   solve bugs parent...
390
391
392
                      </v-flex>
                    </v-layout>
                  </v-flex>
68d742034   Neeraj Sharma   implement new des...
393
394
                </v-layout>
                <v-layout>
4efdca564   Neeraj Sharma   solve bugs parent...
395
396
                  <v-flex xs12>
                    <v-layout>
68d742034   Neeraj Sharma   implement new des...
397
398
399
400
401
402
                      <v-flex xs6>
                        <b>
                          <h5 class="right my-1">
                            <b>Mother Cell No:</b>
                          </h5>
                        </b>
4efdca564   Neeraj Sharma   solve bugs parent...
403
                      </v-flex>
68d742034   Neeraj Sharma   implement new des...
404
405
                      <v-flex xs6>
                        <h5 class="my-1">{{ editedItem.motherCellNo }}</h5>
4efdca564   Neeraj Sharma   solve bugs parent...
406
407
408
                      </v-flex>
                    </v-layout>
                  </v-flex>
68d742034   Neeraj Sharma   implement new des...
409
410
                </v-layout>
                <v-layout>
4efdca564   Neeraj Sharma   solve bugs parent...
411
412
                  <v-flex xs12>
                    <v-layout>
68d742034   Neeraj Sharma   implement new des...
413
414
415
416
417
418
419
420
421
                      <v-flex xs6>
                        <b>
                          <h5 class="right my-1 hidden-lg-only hidden-xl-only hidden-md-only">
                            <b>FatherProfession:</b>
                          </h5>
                          <h5 class="right my-1 hidden-sm-only hidden-xs-only">
                            <b>Father Profession:</b>
                          </h5>
                        </b>
4efdca564   Neeraj Sharma   solve bugs parent...
422
                      </v-flex>
68d742034   Neeraj Sharma   implement new des...
423
424
                      <v-flex xs6>
                        <h5 class="my-1">{{ editedItem.fatherProfession }}</h5>
4efdca564   Neeraj Sharma   solve bugs parent...
425
426
427
                      </v-flex>
                    </v-layout>
                  </v-flex>
68d742034   Neeraj Sharma   implement new des...
428
429
                </v-layout>
                <v-layout>
4efdca564   Neeraj Sharma   solve bugs parent...
430
431
                  <v-flex xs12>
                    <v-layout>
68d742034   Neeraj Sharma   implement new des...
432
433
434
435
436
437
438
439
440
                      <v-flex xs6>
                        <b>
                          <h5 class="right my-1 hidden-lg-only hidden-xl-only hidden-md-only">
                            <b>MotherProfession:</b>
                          </h5>
                          <h5 class="right my-1 hidden-sm-only hidden-xs-only">
                            <b>Mother Profession:</b>
                          </h5>
                        </b>
4efdca564   Neeraj Sharma   solve bugs parent...
441
                      </v-flex>
68d742034   Neeraj Sharma   implement new des...
442
443
                      <v-flex xs6>
                        <h5 class="my-1">{{ editedItem.motherProfession }}</h5>
4efdca564   Neeraj Sharma   solve bugs parent...
444
445
                      </v-flex>
                    </v-layout>
688f289c3   Shikha Mishra   minor changes
446
                    <!-- <v-layout>
11797ea5a   Shikha Mishra   added password field
447
448
449
450
451
452
453
454
455
456
457
458
459
                      <v-flex xs6>
                        <b>
                          <h5 class="right my-1 hidden-lg-only hidden-xl-only hidden-md-only">
                            <b>Password:</b>
                          </h5>
                          <h5 class="right my-1 hidden-sm-only hidden-xs-only">
                            <b>Password:</b>
                          </h5>
                        </b>
                      </v-flex>
                      <v-flex xs6>
                        <h5 class="my-1">{{ editedItem.password }}</h5>
                      </v-flex>
710438de6   Shikha Mishra   added teacher mod...
460
                    </v-layout>-->
11797ea5a   Shikha Mishra   added password field
461
                  </v-flex>
a910d5d2a   Neeraj Sharma   responsive design...
462
                </v-layout>
68d742034   Neeraj Sharma   implement new des...
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
              </v-flex>
            </v-layout>
          </v-container>
        </v-card>
      </v-dialog>
      <!-- ****** EXISTING-USERS Parents TABLE ****** -->
      <v-toolbar color="transparent" flat>
        <v-btn
          fab
          dark
          class="open-dialog-button hidden-xl-only hidden-md-only hidden-lg-only"
          small
          @click="addParentDialog = true"
        >
          <v-icon dark>add</v-icon>
        </v-btn>
        <v-btn
710438de6   Shikha Mishra   added teacher mod...
480
          v-if="role != 'TEACHER' "
68d742034   Neeraj Sharma   implement new des...
481
482
483
484
485
486
487
488
489
490
491
          round
          class="open-dialog-button hidden-sm-only hidden-xs-only"
          dark
          @click="addParentDialog = true"
        >
          <v-icon class="white--text pr-1" size="20">add</v-icon>Add Parent
        </v-btn>
        <v-spacer></v-spacer>
        <v-card-title class="body-1" v-show="show">
          <v-btn icon large flat @click="displaySearch">
            <v-avatar size="27">
aa310d61a   Shikha Mishra   added functionali...
492
              <img src="/static/icon/search.png" alt="icon" />
68d742034   Neeraj Sharma   implement new des...
493
494
495
            </v-avatar>
          </v-btn>
        </v-card-title>
612b79bb4   Amber Dev   made serch auto f...
496
        <v-flex xs8 sm8 md2 lg2 v-if="showSearch">
68d742034   Neeraj Sharma   implement new des...
497
498
499
500
501
502
          <v-layout>
            <v-text-field
              v-model="search"
              label="Search"
              prepend-inner-icon="search"
              color="primary"
612b79bb4   Amber Dev   made serch auto f...
503
504
              ref="searchField"
              autofocus
68d742034   Neeraj Sharma   implement new des...
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
              style="transition: 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); !important"
            ></v-text-field>
            <v-icon @click="closeSearch" color="error">close</v-icon>
          </v-layout>
        </v-flex>
      </v-toolbar>
      <v-data-table
        :headers="headers"
        :items="parentsList"
        :pagination.sync="pagination"
        :search="search"
      >
        <template slot="items" slot-scope="props">
          <tr class="tr">
            <td class="text-xs-center td td-row">{{ props.index + 1}}</td>
            <td class="text-xs-center td td-row">{{ props.item.email }}</td>
            <td class="text-xs-center td td-row">{{ props.item.fatherName }}</td>
            <td class="text-xs-center td td-row">{{ props.item.fatherCellNo }}</td>
            <td class="text-xs-center td td-row">{{ props.item.motherName }}</td>
            <td class="text-xs-center td td-row">{{ props.item.motherCellNo }}</td>
            <td class="text-xs-center td td-row">
              <span>
                <v-tooltip top>
                  <img
                    slot="activator"
                    style="cursor:pointer; width:25px; height:25px; "
                    class="mr-3"
                    @click="profile(props.item)"
aa310d61a   Shikha Mishra   added functionali...
533
                    src="/static/icon/view.png"
68d742034   Neeraj Sharma   implement new des...
534
535
536
                  />
                  <span>View</span>
                </v-tooltip>
710438de6   Shikha Mishra   added teacher mod...
537
                <v-tooltip top v-if="role != 'TEACHER' ">
68d742034   Neeraj Sharma   implement new des...
538
539
540
541
                  <img
                    slot="activator"
                    style="cursor:pointer; width:20px; height:18px; "
                    @click="editItem(props.item)"
aa310d61a   Shikha Mishra   added functionali...
542
                    src="/static/icon/edit.png"
68d742034   Neeraj Sharma   implement new des...
543
544
545
546
                    class="mr-3"
                  />
                  <span>Edit</span>
                </v-tooltip>
058c4a6cf   Shikha Mishra   Improve the funct...
547
548
549
550
                <span v-if="role === 'ADMIN' ">
                  <i
                    class="material-icons md-18"
                    style="cursor:pointer; width:20px; height:18px;"
cb844617e   Shikha Mishra   Added functionali...
551
552
553
                    @click="resetParentMPIN(props.item)"
                  >vpn_key</i>
                </span>
68d742034   Neeraj Sharma   implement new des...
554
555
556
557
558
559
560
561
562
563
564
              </span>
            </td>
          </tr>
        </template>
        <v-alert
          slot="no-results"
          :value="true"
          color="error"
          icon="warning"
        >Your search for "{{ search }}" found no results.</v-alert>
      </v-data-table>
f4df757fe   Neeraj Sharma   responsive vie in...
565

7efe02762   Amber Dev   made forms reset
566
      <!-- ******DIALOG BOX -  ADD PARENTS DETAILS****** -->
68d742034   Neeraj Sharma   implement new des...
567
568
569
570
571
      <v-dialog v-model="addParentDialog" max-width="1100px">
        <v-card flat class="card-style pa-2" dark>
          <v-layout>
            <v-flex xs12>
              <label class="title text-xs-center">Add Parent</label>
7efe02762   Amber Dev   made forms reset
572
              <v-icon size="24" class="right" @click="$refs.parentForm.reset();addParentDialog = false">cancel</v-icon>
68d742034   Neeraj Sharma   implement new des...
573
574
575
576
577
578
579
            </v-flex>
          </v-layout>
          <v-container fluid fill-height>
            <v-layout align-center>
              <v-flex xs12 sm12>
                <v-form ref="parentForm" v-model="valid" lazy-validation>
                  <v-container fluid class="hidden-xs-only hidden-sm-only">
813e55a79   Neeraj Sharma   implement parents...
580
                    <v-layout>
68d742034   Neeraj Sharma   implement new des...
581
                      <v-flex xs12 sm6>
813e55a79   Neeraj Sharma   implement parents...
582
                        <v-layout>
68d742034   Neeraj Sharma   implement new des...
583
584
                          <v-flex xs4 class="pt-4 subheading">
                            <label class="right">Father Cell No:</label>
813e55a79   Neeraj Sharma   implement parents...
585
                          </v-flex>
68d742034   Neeraj Sharma   implement new des...
586
587
588
589
590
591
592
593
594
                          <v-flex xs8 class="ml-3">
                            <v-text-field
                              v-model="parentData.fatherCellNo"
                              placeholder="fill your father Cell Number"
                              type="number"
                              :rules="fatheCellNoRules"
                              counter="10"
                              required
                            ></v-text-field>
813e55a79   Neeraj Sharma   implement parents...
595
596
597
                          </v-flex>
                        </v-layout>
                      </v-flex>
68d742034   Neeraj Sharma   implement new des...
598
                      <v-flex xs12 sm6>
cfb5c6445   Neeraj Sharma   add task
599
                        <v-layout>
68d742034   Neeraj Sharma   implement new des...
600
601
                          <v-flex xs4 class="pt-4 subheading">
                            <label class="right">Parent Email Id:</label>
cfb5c6445   Neeraj Sharma   add task
602
                          </v-flex>
68d742034   Neeraj Sharma   implement new des...
603
604
605
606
607
608
609
                          <v-flex xs8 class="ml-3">
                            <v-text-field
                              placeholder="fill Parent email"
                              v-model="parentData.email"
                              type="text"
                              required
                            ></v-text-field>
cfb5c6445   Neeraj Sharma   add task
610
611
612
                          </v-flex>
                        </v-layout>
                      </v-flex>
813e55a79   Neeraj Sharma   implement parents...
613
614
                    </v-layout>
                    <v-layout>
68d742034   Neeraj Sharma   implement new des...
615
                      <v-flex xs12 sm6>
813e55a79   Neeraj Sharma   implement parents...
616
                        <v-layout>
68d742034   Neeraj Sharma   implement new des...
617
618
                          <v-flex xs4 class="pt-4 subheading">
                            <label class="right">Father Name:</label>
813e55a79   Neeraj Sharma   implement parents...
619
                          </v-flex>
68d742034   Neeraj Sharma   implement new des...
620
621
622
623
624
625
                          <v-flex xs8 class="ml-3">
                            <v-text-field
                              v-model="parentData.fatherName"
                              placeholder="Fill your father Name"
                              required
                            ></v-text-field>
813e55a79   Neeraj Sharma   implement parents...
626
627
628
                          </v-flex>
                        </v-layout>
                      </v-flex>
68d742034   Neeraj Sharma   implement new des...
629
                      <v-flex xs12 sm6>
813e55a79   Neeraj Sharma   implement parents...
630
                        <v-layout>
68d742034   Neeraj Sharma   implement new des...
631
632
                          <v-flex xs4 class="pt-4 subheading">
                            <label class="right">Father Profession:</label>
813e55a79   Neeraj Sharma   implement parents...
633
                          </v-flex>
68d742034   Neeraj Sharma   implement new des...
634
635
636
637
638
639
                          <v-flex xs8 class="ml-3">
                            <v-text-field
                              v-model="parentData.fatherProfession"
                              placeholder="fill your father Profession"
                              required
                            ></v-text-field>
813e55a79   Neeraj Sharma   implement parents...
640
641
642
                          </v-flex>
                        </v-layout>
                      </v-flex>
f4df757fe   Neeraj Sharma   responsive vie in...
643
644
                    </v-layout>
                    <v-layout>
68d742034   Neeraj Sharma   implement new des...
645
                      <v-flex xs12 sm6>
813e55a79   Neeraj Sharma   implement parents...
646
                        <v-layout>
68d742034   Neeraj Sharma   implement new des...
647
648
                          <v-flex xs4 class="pt-4 subheading">
                            <label class="right">Mother Name:</label>
813e55a79   Neeraj Sharma   implement parents...
649
                          </v-flex>
68d742034   Neeraj Sharma   implement new des...
650
651
652
653
654
655
656
                          <v-flex xs8 class="ml-3">
                            <v-text-field
                              v-model="parentData.motherName"
                              placeholder="fill your Mother Name"
                              type="text"
                              required
                            ></v-text-field>
813e55a79   Neeraj Sharma   implement parents...
657
658
659
                          </v-flex>
                        </v-layout>
                      </v-flex>
68d742034   Neeraj Sharma   implement new des...
660
                      <v-flex xs12 sm6>
fc77c38e0   Neeraj Sharma   fixed all task ch...
661
                        <v-layout>
68d742034   Neeraj Sharma   implement new des...
662
663
                          <v-flex xs4 class="pt-4 subheading">
                            <label class="right">Mother Cell No:</label>
fc77c38e0   Neeraj Sharma   fixed all task ch...
664
                          </v-flex>
68d742034   Neeraj Sharma   implement new des...
665
666
667
668
669
670
671
672
                          <v-flex xs8 class="ml-3">
                            <v-text-field
                              v-model="parentData.motherCellNo"
                              placeholder="fill your  Mother Cell Number"
                              counter="10"
                              type="number"
                              required
                            ></v-text-field>
fc77c38e0   Neeraj Sharma   fixed all task ch...
673
674
675
676
677
                          </v-flex>
                        </v-layout>
                      </v-flex>
                    </v-layout>
                    <v-layout>
68d742034   Neeraj Sharma   implement new des...
678
                      <v-flex xs12 sm6>
fc77c38e0   Neeraj Sharma   fixed all task ch...
679
                        <v-layout>
68d742034   Neeraj Sharma   implement new des...
680
681
                          <v-flex xs4 class="pt-4 subheading">
                            <label class="right">Mother Profession:</label>
fc77c38e0   Neeraj Sharma   fixed all task ch...
682
                          </v-flex>
68d742034   Neeraj Sharma   implement new des...
683
684
685
686
687
688
689
                          <v-flex xs8 class="ml-3">
                            <v-text-field
                              v-model="parentData.motherProfession"
                              placeholder="fill your Mother Profession"
                              type="text"
                              required
                            ></v-text-field>
fc77c38e0   Neeraj Sharma   fixed all task ch...
690
691
692
                          </v-flex>
                        </v-layout>
                      </v-flex>
11797ea5a   Shikha Mishra   added password field
693
694
695
696
697
698
699
700
701
702
703
704
705
                      <v-flex xs12 sm6>
                        <v-layout>
                          <v-flex xs4 class="pt-4 subheading">
                            <label class="right">Password:</label>
                          </v-flex>
                          <v-flex xs8 class="ml-3">
                            <v-text-field
                              v-model="parentData.password"
                              :append-icon="e1 ? 'visibility_off' : 'visibility'"
                              :append-icon-cb="() => (e1 = !e1)"
                              :type="e1 ? 'password' : 'text'"
                              :rules="password"
                              placeholder="Enter Your Password"
5d5315b0f   Shikha Mishra   close add-notific...
706
                              :disabled="isFatherCellExists"
11797ea5a   Shikha Mishra   added password field
707
708
709
710
711
                              required
                            ></v-text-field>
                          </v-flex>
                        </v-layout>
                      </v-flex>
fc77c38e0   Neeraj Sharma   fixed all task ch...
712
                    </v-layout>
68d742034   Neeraj Sharma   implement new des...
713
714
                    <v-flex xs12 sm12>
                      <v-layout>
813e55a79   Neeraj Sharma   implement parents...
715
                        <v-flex xs12 sm12>
68d742034   Neeraj Sharma   implement new des...
716
717
718
719
720
721
722
723
724
                          <v-btn
                            class="right add-button"
                            @click="submitParentDetails"
                            round
                            dark
                            :loading="loading"
                            v-show="showParent"
                          >Add</v-btn>
                          <v-btn @click="clear" round dark class="clear-button right">Clear</v-btn>
813e55a79   Neeraj Sharma   implement parents...
725
                        </v-flex>
68d742034   Neeraj Sharma   implement new des...
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
                      </v-layout>
                    </v-flex>
                  </v-container>
                  <v-container fluid class="hidden-lg-only hidden-xl-only hidden-md-only">
                    <v-layout wrap>
                      <v-flex xs12 sm6>
                        <v-layout wrap>
                          <v-flex xs12 class="pt-4 subheading">
                            <label>Father Cell No:</label>
                          </v-flex>
                          <v-flex xs12>
                            <v-text-field
                              v-model="parentData.fatherCellNo"
                              :rules="fatheCellNoRules"
                              counter="10"
                              placeholder="fill your father Cell Number"
                              type="number"
                              required
                            ></v-text-field>
                          </v-flex>
                        </v-layout>
                      </v-flex>
                      <v-flex xs12 sm6>
                        <v-layout wrap>
                          <v-flex xs12 class="pt-4 subheading">
                            <label>Parent Email Id:</label>
                          </v-flex>
                          <v-flex xs12>
                            <v-text-field
                              placeholder="fill Parent email"
                              v-model="parentData.email"
                              type="text"
                              required
                            ></v-text-field>
                          </v-flex>
                        </v-layout>
                      </v-flex>
                    </v-layout>
                    <v-layout wrap>
                      <v-flex xs12 sm6>
                        <v-layout wrap>
                          <v-flex xs12 class="pt-4 subheading">
                            <label>Father Name:</label>
                          </v-flex>
                          <v-flex xs12>
                            <v-text-field
                              v-model="parentData.fatherName"
                              placeholder="Fill your father Name"
                              required
                            ></v-text-field>
                          </v-flex>
                        </v-layout>
                      </v-flex>
                      <v-flex xs12 sm6>
                        <v-layout wrap>
                          <v-flex xs12 class="pt-4 subheading">
                            <label>Father Profession:</label>
                          </v-flex>
                          <v-flex xs12>
                            <v-text-field
                              v-model="parentData.fatherProfession"
                              placeholder="fill your father Profession"
                              required
                            ></v-text-field>
                          </v-flex>
                        </v-layout>
813e55a79   Neeraj Sharma   implement parents...
792
793
                      </v-flex>
                    </v-layout>
68d742034   Neeraj Sharma   implement new des...
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
                    <v-layout wrap>
                      <v-flex xs12 sm6>
                        <v-layout wrap>
                          <v-flex xs12 class="pt-4 subheading">
                            <label>Mother Name:</label>
                          </v-flex>
                          <v-flex xs12>
                            <v-text-field
                              v-model="parentData.motherName"
                              placeholder="fill your Mother Name"
                              type="text"
                              required
                            ></v-text-field>
                          </v-flex>
                        </v-layout>
                      </v-flex>
                      <v-flex xs12 sm6>
                        <v-layout wrap>
                          <v-flex xs42 class="pt-4 subheading">
                            <label>Mother Cell No:</label>
                          </v-flex>
                          <v-flex xs12>
                            <v-text-field
                              v-model="parentData.motherCellNo"
                              placeholder="fill your  Mother Cell Number"
                              type="number"
                              required
                            ></v-text-field>
                          </v-flex>
                        </v-layout>
                      </v-flex>
                    </v-layout>
                    <v-layout wrap>
                      <v-flex xs12 sm6>
                        <v-layout wrap>
                          <v-flex xs12 class="pt-4 subheading">
                            <label>Mother Profession:</label>
                          </v-flex>
                          <v-flex xs12>
                            <v-text-field
                              v-model="parentData.motherProfession"
                              placeholder="fill your Mother Profession"
                              type="text"
                              required
                            ></v-text-field>
                          </v-flex>
                        </v-layout>
                      </v-flex>
                    </v-layout>
                    <v-flex xs12 sm12>
                      <v-layout>
                        <v-flex xs6 sm6 offset-sm1>
                          <v-btn @click="clear" class="clear-button" round dark>clear</v-btn>
                        </v-flex>
                        <v-flex xs6 sm6>
                          <v-btn
                            class="add-button"
                            @click="submitParentDetails"
                            round
                            dark
                            :loading="loading"
                            v-show="showParent"
                          >Add</v-btn>
                        </v-flex>
                      </v-layout>
                    </v-flex>
813e55a79   Neeraj Sharma   implement parents...
860
                  </v-container>
68d742034   Neeraj Sharma   implement new des...
861
                </v-form>
813e55a79   Neeraj Sharma   implement parents...
862
863
864
              </v-flex>
            </v-layout>
          </v-container>
68d742034   Neeraj Sharma   implement new des...
865
866
        </v-card>
      </v-dialog>
813e55a79   Neeraj Sharma   implement parents...
867
868
869
      <div class="loader" v-if="showLoader">
        <v-progress-circular indeterminate color="white"></v-progress-circular>
      </div>
68d742034   Neeraj Sharma   implement new des...
870
871
872
873
874
875
876
877
878
      <v-snackbar
        :timeout="timeout"
        :top="y === 'top'"
        :right="x === 'right'"
        :vertical="mode === 'vertical'"
        v-model="snackbar"
        color="success"
      >{{ text }}</v-snackbar>
    </v-container>
813e55a79   Neeraj Sharma   implement parents...
879
880
881
882
883
884
885
886
887
  </template>
  
  <script>
  import http from "@/Services/http.js";
  import Util from "@/util";
  import moment from "moment";
  
  export default {
    data: () => ({
11797ea5a   Shikha Mishra   added password field
888
      e1: true,
813e55a79   Neeraj Sharma   implement parents...
889
890
      showParent: true,
      snackbar: false,
710438de6   Shikha Mishra   added teacher mod...
891
892
      role: "",
      // TEACHER: "",
813e55a79   Neeraj Sharma   implement parents...
893
894
      y: "top",
      x: "right",
68d742034   Neeraj Sharma   implement new des...
895
      color: "",
813e55a79   Neeraj Sharma   implement parents...
896
897
898
      mode: "",
      timeout: 3000,
      text: "",
68d742034   Neeraj Sharma   implement new des...
899
900
      show: true,
      showSearch: false,
813e55a79   Neeraj Sharma   implement parents...
901
902
903
904
      showLoader: false,
      loading: false,
      date: null,
      search: "",
11797ea5a   Shikha Mishra   added password field
905
      password: "",
68d742034   Neeraj Sharma   implement new des...
906
      addParentDialog: false,
813e55a79   Neeraj Sharma   implement parents...
907
908
      menu: false,
      menu1: false,
68d742034   Neeraj Sharma   implement new des...
909
910
      editParentDilaog: false,
      profileParentDialog: false,
cb844617e   Shikha Mishra   Added functionali...
911
      resetParentMpin: false,
68d742034   Neeraj Sharma   implement new des...
912
      viewProfileParentDialog: false,
813e55a79   Neeraj Sharma   implement parents...
913
      valid: true,
4efdca564   Neeraj Sharma   solve bugs parent...
914
      validEditParent: true,
cb844617e   Shikha Mishra   Added functionali...
915
      validParentMpin: true,
813e55a79   Neeraj Sharma   implement parents...
916
      pagination: {
058c4a6cf   Shikha Mishra   Improve the funct...
917
        rowsPerPage: 10,
813e55a79   Neeraj Sharma   implement parents...
918
      },
058c4a6cf   Shikha Mishra   Improve the funct...
919
      fatherNameRules: [(v) => !!v || " Father Name is required"],
f6200ce53   Neeraj Sharma   send number via a...
920
      fatheCellNoRules: [
058c4a6cf   Shikha Mishra   Improve the funct...
921
922
        (v) => !!v || " father Cell Number  is required",
        (v) => v <= 10000000000 || "Max 10 characters is required",
f6200ce53   Neeraj Sharma   send number via a...
923
      ],
11797ea5a   Shikha Mishra   added password field
924
      password: [
058c4a6cf   Shikha Mishra   Improve the funct...
925
        (v) => !!v || "Password field is Required.",
3c297e236   Shikha Mishra   remove password v...
926
        // v => (/^(?=.*[a-z])(?=.*[0-9])(?=.*[!@#$%^&*])(?=.{8,})/).test(v) && v.length >= 8 || 'Min 8 characters lower case symbol required'
11797ea5a   Shikha Mishra   added password field
927
      ],
4efdca564   Neeraj Sharma   solve bugs parent...
928
      editFatherNoRule: [
058c4a6cf   Shikha Mishra   Improve the funct...
929
930
        (v) => !!v || " father Cell Number  is required",
        (v) => v <= 10000000000 || "Max 10 characters is required",
f6200ce53   Neeraj Sharma   send number via a...
931
      ],
4efdca564   Neeraj Sharma   solve bugs parent...
932

058c4a6cf   Shikha Mishra   Improve the funct...
933
      editfatherCellNo: [(v) => !!v || " Father Name is required"],
813e55a79   Neeraj Sharma   implement parents...
934
935
      errorMessages: "",
      emailRules: [
058c4a6cf   Shikha Mishra   Improve the funct...
936
937
        (v) => !!v || "E-mail is required",
        (v) =>
813e55a79   Neeraj Sharma   implement parents...
938
          /^\w+([.-]?\w+)*@\w+([.-]?\w+)*(\.\w{2,3})+$/.test(v) ||
058c4a6cf   Shikha Mishra   Improve the funct...
939
          "E-mail must be valid",
813e55a79   Neeraj Sharma   implement parents...
940
      ],
cb844617e   Shikha Mishra   Added functionali...
941
      mPinRules: [
058c4a6cf   Shikha Mishra   Improve the funct...
942
943
        (v) => !!v || "MPIN is required",
        (v) => v <= 10000 || "Max 4 numbers are required",
cb844617e   Shikha Mishra   Added functionali...
944
      ],
813e55a79   Neeraj Sharma   implement parents...
945
946
947
948
949
      headers: [
        {
          text: "No",
          align: "center",
          sortable: false,
058c4a6cf   Shikha Mishra   Improve the funct...
950
          value: "No",
813e55a79   Neeraj Sharma   implement parents...
951
952
953
954
955
956
        },
        { text: "Email", value: "email", sortable: false, align: "center" },
        {
          text: "Father Name",
          value: "fatherName",
          sortable: false,
058c4a6cf   Shikha Mishra   Improve the funct...
957
          align: "center",
813e55a79   Neeraj Sharma   implement parents...
958
959
960
961
962
        },
        {
          text: "Father Cell No",
          value: "fatherName",
          sortable: false,
058c4a6cf   Shikha Mishra   Improve the funct...
963
          align: "center",
813e55a79   Neeraj Sharma   implement parents...
964
965
966
967
968
        },
        {
          text: "Mother Name",
          value: "motherName",
          sortable: false,
058c4a6cf   Shikha Mishra   Improve the funct...
969
          align: "center",
813e55a79   Neeraj Sharma   implement parents...
970
971
972
973
974
        },
        {
          text: "Mother Cell No",
          value: "motherCellNo",
          sortable: false,
058c4a6cf   Shikha Mishra   Improve the funct...
975
          align: "center",
813e55a79   Neeraj Sharma   implement parents...
976
        },
058c4a6cf   Shikha Mishra   Improve the funct...
977
        { text: "Action", value: "", sortable: false, align: "center" },
813e55a79   Neeraj Sharma   implement parents...
978
979
980
981
      ],
      parentsList: [],
      editedIndex: -1,
      parentData: {},
f6200ce53   Neeraj Sharma   send number via a...
982
      max: 10,
813e55a79   Neeraj Sharma   implement parents...
983
984
985
986
987
      editedItem: {
        fatherName: "",
        fatherCellNo: "",
        motherName: "",
        motherCellNo: "",
11797ea5a   Shikha Mishra   added password field
988
        email: "",
058c4a6cf   Shikha Mishra   Improve the funct...
989
        password: "",
cb844617e   Shikha Mishra   Added functionali...
990
991
      },
      editMpin: {
058c4a6cf   Shikha Mishra   Improve the funct...
992
        mPin: "",
5d5315b0f   Shikha Mishra   close add-notific...
993
      },
058c4a6cf   Shikha Mishra   Improve the funct...
994
      isFatherCellExists: false,
813e55a79   Neeraj Sharma   implement parents...
995
996
997
998
999
1000
1001
    }),
    watch: {
      menu(val) {
        val && this.$nextTick(() => (this.$refs.picker.activePicker = "YEAR"));
      },
      menu1(val) {
        val && this.$nextTick(() => (this.$refs.picker.activePicker = "YEAR"));
058c4a6cf   Shikha Mishra   Improve the funct...
1002
      },
813e55a79   Neeraj Sharma   implement parents...
1003
1004
1005
1006
1007
    },
    methods: {
      editItem(item) {
        this.editedIndex = this.parentsList.indexOf(item);
        this.editedItem = Object.assign({}, item);
68d742034   Neeraj Sharma   implement new des...
1008
        this.editParentDilaog = true;
813e55a79   Neeraj Sharma   implement parents...
1009
1010
      },
      profile(item) {
813e55a79   Neeraj Sharma   implement parents...
1011
1012
        this.editedIndex = this.parentsList.indexOf(item);
        this.editedItem = Object.assign({}, item);
68d742034   Neeraj Sharma   implement new des...
1013
        this.profileParentDialog = true;
813e55a79   Neeraj Sharma   implement parents...
1014
      },
cb844617e   Shikha Mishra   Added functionali...
1015
1016
1017
1018
      resetParentMPIN(item) {
        this.editMpin = Object.assign({}, item);
        this.resetParentMpin = true;
      },
813e55a79   Neeraj Sharma   implement parents...
1019
      close() {
68d742034   Neeraj Sharma   implement new des...
1020
        this.editParentDilaog = false;
813e55a79   Neeraj Sharma   implement parents...
1021
      },
68d742034   Neeraj Sharma   implement new des...
1022
1023
      closeProfile() {
        this.profileParentDialog = false;
813e55a79   Neeraj Sharma   implement parents...
1024
      },
cb844617e   Shikha Mishra   Added functionali...
1025
1026
1027
      closeReset() {
        this.resetParentMpin = false;
      },
813e55a79   Neeraj Sharma   implement parents...
1028
1029
1030
1031
      clear() {
        this.$refs.parentForm.reset();
      },
      save() {
4efdca564   Neeraj Sharma   solve bugs parent...
1032
1033
1034
1035
        if (this.$refs.editParentForm.validate()) {
          this.editedItem.parentId = this.editedItem._id;
          http()
            .put("/updateParent", this.editedItem)
058c4a6cf   Shikha Mishra   Improve the funct...
1036
            .then((response) => {
4efdca564   Neeraj Sharma   solve bugs parent...
1037
1038
              this.snackbar = true;
              this.color = "green";
68d742034   Neeraj Sharma   implement new des...
1039
              this.text = response.data.message;
4efdca564   Neeraj Sharma   solve bugs parent...
1040
1041
1042
              this.getParentDetails();
              this.close();
            })
058c4a6cf   Shikha Mishra   Improve the funct...
1043
            .catch((error) => {
4efdca564   Neeraj Sharma   solve bugs parent...
1044
1045
1046
1047
              this.snackbar = true;
              this.color = "error";
              this.text = error.response.data.message;
              if (error.response.data.statusText) {
cb844617e   Shikha Mishra   Added functionali...
1048
1049
1050
1051
1052
1053
1054
1055
1056
                this.text = error.response.data.statusText;
              }
            });
        }
      },
      resetMpin() {
        if (this.$refs.resetParentMpinForm.validate()) {
          var changeMpin = {
            parentId: this.editMpin._id,
058c4a6cf   Shikha Mishra   Improve the funct...
1057
            mPin: this.editMpin.mPin,
cb844617e   Shikha Mishra   Added functionali...
1058
1059
1060
          };
          http()
            .put("/resetMPin", changeMpin)
058c4a6cf   Shikha Mishra   Improve the funct...
1061
            .then((response) => {
cb844617e   Shikha Mishra   Added functionali...
1062
1063
1064
1065
1066
1067
1068
              this.snackbar = true;
              this.color = "green";
              this.text = response.data.message;
              this.getParentDetails();
              this.resetParentMpin = false;
              this.closeReset();
            })
058c4a6cf   Shikha Mishra   Improve the funct...
1069
            .catch((error) => {
cb844617e   Shikha Mishra   Added functionali...
1070
1071
1072
1073
              this.snackbar = true;
              this.color = "error";
              this.text = error.response.data.message;
              if (error.response.data.statusText) {
4efdca564   Neeraj Sharma   solve bugs parent...
1074
1075
1076
1077
                this.text = error.response.data.statusText;
              }
            });
        }
813e55a79   Neeraj Sharma   implement parents...
1078
      },
f6200ce53   Neeraj Sharma   send number via a...
1079
      async submitParentDetails() {
813e55a79   Neeraj Sharma   implement parents...
1080
        if (this.$refs.parentForm.validate()) {
fc77c38e0   Neeraj Sharma   fixed all task ch...
1081
          this.parentData.role = "PARENT";
813e55a79   Neeraj Sharma   implement parents...
1082
          this.loading = true;
f6200ce53   Neeraj Sharma   send number via a...
1083
          await http()
fc77c38e0   Neeraj Sharma   fixed all task ch...
1084
            .post("/createParent", this.parentData)
058c4a6cf   Shikha Mishra   Improve the funct...
1085
            .then((response) => {
813e55a79   Neeraj Sharma   implement parents...
1086
              this.parentId = response.data.data.id;
a0650f86b   Neeraj Sharma   implement class v...
1087
              this.snackbar = true;
68d742034   Neeraj Sharma   implement new des...
1088
1089
              this.color = "green";
              this.text = response.data.message;
813e55a79   Neeraj Sharma   implement parents...
1090
1091
1092
              this.getParentDetails();
              this.clear();
              this.loading = false;
5d5315b0f   Shikha Mishra   close add-notific...
1093
              this.isFatherCellExists = true;
68d742034   Neeraj Sharma   implement new des...
1094
              this.addParentDialog = false;
813e55a79   Neeraj Sharma   implement parents...
1095
            })
058c4a6cf   Shikha Mishra   Improve the funct...
1096
            .catch((error) => {
a0650f86b   Neeraj Sharma   implement class v...
1097
              this.snackbar = true;
68d742034   Neeraj Sharma   implement new des...
1098
              this.color = "error";
a0650f86b   Neeraj Sharma   implement class v...
1099
1100
              this.text = error.response.data.message;
              if (error.response.data.statusText) {
813e55a79   Neeraj Sharma   implement parents...
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
                this.text = error.response.data.statusText;
              }
              this.loading = false;
            });
        }
      },
      getParentDetails() {
        http()
          .get("getParentsList", {
            headers: {
058c4a6cf   Shikha Mishra   Improve the funct...
1111
1112
              Authorization: "Bearer " + this.$store.state.token,
            },
813e55a79   Neeraj Sharma   implement parents...
1113
          })
058c4a6cf   Shikha Mishra   Improve the funct...
1114
          .then((response) => {
813e55a79   Neeraj Sharma   implement parents...
1115
1116
            this.parentsList = response.data.data;
          })
058c4a6cf   Shikha Mishra   Improve the funct...
1117
          .catch((error) => {
00e4bc4e1   Neeraj Sharma   fixed auntentication
1118
1119
1120
1121
1122
1123
1124
1125
            // console.log("err====>", error.response.data.message);
            this.showLoader = false;
            if (error.response.status === 401) {
              this.$router.replace({ path: "/" });
              this.$store.dispatch("setToken", null);
              this.$store.dispatch("Id", null);
              this.$store.dispatch("Role", null);
            }
813e55a79   Neeraj Sharma   implement parents...
1126
          });
68d742034   Neeraj Sharma   implement new des...
1127
1128
      },
      displaySearch() {
612b79bb4   Amber Dev   made serch auto f...
1129
1130
1131
        this.show = false 
        this.showSearch = true;
        // this.$refs.searchField.focus()
68d742034   Neeraj Sharma   implement new des...
1132
1133
1134
1135
1136
      },
      closeSearch() {
        this.showSearch = false;
        this.show = true;
        this.search = "";
058c4a6cf   Shikha Mishra   Improve the funct...
1137
      },
813e55a79   Neeraj Sharma   implement parents...
1138
1139
1140
    },
    mounted() {
      this.getParentDetails();
710438de6   Shikha Mishra   added teacher mod...
1141
1142
      // console.log("role", this.$store.state.role);
      this.role = this.$store.state.role;
058c4a6cf   Shikha Mishra   Improve the funct...
1143
    },
813e55a79   Neeraj Sharma   implement parents...
1144
  };
68d742034   Neeraj Sharma   implement new des...
1145
  </script>