Blame view

src/pages/Dashboard.vue 24.8 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>
945cc2d12   Neeraj Sharma   somrthing changes...
11
  <!-- ****** SEARCH ALL EXISTING USERS ****** -->
dd4ecae1d   Neeraj Sharma   search very fast ...
12
      <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
    <v-tabs grow slider-color="black">
      <v-tab
        ripple
        @click="activeTab('existing')"
        v-bind:class="{ active: isActive }"
        id="tab"
        class="subheading"
9f9522c1d   Neeraj Sharma   fix button text a...
50
      >Existing User</v-tab>
03dcbf0c1   Neeraj Sharma   fix all api and r...
51
52
53
54
55
56
57
      <v-tab
        ripple
        @click="activeTab('new')"
        v-bind:class="{ active: newActive }"
        id="tab1"
        class="subheading"
      >Add New Users</v-tab>
945cc2d12   Neeraj Sharma   somrthing changes...
58
  <!-- ****** EDIT USERS Patient Dtails ****** -->
03dcbf0c1   Neeraj Sharma   fix all api and r...
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
      <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">
5f2dd99ed   Neeraj Sharma   add full name in ...
87
                          <label>Full Name:</label>
03dcbf0c1   Neeraj Sharma   fix all api and r...
88
89
90
91
92
93
94
95
96
97
98
                        </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>
03dcbf0c1   Neeraj Sharma   fix all api and r...
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
                      <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...
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
                        <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...
142
143
144
145
146
147
148
149
150
151
152
153
154
155
                        </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>
945cc2d12   Neeraj Sharma   somrthing changes...
156
  <!-- ****** PROFILE VIEW pateints Details ******  -->
03dcbf0c1   Neeraj Sharma   fix all api and r...
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
        <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>
5f2dd99ed   Neeraj Sharma   add full name in ...
176
                       <h5 class="right">Full Name:</h5>
03dcbf0c1   Neeraj Sharma   fix all api and r...
177
178
179
180
181
                      </v-flex>
                      <v-flex sm6 xs8>
                      <h5>{{ editedItem.name }}</h5>
                    </v-flex>
                   </v-layout>
03dcbf0c1   Neeraj Sharma   fix all api and r...
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
                    <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
204

03dcbf0c1   Neeraj Sharma   fix all api and r...
205
206
207
208
209
210
211
212
        <v-dialog v-model="dialog2" width="700px">
          <v-card>
            <div id="dialog">
              <h4>
                <b>Report</b>
              </h4>
              <h5 id="name">
                <b>Patient Name:</b>
5f2dd99ed   Neeraj Sharma   add full name in ...
213
                {{ editedItem.name }}
03dcbf0c1   Neeraj Sharma   fix all api and r...
214
215
216
217
218
              </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
219

03dcbf0c1   Neeraj Sharma   fix all api and r...
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
              <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>
945cc2d12   Neeraj Sharma   somrthing changes...
260
  <!-- ****** EXISTING-USERS PatientList Table ****** -->
03dcbf0c1   Neeraj Sharma   fix all api and r...
261
262
263
264
        <v-data-table 
        :headers="headers" 
        :items="desserts" 
        :pagination.sync="pagination"
945cc2d12   Neeraj Sharma   somrthing changes...
265
266
267
268
        >    <!-- </v-content>
       <v-footer class="pa-4" color="grey darken-2">
    
    </v-footer> -->
c35a8dafd   Jatinder Singh   minor changes
269
          <template slot="items" slot-scope="props">
03dcbf0c1   Neeraj Sharma   fix all api and r...
270
271
272
            <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
273
            <td class="text-xs-center">
03dcbf0c1   Neeraj Sharma   fix all api and r...
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
              <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
300
            </td>
c35a8dafd   Jatinder Singh   minor changes
301
          </template>
dd4ecae1d   Neeraj Sharma   search very fast ...
302
303
304
305
306
307
          <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
308
        </v-data-table>
03dcbf0c1   Neeraj Sharma   fix all api and r...
309
      </v-tab-item>
