【调度系统】广东民航医疗快线调度系统源代码
wanglizhong
2025-05-05 8a7dab004bc3eca7808d0cc196a329464402bbc9
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
161
162
163
164
165
166
167
168
169
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
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
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
287
288
289
290
291
292
293
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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <link rel="shortcut icon" type="image/ico" href="http://www.datatables.net/favicon.ico">
    <meta name="viewport" content="initial-scale=1.0, maximum-scale=2.0">
    <title>Buttons example - Format output data - export options</title>
    <link rel="stylesheet" type="text/css" href="../../../../media/css/jquery.dataTables.css">
    <link rel="stylesheet" type="text/css" href="../../css/buttons.dataTables.css">
    <link rel="stylesheet" type="text/css" href="../../../../examples/resources/syntax/shCore.css">
    <link rel="stylesheet" type="text/css" href="../../../../examples/resources/demo.css">
    <style type="text/css" class="init">
    
    </style>
    <script type="text/javascript" language="javascript" src="//code.jquery.com/jquery-1.12.4.js">
    </script>
    <script type="text/javascript" language="javascript" src="../../../../media/js/jquery.dataTables.js">
    </script>
    <script type="text/javascript" language="javascript" src="../../js/dataTables.buttons.js">
    </script>
    <script type="text/javascript" language="javascript" src="//cdnjs.cloudflare.com/ajax/libs/jszip/3.1.3/jszip.min.js">
    </script>
    <script type="text/javascript" language="javascript" src="//cdn.rawgit.com/bpampuch/pdfmake/0.1.27/build/pdfmake.min.js">
    </script>
    <script type="text/javascript" language="javascript" src="//cdn.rawgit.com/bpampuch/pdfmake/0.1.27/build/vfs_fonts.js">
    </script>
    <script type="text/javascript" language="javascript" src="../../js/buttons.html5.js">
    </script>
    <script type="text/javascript" language="javascript" src="../../../../examples/resources/syntax/shCore.js">
    </script>
    <script type="text/javascript" language="javascript" src="../../../../examples/resources/demo.js">
    </script>
    <script type="text/javascript" language="javascript" class="init">
    
 
 
$(document).ready(function() {
    var buttonCommon = {
        exportOptions: {
            format: {
                body: function ( data, row, column, node ) {
                    // Strip $ from salary column to make it numeric
                    return column === 5 ?
                        data.replace( /[$,]/g, '' ) :
                        data;
                }
            }
        }
    };
 
    $('#example').DataTable( {
        ajax: '../../../../examples/ajax/data/objects.txt',
        columns: [
            { data: 'name' },
            { data: 'position' },
            { data: 'office' },
            { data: 'extn' },
            { data: 'start_date' },
            { data: 'salary' }
        ],
        dom: 'Bfrtip',
        buttons: [
            $.extend( true, {}, buttonCommon, {
                extend: 'copyHtml5'
            } ),
            $.extend( true, {}, buttonCommon, {
                extend: 'excelHtml5'
            } ),
            $.extend( true, {}, buttonCommon, {
                extend: 'pdfHtml5'
            } )
        ]
    } );
} );
 
 
 
    </script>
