Blame view

src/pages/Dashboard.vue 26.3 KB
93a68cfa1   Jatinder Singh   first commit
1
  <template>
03dcbf0c1   Neeraj Sharma   fix all api and r...
2
  <v-app id="pages-dasboard">
dd4ecae1d   Neeraj Sharma   search very fast ...
3
   <v-toolbar
f7979ec1a   Neeraj Sharma   add seach in heal...
4
5
6
7
      color="grey"
      fixed
      app
    >
dd4ecae1d   Neeraj Sharma   search very fast ...
8
9
    <v-toolbar-title class="ml-0 pl-3">
     <v-toolbar-side-icon @click.stop="handleDrawerToggle" class="hide"></v-toolbar-side-icon>
f7979ec1a   Neeraj Sharma   add seach in heal...
10
      </v-toolbar-title>
dd4ecae1d   Neeraj Sharma   search very fast ...
11
12
      <!-- SEARCH ALL EXISTING USERS -->
      <v-flex xs7 sm3 class="userSearch">
f7979ec1a   Neeraj Sharma   add seach in heal...
13
14
15
16
17
18
19
20
21
22
23
        <v-text-field
          flat
          prepend-icon="search"
          label="Find your user"
          v-model="term"
          color="black"
          @change="getPatientList"
        >
        </v-text-field>
      </v-flex>
        <v-spacer></v-spacer>
dd4ecae1d   Neeraj Sharma   search very fast ...
24
        <h5 class="white--text name"> {{ userName }} </h5>
f7979ec1a   Neeraj Sharma   add seach in heal...
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
        <v-menu offset-y origin="center center" :nudge-bottom="10" transition="scale-transition">
       <v-btn icon large flat slot="activator">
            <v-avatar size="40px">
             <img src="/static/icon/user.png"/>
            </v-avatar>
        </v-btn>
          <v-list class="pa-0">
            <v-list-tile v-for="(item,index) in items" :to="!item.href ? { name: item.name } : null" :href="item.href" @click="item.click" ripple="ripple" :disabled="item.disabled" :target="item.target" rel="noopener" :key="index">
               <v-list-tile-action v-if="item.icon">
                <v-icon>{{ item.icon }}</v-icon>
              </v-list-tile-action>
              <v-list-tile-content>
                <v-list-tile-title>{{ item.title }}</v-list-tile-title>
              </v-list-tile-content>
            </v-list-tile>
          </v-list> 
        </v-menu>
    </v-toolbar>
03dcbf0c1   Neeraj Sharma   fix all api and r...
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
    <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
80
            <v-card-text>
03dcbf0c1   Neeraj Sharma   fix all api and r...
81
82
83
84
85
              <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;">
0cefd6eff   Neeraj Sharma   add country input...
86
                        <v-flex xs4 class="pt-4 subheading">
03dcbf0c1   Neeraj Sharma   fix all api and r...
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
                          <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>
03dcbf0c1   Neeraj Sharma   fix all api and r...
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
                      <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>
ac10393a4   Neeraj Sharma   add calender date...
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
                        <v-menu
                           ref="menu1"
                           :close-on-content-click="false"
                           v-model="menu1"
                           :nudge-right="40"
                           lazy
                           transition="scale-transition"
                           offset-y
                           full-width
                           min-width="290px"
                         >
                         <v-text-field
                          slot="activator"
                          v-model="editedItem.dob"
                          placeholder="Select date"
                         ></v-text-field>
                         <v-date-picker
                          ref="picker"
                          v-model="editedItem.dob"
                          :max="new Date().toISOString().substr(0, 10)"
                          min="1950-01-01"
                          @input="menu1 = false"
                          ></v-date-picker>
                          </v-menu>
03dcbf0c1   Neeraj Sharma   fix all api and r...
156
157
158
159
160
161
162
163
164
165
166
167
168
169
                        </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>
03dcbf0c1   Neeraj Sharma   fix all api and r...
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
        <!-- 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
226

03dcbf0c1   Neeraj Sharma   fix all api and r...
227
228
229
230
231
232
233
234
235
236
237
238
239
240
        <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
241

03dcbf0c1   Neeraj Sharma   fix all api and r...
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
              <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"
