Blame view

src/pages/Dashboard.vue 22.1 KB
93a68cfa1   Jatinder Singh   first commit
1
  <template>
03dcbf0c1   Neeraj Sharma   fix all api and r...
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
  <v-app id="pages-dasboard">
    <v-tabs grow slider-color="black">
      <v-tab
        ripple
        @click="activeTab('existing')"
        v-bind:class="{ active: isActive }"
        id="tab"
        class="subheading"
      >Existing user</v-tab>
      <v-tab
        ripple
        @click="activeTab('new')"
        v-bind:class="{ active: newActive }"
        id="tab1"
        class="subheading"
      >Add New Users</v-tab>
     <!-- EDIT USERS Patient Dtails-->
      <v-tab-item>
        <v-snackbar
          :timeout="timeout"
          :top="y === 'top'"
          :right="x === 'right'"
          :vertical="mode === 'vertical'"
          v-model="snackbar"
          color="success"
        >{{ text }}</v-snackbar>
        <v-dialog v-model="dialog" max-width="500px">
          <v-toolbar color="white">
            <v-spacer></v-spacer>
            <v-toolbar-title>Edit Profile</v-toolbar-title>
            <v-spacer></v-spacer>
          </v-toolbar>
          <v-card>
            <v-flex align-center justify-center layout text-xs-center>
              <v-avatar size="50px" style="position:absolute; top:10px; ">
                <img src="/static/icon/user.png">
              </v-avatar>
            </v-flex>
c35a8dafd   Jatinder Singh   minor changes
40
            <v-card-text>
03dcbf0c1   Neeraj Sharma   fix all api and r...
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
              <v-container>
                <v-layout wrap justify-center>
                  <v-flex xs12 sm9>
                    <v-form ref="form" v-model="valid" lazy-validation>
                      <v-layout style="position:relative; top:15px;">
                        <v-flex xs4      date: new Date().toISOString().substr(0, 10), class="pt-4 subheading">
                          <label>First Name:</label>
                        </v-flex>
                        <v-flex xs8>
                          <v-text-field
                            v-model="editedItem.name"
                            v-validate="'required'"
                            :rules="nameRules"
                            data-vv-name="Name"
                            required
                          ></v-text-field>
                        </v-flex>
                      </v-layout>
                      <v-layout>
                        <v-flex xs4 class="pt-4 subheading">
                          <label>Last Name:</label>
                        </v-flex>
                        <v-flex xs8>
                          <v-text-field
                            v-model="editedItem.lastname"
                            v-validate="'required'"
                            :rules="lastnameRules"
                            data-vv-name="Name"
                            required
                          ></v-text-field>
                        </v-flex>
                      </v-layout>
c35a8dafd   Jatinder Singh   minor changes
73

03dcbf0c1   Neeraj Sharma   fix all api and r...
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
                      <v-layout>
                        <v-flex xs4 class="pt-4 subheading">
                          <label>Email ID:</label>
                        </v-flex>
                        <v-flex xs8>
                          <v-text-field
                            v-model="editedItem.email"
                            v-validate="'required|email'"
                            :rules="emailRules"
                            data-vv-name="E-mail"
                            required
                          ></v-text-field>
                        </v-flex>
                      </v-layout>
                       <v-layout>
                         <v-flex xs4 class="pt-4 subheading">
                          <label>Date of Birth:</label>
                        </v-flex>
                        <v-flex xs8>
                          <v-menu
                          :close-on-content-click="false"
                          v-model="modaledit"
                          :nudge-right="20"
                          lazy
                          transition="scale-transition"
                          persistent
                          full-width
                          max-width="290px"
                        >
                          <v-text-field
                            slot="activator"
f42c1d9c9   Neeraj Sharma   something change ...
105
                            v-model="editedItem.dob"