945cc2d12   Neeraj Sharma   somrthing changes...
310
  <!-- ****** ADD USER PATIENT ****** -->
03dcbf0c1   Neeraj Sharma   fix all api and r...
311
      <v-tab-item>
03dcbf0c1   Neeraj Sharma   fix all api and r...
312
        <v-container>
f42c1d9c9   Neeraj Sharma   something change ...
313
314
315
316
317
318
319
320
         <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...
321
322
323
324
325
326
327
328
329
330
331
332
333
        <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">
5f2dd99ed   Neeraj Sharma   add full name in ...
334
                        <label class="right">Full Name:</label>
03dcbf0c1   Neeraj Sharma   fix all api and r...
335
336
337
338
                      </v-flex>
                      <v-flex xs6 class="ml-3">
                        <v-text-field
                          v-model="editedItem.name"
5f2dd99ed   Neeraj Sharma   add full name in ...
339
                          placeholder="fill your full Name"
03dcbf0c1   Neeraj Sharma   fix all api and r...
340
                          name="name"
f42c1d9c9   Neeraj Sharma   something change ...
341
                          type="text"
03dcbf0c1   Neeraj Sharma   fix all api and r...
342
343
344
345
346
                          :rules="nameRules"
                          required
                        ></v-text-field>
                      </v-flex>
                    </v-layout>
03dcbf0c1   Neeraj Sharma   fix all api and r...
347
348
                    <v-layout>
                      <v-flex xs4 class="pt-4 subheading">
0cefd6eff   Neeraj Sharma   add country input...
349
350
351
                        <label class="right">Country:</label>
                      </v-flex>
                      <v-flex xs6  class="ml-3">
a95d2830c   Neeraj Sharma   add country selec...
352
353
354
                          <v-select
                           v-model="editedItem.country"
                           :items="countries"
43af283e0   Neeraj Sharma   fix solved issue ...
355
356
                           label="Select Country"
                           single-line
a95d2830c   Neeraj Sharma   add country selec...
357
                         ></v-select>
0cefd6eff   Neeraj Sharma   add country input...
358
359
360
361
                      </v-flex>
                    </v-layout>
                    <v-layout>
                      <v-flex xs4 class="pt-4 subheading">
03dcbf0c1   Neeraj Sharma   fix all api and r...
362
363
364
365
                        <label class="right">Email ID:</label>
                      </v-flex>
                      <v-flex xs6 class="ml-3">
                        <v-text-field
f42c1d9c9   Neeraj Sharma   something change ...
366
                          placeholder="fill your email"
03dcbf0c1   Neeraj Sharma   fix all api and r...
367
368
                          :rules="emailRules"
                          v-model="editedItem.email"
f42c1d9c9   Neeraj Sharma   something change ...
369
                          type="text"
03dcbf0c1   Neeraj Sharma   fix all api and r...
370
371
372
373
374
                          name="email"
                          required
                        ></v-text-field>
                      </v-flex>
                    </v-layout>
03dcbf0c1   Neeraj Sharma   fix all api and r...
375
376
377
378
379
                    <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...
380
381
382
383
384
385
386
                         <v-menu
                           ref="menu"
                           :close-on-content-click="false"
                           v-model="menu"
                           :nudge-right="40"
                           lazy
                           transition="scale-transition"
f42c1d9c9   Neeraj Sharma   something change ...
387
                           offset-y
ac10393a4   Neeraj Sharma   add calender date...
388
389
                           full-width
                           min-width="290px"
ac10393a4   Neeraj Sharma   add calender date...
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
                          >
                         <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 ...
406
407
408
                      <v-layout>
                        <v-flex xs12 sm9 offset-sm2>
                      <v-card-actions>
03dcbf0c1   Neeraj Sharma   fix all api and r...
409
410
411
                      <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 ...
412
                     </v-card-actions>
03dcbf0c1   Neeraj Sharma   fix all api and r...
413
414
415
416
417
418
419
420
421
422
423
424
                     </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
425
426
427
  </template>
  
  <script>
f7979ec1a   Neeraj Sharma   add seach in heal...
428
  // import AppToolbar from '@/components/AppToolbar';
