审查视图

public/themes/admin_simpleboot3/admin/booking/seting.html 13.8 KB
xiaohu authored
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
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <!-- Set render engine for 360 browser -->
    <meta name="renderer" content="webkit">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <!-- HTML5 shim for IE8 support of HTML5 elements -->
    <!--[if lt IE 9]>
    <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
    <![endif]-->


    <link href="__TMPL__/public/assets/themes/{:cmf_get_admin_style()}/bootstrap.min.css" rel="stylesheet">
    <link href="__TMPL__/public/assets/simpleboot3/css/simplebootadmin.css" rel="stylesheet">
    <link href="__STATIC__/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
    <!--[if lt IE 9]>
    <script src="https://cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
    <![endif]-->
    <style>
        form .input-order {
            margin-bottom: 0px;
            padding: 0 2px;
            width: 42px;
            font-size: 12px;
        }

        form .input-order:focus {
            outline: none;
        }

        .table-actions {
            margin-top: 5px;
            margin-bottom: 5px;
            padding: 0px;
        }

        .table-list {
            margin-bottom: 0px;
        }

        .form-required {
            color: red;
        }
    </style>
    <script type="text/javascript">
        //全局变量
        var GV = {
            ROOT: "__ROOT__/",
            WEB_ROOT: "__WEB_ROOT__/",
            JS_ROOT: "static/js/",
            APP: '{$Request.module}'/*当前应用名*/
        };
    </script>
    <script src="__TMPL__/public/assets/js/jquery-1.10.2.min.js"></script>
    <script src="__STATIC__/js/wind.js"></script>
    <script src="__TMPL__/public/assets/js/bootstrap.min.js"></script>
    <script>
        Wind.css('artDialog');
        Wind.css('layer');
        // $(function () {
        //     $("[data-toggle='tooltip']").tooltip({
        //         container:'body',
        //         html:true,
        //     });
        //     $("li.dropdown").hover(function () {
        //         $(this).addClass("open");
        //     }, function () {
        //         $(this).removeClass("open");
        //     });
        // });
    </script>
    <if condition="APP_DEBUG">
        <style>
            #think_page_trace_open {
                z-index: 9999;
            }
        </style>
    </if>
    <link rel="stylesheet" href="/static/scr/zoomify/bootstrap-grid.min.css">
    <!--<link rel="stylesheet" href="/static/scr/zoomify/dist/zoomify.css">-->
    <style>
        .slecet-box {
            width: 50%;
        }

        .slecet-box select {
            width: 30%;
        }

        .time-box {
            width: 80%;
            margin: 10px auto 0 auto;
            overflow: hidden;
        }

        .time-box span {
            display: inline-block;
            width: 24%;
            height: 44px;
            line-height: 44px;
            text-align: center;
            border: 1px solid red;
            border-radius: 5px;
            color: red;
            float: left;
            margin-right: 1.2%;
            margin-top: 10px;
        }

        .time-box span:nth-child(4n) {
            margin-right: 0;
        }

        .time-box .acv {
            color: #6589de;
            border: 1px solid #6589de;
        }

        .save {
            display: block;
            width: 300px;
            text-align: center;
            height: 50px;
            line-height: 50px;
            color: #fff;
            background-color: #6589de;
            font-size: 18px;
            margin: 50px auto 0 auto;
            border-radius: 5px;
        }

        .save:hover {
            color: #fff;
            background-color: #3a4d7b;
            text-decoration: none;
        }

        .time-box .bg-colo {
            background-color: #6589de;
            color: #fff;
        }
    </style>