03dcbf0c1   Neeraj Sharma   fix all api and r...
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
                            name="dob"
                          ></v-text-field>
                          <v-date-picker v-model="editedItem.dob" @input="modaledit = false"></v-date-picker>
                        </v-menu>
                        </v-flex>
                      </v-layout>
                      <v-card-actions>
                        <v-btn round dark @click.native="close">Cancel</v-btn>
                        <v-spacer></v-spacer>
                        <v-btn round dark @click="save">Save</v-btn>
                      </v-card-actions>
                    </v-form>
                  </v-flex>
                </v-layout>
              </v-container>
            </v-card-text>
          </v-card>
        </v-dialog>
c35a8dafd   Jatinder Singh   minor changes
124

03dcbf0c1   Neeraj Sharma   fix all api and r...
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
        <!-- PROFILE VIEW pateints Details-->
        <v-dialog v-model="dialog1" max-width="600px">
          <v-toolbar color="white">
            <v-spacer></v-spacer>
            <v-toolbar-title>Profile</v-toolbar-title>
            <v-spacer></v-spacer>
            <v-icon @click="close1">close</v-icon>
          </v-toolbar>
          <v-card>
            <v-flex align-center justify-center layout text-xs-center>
              <v-avatar size="50px" style="position:absolute; top:20px;">
                <img src="/static/icon/user.png">
              </v-avatar>
            </v-flex>
            <v-card-text>
              <v-container grid-list-md>
                <v-layout wrap>
                  <v-flex><br><br>
                     <v-layout>
                       <v-flex xs5 sm6>
                       <h5 class="right">First Name:</h5>
                      </v-flex>
                      <v-flex sm6 xs8>
                      <h5>{{ editedItem.name }}</h5>
                    </v-flex>
                   </v-layout>
                    <v-layout>
                       <v-flex xs5 sm6>
                       <h5 class="right my-3">Last Name:</h5>
                      </v-flex>
                      <v-flex sm5 xs8>
                       <h5 class="my-3">{{ editedItem.name }}</h5>
                    </v-flex>
                   </v-layout>
                    <v-layout>
                       <v-flex xs5 sm6>
                       <h5 class="right">Email:</h5>
                      </v-flex>
                      <v-flex  sm6 xs8>
                       <h5>{{ editedItem.email }}</h5>
                    </v-flex>
                   </v-layout>
                    <v-layout>
                       <v-flex xs6 sm6 >
                       <h5 class="right my-3">Date Of Birth:</h5>
                      </v-flex>
                      <v-flex sm6 xs8>
                      <h5 class="my-3">{{ editedItem.dob }}</h5>
                    </v-flex>
                   </v-layout>
                  </v-flex>
                </v-layout>
              </v-container>
            </v-card-text>
          </v-card>
        </v-dialog>
f84ff8f5a   Jatinder Singh   report page changes
181

03dcbf0c1   Neeraj Sharma   fix all api and r...
182
183
184
185
186
187
188
189
190
191
192
193
194
195
        <v-dialog v-model="dialog2" width="700px">
          <v-card>
            <div id="dialog">
              <h4>
                <b>Report</b>
              </h4>
              <h5 id="name">
                <b>Patient Name:</b>
                {{ editedItem.name+' '+editedItem.lastName }}
              </h5>
              <h5 id="m">Select Month:</h5>
              <v-btn color="grey darken-3" id="G" v-on:click="component='report-generate'">Generate</v-btn>
              <v-spacer></v-spacer>
              <v-icon id="icon" @click="close2">close</v-icon>
269061695   Jatinder Singh   changes
196