dd4ecae1d   Neeraj Sharma   search very fast ...
287
        :search="term"
c35a8dafd   Jatinder Singh   minor changes
288
289
        >
          <template slot="items" slot-scope="props">
03dcbf0c1   Neeraj Sharma   fix all api and r...
290
291
292
            <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
293
            <td class="text-xs-center">
03dcbf0c1   Neeraj Sharma   fix all api and r...
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
              <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
320
            </td>
c35a8dafd   Jatinder Singh   minor changes
321
          </template>
dd4ecae1d   Neeraj Sharma   search very fast ...
322
323
324
325
326
327
          <v-alert
            slot="no-results"
            :value="true"
            color="error"
            icon="warning"
          >Your search for "{{ term }}" found no results.</v-alert>
c35a8dafd   Jatinder Singh   minor changes
328
        </v-data-table>
03dcbf0c1   Neeraj Sharma   fix all api and r...
329
330
331
      </v-tab-item>
      <!-- ADD USER PATIENT -->
      <v-tab-item>
03dcbf0c1   Neeraj Sharma   fix all api and r...
332
        <v-container>
f42c1d9c9   Neeraj Sharma   something change ...
333
334
335
336
337
338
339
340
         <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...
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
        <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 ...
359
                          placeholder="fill your first Name"
03dcbf0c1   Neeraj Sharma   fix all api and r...
360
                          name="name"
f42c1d9c9   Neeraj Sharma   something change ...
361
                          type="text"
03dcbf0c1   Neeraj Sharma   fix all api and r...
362
363
364
365
366
367
368
369
370
371
372
                          :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 ...
373
                          placeholder="fill your last Name"                        
03dcbf0c1   Neeraj Sharma   fix all api and r...
374
375
                          :rules="lastnameRules"
                          v-model="editedItem.lastname"
f42c1d9c9   Neeraj Sharma   something change ...
376
                          type="text"
03dcbf0c1   Neeraj Sharma   fix all api and r...
377
378
379
380
381
382
383
                          name="lastname"
                          required
                        ></v-text-field>
                      </v-flex>
                    </v-layout>
                    <v-layout>
                      <v-flex xs4 class="pt-4 subheading">
0cefd6eff   Neeraj Sharma   add country input...
384
385
386
387
                        <label class="right">Country:</label>
                      </v-flex>
                      <v-flex xs6  class="ml-3">
                        <v-text-field
ac10393a4   Neeraj Sharma   add calender date...
388
389
                          placeholder="fill your country Name"   
                          :rules="countryRules"
0cefd6eff   Neeraj Sharma   add country input...
390
391
392
393
394
395
396
397
398
                          v-model="editedItem.country"
                          type="text"
                          name="country"
                          required
                        ></v-text-field>
                      </v-flex>
                    </v-layout>
                    <v-layout>
                      <v-flex xs4 class="pt-4 subheading">
03dcbf0c1   Neeraj Sharma   fix all api and r...
399
400
401
402
                        <label class="right">Email ID:</label>
                      </v-flex>
                      <v-flex xs6 class="ml-3">
                        <v-text-field
f42c1d9c9   Neeraj Sharma   something change ...
403
                          placeholder="fill your email"
03dcbf0c1   Neeraj Sharma   fix all api and r...
404
405
                          :rules="emailRules"
                          v-model="editedItem.email"
f42c1d9c9   Neeraj Sharma   something change ...
406
                          type="text"
03dcbf0c1   Neeraj Sharma   fix all api and r...
407
408
409
410
411
                          name="email"
                          required
                        ></v-text-field>
                      </v-flex>
                    </v-layout>
03dcbf0c1   Neeraj Sharma   fix all api and r...
412
413
414
415
416
                    <v-layout>
                      <v-flex xs4 class="pt-4 subheading">
                        <label class="right">Date of Birth:</label>
                      </v-flex>
                      <v-flex xs6 class="ml-3">
ac10393a4   Neeraj Sharma   add calender date...
417
418
419
420
421
422
423
                         <v-menu
                           ref="menu"
                           :close-on-content-click="false"
                           v-model="menu"
                           :nudge-right="40"
                           lazy
                           transition="scale-transition"