</head>
<body>
<div class="wrap js-check-wrap">
    <ul class="nav nav-tabs">
        <li class="active"><a href="javascript:;">预约时间设置</a></li>
    </ul>
    <form class="well form-inline margin-top-20" method="post" action="{:url('tag')}">
        教练列表:
        <select class="form-control" id="teacher" name="type" style="width: 140px;">
            <noempty name="pcdata">
                <option value='{$pcdata.id}' checked>{$pcdata.user_nickname}</option>
            </noempty>
            <foreach name="cdata" id="vo">
                <option value='{$vo.id}'>{$vo.user_nickname}</option>
            </foreach>
        </select> &nbsp;&nbsp;

        时间
        <select class="form-control" id="time" style="width: 140px;">
            <option value="-1">请选择</option>
            <foreach name="day" id="vo">
                <option value='{$vo}'>{$vo}</option>
            </foreach>
        </select>
    </form>
    请选择时间段,红色为不可预约时间
    <div class="time-box">
        <span data-id="0">06:00-07:00</span>
        <span data-id="0">07:00-08:00</span>
        <span data-id="1">08:00-09:00</span>
        <span data-id="2">09:00-10:00</span>
        <span data-id="3">10:00-11:00</span>
        <span data-id="4">11:00-12:00</span>
        <span data-id="5">12:00-13:00</span>
        <span data-id="6">13:00-14:00</span>
        <span data-id="7">14:00-15:00</span>
        <span data-id="8">15:00-16:00</span>
        <span data-id="9">16:00-17:00</span>
        <span data-id="10">17:00-18:00</span>
    </div>
    <a class="save">保存设置</a>
