pickup.html 8.32 KB
Newer Older
NGO THI HONG committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<!DOCTYPE html>
<html lang="ja-JP">

<head>
    <meta charset="utf-8">
    <title>ピックアップ</title>
    <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
    <!-- favicons -->
    <link href="../common/img/favicon.ico" rel="icon">
    <link href="../common/img/apple-touch-icon.png" rel="apple-touch-icon">
    <!-- main css -->
    <link rel="stylesheet" type="text/css" href="../common/css/newdash/app.css">
    <link rel="stylesheet" type="text/css" href="../common/css/newdash/header.css">
    <link rel="stylesheet" type="text/css" href="../common/css/newdash/style.css">
    <!-- vender css -->
    <link rel="stylesheet" type="text/css" href="../common/css/newdash/fontawesome_relative_path.css">
NGO THI HONG committed
17
    
18 19 20
    <script type="text/javascript" src="../common/js/jquery/jquery-3.6.0.min.js?__UPDATEID__"></script>
    <script type="text/javascript" src="../common/js/jquery/jquery-ui.min.js?__UPDATEID__"></script>
    <script type="text/javascript" src="../common/js/web/i18n.js?__UPDATEID__"></script>
NGO THI HONG committed
21
    
NGO THI HONG committed
22 23 24
    
    <script src="../common/js/constant.js?__UPDATEID__"></script>
    <script src="../common/js/common.js?__UPDATEID__"></script>
NGO THI HONG committed
25
    
NGO THI HONG committed
26

NGO THI HONG committed
27
    <!-- main js -->
28
    <script type="text/javascript" src="../js/operationList/operationList.js?__UPDATEID__"></script>
NGO THI HONG committed
29 30
    <script type="text/javascript" src="../js/dashboardSetting/dashboard-setting.js"></script>
    <script type="text/javascript" src="../js/dashboard/dashboard.js"></script>
31
    <script src="/abweb/common/js/header.js?__UPDATEID__"></script>
NGO THI HONG committed
32
    <script type="text/javascript" src="../js/template/template.js"></script>
33

34 35
    <script type="text/javascript" src="/abweb/js/topPage/topPage.js?__UPDATEID__"></script>
    <script type="text/javascript" src="../common/js/app.js?__UPDATEID__" defer></script>
NGO THI HONG committed
36
    <script type="text/javascript" src="../js/pickup/pickup.js"></script>
37 38
    <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/gasparesganga-jquery-loading-overlay@2.1.7/dist/loadingoverlay.min.js"></script>

NGO THI HONG committed
39 40 41 42 43
    <script type="text/javascript">
      $(document).ready(function(){
        PICKUP.init();
      });
  </script>
NGO THI HONG committed
44 45
</head>
    
NGO THI HONG committed
46
<body >
NGO THI HONG committed
47 48
    <!-- pickup -->
    <main>
49
        <div class="container-wrap">
NGO THI HONG committed
50 51 52 53
            <!-- header -->
            <div id="includedHeader"></div>
            <div id="includedMainTitle"></div>
            
NGO THI HONG committed
54 55
            <!-- tab -->
            <ul class="nav nav-tabs line" id="myTab" role="tablist">
NGO THI HONG committed
56
                <li class="nav-item" id="liTabNewReport">
NGO THI HONG committed
57
                  <a class="nav-link active" data-toggle="tab" href="#tab-content-NewReport" role="tab" aria-controls="tab-content-NewReport" aria-expanded="true">
NGO THI HONG committed
58
                    <div class="text-center lang" lang="addNew"></div>
NGO THI HONG committed
59 60
                  </a>
                </li>
NGO THI HONG committed
61
                <li class="nav-item" id="liTabContinousWork">
NGO THI HONG committed
62
                  <a class="nav-link" data-toggle="tab" href="#tab-content-ContinousWork" role="tab" aria-controls="tab-content-ContinousWork">
NGO THI HONG committed
63
                    <div class="text-center lang" lang="processWorkTitle"></div>
NGO THI HONG committed
64 65
                  </a>
                </li>
NGO THI HONG committed
66
                <li class="nav-item" id="liTabReportWithWarning">
NGO THI HONG committed
67
                  <a class="nav-link" data-toggle="tab" href="#tab-content-ReportWithWarnings" role="tab" aria-controls="tab-content-ReportWithWarnings">
NGO THI HONG committed
68
                    <div class="text-center lang" lang="reportWarningTitle"></div>
NGO THI HONG committed
69 70
                  </a>
                </li>
NGO THI HONG committed
71
            </ul>
NGO THI HONG committed
72 73 74
              <!-- tab content-->
              <!-- new -->
              <div class="tab-content" id="myTabContent">
NGO THI HONG committed
75
                <div class="tab-pane fade show active" id="tab-content-NewReport"  role="tabpanel" aria-labelledby="1-tab">
NGO THI HONG committed
76
                    <!-- view menu -->
