【调度系统】广东民航医疗快线调度系统源代码
wzp
2024-12-06 0df39a8c5a45c6ff25411eace15d40a606f9769c
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
150
151
152
153
154
155
156
157
158
159
160
/*Toast Init*/
 
 
$(document).ready(function() {
    "use strict";
    
    $.toast({
        heading: 'Welcome to kenny',
        text: 'Use the predefined ones, or specify a custom position object.',
        position: 'top-right',
        loaderBg:'#3cb878',
        icon: 'error',
        hideAfter: 3000, 
        stack: 6
    });
    
    $('.tst1').on('click',function(e){
        $.toast().reset('all'); 
        $("body").removeAttr('class');
        $.toast({
            heading: 'Welcome to kenny',
            text: 'Use the predefined ones, or specify a custom position object.',
            position: 'top-right',
            loaderBg:'#3cb878',
            icon: 'info',
            hideAfter: 3000, 
            stack: 6
        });
        return false;
    });
 
    $('.tst2').on('click',function(e){
        $.toast().reset('all');
        $("body").removeAttr('class');
        $.toast({
            heading: 'Welcome to kenny',
            text: 'Use the predefined ones, or specify a custom position object.',
            position: 'top-right',
            loaderBg:'#3cb878',
            icon: 'warning',
            hideAfter: 3500, 
            stack: 6
        });
        return false;
    });
    
    $('.tst3').on('click',function(e){
        $.toast().reset('all');
        $("body").removeAttr('class');
        $.toast({
            heading: 'Welcome to kenny',
            text: 'Use the predefined ones, or specify a custom position object.',
            position: 'top-right',
            loaderBg:'#3cb878',
            icon: 'success',
            hideAfter: 3500, 
            stack: 6
          });
        return false;  
    });
 
    $('.tst4').on('click',function(e){
        $.toast().reset('all');
        $("body").removeAttr('class');
        $.toast({
            heading: 'Welcome to kenny',
            text: 'Use the predefined ones, or specify a custom position object.',
            position: 'top-right',
            loaderBg:'#3cb878',
            icon: 'error',
            hideAfter: 3500
        });
        return false;
    });
    
    $('.tst5').on('click',function(e){
        $.toast().reset('all');   
        $("body").removeAttr('class');
        $.toast({
            heading: 'top left',
            text: 'Use the predefined ones, or specify a custom position object.',
            position: 'top-left',
            loaderBg:'#3cb878',
            icon: 'error',
            hideAfter: 3500
        });
        return false;
    });
    
    $('.tst6').on('click',function(e){
        $.toast().reset('all');
        $("body").removeAttr('class');
        $.toast({
            heading: 'top right',
            text: 'Use the predefined ones, or specify a custom position object.',
            position: 'top-right',
            loaderBg:'#3cb878',
            icon: 'error',
            hideAfter: 3500
        });
        return false;
    });
    
    $('.tst7').on('click',function(e){
        $.toast().reset('all');
        $("body").removeAttr('class');
        $.toast({
            heading: 'bottom left',
            text: 'Use the predefined ones, or specify a custom position object.',
            position: 'bottom-left',
            loaderBg:'#3cb878',
            icon: 'error',
            hideAfter: 3500
        });
        return false;
    });
    
    $('.tst8').on('click',function(e){
        $.toast().reset('all');   
        $("body").removeAttr('class');
        $.toast({
            heading: 'bottom right',
            text: 'Use the predefined ones, or specify a custom position object.',
            position: 'bottom-right',
            loaderBg:'#3cb878',
            icon: 'error',
            hideAfter: 3500
        });
        return false;
    });
    
    $('.tst9').on('click',function(e){
        $.toast().reset('all');   
        $("body").removeAttr('class').removeClass("bottom-center-fullwidth").addClass("top-center-fullwidth");
        $.toast({
            heading: 'top center',
            text: 'Use the predefined ones, or specify a custom position object.',
            position: 'top-center',
            loaderBg:'#3cb878',
            icon: 'error',
            hideAfter: 3500
        });
        return false;
    });
    
    $('.tst10').on('click',function(e){
        $.toast().reset('all');
        $("body").removeAttr('class').addClass("bottom-center-fullwidth");
        $.toast({
            heading: 'bottom right',
            text: 'Use the predefined ones, or specify a custom position object.',
            position: 'bottom-center',
            loaderBg:'#3cb878',
            icon: 'error',
            hideAfter: 3500
        });
        return false;
    });
});