aboutsummaryrefslogtreecommitdiffstats
path: root/roc-iui/src/main/resources/webroot/roc-rs-view/resView.html
blob: 5109301f505da6f83de1e1c7c8db9926cd0e8d6b (plain)
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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
<!--

    Copyright (C) 2015 ZTE, Inc. and others. All rights reserved. (ZTE)

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

            http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.

-->
<!DOCTYPE html>
<html>
    <head lang="en">
        <meta charset="UTF-8">
        <title></title>
        <link href="../component/thirdparty/font-awesome/css/font-awesome.min.css"
        rel="stylesheet" />
        <link href="../component/thirdparty/bootstrap/css/bootstrap.min.css" rel="stylesheet"
        />
        <link href="./css/res.css" rel="stylesheet" type="text/css" />
        <style>
            .ms-controller { visibility: hidden }
        </style>
    </head>
    
    <body>
        <div class="ms-controller" ms-controller="resController">
            <div class="col-md-12" ms-visible="emptyVisible" style=" text-align: center;margin-top: 50px;
            " id="com_zte_ums_eco_roc_rsview_empty" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n">
            </div>
            <div ms-visible="!emptyVisible">
                <div class="container-fluid" ms-visible="boxVisible">
                    <div class="row">
                        <div class="col-xs-6 col-md-6 col-sm-6 col-lg-6 titlefont">
                            <span id="com_zte_ums_eco_roc_rsview_chart" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></span>
                        </div>
                    </div>
                    <div class="separator-line"></div>
                    <div class="col-md-12">
                        <div id="resChartDiv" style="width:100%;height:350px"></div>
                    </div>
                    <div class="row-fluid separator">
                        <div>
                            <a href="#" ms-click="clickDisplayGraphAlink()">
                                <img src="./images/up.png" /></a>
                        </div>
                    </div>
                </div>
                <div class="row-fluid separator" ms-visible="!boxVisible">
                    <div class="col-xs-12" style=" text-align: center;">
                        <a href="#" ms-click="clickDisplayGraphAlink()">
                            <img src="./images/down.png" /></a>
                    </div>
                </div>
                <div ms-if="vm.resType!='none'" class="container-fluid" style="margin-top:10px">
                    <div class="row">
                        <div class="col-xs-6 col-md-6 col-sm-6 col-lg-6 titlefont">
                            {{vm.resType}}-
                            <span id="com_zte_ums_eco_roc_rsview_rsList" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></span>
                        </div>
                    </div>
                    <div class="separator-line"></div>
                    <div class="row-fluid">
                        <!--NS Table -->
                        <table class="table table-striped table-bordered table-hover dataTable "
                        ms-if="vm.resType==='NS'">
                            <thead>
                                <tr class="heading">
                                    <th id="com_zte_ums_eco_roc_rsview_ns_sn" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"
                                    style="
                                    width: 80px;">
                                    </th>
                                    <th id="com_zte_ums_eco_roc_rsview_ns_state" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_ns_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_ns_type" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th>
                                        mocName
                                    </th>
                                    <th id="com_zte_ums_eco_roc_rsview_ns_vendor" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_ns_nsd" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                </tr>
                            </thead>
                            <tbody ms-each-res="vm.resource.nsInfo">
                                <tr>
                                    <td ms-text="$index+1"></td>
                                    <td ms-html="resUtil.showStatus(res.status)"></td>
                                    <td>
                                        <a href="#" ms-click="vm.nodesDetail.$showDetails('block',$index, res.name)">
                                            {{res.name}}
                                        </a>
                                    </td>
                                    <td ms-text="res.type"></td>
                                    <td ms-text="res.mocName"></td>
                                    <td ms-text="res.vendor"></td>
                                    <td ms-text="res.nsd"></td>
                                </tr>
                            </tbody>
                        </table>
                        <!--VNF Table -->
                        <table class="table table-striped table-bordered table-hover dataTable "
                        ms-if="vm.resType==='VNF'">
                            <thead>
                                <tr class="heading">
                                    <th id="com_zte_ums_eco_roc_rsview_vnf_sn" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"
                                    style="
                                    width: 80px;">
                                    </th>
                                    <th id="com_zte_ums_eco_roc_rsview_vnf_state" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_vnf_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_vnf_type" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th>
                                        mocName
                                    </th>
                                    <th id="com_zte_ums_eco_roc_rsview_vnf_vendor" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_vnf_vnfd" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_vnf_vnfm" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_vnf_vim" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                </tr>
                            </thead>
                            <tbody ms-each-res="resource.vnfInfo">
                                <tr>
                                    <td ms-text="$index+1"></td>
                                    <td ms-html="resUtil.showStatus(res.status)"></td>
                                    <td>
                                        <a href="#" ms-click="vm.nodesDetail.$showDetails('block',$index, res.name)">
                                            {{res.name}}
                                        </a>
                                    </td>
                                    <td ms-text="res.type"></td>
                                    <td ms-text="res.mocName"></td>
                                    <td ms-text="res.vendor"></td>
                                    <td ms-text="res.vnfd"></td>
                                    <td ms-text="vm.queryVnfmName(res.vnfmId)"></td>
                                    <td ms-text="vm.queryVimName(res.vimId)"></td>
                                </tr>
                            </tbody>
                        </table>
                        <!--VNFC Table -->
                        <table class="table table-striped table-bordered table-hover dataTable "
                        ms-if="vm.resType==='VNFC'">
                            <thead>
                                <tr class="heading">
                                    <th id="com_zte_ums_eco_roc_rsview_vnfc_sn" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"
                                    style="
                                    width: 80px;">
                                    </th>
                                    <th id="com_zte_ums_eco_roc_rsview_vnfc_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th>
                                        mocName
                                    </th>
                                    <th id="com_zte_ums_eco_roc_rsview_vnfc_type" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_vnfc_vendor" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_vnfc_vnf" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_vnfc_vdu" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                </tr>
                            </thead>
                            <tbody ms-each-res="resource.vnfcInfo">
                                <tr>
                                    <td ms-text="$index+1"></td>
                                    <td>
                                        <a href="#" ms-click="vm.nodesDetail.$showDetails('block',$index, res.name)">
                                            {{res.name}}
                                        </a>
                                    </td>
                                    <td ms-text="res.mocName"></td>
                                    <td ms-text="res.type"></td>
                                    <td ms-text="res.vendor"></td>
                                    <td ms-text="vm.queryVnfName(res.vnfId)"></td>
                                    <td ms-text="vm.queryVduName(res.vduId)"></td>
                                </tr>
                            </tbody>
                        </table>
                        <!--VDU Table -->
                        <table class="table table-striped table-bordered table-hover dataTable "
                        ms-if="vm.resType==='VDU'">
                            <thead>
                                <tr class="heading">
                                    <th id="com_zte_ums_eco_roc_rsview_vdu_sn" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"
                                    style="
                                    width: 80px;">
                                    </th>
                                    <th id="com_zte_ums_eco_roc_rsview_vdu_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_vdu_type" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th>
                                        mocName
                                    </th>
                                    <th id="com_zte_ums_eco_roc_rsview_vdu_vendor" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_vdu_vnf" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_vdu_host" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_vdu_vim" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                </tr>
                            </thead>
                            <tbody ms-each-res="resource.vduInfo">
                                <tr>
                                    <td ms-text="$index+1"></td>
                                    <td>
                                        <a href="#" ms-click="vm.nodesDetail.$showDetails('block',$index, res.name)">
                                            {{res.name}}
                                        </a>
                                    </td>
                                    <td ms-text="res.type"></td>
                                    <td ms-text="res.mocName"></td>
                                    <td ms-text="res.vendor"></td>
                                    <td ms-text="vm.queryVnfName(res.vnfId)"></td>
                                    <td ms-text="vm.queryHostName(res.hostId)"></td>
                                    <td ms-text="vm.queryVimName(res.vimId)"></td>
                                </tr>
                            </tbody>
                        </table>
                        <!--HOST Table -->
                        <table class="table table-striped table-bordered table-hover dataTable "
                        ms-if="vm.resType==='HOST'">
                            <thead>
                                <tr class="heading">
                                    <th id="com_zte_ums_eco_roc_rsview_host_sn" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"
                                    style="
                                    width: 80px;">
                                    </th>
                                    <th id="com_zte_ums_eco_roc_rsview_host_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th>
                                        mocName
                                    </th>
                                    <th id="com_zte_ums_eco_roc_rsview_host_ip" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_host_vim" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                </tr>
                            </thead>
                            <tbody ms-each-res="resource.hostInfo">
                                <tr>
                                    <td ms-text="$index+1"></td>
                                    <td>
                                        <a href="#" ms-click="vm.nodesDetail.$showDetails('block',$index, res.name)">
                                            {{res.name}}
                                        </a>
                                    </td>
                                    <td ms-text="res.mocName"></td>
                                    <td ms-text="res.ipAddress"></td>
                                    <td ms-text="vm.queryVimName(res.vimId)"></td>
                                </tr>
                            </tbody>
                        </table>
                        <!--CP Table -->
                        <table class="table table-striped table-bordered table-hover dataTable "
                        ms-if="vm.resType==='CP'">
                            <thead>
                                <tr class="heading">
                                    <th id="com_zte_ums_eco_roc_rsview_cp_sn" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"
                                    style="
                                    width: 80px;">
                                    </th>
                                    <th id="com_zte_ums_eco_roc_rsview_cp_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th>
                                        mocName
                                    </th>
                                    <th id="com_zte_ums_eco_roc_rsview_cp_type" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                </tr>
                            </thead>
                            <tbody ms-each-res="resource.cpInfo">
                                <tr>
                                    <td ms-text="$index+1"></td>
                                    <td>
                                        <a href="#" ms-click="vm.nodesDetail.$showDetails('block',$index, res.name)">
                                            {{res.name}}
                                        </a>
                                    </td>
                                    <td ms-text="res.mocName"></td>
                                    <td ms-text="res.type"></td>
                                </tr>
                            </tbody>
                        </table>
                        <!--VIM Table -->
                        <table class="table table-striped table-bordered table-hover dataTable "
                        ms-if="vm.resType==='VIM'">
                            <thead>
                                <tr class="heading">
                                    <th id="com_zte_ums_eco_roc_rsview_vim_sn" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"
                                    style="
                                    width: 80px;">
                                    </th>
                                    <th id="com_zte_ums_eco_roc_rsview_vim_state" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_vim_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_vim_type" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th>
                                        mocName
                                    </th>
                                    <th id="com_zte_ums_eco_roc_rsview_vim_url" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_vim_tenant" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                </tr>
                            </thead>
                            <tbody ms-each-res="resource.vimInfo">
                                <tr>
                                    <td ms-text="$index+1"></td>
                                    <td ms-html="resUtil.showStatus(res.status)"></td>
                                    <td>
                                        <a href="#" ms-click="vm.nodesDetail.$showDetails('block',$index, res.name)">
                                            {{res.name}}
                                        </a>
                                    </td>
                                    <td ms-text="res.type"></td>
                                    <td ms-text="res.mocName"></td>
                                    <td ms-text="res.url"></td>
                                    <td ms-text="res.user"></td>
                                </tr>
                            </tbody>
                        </table>
                        <!--VNFM Table -->
                        <table class="table table-striped table-bordered table-hover dataTable "
                        ms-if="vm.resType==='VNFM'">
                            <thead>
                                <tr class="heading">
                                    <th id="com_zte_ums_eco_roc_rsview_vnfm_sn" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"
                                    style="
                                    width: 80px;">
                                    </th>
                                    <th id="com_zte_ums_eco_roc_rsview_vnfm_state" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_vnfm_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th>
                                        mocName
                                    </th>
                                    <th id="com_zte_ums_eco_roc_rsview_vnfm_vendor" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_vnfm_url" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                </tr>
                            </thead>
                            <tbody ms-each-res="resource.vnfmInfo">
                                <tr>
                                    <td ms-text="$index+1"></td>
                                    <td ms-html="resUtil.showStatus(res.status)"></td>
                                    <td>
                                        <a href="#" ms-click="vm.nodesDetail.$showDetails('block',$index, res.name)">
                                            {{res.name}}
                                        </a>
                                    </td>
                                    <td ms-text="res.mocName"></td>
                                    <td ms-text="res.vendor"></td>
                                    <td ms-text="res.url"></td>
                                </tr>
                            </tbody>
                        </table>
                        <!--SDN Table -->
                        <table class="table table-striped table-bordered table-hover dataTable "
                        ms-if="vm.resType==='SDN'">
                            <thead>
                                <tr class="heading">
                                    <th id="com_zte_ums_eco_roc_rsview_sdn_sn" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"
                                    style="
                                    width: 80px;">
                                    </th>
                                    <th id="com_zte_ums_eco_roc_rsview_sdn_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_sdn_type" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_sdn_url" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                </tr>
                            </thead>
                            <tbody ms-each-res="resource.sdnInfo">
                                <tr>
                                    <td ms-text="$index+1"></td>
                                    <td>
                                        <a href="#" ms-click="vm.nodesDetail.$showDetails('block',$index, res.name)">
                                            {{res.name}}
                                        </a>
                                    </td>
                                    <td ms-text="res.controllerType"></td>
                                    <td ms-text="res.url"></td>
                                </tr>
                            </tbody>
                        </table>
                        <!--VNFFG Table -->
                        <table class="table table-striped table-bordered table-hover dataTable "
                        ms-if="vm.resType==='VNFFG'">
                            <thead>
                                <tr class="heading">
                                    <th id="com_zte_ums_eco_roc_rsview_vnffg_sn" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"
                                    style="
                                    width: 80px;">
                                    </th>
                                    <th id="com_zte_ums_eco_roc_rsview_vnffg_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_vnffg_vendor" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_vnffg_version" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                </tr>
                            </thead>
                            <tbody ms-each-res="resource.vnffgInfo">
                                <tr>
                                    <td ms-text="$index+1"></td>
                                    <td>
                                        <a href="#" ms-click="vm.nodesDetail.$showDetails('block',$index, res.name)">
                                            {{res.name}}
                                        </a>
                                    </td>
                                    <td ms-text="res.vendor"></td>
                                    <td ms-text="res.version"></td>
                                </tr>
                            </tbody>
                        </table>
                        <!--NFP Table -->
                        <table class="table table-striped table-bordered table-hover dataTable "
                        ms-if="vm.resType==='NFP'">
                            <thead>
                                <tr class="heading">
                                    <th id="com_zte_ums_eco_roc_rsview_nfp_sn" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"
                                    style="
                                    width: 80px;">
                                    </th>
                                    <th id="com_zte_ums_eco_roc_rsview_nfp_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_nfp_symmetric" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                    <th id="com_zte_ums_eco_roc_rsview_nfp_serviceChainName" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                </tr>
                            </thead>
                            <tbody ms-each-res="resource.nfpInfo">
                                <tr>
                                    <td ms-text="$index+1"></td>
                                    <td>
                                        <a href="#" ms-click="vm.nodesDetail.$showDetails('block',$index, res.name)">
                                            {{res.name}}
                                        </a>
                                    </td>
                                    <td ms-text="res.symmetric"></td>
                                    <td ms-text="res.serviceChainName"></td>
                                </tr>
                            </tbody>
                        </table>
                    </div>
                </div>
                <div id="right-menu" ms-css-display="nodesDetail.isShow">
                    <div>
                        <div class="title">
                            <h4>
                                {{nodesDetail.detailTitle}}
                            </h4>
                            <div class="rigth right-button-pointer" ms-click="nodesDetail.$showDetails('none')">
                                <button type="button" class="btn btn-default" id="com_zte_ums_eco_roc_rsview_btn_close"
                                name_i18n="com_zte_conductor_roc_rs_view_ui_i18n">
                                </button>
                            </div>
                        </div>
                        <div>
                            <div class="btn-group" ms-if="vm.resource.ifHaveRelation">
                                <!--button type="button" class="btn btn-default" ms-repeat="nodesDetail.detailData"
                                ms-click="nodesDetail.detailCondChange($index)" ms-attr-id="el.id" ms-class="active:
                                el.isActive">{{el.name}}
                                </button-->
                                <button type="button" class="btn btn-default" ms-click="nodesDetail.detailCondChange(0)"
                                ms-attr-id="general" ms-class="active:vm.nodesDetail.detailData[0].isActive"
                                id="com_zte_ums_eco_roc_rsview_info" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n">
                                </button>
                                <button type="button" class="btn btn-default" ms-click="nodesDetail.detailCondChange(1)"
                                ms-attr-id="relationShips" ms-class="active:vm.nodesDetail.detailData[1].isActive"
                                id="com_zte_ums_eco_roc_rsview_relation" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n">
                                </button>
                            </div>
                            <div ms-if="nodesDetail.detailIndex === 0">
                                <div class="row-fluid" data-name="table_zone">
                                    <div id='ict_table_general_div' class="nodesDetail">
                                        <!--NS Detail-->
                                        <table class="table table-striped table-bordered dataTable " ms-if="vm.resType==='NS'">
                                            <thead>
                                                <tr class="heading">
                                                    <th id="com_zte_ums_eco_roc_rsview_key" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                                    <th id="com_zte_ums_eco_roc_rsview_value" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                                </tr>
                                            </thead>
                                            <tbody>
                                                <tr>
                                                    <td>
                                                        Oid
                                                    </td>
                                                    <td ms-text="resource.rsDetail.oid"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_ns_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.name"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_ns_nsd" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.nsd"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_ns_state" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.status"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_ns_flavour" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.flavour"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_ns_autoScalePolicy" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.autoScalePolicy"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_ns_vendor" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.vendor"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_ns_version" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.version"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_ns_type" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.type"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_ns_ipAddress" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.ipAddress"></td>
                                                </tr>
                                                <tr>
                                                    <td>
                                                        moc
                                                    </td>
                                                    <td ms-text="resource.rsDetail.moc"></td>
                                                </tr>
                                                <tr>
                                                    <td>
                                                        mocName
                                                    </td>
                                                    <td ms-text="resource.rsDetail.mocName"></td>
                                                </tr>
                                            </tbody>
                                        </table>
                                        <!--VNF Detail-->
                                        <table class="table table-striped table-bordered dataTable " ms-if="vm.resType==='VNF'">
                                            <thead>
                                                <tr class="heading">
                                                    <th id="com_zte_ums_eco_roc_rsview_key" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                                    <th id="com_zte_ums_eco_roc_rsview_value" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                                </tr>
                                            </thead>
                                            <tbody>
                                                <tr>
                                                    <td>
                                                        Oid
                                                    </td>
                                                    <td ms-text="resource.rsDetail.oid"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnf_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.name"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnf_vnfd" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.vnfd"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnf_state" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.status"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnf_flavour" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.flavourId"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnf_autoScalePolicy" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.autoScalePolicy"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnf_vendor" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.vendor"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnf_version" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.version"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnf_type" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.type"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnf_language" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.localization"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnf_ipAddress" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.ipAddress"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnf_vnfm_id" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.vnfmId"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnf_vnfm_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="vm.queryVnfmName(resource.rsDetail.vnfmId)"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnf_vim_id" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.vimId"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnf_vim_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="vm.queryVimName(resource.rsDetail.vimId)"></td>
                                                </tr>
                                                <tr>
                                                    <td>
                                                        moc
                                                    </td>
                                                    <td ms-text="resource.rsDetail.moc"></td>
                                                </tr>
                                                <tr>
                                                    <td>
                                                        mocName
                                                    </td>
                                                    <td ms-text="resource.rsDetail.mocName"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnf_createTime" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.createTime"></td>
                                                </tr>
                                            </tbody>
                                        </table>
                                        <!--VNFC Detail-->
                                        <table class="table table-striped table-bordered dataTable " ms-if="vm.resType==='VNFC'">
                                            <thead>
                                                <tr class="heading">
                                                    <th id="com_zte_ums_eco_roc_rsview_key" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                                    <th id="com_zte_ums_eco_roc_rsview_value" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                                </tr>
                                            </thead>
                                            <tbody>
                                                <tr>
                                                    <td>
                                                        Oid
                                                    </td>
                                                    <td ms-text="resource.rsDetail.oid"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnfc_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.name"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnfc_vendor" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.vendor"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnfc_version" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.version"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnfc_type" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.type"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnfc_ipAddress" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.ipAddress"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnfc_positionX" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.positionX"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnfc_positionY" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.positionY"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnfc_vnf_id" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.vnfId"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnfc_vnf_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="vm.queryVnfName(resource.rsDetail.vnfId)"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnfc_vdu_id" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.vduId"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnfc_vdu_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="vm.queryVduName(resource.rsDetail.vduId)"></td>
                                                </tr>
                                                <tr>
                                                    <td>
                                                        moc
                                                    </td>
                                                    <td ms-text="resource.rsDetail.moc"></td>
                                                </tr>
                                                <tr>
                                                    <td>
                                                        mocName
                                                    </td>
                                                    <td ms-text="resource.rsDetail.mocName"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnfc_createTime" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.createTime"></td>
                                                </tr>
                                            </tbody>
                                        </table>
                                        <!--VDU Detail-->
                                        <table class="table table-striped table-bordered dataTable " ms-if="vm.resType==='VDU'">
                                            <thead>
                                                <tr class="heading">
                                                    <th id="com_zte_ums_eco_roc_rsview_key" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                                    <th id="com_zte_ums_eco_roc_rsview_value" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                                </tr>
                                            </thead>
                                            <tbody>
                                                <tr>
                                                    <td>
                                                        Oid
                                                    </td>
                                                    <td ms-text="resource.rsDetail.oid"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vdu_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.name"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vdu_state" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.status"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vdu_flavour" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.flavourId"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vdu_vendor" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.vendor"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vdu_version" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.version"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vdu_type" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.type"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vdu_ipAddress" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.ipAddress"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vdu_floatIp" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.floatIp"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vdu_vduImage" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.vduImage"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vdu_cpuNum" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resUtil.formatNumber(resource.rsDetail.cpuNum)"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vdu_storageSize" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resUtil.formatNumber(resource.rsDetail.storageSize)"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vdu_memorySize" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resUtil.formatNumber(resource.rsDetail.memorySize)"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vdu_positionX" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.positionX"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vdu_positionY" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.positionY"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vdu_vnf_id" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.vnfId"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vdu_vnf_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="vm.queryVnfName(resource.rsDetail.vnfId)"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vdu_host_id" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.hostId"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vdu_host_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="vm.queryHostName(resource.rsDetail.hostId)"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vdu_vim_id" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.vimId"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vdu_vim_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="vm.queryVimName(resource.rsDetail.vimId)"></td>
                                                </tr>
                                                <tr>
                                                    <td>
                                                        moc
                                                    </td>
                                                    <td ms-text="resource.rsDetail.moc"></td>
                                                </tr>
                                                <tr>
                                                    <td>
                                                        mocName
                                                    </td>
                                                    <td ms-text="resource.rsDetail.mocName"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vdu_createTime" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.createTime"></td>
                                                </tr>
                                            </tbody>
                                        </table>
                                        <!--HOST Detail-->
                                        <table class="table table-striped table-bordered dataTable " ms-if="vm.resType==='HOST'">
                                            <thead>
                                                <tr class="heading">
                                                    <th id="com_zte_ums_eco_roc_rsview_key" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                                    <th id="com_zte_ums_eco_roc_rsview_value" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                                </tr>
                                            </thead>
                                            <tbody>
                                                <tr>
                                                    <td>
                                                        Oid
                                                    </td>
                                                    <td ms-text="resource.rsDetail.oid"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_host_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.name"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_host_proxyIP" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="vm.customPara.PROXYIP"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_host_loginUser" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="vm.customPara.LOGINUSER"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_host_loginProtocol" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="vm.customPara.LOGINPROTOCOL"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_host_loginPort" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="vm.customPara.LOGINPORT"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_host_ipAddress" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.ipAddress"></td>
                                                </tr>
                                                <!--tr><td id="com_zte_ums_eco_roc_rsview_host_cpuNum" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td><td ms-text="resUtil.formatNumber(resource.rsDetail.cpuNum)"></td></tr>
                                                <tr><td id="com_zte_ums_eco_roc_rsview_host_storageSize" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td><td ms-text="resUtil.formatNumber(resource.rsDetail.storageSize)"></td></tr>
                                                <tr><td id="com_zte_ums_eco_roc_rsview_host_memorySize" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td><td ms-text="resUtil.formatNumber(resource.rsDetail.memorySize)"></td></tr>
                                                <tr><td id="com_zte_ums_eco_roc_rsview_host_positionX" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td><td ms-text="resource.rsDetail.positionX"></td></tr>
                                                <tr><td id="com_zte_ums_eco_roc_rsview_host_positionY" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td><td ms-text="resource.rsDetail.positionY"></td></tr-->
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_host_vim_id" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.vimId"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_host_vim_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="vm.queryVimName(resource.rsDetail.vimId)"></td>
                                                </tr>
                                                <tr>
                                                    <td>
                                                        moc
                                                    </td>
                                                    <td ms-text="resource.rsDetail.moc"></td>
                                                </tr>
                                                <tr>
                                                    <td>
                                                        mocName
                                                    </td>
                                                    <td ms-text="resource.rsDetail.mocName"></td>
                                                </tr>
                                            </tbody>
                                        </table>
                                        <!--VIM Detail-->
                                        <table class="table table-striped table-bordered dataTable " ms-if="vm.resType==='VIM'">
                                            <thead>
                                                <tr class="heading">
                                                    <th id="com_zte_ums_eco_roc_rsview_key" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                                    <th id="com_zte_ums_eco_roc_rsview_value" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                                </tr>
                                            </thead>
                                            <tbody>
                                                <tr>
                                                    <td>
                                                        Oid
                                                    </td>
                                                    <td ms-text="resource.rsDetail.oid"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vim_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.name"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vim_state" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.status"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vim_user" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.userName"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vim_tenant" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.user"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vim_type" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.type"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vim_url" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.url"></td>
                                                </tr>
                                                <tr>
                                                    <td>
                                                        moc
                                                    </td>
                                                    <td ms-text="resource.rsDetail.moc"></td>
                                                </tr>
                                                <tr>
                                                    <td>
                                                        mocName
                                                    </td>
                                                    <td ms-text="resource.rsDetail.mocName"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vim_checkTime" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.checkTime"></td>
                                                </tr>
                                                <tr ms-if="resource.rsDetail.status==='inactive'">
                                                    <td id="com_zte_ums_eco_roc_rsview_vim_checkResult" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.errorInfo"></td>
                                                </tr>
                                            </tbody>
                                        </table>
                                        <!--VNFM Detail-->
                                        <table class="table table-striped table-bordered dataTable " ms-if="vm.resType==='VNFM'">
                                            <thead>
                                                <tr class="heading">
                                                    <th id="com_zte_ums_eco_roc_rsview_key" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                                    <th id="com_zte_ums_eco_roc_rsview_value" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                                </tr>
                                            </thead>
                                            <tbody>
                                                <tr>
                                                    <td>
                                                        Oid
                                                    </td>
                                                    <td ms-text="resource.rsDetail.oid"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnfm_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.name"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnfm_state" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.status"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnfm_url" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.url"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnfm_userName" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.userName"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_vnfm_vendor" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.vendor"></td>
                                                </tr>
                                                <tr>
                                                    <td>
                                                        moc
                                                    </td>
                                                    <td ms-text="resource.rsDetail.moc"></td>
                                                </tr>
                                                <tr>
                                                    <td>
                                                        mocName
                                                    </td>
                                                    <td ms-text="resource.rsDetail.mocName"></td>
                                                </tr>
                                            </tbody>
                                        </table>
                                        <!--SDN Detail-->
                                        <table class="table table-striped table-bordered dataTable " ms-if="vm.resType==='SDN'">
                                            <thead>
                                                <tr class="heading">
                                                    <th id="com_zte_ums_eco_roc_rsview_key" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                                    <th id="com_zte_ums_eco_roc_rsview_value" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                                </tr>
                                            </thead>
                                            <tbody>
                                                <tr>
                                                    <td>
                                                        Oid
                                                    </td>
                                                    <td ms-text="resource.rsDetail.sdnControllerInstanceId"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_sdn_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.name"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_sdn_type" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.controllerType"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_sdn_url" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.url"></td>
                                                </tr>
                                                <tr>
                                                    <td id="com_zte_ums_eco_roc_rsview_sdn_userName" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></td>
                                                    <td ms-text="resource.rsDetail.userName"></td>
                                                </tr>
                                            </tbody>
                                        </table>
                                    </div>
                                </div>
                            </div>
                            <div ms-if="nodesDetail.detailIndex === 1">
                                <div class="row-fluid" data-name="table_zone">
                                    <div id='ict_table_relationShips_div' class="nodesDetail">
                                        <table class="table table-striped table-bordered dataTable ">
                                            <thead>
                                                <tr class="heading">
                                                    <th>
                                                        Oid
                                                    </th>
                                                    <th id="com_zte_ums_eco_roc_rsview_name" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                                    <th id="com_zte_ums_eco_roc_rsview_type" name_i18n="com_zte_conductor_roc_rs_view_ui_i18n"></th>
                                                </tr>
                                            </thead>
                                            <tbody ms-each-relation="resource.relationInfo">
                                                <tr>
                                                    <td ms-text="relation.oid"></td>
                                                    <td ms-text="relation.name"></td>
                                                    <td ms-text="relation.type"></td>
                                                </tr>
                                            </tbody>
                                        </table>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <script type="text/javascript" src="../component/thirdparty/jquery/jquery-1.10.2.min.js"></script>
        <script type="text/javascript" src="../component/thirdparty/bootstrap/js/bootstrap.min.js"></script>
        <script src="../framework/js/tools.js"></script>
        <script type="text/javascript" src="../component/thirdparty/jquery.i18n/jquery.i18n.properties-1.0.9.js"></script>
        <script type="text/javascript" src="../component/thirdparty/bootbox/bootbox.min.js"></script>
        <script type="text/javascript" src="../framework/js/core/hk.min.js"></script>
        <script src="../vendor/echarts/echarts-all.js"></script>
        <script src="../vendor/avalon/avalon.js"></script>
        <script src="./js/resUtil.js"></script>
        <script src="./js/resController.js"></script>
        <script src="./i18n/loadi18nApp_ngict-rs_view.js"></script>
        <script>
            jQuery(document).ready(function() {
                var lang = getLanguage();
                loadPropertiesSideMenu(lang, 'roc-rs-view-iui-i18n', 'i18n/');

            });
        </script>
    </body>
</html>