03dcbf0c1   Neeraj Sharma   fix all api and r...
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
              <span id="bt">
                <v-btn
                  color="grey darken-2"
                  v-on:click="component='one-month' , activebtn('existing')"
                  v-bind:class="{ activebtn: isActivebtn }"
                  flat
                >1 month</v-btn>
                <v-btn
                  color="grey darken-2"
                  v-on:click="component='three-month' , activebtn('new')"
                  v-bind:class="{ activebtn: Activebtn1 }"
                  flat
                >3 Month</v-btn>
                <v-btn
                  color="grey darken-2"
                  v-on:click="component='six-month' , activebtn('new1')"
                  v-bind:class="{ activebtn: Activebtn2 }"
                  flat
                >6 Month</v-btn>
                <v-btn
                  color="grey darken-2"
                  v-on:click="component='nine-month' , activebtn('new2')"
                  v-bind:class="{ activebtn: Activebtn3 }"
                  flat
                >9 Month</v-btn>
                <img id="e" @click="mail" src="/static/icon/email1.png">
                <img id="d" @click="download" src="/static/icon/download1.png">
              </span>
              <component v-bind:is="component"></component>
            </div>
          </v-card>
        </v-dialog>
        <v-snackbar
          :timeout="timeout"
          :top="y === 'top'"
          :right="x === 'right'"
          :vertical="mode === 'vertical'"
          v-model="snackbar"
          color="success"
        >{{ text }}</v-snackbar>
        <!-- EXISTING-USERS PatientList-->
        <v-data-table 
        :headers="headers" 
        :items="desserts" 
        :pagination.sync="pagination"
c35a8dafd   Jatinder Singh   minor changes
242
243
        >
          <template slot="items" slot-scope="props">
03dcbf0c1   Neeraj Sharma   fix all api and r...
244
245
246
            <td id="td" class="text-xs-center">{{ props.index}}</td>
            <td id="td" class="text-xs-center">{{ props.item.name}}</td>
            <td id="td" class="text-xs-center">{{ props.item.email }}</td>
4413a8d93   Jatinder Singh   changes
247
            <td class="text-xs-center">
03dcbf0c1   Neeraj Sharma   fix all api and r...
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
              <span>
                <img
                  style="cursor:pointer; height:20px; "
                  class="mr-5"
                  @click="report(props.item)"
                  src="/static/icon/List1.png"
                >
                <img
                  style="cursor:pointer; width:25px; height:18px; "
                  class="mr-5"
                  @click="profile(props.item)"
                  src="/static/icon/eye1.png"
                >
                <img
                  style="cursor:pointer; width:20px; height:18px; "
                  class="mr-5"
                  @click="editItem(props.item)"
                  src="/static/icon/edit1.png"
                >
                <img
                  style="cursor:pointer; height:20px; "
                  class="mr-5"
                  @click="deleteItem(props.item)"
                  src="/static/icon/delete1.png"
                >
              </span>
c35a8dafd   Jatinder Singh   minor changes
274
            </td>
c35a8dafd   Jatinder Singh   minor changes
275
276
          </template>
        </v-data-table>
03dcbf0c1   Neeraj Sharma   fix all api and r...
277
278
279
      </v-tab-item>
      <!-- ADD USER PATIENT -->
      <v-tab-item>
03dcbf0c1   Neeraj Sharma   fix all api and r...
280
        <v-container>
f42c1d9c9   Neeraj Sharma   something change ...
281
282
283
284
285
286
287
288
         <v-snackbar
           :timeout="timeout"
           :top="y === 'top'"
           :right="x === 'right'"
           :vertical="mode === 'vertical'"
           v-model="snackbar"
           color="success"
          >{{ text }}</v-snackbar>
03dcbf0c1   Neeraj Sharma   fix all api and r...
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
        <v-flex xs12 sm8 offset-sm2 class="top">
          <v-card flat>
            <v-container fluid fill-height>
              <v-layout align-center>
                <v-flex xs12>
                  <v-flex offset-xs5>
                    <v-avatar size="55px">
                      <img src="/static/icon/user.png">
                    </v-avatar>
                  </v-flex>
                  <v-form ref="form" v-model="valid" lazy-validation>
                    <v-layout>
                      <v-flex xs4 class="pt-4 subheading">
                        <label class="right">First Name:</label>
                      </v-flex>
                      <v-flex xs6 class="ml-3">
                        <v-text-field
                          v-model="editedItem.name"
f42c1d9c9   Neeraj Sharma   something change ...
307
                          placeholder="fill your first Name"
03dcbf0c1   Neeraj Sharma   fix all api and r...
308
                          name="name"
f42c1d9c9   Neeraj Sharma   something change ...
309
                          type="text"
