【调度系统】广东民航医疗快线调度系统源代码
wzp
2025-05-06 18c7a44d2e9db3f4a5322389c3ee94468cce4de1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
 
$(document).ready(function() {
    "use strict";
 
 
    $('.notification-info').on('click',function(e){
        $.toast().reset('all'); 
        $("body").removeAttr('class');
        $.toast({
            heading: 'simply dummy text',
            text: 'Lorem Ipsum is simply dummy text of the printing and typesetting ',
            position: 'top-right',
            loaderBg:'#FFBD4A',
            icon: 'info',
            hideAfter: 3000, 
            stack: 6
        });
        return false;
    });
 
    $('.notification-warning').on('click',function(e){
        $.toast().reset('all');
        $("body").removeAttr('class');
        $.toast({
           heading: 'simply dummy text',
            text: 'Lorem Ipsum is simply dummy text of the printing and typesetting ',
            position: 'top-right',
            loaderBg:'#FFBD4A',
            icon: 'warning',
            hideAfter: 3500, 
            stack: 6
        });
        return false;
    });
    
    $('.notification-success').on('click',function(e){
        $.toast().reset('all');
        $("body").removeAttr('class');
        $.toast({
            heading: 'simply dummy text',
            text: 'Lorem Ipsum is simply dummy text of the printing and typesetting ',
            position: 'top-right',
            loaderBg:'#FFBD4A',
            icon: 'success',
            hideAfter: 3500, 
            stack: 6
          });
        return false;  
    });
 
    $('.notification-danger').on('click',function(e){
        $.toast().reset('all');
        $("body").removeAttr('class');
        $.toast({
            heading: 'simply dummy text',
            text: 'Lorem Ipsum is simply dummy text of the printing and typesetting ',
            position: 'top-right',
            loaderBg:'#FFBD4A',
            icon: 'error',
            hideAfter: 3500
        });
        return false;
    });
    
    $('.notification-tleft').on('click',function(e){
        $.toast().reset('all');   
        $("body").removeAttr('class');
        $.toast({
            heading: 'top left',
            text: 'Lorem Ipsum is simply dummy text of the printing and typesetting ',
            position: 'top-left',
            loaderBg:'#FFBD4A',
            icon: 'error',
            hideAfter: 3500
        });
        return false;
    });
    
    $('.notification-tright').on('click',function(e){
        $.toast().reset('all');
        $("body").removeAttr('class');
        $.toast({
            heading: 'top right',
            text: 'Lorem Ipsum is simply dummy text of the printing and typesetting ',
            position: 'top-right',
            loaderBg:'#FFBD4A',
            icon: 'error',
            hideAfter: 3500
        });
        return false;
    });
    
    $('.notification-bleft').on('click',function(e){
        $.toast().reset('all');
        $("body").removeAttr('class');
        $.toast({
            heading: 'bottom left',
            text: 'Lorem Ipsum is simply dummy text of the printing and typesetting ',
            position: 'bottom-left',
            loaderBg:'#FFBD4A',
            icon: 'error',
            hideAfter: 3500
        });
        return false;
    });
    
    $('.notification-bright').on('click',function(e){
        $.toast().reset('all');   
        $("body").removeAttr('class');
        $.toast({
            heading: 'bottom right',
            text: 'Lorem Ipsum is simply dummy text of the printing and typesetting ',
            position: 'bottom-right',
            loaderBg:'#FFBD4A',
            icon: 'error',
            hideAfter: 3500
        });
        return false;
    });
    
    $('.notification-tfull').on('click',function(e){
        $.toast().reset('all');   
        $("body").removeAttr('class').removeClass("bottom-center-fullwidth").addClass("top-center-fullwidth");
        $.toast({
            heading: 'top center',
            text: 'Lorem Ipsum is simply dummy text of the printing and typesetting ',
            position: 'top-center',
            loaderBg:'#FFBD4A',
            icon: 'error',
            hideAfter: 3500
        });
        return false;
    });
    
    $('.notification-btfull').on('click',function(e){
        $.toast().reset('all');
        $("body").removeAttr('class').addClass("bottom-center-fullwidth");
        $.toast({
            heading: 'bottom right',
            text: 'Lorem Ipsum is simply dummy text of the printing and typesetting ',
            position: 'bottom-center',
            loaderBg:'#FFBD4A',
            icon: 'error',
            hideAfter: 3500
        });
        return false;
    });
});