NGO THI HONG committed
77
                    <nav aria-label="view" class="view-menu mt-2" id="viewMenuNewReport">
NGO THI HONG committed
78
                        <div class="d-flex justify-content-between align-items-center">
NGO THI HONG committed
79
                            <div class="fs-9" id="count-NewReport"></div>
80 81 82 83 84 85 86 87 88
                            <!-- view display type menu -->
                            <div class="view">
                              <a href="#" class="text-decoration-none view-btn view-list-btn">
                                  <img src="../common/img/icon_view_list.svg" alt="" class="list-block-icon mx-1 lang" lang="listDisplay" type="image" data-toggle="tooltip" data-placement="bottom" title="">
                              </a>
                              <a href="#" class="text-decoration-none view-btn view-block-btn active">
                                  <img src="../common/img/icon_view_block.svg" alt="" class="list-block-icon mx-1 lang" lang="gridDisplay" type="image" data-toggle="tooltip" data-placement="bottom" title="">
                              </a>
                            </div>
NGO THI HONG committed
89 90 91
                        </div>
                    </nav>
                    <!-- task list -->
NGO THI HONG committed
92
                    <ul class="p-0 mt-3 card-list task-list view-content view-block" id="newReport-list">
NGO THI HONG committed
93 94 95
                    </ul>
                </div>
                <!-- proccess -->
NGO THI HONG committed
96
                <div class="tab-pane fade" id="tab-content-ContinousWork"  role="tabpanel" aria-labelledby="2-tab">
NGO THI HONG committed
97
                    <!-- view menu -->
NGO THI HONG committed
98
                    <nav aria-label="view" class="view-menu mt-2" id="viewMenuContinuousWork">
NGO THI HONG committed
99
                        <div class="d-flex justify-content-between align-items-center">
NGO THI HONG committed
100
                            <div class="fs-9" id="count-ContinuousWork"></div>
101 102 103 104 105 106 107 108 109
                            <!-- view display type menu -->
                            <div class="view">
                              <a href="#" class="text-decoration-none view-btn view-list-btn">
                                  <img src="../common/img/icon_view_list.svg" alt="" class="list-block-icon mx-1 lang" lang="listDisplay" type="image" data-toggle="tooltip" data-placement="bottom" title="">
                              </a>
                              <a href="#" class="text-decoration-none view-btn view-block-btn active">
                                  <img src="../common/img/icon_view_block.svg" alt="" class="list-block-icon mx-1 lang" lang="gridDisplay" type="image" data-toggle="tooltip" data-placement="bottom" title="">
                              </a>
                            </div>
NGO THI HONG committed
110 111 112
                        </div>
                    </nav>
                    <!-- task list -->
NGO THI HONG committed
113
                    <ul class="p-0 mt-3 card-list task-list view-content view-block" id="continousWork-list">
NGO THI HONG committed
114 115 116
                    </ul>
                </div>
                <!-- alert -->
NGO THI HONG committed
117
                <div class="tab-pane fade" id="tab-content-ReportWithWarnings"  role="tabpanel" aria-labelledby="3-tab">
NGO THI HONG committed
118
                    <!-- view menu -->
NGO THI HONG committed
119
                    <nav aria-label="view" class="view-menu mt-2" id="viewMenuReportWithWarnings">
NGO THI HONG committed
120
                        <div class="d-flex justify-content-between align-items-center">
NGO THI HONG committed
121
                            <div class="fs-9" id="count-ReportWithWarnings"></div>
122 123 124 125 126 127 128 129 130
                            <!-- view display type menu -->
                            <div class="view">
                              <a href="#" class="text-decoration-none view-btn view-list-btn">
                                  <img src="../common/img/icon_view_list.svg" alt="" class="list-block-icon mx-1 lang" lang="listDisplay" type="image" data-toggle="tooltip" data-placement="bottom" title="">
                              </a>
                              <a href="#" class="text-decoration-none view-btn view-block-btn active">
                                  <img src="../common/img/icon_view_block.svg" alt="" class="list-block-icon mx-1 lang" lang="gridDisplay" type="image" data-toggle="tooltip" data-placement="bottom" title="">
                              </a>
                            </div>
NGO THI HONG committed
131 132 133
                        </div>
                    </nav>
                    <!-- task list -->
NGO THI HONG committed
134 135
                    <ul class="p-0 mt-3 card-list task-list view-content view-block" id="reportWithWarnings-list">
                       </ul>
NGO THI HONG committed
136 137 138 139 140 141
                </div>
              </div>
        </div>
    </main>

    <!-- confirm -->
NGO THI HONG committed
142
    <div id="includedConfirmModal"></div>
NGO THI HONG committed
143 144
    <script type="text/javascript" src="../common/js/newdash/app.js?__UPDATEID__"></script>
    <script type="text/javascript" src="../common/js/newdash/common.js?__UPDATEID__"></script>
NGO THI HONG committed
145 146 147
</body>

</html>