03dcbf0c1   Neeraj Sharma   fix all api and r...
310
311
312
313
314
315
316
317
318
319
320
                          :rules="nameRules"
                          required
                        ></v-text-field>
                      </v-flex>
                    </v-layout>
                    <v-layout>
                      <v-flex xs4 class="pt-4 subheading">
                        <label class="right">Last Name:</label>
                      </v-flex>
                      <v-flex xs6  class="ml-3">
                        <v-text-field
f42c1d9c9   Neeraj Sharma   something change ...
321
                          placeholder="fill your last Name"                        
03dcbf0c1   Neeraj Sharma   fix all api and r...
322
323
                          :rules="lastnameRules"
                          v-model="editedItem.lastname"
f42c1d9c9   Neeraj Sharma   something change ...
324
                          type="text"
03dcbf0c1   Neeraj Sharma   fix all api and r...
325
326
327
328
329
330
331
332
333
334
335
                          name="lastname"
                          required
                        ></v-text-field>
                      </v-flex>
                    </v-layout>
                    <v-layout>
                      <v-flex xs4 class="pt-4 subheading">
                        <label class="right">Email ID:</label>
                      </v-flex>
                      <v-flex xs6 class="ml-3">
                        <v-text-field
f42c1d9c9   Neeraj Sharma   something change ...
336
                          placeholder="fill your email"
03dcbf0c1   Neeraj Sharma   fix all api and r...
337
338
                          :rules="emailRules"
                          v-model="editedItem.email"
f42c1d9c9   Neeraj Sharma   something change ...
339
                          type="text"
03dcbf0c1   Neeraj Sharma   fix all api and r...
340
341
342
343
344
                          name="email"
                          required
                        ></v-text-field>
                      </v-flex>
                    </v-layout>
93a68cfa1   Jatinder Singh   first commit
345

03dcbf0c1   Neeraj Sharma   fix all api and r...
346
347
348
349
350
351
352
353
354
355
356
                    <v-layout>
                      <v-flex xs4 class="pt-4 subheading">
                        <label class="right">Date of Birth:</label>
                      </v-flex>
                      <v-flex xs6 class="ml-3">
                        <v-menu
                          :close-on-content-click="false"
                          v-model="modal"
                          :nudge-right="20"
                          lazy
                          transition="scale-transition"
f42c1d9c9   Neeraj Sharma   something change ...
357
                           offset-y
03dcbf0c1   Neeraj Sharma   fix all api and r...
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
                          persistent
                          full-width
                          max-width="290px"
                        >
                          <v-text-field
                            slot="activator"
                            v-model="editedItem.dob"
                            name="dob"
                          ></v-text-field>
                          <v-date-picker v-model="editedItem.dob" @input="modal = false"></v-date-picker>
                        </v-menu>
                      </v-flex>
                    </v-layout>
                    <v-layout>
                      <v-flex xs12 sm9 offset-sm2>
                    <v-card-actions>
                      <v-btn @click="clear" round dark>clear</v-btn>
                      <v-spacer></v-spacer>
                      <v-btn @click="submit" round dark :loading="loading">Add</v-btn>
                    </v-card-actions>
                     </v-flex>
                    </v-layout>
                  </v-form>
                </v-flex>
              </v-layout>
            </v-container>
          </v-card>
        </v-flex>
       </v-container>
     </v-tab-item>
    </v-tabs>
  </v-app>
93a68cfa1   Jatinder Singh   first commit
390
391
392
  </template>
  
  <script>
03dcbf0c1   Neeraj Sharma   fix all api and r...
393
394
395
396
397
398
  import onemonth from "@/components/report/onemonth.vue";
  import threemonth from "@/components/report/threemonth.vue";
  import sixmonth from "@/components/report/sixmonth.vue";
  import ninemonth from "@/components/report/ninemonth.vue";
  import generatereport from "@/components/report/generatereport.vue";
  import http from "@/Services/http.js";