</head>
<body class="dt-example">
    <div class="container">
        <section>
            <h1>Buttons example <span>Format output data - export options</span></h1>
            <div class="info">
                <p>Buttons has two different methods that can be used to format the data exported differently from the data that is shown in the table: <a href=
                "outputFormat-orthogonal.html">orthogonal options</a> and formatting functions as shown in this example. They both achieve basically the same thing in different
                ways: namely modification of the output data.</p>
                <p>Formatting functions for export buttons are specified by assigning a function to one (or more) of the <code>format</code> object of the
                <code>exportOptions</code> object. Three formatting functions can be used: <code>header</code>, <code>footer</code> and <code>body</code>. This is the primarily
                advantage of using formatting functions over orthogonal data - the header and footer can also be formatted using this method (of course orthogonal and this
                formatting function method can both be used together if you prefer!).</p>
                <p>This example uses a <code>body</code> formatting function to remove the <code>$</code> and <code>,</code> characters from the final column to make it a numeric
                value in the output data. Since this is common to all three export buttons used, the function is placed into an object that is reused by each button - simply to
                save repeating the same code! This is not required, but it can be a useful technique.</p>
            </div>
            <div class="demo-html"></div>
            <table id="example" class="display" cellspacing="0" width="100%">
                <thead>
                    <tr>
                        <th>Name</th>
                        <th>Position</th>
                        <th>Office</th>
                        <th>Extn.</th>
                        <th>Start date</th>
                        <th>Salary</th>
                    </tr>
                </thead>
                <tfoot>
                    <tr>
                        <th>Name</th>
                        <th>Position</th>
                        <th>Office</th>
                        <th>Extn.</th>
                        <th>Start date</th>
                        <th>Salary</th>
                    </tr>
                </tfoot>
            </table>
            <ul class="tabs">
                <li class="active">Javascript</li>
                <li>HTML</li>
                <li>CSS</li>
                <li>Ajax</li>
                <li>Server-side script</li>
            </ul>
            <div class="tabs">
                <div class="js">
                    <p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
    var buttonCommon = {
        exportOptions: {
            format: {
                body: function ( data, row, column, node ) {
                    // Strip $ from salary column to make it numeric
                    return column === 5 ?
                        data.replace( /[$,]/g, '' ) :
                        data;
                }
            }
        }
    };
 
    $('#example').DataTable( {
        ajax: '../../../../examples/ajax/data/objects.txt',
        columns: [
            { data: 'name' },
            { data: 'position' },
            { data: 'office' },
            { data: 'extn' },
            { data: 'start_date' },
            { data: 'salary' }
        ],
        dom: 'Bfrtip',
        buttons: [
            $.extend( true, {}, buttonCommon, {
                extend: 'copyHtml5'
            } ),
            $.extend( true, {}, buttonCommon, {
                extend: 'excelHtml5'
            } ),
            $.extend( true, {}, buttonCommon, {
                extend: 'pdfHtml5'
            } )
        ]
    } );
} );</code>
                    <p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
                    <ul>
                        <li>
                            <a href="//code.jquery.com/jquery-1.12.4.js">//code.jquery.com/jquery-1.12.4.js</a>
                        </li>
                        <li>
                            <a href="../../../../media/js/jquery.dataTables.js">../../../../media/js/jquery.dataTables.js</a>
                        </li>
                        <li>
                            <a href="../../js/dataTables.buttons.js">../../js/dataTables.buttons.js</a>
                        </li>
                        <li>
                            <a href="//cdnjs.cloudflare.com/ajax/libs/jszip/3.1.3/jszip.min.js">//cdnjs.cloudflare.com/ajax/libs/jszip/3.1.3/jszip.min.js</a>
                        </li>
                        <li>
                            <a href="//cdn.rawgit.com/bpampuch/pdfmake/0.1.27/build/pdfmake.min.js">//cdn.rawgit.com/bpampuch/pdfmake/0.1.27/build/pdfmake.min.js</a>
                        </li>
                        <li>
                            <a href="//cdn.rawgit.com/bpampuch/pdfmake/0.1.27/build/vfs_fonts.js">//cdn.rawgit.com/bpampuch/pdfmake/0.1.27/build/vfs_fonts.js</a>
                        </li>
                        <li>
                            <a href="../../js/buttons.html5.js">../../js/buttons.html5.js</a>
                        </li>
                    </ul>
                </div>
                <div class="table">
                    <p>The HTML shown below is the raw HTML table element, before it has been enhanced by DataTables:</p>
                </div>
                <div class="css">
                    <div>
                        <p>This example uses a little bit of additional CSS beyond what is loaded from the library files (below), in order to correctly display the table. The
                        additional CSS used is shown below:</p><code class="multiline language-css"></code>
                    </div>
                    <p>The following CSS library files are loaded for use in this example to provide the styling of the table:</p>
                    <ul>
                        <li>
                            <a href="../../../../media/css/jquery.dataTables.css">../../../../media/css/jquery.dataTables.css</a>
                        </li>
                        <li>
                            <a href="../../css/buttons.dataTables.css">../../css/buttons.dataTables.css</a>
                        </li>
                    </ul>
                </div>
                <div class="ajax">
                    <p>This table loads data by Ajax. The latest data that has been loaded is shown below. This data will update automatically as any additional data is
                    loaded.</p>
                </div>
                <div class="php">
                    <p>The script used to perform the server-side processing for this table is shown below. Please note that this is just an example script using PHP. Server-side
                    processing scripts can be written in any language, using <a href="//datatables.net/manual/server-side">the protocol described in the DataTables
                    documentation</a>.</p>
                </div>
            </div>
        </section>
    </div>
    <section>
        <div class="footer">
            <div class="gradient"></div>
            <div class="liner">
                <h2>Other examples</h2>
                <div class="toc">
                    <div class="toc-group">
                        <h3><a href="../initialisation/index.html">Basic initialisation</a></h3>
                        <ul class="toc">
                            <li>
                                <a href="../initialisation/simple.html">Basic initialisation</a>
                            </li>
                            <li>
                                <a href="../initialisation/export.html">File export</a>
                            </li>
                            <li>
                                <a href="../initialisation/custom.html">Custom button</a>
                            </li>
                            <li>
                                <a href="../initialisation/className.html">Class names</a>
                            </li>
                            <li>
                                <a href="../initialisation/keys.html">Keyboard activation</a>
                            </li>
                            <li>
                                <a href="../initialisation/collections.html">Collections</a>
                            </li>
                            <li>
                                <a href="../initialisation/collections-sub.html">Multi-level collections</a>
                            </li>
                            <li>
                                <a href="../initialisation/collections-autoClose.html">Auto close collection</a>
                            </li>
                            <li>
                                <a href="../initialisation/plugins.html">Plug-ins</a>
                            </li>
                            <li>
                                <a href="../initialisation/new.html">`new` initialisation</a>
                            </li>
                            <li>
                                <a href="../initialisation/multiple.html">Multiple button groups</a>
                            </li>
                            <li>
                                <a href="../initialisation/pageLength.html">Page length</a>
                            </li>
                        </ul>
                    </div>
                    <div class="toc-group">
                        <h3><a href="./index.html">HTML 5 data export</a></h3>
                        <ul class="toc active">
                            <li>
                                <a href="./simple.html">HTML5 export buttons</a>
                            </li>
                            <li>
                                <a href="./tsv.html">Tab separated values</a>
                            </li>
                            <li>
                                <a href="./filename.html">File name</a>
                            </li>
                            <li>
                                <a href="./copyi18n.html">Copy button internationalisation</a>
                            </li>
                            <li>
                                <a href="./columns.html">Column selectors</a>
                            </li>
                            <li>
                                <a href="./outputFormat-orthogonal.html">Format output data - orthogonal data</a>
                            </li>
                            <li class="active">
                                <a href="./outputFormat-function.html">Format output data - export options</a>
                            </li>
                            <li>
                                <a href="./excelTextBold.html">Excel - Bold text</a>
                            </li>
                            <li>
                                <a href="./excelCellShading.html">Excel - Cell background</a>
                            </li>
                            <li>
                                <a href="./excelBorder.html">Excel - Customise borders</a>
                            </li>
                            <li>
                                <a href="./pdfMessage.html">PDF - message</a>
                            </li>
                            <li>
                                <a href="./pdfPage.html">PDF - page size and orientation</a>
                            </li>
                            <li>
                                <a href="./pdfImage.html">PDF - image</a>
                            </li>
                            <li>
                                <a href="./pdfOpen.html">PDF - open in new window</a>
                            </li>
                            <li>
                                <a href="./customFile.html">Custom file (JSON)</a>
                            </li>
                        </ul>
                    </div>
                    <div class="toc-group">
                        <h3><a href="../flash/index.html">Flash data export</a></h3>
                        <ul class="toc">
                            <li>
                                <a href="../flash/simple.html">Flash export buttons</a>
                            </li>
                            <li>
                                <a href="../flash/tsv.html">Tab separated values</a>
                            </li>
                            <li>
                                <a href="../flash/filename.html">File name</a>
                            </li>
                            <li>
                                <a href="../flash/copyi18n.html">Copy button internationalisation</a>
                            </li>
                            <li>
                                <a href="../flash/pdfMessage.html">PDF message</a>
                            </li>
                            <li>
                                <a href="../flash/pdfPage.html">Page size and orientation</a>
                            </li>
                            <li>
                                <a href="../flash/hidden.html">Hidden initialisation</a>
                            </li>
                            <li>
                                <a href="../flash/swfPath.html">SWF file location</a>
                            </li>
                        </ul>
                    </div>
                    <div class="toc-group">
                        <h3><a href="../column_visibility/index.html">Column visibility</a></h3>
                        <ul class="toc">
                            <li>
                                <a href="../column_visibility/simple.html">Basic column visibility</a>
                            </li>
                            <li>
                                <a href="../column_visibility/layout.html">Multi-column layout</a>
                            </li>
                            <li>
                                <a href="../column_visibility/text.html">Internationalisation</a>
                            </li>
                            <li>
                                <a href="../column_visibility/columnText.html">Customisation of column button text</a>
                            </li>
                            <li>
                                <a href="../column_visibility/restore.html">Restore column visibility</a>
                            </li>
                            <li>
                                <a href="../column_visibility/columns.html">Select columns</a>
                            </li>
                            <li>
                                <a href="../column_visibility/columnsToggle.html">Visibility toggle buttons</a>
                            </li>
                            <li>
                                <a href="../column_visibility/columnGroups.html">Column groups</a>
                            </li>
                            <li>
                                <a href="../column_visibility/stateSave.html">State saving</a>
                            </li>
                        </ul>
                    </div>
                    <div class="toc-group">
                        <h3><a href="../print/index.html">Print</a></h3>
                        <ul class="toc">
                            <li>
                                <a href="../print/simple.html">Print button</a>
                            </li>
                            <li>
                                <a href="../print/message.html">Custom message</a>
                            </li>
                            <li>
                                <a href="../print/columns.html">Export options - column selector</a>
                            </li>
                            <li>
                                <a href="../print/select.html">Export options - row selector</a>
                            </li>
                            <li>
                                <a href="../print/autoPrint.html">Disable auto print</a>
                            </li>
                            <li>
                                <a href="../print/customisation.html">Customisation of the print view window</a>
                            </li>
                        </ul>
                    </div>
                    <div class="toc-group">
                        <h3><a href="../api/index.html">API</a></h3>
                        <ul class="toc">
                            <li>
                                <a href="../api/enable.html">Enable / disable</a>
                            </li>
                            <li>
                                <a href="../api/text.html">Dynamic text</a>
                            </li>
                            <li>
                                <a href="../api/addRemove.html">Adding and removing buttons dynamically</a>
                            </li>
                            <li>
                                <a href="../api/group.html">Group selection</a>
                            </li>
                        </ul>
                    </div>
                    <div class="toc-group">
                        <h3><a href="../styling/index.html">Styling</a></h3>
                        <ul class="toc">
                            <li>
                                <a href="../styling/bootstrap.html">Bootstrap 3</a>
                            </li>
                            <li>
                                <a href="../styling/bootstrap4.html">Bootstrap 4</a>
                            </li>
                            <li>
                                <a href="../styling/foundation.html">Foundation styling</a>
                            </li>
                            <li>
                                <a href="../styling/jqueryui.html">jQuery UI styling</a>
                            </li>
                            <li>
                                <a href="../styling/semanticui.html">Semantic UI styling</a>
                            </li>
                            <li>
                                <a href="../styling/icons.html">Icons</a>
                            </li>
                        </ul>
                    </div>
                </div>
                <div class="epilogue">
                    <p>Please refer to the <a href="http://www.datatables.net">DataTables documentation</a> for full information about its API properties and methods.<br>
                    Additionally, there are a wide range of <a href="http://www.datatables.net/extensions">extensions</a> and <a href=
                    "http://www.datatables.net/plug-ins">plug-ins</a> which extend the capabilities of DataTables.</p>
                    <p class="copyright">DataTables designed and created by <a href="http://www.sprymedia.co.uk">SpryMedia Ltd</a> © 2007-2017<br>
                    DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p>
                </div>
            </div>
        </div>
    </section>
</body>
</html>