03dcbf0c1   Neeraj Sharma   fix all api and r...
429
430
431
432
433
434
  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...
435
436
  import NotificationList from "@/components/widgets/list/NotificationList";
  import Util from "@/util";
03dcbf0c1   Neeraj Sharma   fix all api and r...
437

93a68cfa1   Jatinder Singh   first commit
438
  export default {
f84ff8f5a   Jatinder Singh   report page changes
439
    components: {
03dcbf0c1   Neeraj Sharma   fix all api and r...
440
441
442
443
      "one-month": onemonth,
      "three-month": threemonth,
      "six-month": sixmonth,
      "nine-month": ninemonth,
0cefd6eff   Neeraj Sharma   add country input...
444
      "report-generate": generatereport,
f7979ec1a   Neeraj Sharma   add seach in heal...
445
   },
93a68cfa1   Jatinder Singh   first commit
446
    data: () => ({
03dcbf0c1   Neeraj Sharma   fix all api and r...
447
448
449
450
451
452
453
454
      component: "report-generate",
      snackbar: false,
      y: "top",
      x: "right",
      mode: "",
      timeout: 3000,
      text: "",
      loading: false,
ac10393a4   Neeraj Sharma   add calender date...
455
      date:null,
f7979ec1a   Neeraj Sharma   add seach in heal...
456
      term: "",
03dcbf0c1   Neeraj Sharma   fix all api and r...
457
458
      modal: false,
      modaledit:false,
ac10393a4   Neeraj Sharma   add calender date...
459
460
      menu: false,
      menu1:false,
93a68cfa1   Jatinder Singh   first commit
461
      dialog: false,
c35a8dafd   Jatinder Singh   minor changes
462
463
464
      dialog1: false,
      dialog2: false,
      valid: true,
ee83012b3   Jatinder Singh   changes
465
466
      isActive: true,
      newActive: false,
ab72cb628   Jatinder Singh   report changes
467
468
469
470
      isActivebtn: false,
      Activebtn1: false,
      Activebtn2: false,
      Activebtn3: false,
defcc5da3   Jatinder Singh   report page
471
472
473
474
475
      loader: null,
      loading: false,
      loading2: false,
      loading3: false,
      loading4: false,
03dcbf0c1   Neeraj Sharma   fix all api and r...
476
      details: [],
a95d2830c   Neeraj Sharma   add country selec...
477
      countries:['US','Canada'],
b34ed827a   Jatinder Singh   changes
478
      AddUsercredentials: {},
5ac5570a9   Jatinder Singh   datatable changes
479
      pagination: {
03dcbf0c1   Neeraj Sharma   fix all api and r...
480
        rowsPerPage: 15
5ac5570a9   Jatinder Singh   datatable changes
481
      },
04e3fbc56   Jatinder Singh   minor fix
482
      rules: {
03dcbf0c1   Neeraj Sharma   fix all api and r...
483
        required: value => !!value || "Date of Birth is Required.",
ee83012b3   Jatinder Singh   changes
484
485
486
487
488
        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...
489
          "Please enter a date in the format dd/mm/yyyy"
04e3fbc56   Jatinder Singh   minor fix
490
      },
5f2dd99ed   Neeraj Sharma   add full name in ...
491
      nameRules: [v => !!v || " Full Name is required"],
c35a8dafd   Jatinder Singh   minor changes
492
      emailRules: [
03dcbf0c1   Neeraj Sharma   fix all api and r...
493
        v => !!v || "E-mail is required",
708aeb658   Neeraj Sharma   fix validation ad...
494
         v => /^\w+([.-]?\w+)*@\w+([.-]?\w+)*(\.\w{2,3})+$/.test(v) || 'E-mail must be valid'
c35a8dafd   Jatinder Singh   minor changes
495
      ],
0cefd6eff   Neeraj Sharma   add country input...
496
      countryRules: [v => !!v || "  Country Name is required"],
93a68cfa1   Jatinder Singh   first commit
497
498
      headers: [
        {
03dcbf0c1   Neeraj Sharma   fix all api and r...
499
500
          text: "No",
          align: "center",
93a68cfa1   Jatinder Singh   first commit
501
          sortable: false,
03dcbf0c1   Neeraj Sharma   fix all api and r...
502
          value: "No"
c35a8dafd   Jatinder Singh   minor changes
503
        },
03dcbf0c1   Neeraj Sharma   fix all api and r...
504
505
506
        { 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
507
      ],
03dcbf0c1   Neeraj Sharma   fix all api and r...
508
      desserts: [],
93a68cfa1   Jatinder Singh   first commit
509
510
      editedIndex: -1,
      editedItem: {
03dcbf0c1   Neeraj Sharma   fix all api and r...
511
512
        No: "",
        name: "",
03dcbf0c1   Neeraj Sharma   fix all api and r...
513
        email: "",
ac10393a4   Neeraj Sharma   add calender date...
514
        date: null,
0cefd6eff   Neeraj Sharma   add country input...
515
        country: ""
93a68cfa1   Jatinder Singh   first commit
516
517
      },
      defaultItem: {
03dcbf0c1   Neeraj Sharma   fix all api and r...
518
519
        No: "",
        name: "",
03dcbf0c1   Neeraj Sharma   fix all api and r...
520
        email: "",
a95d2830c   Neeraj Sharma   add country selec...
521
        date: null,
03dcbf0c1   Neeraj Sharma   fix all api and r...
522
        dob: ""
f7979ec1a   Neeraj Sharma   add seach in heal...
523
524
525
526
      },
      userName:'',
      items: [
        {
f7979ec1a   Neeraj Sharma   add seach in heal...
527
528
529
530
531
532
          href: "/changepassword",
          title: "Change Password",
          click: e => {
            console.log(e);
          }
        },
f7979ec1a   Neeraj Sharma   add seach in heal...
533
        {
f7979ec1a   Neeraj Sharma   add seach in heal...
534
535
536
537
          href: "#",
          title: "Logout",
          click: e => {
            window.getApp.$emit("APP_LOGOUT");
f7979ec1a   Neeraj Sharma   add seach in heal...
538
539
540
          }
        }
      ]
93a68cfa1   Jatinder Singh   first commit
541
    }),
ac10393a4   Neeraj Sharma   add calender date...
542
543
544
545
546
547
548
549
550
551
552
553
     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...
554
555
556
      getPatientList() {
        var token = this.$store.state.token;
        http()
f7979ec1a   Neeraj Sharma   add seach in heal...
557
          .get("/patientList?term=" + this.term, { 
03dcbf0c1   Neeraj Sharma   fix all api and r...
558
559
            headers: { Authorization: "Bearer " + token } 
           })
e173bab21   Jatinder Singh   api
560
          .then(response => {
03dcbf0c1   Neeraj Sharma   fix all api and r...
561
562
563
564
            this.desserts = response.data.data.existingUser;
          })
          .catch(err => {
            console.log("err====>", err);
945cc2d12   Neeraj Sharma   somrthing changes...
565
            this.$router.replace({ path: '/' });
03dcbf0c1   Neeraj Sharma   fix all api and r...
566
          });
e173bab21   Jatinder Singh   api
567
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
568
      editItem(item) {
93a68cfa1   Jatinder Singh   first commit
569
570
571
572
        this.editedIndex = this.desserts.indexOf(item);
        this.editedItem = Object.assign({}, item);
        this.dialog = true;
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
573
      profile(item) {
c35a8dafd   Jatinder Singh   minor changes
574
575
576
577
        this.editedIndex = this.desserts.indexOf(item);
        this.editedItem = Object.assign({}, item);
        this.dialog1 = true;
      },
03dcbf0c1   Neeraj Sharma   fix all api and r...
578
      report(item) {
c35a8dafd   Jatinder Singh   minor changes
579
580
581
        this.editedIndex = this.desserts.indexOf(item);
        this.editedItem = Object.assign({}, item);
        this.dialog2 = true;
a259e694f   Jatinder Singh   minor change
582
      },
93a68cfa1   Jatinder Singh   first commit
583

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