f42c1d9c9   Neeraj Sharma   something change ...
424
                           offset-y
ac10393a4   Neeraj Sharma   add calender date...
425
426
                           full-width
                           min-width="290px"
ac10393a4   Neeraj Sharma   add calender date...
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
                          >
                         <v-text-field
                          slot="activator"
                          v-model="editedItem.date"
                          placeholder="Select date"
                         ></v-text-field>
                         <v-date-picker
                          ref="picker"
                          v-model="editedItem.date"
                          :max="new Date().toISOString().substr(0, 10)"
                          min="1950-01-01"
                          @input="menu = false"
                          ></v-date-picker>
                          </v-menu>
                         </v-flex>
                       </v-layout>
dd4ecae1d   Neeraj Sharma   search very fast ...
443
444
445
                      <v-layout>
                        <v-flex xs12 sm9 offset-sm2>
                      <v-card-actions>
03dcbf0c1   Neeraj Sharma   fix all api and r...
446
447
448
                      <v-btn @click="clear" round dark>clear</v-btn>
                      <v-spacer></v-spacer>
                      <v-btn @click="submit" round dark :loading="loading">Add</v-btn>
dd4ecae1d   Neeraj Sharma   search very fast ...
449
                     </v-card-actions>
03dcbf0c1   Neeraj Sharma   fix all api and r...
450
451
452
453
454
455
456
457
458
459
460
461
                     </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
462
463
464
  </template>
  
  <script>
f7979ec1a   Neeraj Sharma   add seach in heal...
465
  // import AppToolbar from '@/components/AppToolbar';
03dcbf0c1   Neeraj Sharma   fix all api and r...
466
467
468
469
470
471
  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";
f7979ec1a   Neeraj Sharma   add seach in heal...
472
473
  import NotificationList from "@/components/widgets/list/NotificationList";
  import Util from "@/util";
03dcbf0c1   Neeraj Sharma   fix all api and r...
474

