index.html 8.93 KB
Newer Older
Yujin Seo committed
1
<!DOCTYPE html>
Jung Kwangkyu committed
2 3 4 5 6 7 8 9 10 11 12
<html lang="ja-JP">

<head>
    <meta charset="utf-8">
    <title>トップページ|A Book Check</title>
    <meta name="robots" content="index, follow">
    <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
    <meta name="description" content="A Book Check">

    <link rel="stylesheet" type="text/css" href="css/app.css">
    <link rel="stylesheet" type="text/css" href="css/fontawesome_relative_path.css">
Yujin Seo committed
13 14 15
    <script src="js/jquery-1.11.2.min.js?__UPDATEID__"></script>
    <script src="script/check.js?__UPDATEID__"></script>
    <script src="script/check-list.js?__UPDATEID__"></script>
16
    <script src="script/check-foriOS.js"></script>
17
    <script src="script/constant.js?__UPDATEID__"></script>
Jung Kwangkyu committed
18 19
</head>

Yujin Seo committed
20
<body onload="CHK_L.init();">
Jung Kwangkyu committed
21 22
    <header>
        <nav class="navbar navbar-dark bg-primary">
23 24
            <a class="navbar-brand category-btn lht-0" href="#" >
                <i class="fa fa-folder fs-12 p-1" id="category-toggle-button"></i>
Jung Kwangkyu committed
25 26 27 28 29 30 31
                <span class="d-none d-md-inline fs-10">カテゴリー</span>
            </a>
        </nav>
    </header>

    <section class="category-menu">
        <div class="overlay"></div>
32
        <nav id="category-menu" class="drawer-menu">
Jung Kwangkyu committed
33 34 35 36 37 38 39 40 41 42 43 44
            <div class="d-flex justify-content-between border-bottom">
                <h2 class="text-nowrap font-weight-bold fs-13 p-3 mb-0">カテゴリー</h2>
                <a class="category-btn p-3" href="#"><i class="fa fa-times"></i></a>
            </div>
        </nav>
    </section>

    <section class="container-fluid main-section">

        <main>

            <nav aria-label="breadcrumb">
45
                <ol class="breadcrumb border-bottom px-0" id="groupMasterPath">
Jung Kwangkyu committed
46 47 48 49 50 51
                </ol>
            </nav>

            <nav aria-label="search">
                <div class="row">
                    <div class="col-7 col-md-5 col-lg-4">
Lee Munkyeong committed
52 53 54 55 56
                        <div class="form-group has-search input-group">
                            <input type="text" class="form-control" placeholder="作業名" id="searchTaskName">
                            <div class="input-group-append">
                                <i class="fas fa-search input-group-text" onclick="CHK.search();"></i>
                            </div>
Jung Kwangkyu committed
57 58 59 60 61 62 63 64 65 66 67 68 69 70
                        </div>
                    </div>

                    <div class="col-1 col-md-2 duration-area">
                        <a href="#" class="d-inline-block text-decoration-none py-2 lht-0"  data-toggle="modal" data-target="#exampleModal">
                            <i class="far fa-calendar text-dark"></i>
                            <span class="d-none d-md-inline text-black fs-10">
                                期間
                            </span>
                        </a>
                        <div class="modal modal-duration fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
                            <div class="modal-dialog">
                                <div class="modal-content">
                                    <div class="modal-body">
Lee Munkyeong committed
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
                                        <div class="form-group">
                                            <label>開始日</label>
                                            <div class="input-group date" id="datetimepicker1" data-target-input="nearest">
                                                <input type="text" name="start" class="form-control form-control-sm datetimepicker-input" data-target="#datetimepicker1" placeholder="選択" inputmode="none" id="searchStartDate">
                                                <div class="input-group-append" data-target="#datetimepicker1" data-toggle="datetimepicker">
                                                    <div class="input-group-text"><i class="far fa-calendar"></i></div>
                                                </div>
                                            </div>
                                        </div>
                                        <div class="form-group">
                                            <label>終了日</label>
                                            <div class="input-group date" id="datetimepicker2" data-target-input="nearest">
                                                <input type="text" name="end" class="form-control form-control-sm datetimepicker-input" data-target="#datetimepicker2" placeholder="選択" inputmode="none" id="searchEndDate">
                                                <div class="input-group-append" data-target="#datetimepicker2" data-toggle="datetimepicker">
                                                    <div class="input-group-text"><i class="far fa-calendar"></i></div>
                                                </div>
                                            </div>
                                        </div>