93a68cfa1   Jatinder Singh   first commit
399
  export default {
f84ff8f5a   Jatinder Singh   report page changes
400
    components: {
03dcbf0c1   Neeraj Sharma   fix all api and r...
401
402
403
404
405
      "one-month": onemonth,
      "three-month": threemonth,
      "six-month": sixmonth,
      "nine-month": ninemonth,
      "report-generate": generatereport
f84ff8f5a   Jatinder Singh   report page changes
406
    },
93a68cfa1   Jatinder Singh   first commit
407
    data: () => ({
03dcbf0c1   Neeraj Sharma   fix all api and r...
408
409
410
411
412
413
414
415
416
417
418
      component: "report-generate",
      snackbar: false,
      y: "top",
      x: "right",
      mode: "",
      timeout: 3000,
      text: "",
      loading: false,
      search: "",
      modal: false,
      modaledit:false,
93a68cfa1   Jatinder Singh   first commit
419
      dialog: false,
c35a8dafd   Jatinder Singh   minor changes
420
421
422
      dialog1: false,
      dialog2: false,
      valid: true,
ee83012b3   Jatinder Singh   changes
423
424
      isActive: true,
      newActive: false,
ab72cb628   Jatinder Singh   report changes
425
426
427
428
      isActivebtn: false,
      Activebtn1: false,
      Activebtn2: false,
      Activebtn3: false,
defcc5da3   Jatinder Singh   report page
429
430
431
432
433
      loader: null,
      loading: false,
      loading2: false,
      loading3: false,
      loading4: false,
03dcbf0c1   Neeraj Sharma   fix all api and r...
434
      details: [],
b34ed827a   Jatinder Singh   changes
435
      AddUsercredentials: {},
5ac5570a9   Jatinder Singh   datatable changes
436
      pagination: {
03dcbf0c1   Neeraj Sharma   fix all api and r...
437
        rowsPerPage: 15
5ac5570a9   Jatinder Singh   datatable changes
438
      },
04e3fbc56   Jatinder Singh   minor fix
439
      rules: {
03dcbf0c1   Neeraj Sharma   fix all api and r...
440
        required: value => !!value || "Date of Birth is Required.",
ee83012b3   Jatinder Singh   changes
441
442
443
444
445
        min: v =>
          (/^(0?[1-9]|[12][0-9]|3[01])[\/\-](0?[1-9]|1[012])[\/\-]\d{4}$/.test(
            v
          ) &&
            v.length > 0) ||
03dcbf0c1   Neeraj Sharma   fix all api and r...
446
          "Please enter a date in the format dd/mm/yyyy"
04e3fbc56   Jatinder Singh   minor fix
447
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
448
      nameRules: [v => !!v || " First Name is required"],
c35a8dafd   Jatinder Singh   minor changes
449
      emailRules: [
03dcbf0c1   Neeraj Sharma   fix all api and r...
450
451
        v => !!v || "E-mail is required",
        v => /.+@.+/.test(v) || "E-mail must be valid"
c35a8dafd   Jatinder Singh   minor changes
452
      ],
03dcbf0c1   Neeraj Sharma   fix all api and r...
453
      lastnameRules: [v => !!v || " Last Name is required"],
93a68cfa1   Jatinder Singh   first commit
454
455
      headers: [
        {
03dcbf0c1   Neeraj Sharma   fix all api and r...
456
457
          text: "No",
          align: "center",
93a68cfa1   Jatinder Singh   first commit
458
          sortable: false,
03dcbf0c1   Neeraj Sharma   fix all api and r...
459
          value: "No"
c35a8dafd   Jatinder Singh   minor changes
460
        },
03dcbf0c1   Neeraj Sharma   fix all api and r...
461
462
463
        { text: "Name", value: "name", sortable: false, align: "center" },
        { text: "Email", value: "email", sortable: false, align: "center" },
        { text: "", value: "", sortable: false, align: "center" }
93a68cfa1   Jatinder Singh   first commit
464
      ],
03dcbf0c1   Neeraj Sharma   fix all api and r...
465
      desserts: [],
93a68cfa1   Jatinder Singh   first commit
466
467
      editedIndex: -1,
      editedItem: {
03dcbf0c1   Neeraj Sharma   fix all api and r...
468
469
470
471
        No: "",
        name: "",
        lastName: "",
        email: "",
f42c1d9c9   Neeraj Sharma   something change ...
472
        dob: new Date().toISOString().substr(0, 10),
03dcbf0c1   Neeraj Sharma   fix all api and r...
473
        country: "India"
93a68cfa1   Jatinder Singh   first commit
474
475
      },
      defaultItem: {
03dcbf0c1   Neeraj Sharma   fix all api and r...
476
477
478
479
480
        No: "",
        name: "",
        lastname: "",
        email: "",
        dob: ""
c35a8dafd   Jatinder Singh   minor changes
481
      }
93a68cfa1   Jatinder Singh   first commit
482
    }),
4413a8d93   Jatinder Singh   changes
483
484
485
486
487
488
489
490
    // computed: {
    //   pages () {
    //     if (this.pagination.rowsPerPage == null ||
    //       this.pagination.totalItems == null
    //     ) return 0;
    //     return Math.ceil(this.pagination.totalItems / this.pagination.rowsPerPage);
    //   }
    // },
93a68cfa1   Jatinder Singh   first commit
491
    methods: {
03dcbf0c1   Neeraj Sharma   fix all api and r...
492
493
494
495
496
497
      getPatientList() {
        var token = this.$store.state.token;
        http()
          .get("/patientList", { 
            headers: { Authorization: "Bearer " + token } 
           })
e173bab21   Jatinder Singh   api
498
          .then(response => {
03dcbf0c1   Neeraj Sharma   fix all api and r...
499
500
501
502
503
            this.desserts = response.data.data.existingUser;
          })
          .catch(err => {
            console.log("err====>", err);
          });
e173bab21   Jatinder Singh   api
504
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
505
      editItem(item) {
93a68cfa1   Jatinder Singh   first commit
506
507
508
509
        this.editedIndex = this.desserts.indexOf(item);
        this.editedItem = Object.assign({}, item);
        this.dialog = true;
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
510
      profile(item) {
c35a8dafd   Jatinder Singh   minor changes
511
512
513
514
        this.editedIndex = this.desserts.indexOf(item);
        this.editedItem = Object.assign({}, item);
        this.dialog1 = true;
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
515
      report(item) {
c35a8dafd   Jatinder Singh   minor changes
516
517
518
        this.editedIndex = this.desserts.indexOf(item);
        this.editedItem = Object.assign({}, item);
        this.dialog2 = true;
a259e694f   Jatinder Singh   minor change
519
      },
93a68cfa1   Jatinder Singh   first commit
520

03dcbf0c1   Neeraj Sharma   fix all api and r...
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
      deleteItem(item) {
        let addUsers = {
          userId: item.userId
        };
        http()
          .post("/deletePatient", addUsers)
          .then(response => {
            if ((this.snackbar = true)) {
              this.text = "Successfully delete Existing User";
          }
            this.getPatientList();
          })
          .catch(error => {
            console.log(error);
          });
93a68cfa1   Jatinder Singh   first commit
536
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
537
      activeTab(type) {
ee83012b3   Jatinder Singh   changes
538
        switch (type) {
03dcbf0c1   Neeraj Sharma   fix all api and r...
539
          case "existing":
ee83012b3   Jatinder Singh   changes
540
541
542
543
544
545
546
547
548
549
            this.newActive = false;
            this.isActive = true;
            break;
  
          default:
            this.newActive = true;
            this.isActive = false;
            break;
        }
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
550
      activebtn(type) {
ab72cb628   Jatinder Singh   report changes
551
        switch (type) {
03dcbf0c1   Neeraj Sharma   fix all api and r...
552
          case "existing":
ab72cb628   Jatinder Singh   report changes
553
554
555
556
557
            this.Activebtn3 = false;
            this.Activebtn2 = false;
            this.Activebtn1 = false;
            this.isActivebtn = true;
            break;
03dcbf0c1   Neeraj Sharma   fix all api and r...
558
          case "new":
ab72cb628   Jatinder Singh   report changes
559
560
561
562
563
            this.Activebtn3 = false;
            this.Activebtn2 = false;
            this.Activebtn1 = true;
            this.isActivebtn = false;
            break;
03dcbf0c1   Neeraj Sharma   fix all api and r...
564
          case "new1":
ab72cb628   Jatinder Singh   report changes
565
566
567
568
569
570
571
572
573
574
575
576
577
            this.Activebtn3 = false;
            this.Activebtn2 = true;
            this.Activebtn1 = false;
            this.isActivebtn = false;
            break;
          default:
            this.Activebtn3 = true;
            this.Activebtn2 = false;
            this.Activebtn1 = false;
            this.isActivebtn = false;
            break;
        }
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
578
      close() {
93a68cfa1   Jatinder Singh   first commit
579
580
581
582
583
584
        this.dialog = false;
        setTimeout(() => {
          this.editedItem = Object.assign({}, this.defaultItem);
          this.editedIndex = -1;
        }, 300);
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
585
      close1() {
c35a8dafd   Jatinder Singh   minor changes
586
587
        this.dialog1 = false;
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
588
      close2() {
c35a8dafd   Jatinder Singh   minor changes
589
590
        this.dialog2 = false;
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
591
      submit() {
c35a8dafd   Jatinder Singh   minor changes
592
        if (this.$refs.form.validate()) {
03dcbf0c1   Neeraj Sharma   fix all api and r...
593
594
595
596
597
598
599
600
601
          let addUsers = {
            name: this.editedItem.name + this.editedItem.lastname,
            dob: this.editedItem.dob,
            email: this.editedItem.email,
            country: this.editedItem.country
          };
          http()
            .post("/patient", addUsers)
            .then(response => {
03dcbf0c1   Neeraj Sharma   fix all api and r...
602
              this.getPatientList();
f42c1d9c9   Neeraj Sharma   something change ...
603
              if (this.snackbar = true) {
03dcbf0c1   Neeraj Sharma   fix all api and r...
604
605
                this.text = "Successfully Add New User";
              }
f42c1d9c9   Neeraj Sharma   something change ...
606
607
              
            this.clear();
03dcbf0c1   Neeraj Sharma   fix all api and r...
608
609
610
            })
            .catch(error => {
              console.log(error);
f42c1d9c9   Neeraj Sharma   something change ...
611
612
613
              if (this.snackbar = true) {
              this.text = error.response.data.message;
            }
03dcbf0c1   Neeraj Sharma   fix all api and r...
614
            });
c35a8dafd   Jatinder Singh   minor changes
615
616
        }
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
617
      mail() {
4413a8d93   Jatinder Singh   changes
618
        // this.editedIndex = this.desserts.indexOf();
789f8298f   Jatinder Singh   change
619
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
620
      download() {
4413a8d93   Jatinder Singh   changes
621
        // this.editedIndex = this.desserts.indexOf();
789f8298f   Jatinder Singh   change
622
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
623
      clear() {
ee83012b3   Jatinder Singh   changes
624
625
        this.$refs.form.reset();
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
      save() {
        let editUsers = {
          name: this.editedItem.name + this.editedItem.lastname,
          dob: this.editedItem.dob,
          email: this.editedItem.email,
          userId: this.editedItem.userId
        };
        http()
          .post("/patientDetail", editUsers)
          .then(response => {
            if ((this.snackbar = true)) {
              this.text = "Successfully Edit Existing User";
            }
              this.getPatientList();
          })
          .catch(error => {
             console.log(error);
          });
        this.close();
93a68cfa1   Jatinder Singh   first commit
645
      }
4413a8d93   Jatinder Singh   changes
646
    },
03dcbf0c1   Neeraj Sharma   fix all api and r...
647
    mounted() {
e173bab21   Jatinder Singh   api
648
649
      this.getPatientList();
    }
03dcbf0c1   Neeraj Sharma   fix all api and r...
650
651
652
653
654
    //computed:{
    //   color(){
    //     return this.loading ? 'success' : ''
    // }
    //}
93a68cfa1   Jatinder Singh   first commit
655
  };
93a68cfa1   Jatinder Singh   first commit
656
  </script>
04e3fbc56   Jatinder Singh   minor fix
657
  <style scoped>
ee83012b3   Jatinder Singh   changes
658
  .v-card__actions .v-btn {
04e3fbc56   Jatinder Singh   minor fix
659
660
661
    margin: 0 15px;
    min-width: 120px;
  }
8fc85e8ec   Jatinder Singh   data table changes
662

ee83012b3   Jatinder Singh   changes
663
664
665
666
667
  h4 {
    background-repeat: no-repeat;
    padding: 8px;
    margin: auto;
    font-size: 25px;
269061695   Jatinder Singh   changes
668
  }
ee83012b3   Jatinder Singh   changes
669
670
671
672
  #name {
    position: absolute;
    left: 100px;
    top: 17px;
269061695   Jatinder Singh   changes
673
  }
ee83012b3   Jatinder Singh   changes
674
  #icon {
269061695   Jatinder Singh   changes
675
676
677
678
    position: absolute;
    right: 8px;
    top: 8px;
  }
ee83012b3   Jatinder Singh   changes
679
  #m {
269061695   Jatinder Singh   changes
680
681
    position: relative;
    left: 135px;
c1fd43e24   Jatinder Singh   changes
682
    top: -15px;
269061695   Jatinder Singh   changes
683
  }
ee83012b3   Jatinder Singh   changes
684
685
686
  #G {
    position: absolute;
    top: 38px;
f84ff8f5a   Jatinder Singh   report page changes
687
    color: white;
269061695   Jatinder Singh   changes
688
  }
ee83012b3   Jatinder Singh   changes
689
  #bt {
269061695   Jatinder Singh   changes
690
    position: relative;
ee83012b3   Jatinder Singh   changes
691
692
    top: -20px;
    left: 115px;
269061695   Jatinder Singh   changes
693
  }
ee83012b3   Jatinder Singh   changes
694
695
  #e {
    position: relative;
defcc5da3   Jatinder Singh   report page
696
697
    top: 5px;
    right: -30px;
269061695   Jatinder Singh   changes
698
699
700
    height: 17px;
    cursor: pointer;
  }
ee83012b3   Jatinder Singh   changes
701
702
  #d {
    position: relative;
defcc5da3   Jatinder Singh   report page
703
704
    top: 5px;
    right: -70px;
ee83012b3   Jatinder Singh   changes
705
706
    height: 17px;
    cursor: pointer;
269061695   Jatinder Singh   changes
707
708
  }
  #td {
ee83012b3   Jatinder Singh   changes
709
710
711
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
269061695   Jatinder Singh   changes
712
  }
ee83012b3   Jatinder Singh   changes
713
714
715
716
717
718
  #dialog {
    height: 550px;
  }
  .active {
    background-color: black;
    color: white !important;
269061695   Jatinder Singh   changes
719
  }
ab72cb628   Jatinder Singh   report changes
720
721
722
  .activebtn {
    color: black !important;
  }
03dcbf0c1   Neeraj Sharma   fix all api and r...
723
724
725
726
727
728
729
730
731
  #flex {
    height: 300px;
  }
  .top{
    margin-top:100px;
  }
  .v-tabs__item a{
    font-size:16px !important; 
  }
659b42db7   Neeraj Sharma   changes something...
732
733
734
735
736
737
  @media screen and (max-width: 769px){
    .top{
      margin-top:0 !important;
    }
    
  }
03dcbf0c1   Neeraj Sharma   fix all api and r...
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
  @media screen and (max-width: 380px) {
  .right {
      float: none !important;
  }
  .subheading {
      font-size: 14px !important;
  }
  .v-card__actions .v-btn{
      margin: 0 0px;
      min-width: 100px;
  }
  }
  @media screen and (max-width: 380px) {
  .subheading {
      font-size: 12px !important;
  }  
  h5 {
      font-size: 13px;
  }
e2e46164f   Jatinder Singh   edit profile changes
757
  }
04e3fbc56   Jatinder Singh   minor fix
758
  </style>