</div>
<script src="/static/layer/layer.js"></script>
<script src="__STATIC__/js/admin.js"></script>
<script>

    function reloadPage(win) {
        win.location.reload();
    }

    $(function () {
654550265 authored
197 198 199 200 201
        $(function () {
            var obj = {
                teach_id: $('#teacher').val(),
                day: $('#time').val(),
            };
xiaohu authored
202
654550265 authored
203 204 205 206 207 208 209 210 211 212 213 214 215
            function find_seting(obj) {
                if (obj) {
                    $.ajax({
                        url: "{:url('find_seting')}",
                        data: {
                            uid: obj.teach_id,
                            day: obj.day.replace(/(\d{4})(\d{2})(\d{2})/, "$1-$2-$3")
                        },
                        success: function (res) {
                            console.log(res);
                            if (res.code == '1') {
                                var time_list = JSON.parse(res.data);
                                for (var i = 0; i < time_list[0].length; i++) {
654550265 authored
216
                                    if (time_list[0][i] == 'yes') {
654550265 authored
217 218 219 220 221 222
                                        $('.time-box span')[i].setAttribute('class', 'acv');
                                        $('.time-box span')[i].setAttribute('data-sec', time_list[1][i]);
                                    } else {
                                        $('.time-box span')[i].setAttribute('class', '');
                                        $('.time-box span')[i].setAttribute('data-sec', time_list[1][i]);
                                    }
xiaohu authored
223 224 225
                                }
                            }
                        }
654550265 authored
226 227 228 229 230
                    });
                } else {
                    var list = $('.time-box span');
                    for (var i = 0; i < list.length; i++) {
                        list[i].setAttribute('class', '');
xiaohu authored
231 232 233 234
                    }
                }
            }
654550265 authored
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
            find_seting();
            $('#teacher').change(function () {
                obj.teach_id = $(this).val();
                if (obj.day != -1) {
                    find_seting(obj);
                } else {
                    layer.msg('请选择时间');
                }
            });
            $('#time').change(function () {
                obj.day = $(this).val().split('-').join('');
                if (obj.teach_id != -1) {
                    find_seting(obj);
                } else {
                    layer.msg('请选择教练');
                }
            });
            $('.time-box').on('click', '.acv', function () {
lianghiu authored
253 254 255 256
                if($(this).attr("class") == "acv"){
                    $(this).attr("class", "acv bg-colo");
                }else{
                    $(this).attr("class", "acv");
654550265 authored
257 258 259 260 261 262 263 264
                }
            });
            $('.save').click(function () {
                var list = $('.bg-colo');
                var put_list = [];
                for (var i = 0; i < list.length; i++) {
                    put_list.push(list[i]);
                }
lianghiu authored
265
                if (put_list.length == 0) {
654550265 authored
266 267 268 269
                    alert('请选择时间段');
                } else {
                    var teacher_id = $('#teacher').val();
                    var time_id = $('#time').val().split('-').join('');
lianghiu authored
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
                    for(var q = 0;q<put_list.length;q++){
                        $.ajax({
                            url: "{:url('seting_do')}",
                            data: {
                                teach_id: teacher_id,
                                day: time_id.replace(/(\d{4})(\d{2})(\d{2})/, "$1-$2-$3"),
                                begin: parseInt(put_list[q].innerHTML.split("-")[0]),
                                end: parseInt(put_list[q].innerHTML.split("-")[1])
                            },
                            success: function (res) {
                                console.log(res);
                                if (res.code == "1") {
                                    layer.msg(res.msg);
                                    window.location.reload();
                                }
654550265 authored
285
                            }
lianghiu authored
286 287 288
                        });
                    }
                   
xiaohu authored
289
                }
654550265 authored
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
            });
            setCookie("refersh_time", 0);
            Wind.use('ajaxForm', 'artDialog', 'iframeTools', function () {
                //批量复制
                $('.js-articles-copy').click(function (e) {
                    var ids = [];
                    $("input[name='ids[]']").each(function () {
                        if ($(this).is(':checked')) {
                            ids.push($(this).val());
                        }
                    });

                    if (ids.length == 0) {
                        art.dialog.through({
                            id: 'error',
                            icon: 'error',
                            content: '您没有勾选信息,无法进行操作!',
                            cancelVal: '关闭',
                            cancel: true
                        });
                        return false;
                    }
xiaohu authored
312
654550265 authored
313 314 315 316 317
                    ids = ids.join(',');
                    art.dialog.open("__ROOT__/index.php?g=portal&m=AdminArticle&a=copy&ids=" + ids, {
                        title: "批量复制",
                        width: "300px"
                    });
xiaohu authored
318
                });
654550265 authored
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
                $('.time-box span').click(function () {
                    if ($(this).attr("class") == "") {
                        var teacher_id = $('#teacher').val();
                        var time_id = $('#time').val().split('-').join('');
                        if (teacher_id == "") {
                            layer.msg("请选择教练")
                        } else if (time_id == 1) {
                            layer.msg("请选择日期")
                        } else if ($(this).attr("data-sec") == "no") {
                            layer.msg("学生预约不可操作");
                        } else {
                            var _this = $(this);
                            $.ajax({
                                url: "{:url('seting_do')}",
                                data: {
                                    teach_id: teacher_id,
                                    day: time_id.replace(/(\d{4})(\d{2})(\d{2})/, "$1-$2-$3"),
                                    begin: parseInt($(this)[0].innerHTML.split("-")[0]),
                                    end: parseInt($(this)[0].innerHTML.split("-")[1])
                                },
                                success: function (res) {
                                    if (res.code == 1) {
                                        console.log($(this));
                                        _this.attr("class", "acv");
                                        layer.msg(res.msg);
                                    }
xiaohu authored
345
                                }
654550265 authored
346 347
                            });
                        }
xiaohu authored
348
                    }
654550265 authored
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
                });
                //批量移动
                // $('.js-articles-move').click(function (e) {
                //     var ids = [];
                //     $("input[name='ids[]']").each(function () {
                //         if ($(this).is(':checked')) {
                //             ids.push($(this).val());
                //         }
                //     });
                //
                //     if (ids.length == 0) {
                //         art.dialog.through({
                //             id: 'error',
                //             icon: 'error',
                //             content: '您没有勾选信息,无法进行操作!',
                //             cancelVal: '关闭',
                //             cancel: true
                //         });
                //         return false;
                //     }
                //
                //     ids = ids.join(',');
                //     art.dialog.open("__ROOT__/index.php?g=portal&m=AdminArticle&a=move&old_term_id={$term.term_id|default=0}&ids=" + ids, {
                //         title: "批量移动",
                //         width: "300px"
                //     });
                // });
xiaohu authored
376 377
            });
        });
654550265 authored
378
    });
xiaohu authored
379 380 381 382 383 384 385 386
</script>
<script src="http://www.jq22.com/jquery/1.11.1/jquery.min.js"></script>
<script src="/static/src/zoomify/zoomify.js"></script>
<script type="text/javascript">
    // $('.example img').zoomify();
</script>
</body>
</html>