Jung Kwangkyu committed
89 90 91 92 93 94 95 96 97 98 99 100 101
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                    <div class="col-4 col-md-5 col-lg-6 text-right">
                        <a href="#" class="text-decoration-none py-2 lht-0" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" data-offset="-120, 0">
                            <i class="fa fa-sort text-dark"></i>
                            <span class="d-none d-md-inline text-dark fs-10">
                                並び替え
                            </span>
                        </a>
                        <div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
102 103 104 105 106
                            <a class="dropdown-item sort-type" data-sort="0" onclick="CHK.changeSortType(this);">作業名順</a>
                            <a class="dropdown-item sort-type" data-sort="1" onclick="CHK.changeSortType(this);">作業期間が新しい順</a>
                            <a class="dropdown-item sort-type active" data-sort="2" onclick="CHK.changeSortType(this);">作業期間が古い順</a>
                            <a class="dropdown-item sort-type" data-sort="3" onclick="CHK.changeSortType(this);">報告タイプ順</a>
                            <a class="dropdown-item sort-type" data-sort="4" onclick="CHK.changeSortType(this);">閲覧日が新しい順</a>
Jung Kwangkyu committed
107
                        </div>
Yujin Seo committed
108
                        <a href="javascript:CHK_L.sendAppCommand('refreshContent');" class="text-decoration-none py-2 lht-0 d-inline-block ml-3">
Jung Kwangkyu committed
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
                            <i class="fa fa-redo text-dark"></i>
                            <span class="d-none d-md-inline text-dark fs-10">
                                リセット
                            </span>
                        </a>
                    </div>
                </div>
            </nav>


            <section>
                <table class="table">
                    <thead>
                        <tr>
                            <th>項目名</th>
                            <th class="d-none d-md-table-cell">開始日</th>
                            <th class="d-none d-md-table-cell">終了日</th>
                            <th>VR</th>
                        </tr>
                    </thead>
129
                    <tbody id="operationTable">
Jung Kwangkyu committed
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
                    </tbody>
                </table>
            </section>

        </main>

    </section>

    <footer class="fixed-bottom bg-light">

        <nav class="d-flex justify-content-around">
            <a class="d-block w-100 text-center py-2 text-decoration-none text-primary">
                <i class="fas fa-home fs-14 p-1"></i>
                <div class="fs-7">ホーム</div>
            </a>
Yujin Seo committed
145
            <a class="d-block w-100 text-center py-2 text-decoration-none text-secondary" onclick="CHK_L.sendAppCommand('goRelationContent');">
Jung Kwangkyu committed
146 147 148
                <i class="fas fa-folder fs-14 p-1"></i>
                <div class="fs-7">関連資料</div>
            </a>
149
            <a class="d-block w-100 text-center py-2 text-decoration-none text-secondary" onclick="CHK_L.sendAppCommand('goCommunication');">
Jung Kwangkyu committed
150 151 152 153 154 155 156
                <i class="fas fa-comment-dots fs-14 p-1"></i>
                <div class="fs-7">コミュ<span class="d-none d-sm-inline">ニケーション</span></div>
            </a>
            <a class="d-block w-100 text-center py-2 text-decoration-none text-secondary">
                <i class="fas fa-clipboard-list fs-14 p-1"></i>
                <div class="fs-7">帳票確認</div>
            </a>
Yujin Seo committed
157
            <a class="d-block w-100 text-center py-2 text-decoration-none text-secondary" onclick="CHK_L.sendAppCommand('goSetting');">
Jung Kwangkyu committed
158 159 160 161 162 163 164 165 166 167 168
                <i class="fas fa-cog fs-14 p-1"></i>
                <div class="fs-7">設定</div>
            </a>
        </nav>

    </footer>

    <script type="text/javascript" src="js/app.js" defer></script>
</body>

</html>