93a68cfa1   Jatinder Singh   first commit
475
  export default {
f84ff8f5a   Jatinder Singh   report page changes
476
    components: {
03dcbf0c1   Neeraj Sharma   fix all api and r...
477
478
479
480
      "one-month": onemonth,
      "three-month": threemonth,
      "six-month": sixmonth,
      "nine-month": ninemonth,
0cefd6eff   Neeraj Sharma   add country input...
481
      "report-generate": generatereport,
f7979ec1a   Neeraj Sharma   add seach in heal...
482
   },
93a68cfa1   Jatinder Singh   first commit
483
    data: () => ({
03dcbf0c1   Neeraj Sharma   fix all api and r...
484
485
486
487
488
489
490
491
      component: "report-generate",
      snackbar: false,
      y: "top",
      x: "right",
      mode: "",
      timeout: 3000,
      text: "",
      loading: false,
ac10393a4   Neeraj Sharma   add calender date...
492
      date:null,
f7979ec1a   Neeraj Sharma   add seach in heal...
493
      term: "",
03dcbf0c1   Neeraj Sharma   fix all api and r...
494
495
      modal: false,
      modaledit:false,
ac10393a4   Neeraj Sharma   add calender date...
496
497
      menu: false,
      menu1:false,
93a68cfa1   Jatinder Singh   first commit
498
      dialog: false,
c35a8dafd   Jatinder Singh   minor changes
499
500
501
      dialog1: false,
      dialog2: false,
      valid: true,
ee83012b3   Jatinder Singh   changes
502
503
      isActive: true,
      newActive: false,
ab72cb628   Jatinder Singh   report changes
504
505
506
507
      isActivebtn: false,
      Activebtn1: false,
      Activebtn2: false,
      Activebtn3: false,
defcc5da3   Jatinder Singh   report page
508
509
510
511
512
      loader: null,
      loading: false,
      loading2: false,
      loading3: false,
      loading4: false,
03dcbf0c1   Neeraj Sharma   fix all api and r...
513
      details: [],
b34ed827a   Jatinder Singh   changes
514
      AddUsercredentials: {},
5ac5570a9   Jatinder Singh   datatable changes
515
      pagination: {
03dcbf0c1   Neeraj Sharma   fix all api and r...
516
        rowsPerPage: 15
5ac5570a9   Jatinder Singh   datatable changes
517
      },
04e3fbc56   Jatinder Singh   minor fix
518
      rules: {
03dcbf0c1   Neeraj Sharma   fix all api and r...
519
        required: value => !!value || "Date of Birth is Required.",
ee83012b3   Jatinder Singh   changes
520
521
522
523
524
        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...
525
          "Please enter a date in the format dd/mm/yyyy"
04e3fbc56   Jatinder Singh   minor fix
526
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
527
      nameRules: [v => !!v || " First Name is required"],
c35a8dafd   Jatinder Singh   minor changes
528
      emailRules: [
03dcbf0c1   Neeraj Sharma   fix all api and r...
529
530
        v => !!v || "E-mail is required",
        v => /.+@.+/.test(v) || "E-mail must be valid"
c35a8dafd   Jatinder Singh   minor changes
531
      ],
03dcbf0c1   Neeraj Sharma   fix all api and r...
532
      lastnameRules: [v => !!v || " Last Name is required"],
0cefd6eff   Neeraj Sharma   add country input...
533
      countryRules: [v => !!v || "  Country Name is required"],
93a68cfa1   Jatinder Singh   first commit
534
535
      headers: [
        {
03dcbf0c1   Neeraj Sharma   fix all api and r...
536
537
          text: "No",
          align: "center",
93a68cfa1   Jatinder Singh   first commit
538
          sortable: false,
03dcbf0c1   Neeraj Sharma   fix all api and r...
539
          value: "No"
c35a8dafd   Jatinder Singh   minor changes
540
        },
03dcbf0c1   Neeraj Sharma   fix all api and r...
541
542
543
        { 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
544
      ],
03dcbf0c1   Neeraj Sharma   fix all api and r...
545
      desserts: [],
93a68cfa1   Jatinder Singh   first commit
546
547
      editedIndex: -1,
      editedItem: {
03dcbf0c1   Neeraj Sharma   fix all api and r...
548
549
550
551
        No: "",
        name: "",
        lastName: "",
        email: "",
ac10393a4   Neeraj Sharma   add calender date...
552
        date: null,
0cefd6eff   Neeraj Sharma   add country input...
553
        country: ""
93a68cfa1   Jatinder Singh   first commit
554
555
      },
      defaultItem: {
03dcbf0c1   Neeraj Sharma   fix all api and r...
556
557
558
559
560
        No: "",
        name: "",
        lastname: "",
        email: "",
        dob: ""
f7979ec1a   Neeraj Sharma   add seach in heal...
561
562
563
564
      },
      userName:'',
      items: [
        {
f7979ec1a   Neeraj Sharma   add seach in heal...
565
566
567
568
569
570
          href: "/changepassword",
          title: "Change Password",
          click: e => {
            console.log(e);
          }
        },
f7979ec1a   Neeraj Sharma   add seach in heal...
571
        {
f7979ec1a   Neeraj Sharma   add seach in heal...
572
573
574
575
          href: "#",
          title: "Logout",
          click: e => {
            window.getApp.$emit("APP_LOGOUT");
f7979ec1a   Neeraj Sharma   add seach in heal...
576
577
578
          }
        }
      ]
93a68cfa1   Jatinder Singh   first commit
579
    }),
ac10393a4   Neeraj Sharma   add calender date...
580
581
582
583
584
585
586
587
588
589
590
591
     watch: {
      menu (val) {
        val && this.$nextTick(() => (this.$refs.picker.activePicker = 'YEAR'))
      },
      menu1 (val) {
        val && this.$nextTick(() => (this.$refs.picker.activePicker = 'YEAR'))
      }
     },
     methods: {
      save (date) {
        this.$refs.menu.save(date)
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
592
593
594
      getPatientList() {
        var token = this.$store.state.token;
        http()
f7979ec1a   Neeraj Sharma   add seach in heal...
595
          .get("/patientList?term=" + this.term, { 
03dcbf0c1   Neeraj Sharma   fix all api and r...
596
597
            headers: { Authorization: "Bearer " + token } 
           })
e173bab21   Jatinder Singh   api
598
          .then(response => {
03dcbf0c1   Neeraj Sharma   fix all api and r...
599
600
601
602
603
            this.desserts = response.data.data.existingUser;
          })
          .catch(err => {
            console.log("err====>", err);
          });
e173bab21   Jatinder Singh   api
604
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
605
      editItem(item) {
93a68cfa1   Jatinder Singh   first commit
606
607
608
609
        this.editedIndex = this.desserts.indexOf(item);
        this.editedItem = Object.assign({}, item);
        this.dialog = true;
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
610
      profile(item) {
c35a8dafd   Jatinder Singh   minor changes
611
612
613
614
        this.editedIndex = this.desserts.indexOf(item);
        this.editedItem = Object.assign({}, item);
        this.dialog1 = true;
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
615
      report(item) {
c35a8dafd   Jatinder Singh   minor changes
616
617
618
        this.editedIndex = this.desserts.indexOf(item);
        this.editedItem = Object.assign({}, item);
        this.dialog2 = true;
a259e694f   Jatinder Singh   minor change
619
      },
93a68cfa1   Jatinder Singh   first commit
620

03dcbf0c1   Neeraj Sharma   fix all api and r...
621
622
623
624
625
      deleteItem(item) {
        let addUsers = {
          userId: item.userId
        };
        http()
ac10393a4   Neeraj Sharma   add calender date...
626
          .post("/deletePatient", confirm('Are you sure you want to delete this?') && addUsers)
03dcbf0c1   Neeraj Sharma   fix all api and r...
627
628
629
630
631
632
633
634
635
          .then(response => {
            if ((this.snackbar = true)) {
              this.text = "Successfully delete Existing User";
          }
            this.getPatientList();
          })
          .catch(error => {
            console.log(error);
          });
93a68cfa1   Jatinder Singh   first commit
636
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
637
      activeTab(type) {
ee83012b3   Jatinder Singh   changes
638
        switch (type) {
03dcbf0c1   Neeraj Sharma   fix all api and r...
639
          case "existing":
ee83012b3   Jatinder Singh   changes
640
641
642
643
644
645
646
647
648
649
            this.newActive = false;
            this.isActive = true;
            break;
  
          default:
            this.newActive = true;
            this.isActive = false;
            break;
        }
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
650
      activebtn(type) {
ab72cb628   Jatinder Singh   report changes
651
        switch (type) {
03dcbf0c1   Neeraj Sharma   fix all api and r...
652
          case "existing":
ab72cb628   Jatinder Singh   report changes
653
654
655
656
657
            this.Activebtn3 = false;
            this.Activebtn2 = false;
            this.Activebtn1 = false;
            this.isActivebtn = true;
            break;
03dcbf0c1   Neeraj Sharma   fix all api and r...
658
          case "new":
ab72cb628   Jatinder Singh   report changes
659
660
661
662
663
            this.Activebtn3 = false;
            this.Activebtn2 = false;
            this.Activebtn1 = true;
            this.isActivebtn = false;
            break;
03dcbf0c1   Neeraj Sharma   fix all api and r...
664
          case "new1":
ab72cb628   Jatinder Singh   report changes
665
666
667
668
669
670
671
672
673
674
675
676
677
            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...
678
      close() {
93a68cfa1   Jatinder Singh   first commit
679
680
681
682
683
684
        this.dialog = false;
        setTimeout(() => {
          this.editedItem = Object.assign({}, this.defaultItem);
          this.editedIndex = -1;
        }, 300);
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
685
      close1() {
c35a8dafd   Jatinder Singh   minor changes
686
687
        this.dialog1 = false;
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
688
      close2() {
c35a8dafd   Jatinder Singh   minor changes
689
690
        this.dialog2 = false;
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
691
      submit() {
c35a8dafd   Jatinder Singh   minor changes
692
        if (this.$refs.form.validate()) {
03dcbf0c1   Neeraj Sharma   fix all api and r...
693
          let addUsers = {
ac10393a4   Neeraj Sharma   add calender date...
694
            name: this.editedItem.name + " " +this.editedItem.lastname,
03dcbf0c1   Neeraj Sharma   fix all api and r...
695
696
697
698
            dob: this.editedItem.dob,
            email: this.editedItem.email,
            country: this.editedItem.country
          };
c2842195b   Neeraj Sharma   testing success &...
699
          // console.log(addUsers)
03dcbf0c1   Neeraj Sharma   fix all api and r...
700
701
702
          http()
            .post("/patient", addUsers)
            .then(response => {
03dcbf0c1   Neeraj Sharma   fix all api and r...
703
              this.getPatientList();
f42c1d9c9   Neeraj Sharma   something change ...
704
              if (this.snackbar = true) {
03dcbf0c1   Neeraj Sharma   fix all api and r...
705
706
                this.text = "Successfully Add New User";
              }
f42c1d9c9   Neeraj Sharma   something change ...
707
708
              
            this.clear();
03dcbf0c1   Neeraj Sharma   fix all api and r...
709
710
711
            })
            .catch(error => {
              console.log(error);
f42c1d9c9   Neeraj Sharma   something change ...
712
713
714
              if (this.snackbar = true) {
              this.text = error.response.data.message;
            }
03dcbf0c1   Neeraj Sharma   fix all api and r...
715
            });
c35a8dafd   Jatinder Singh   minor changes
716
717
        }
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
718
      mail() {
789f8298f   Jatinder Singh   change
719
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
720
      download() {
789f8298f   Jatinder Singh   change
721
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
722
      clear() {
ee83012b3   Jatinder Singh   changes
723
724
        this.$refs.form.reset();
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
725
726
      save() {
        let editUsers = {
ac10393a4   Neeraj Sharma   add calender date...
727
          name: this.editedItem.name + " " + this.editedItem.lastname,
03dcbf0c1   Neeraj Sharma   fix all api and r...
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
          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();
f7979ec1a   Neeraj Sharma   add seach in heal...
744
745
746
747
748
749
      },
      handleDrawerToggle() {
        window.getApp.$emit("APP_DRAWER_TOGGLED");
      },
      handleFullScreen() {
        Util.toggleFullScreen();
93a68cfa1   Jatinder Singh   first commit
750
      }
4413a8d93   Jatinder Singh   changes
751
    },
03dcbf0c1   Neeraj Sharma   fix all api and r...
752
    mounted() {
e173bab21   Jatinder Singh   api
753
      this.getPatientList();
f7979ec1a   Neeraj Sharma   add seach in heal...
754
755
756
757
758
759
      this.userName = this.$store.state.name;
    },
    computed:{
      toolbarColor() {
        return this.$vuetify.options.extra.mainNav;
      }
e173bab21   Jatinder Singh   api
760
    }
93a68cfa1   Jatinder Singh   first commit
761
  };
93a68cfa1   Jatinder Singh   first commit
762
  </script>
04e3fbc56   Jatinder Singh   minor fix
763
  <style scoped>
dd4ecae1d   Neeraj Sharma   search very fast ...
764
765
766
  .v-input__prepend-outer {
      margin-right: 0px !important;
  }
ee83012b3   Jatinder Singh   changes
767
  .v-card__actions .v-btn {
04e3fbc56   Jatinder Singh   minor fix
768
769
770
    margin: 0 15px;
    min-width: 120px;
  }
ac10393a4   Neeraj Sharma   add calender date...
771
772
773
774
   .primary {
      background-color: #aaa !important;
      border-color: #aaa !important;
  }
ee83012b3   Jatinder Singh   changes
775
776
777
778
779
  h4 {
    background-repeat: no-repeat;
    padding: 8px;
    margin: auto;
    font-size: 25px;
269061695   Jatinder Singh   changes
780
  }
ee83012b3   Jatinder Singh   changes
781
782
783
784
  #name {
    position: absolute;
    left: 100px;
    top: 17px;
269061695   Jatinder Singh   changes
785
  }
ee83012b3   Jatinder Singh   changes
786
  #icon {
269061695   Jatinder Singh   changes
787
788
789
790
    position: absolute;
    right: 8px;
    top: 8px;
  }
ee83012b3   Jatinder Singh   changes
791
  #m {
269061695   Jatinder Singh   changes
792
793
    position: relative;
    left: 135px;
c1fd43e24   Jatinder Singh   changes
794
    top: -15px;
269061695   Jatinder Singh   changes
795
  }
ee83012b3   Jatinder Singh   changes
796
797
798
  #G {
    position: absolute;
    top: 38px;
f84ff8f5a   Jatinder Singh   report page changes
799
    color: white;
269061695   Jatinder Singh   changes
800
  }
ee83012b3   Jatinder Singh   changes
801
  #bt {
269061695   Jatinder Singh   changes
802
    position: relative;
ee83012b3   Jatinder Singh   changes
803
804
    top: -20px;
    left: 115px;
269061695   Jatinder Singh   changes
805
  }
ee83012b3   Jatinder Singh   changes
806
807
  #e {
    position: relative;
defcc5da3   Jatinder Singh   report page
808
809
    top: 5px;
    right: -30px;
269061695   Jatinder Singh   changes
810
811
812
    height: 17px;
    cursor: pointer;
  }
ee83012b3   Jatinder Singh   changes
813
814
  #d {
    position: relative;
defcc5da3   Jatinder Singh   report page
815
816
    top: 5px;
    right: -70px;
ee83012b3   Jatinder Singh   changes
817
818
    height: 17px;
    cursor: pointer;
269061695   Jatinder Singh   changes
819
820
  }
  #td {
ee83012b3   Jatinder Singh   changes
821
822
823
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
269061695   Jatinder Singh   changes
824
  }
ee83012b3   Jatinder Singh   changes
825
826
827
828
829
830
  #dialog {
    height: 550px;
  }
  .active {
    background-color: black;
    color: white !important;
269061695   Jatinder Singh   changes
831
  }
ab72cb628   Jatinder Singh   report changes
832
833
834
  .activebtn {
    color: black !important;
  }
03dcbf0c1   Neeraj Sharma   fix all api and r...
835
836
837
838
839
840
841
842
843
  #flex {
    height: 300px;
  }
  .top{
    margin-top:100px;
  }
  .v-tabs__item a{
    font-size:16px !important; 
  }
659b42db7   Neeraj Sharma   changes something...
844
845
846
  @media screen and (max-width: 769px){
    .top{
      margin-top:0 !important;
dd4ecae1d   Neeraj Sharma   search very fast ...
847
848
849
850
    } 
    .userSearch .v-icon {
      font-size: 20px !important;
      margin-left: 20px ;
659b42db7   Neeraj Sharma   changes something...
851
    }
659b42db7   Neeraj Sharma   changes something...
852
  }
03dcbf0c1   Neeraj Sharma   fix all api and r...
853
854
855
856
857
858
859
860
861
862
863
  @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;
  }
dd4ecae1d   Neeraj Sharma   search very fast ...
864
865
866
867
  /* .searchIcon .v-icon {
      font-size: 20px;
      margin-left: 20px;
  } */
03dcbf0c1   Neeraj Sharma   fix all api and r...
868
869
870
871
872
873
  .subheading {
      font-size: 12px !important;
  }  
  h5 {
      font-size: 13px;
  }
e2e46164f   Jatinder Singh   edit profile changes
874
  }
f7979ec1a   Neeraj Sharma   add seach in heal...
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
  .v-icon{
    font-size:30px;
  }
  @media screen and (min-width: 1270px){
  .hide{
    display: none;
  }
  /* }
  @media screen and (max-width: 962px) {
  .imglogo{
      position: absolute;
      top: 13px;
      left: 13px !important;
      width: 70px;
      height: 24px;
  } */
  }
  @media screen and (max-width: 420px){
dd4ecae1d   Neeraj Sharma   search very fast ...
893
894
895
896
897
898
  .userSearch .v-text-field .v-label{
    line-height: 24px !important;
  }
  .userSearch .v-label{
    font-size: 13px !important;
  }
f7979ec1a   Neeraj Sharma   add seach in heal...
899
900
901
902
903
904
905
906
  .v-list__tile {
    font-size:14px;
    padding: 0 10px;
  }
  .name{
    font-size:15px; 
  }
  }
04e3fbc56   Jatinder Singh   minor fix
907
  </style>