| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 | @extends('admin/layout')@section('header')    <link href="{{asset('css/plugins/chosen/chosen.css')}}" rel="stylesheet">    <link href="{{asset('css/plugins/switchery/switchery.css')}}" rel="stylesheet">    {{--<link href="{{asset('js/plugins/bootstrap-select-1.13.5/css/bootstrap-select.min.css')}}" rel="stylesheet">--}}    <link rel="stylesheet"          href="https://cdn.jsdelivr.net/npm/bootstrap-select@1.13.9/dist/css/bootstrap-select.min.css">@endsection@section('content')    <body class="gray-bg">    <div class="wrapper wrapper-content animated fadeInRight">        <div class="row">            <div class="col-sm-12">                <div class="ibox float-e-margins">                    <div class="ibox-content">                        <form method="post" class="form-horizontal" id="form">                            <div class="form-group">                                <label class="col-sm-2 control-label" for="nickname"><span                                        class="red">* </span>检查反馈:</label>                                <div class="col-sm-6">                                    <select class="form-control" id="cond_item_id" name="cond_item_id">                                        <option value="0" @if ($weekTaskHistory->cond_item_id==0) selected @endif>                                            请选择类型                                        </option>                                        <option value="11" @if ($weekTaskHistory->cond_item_id==11) selected @endif>                                            非常满意                                        </option>                                        <option value="12" @if ($weekTaskHistory->cond_item_id==12) selected @endif>                                            满意                                        </option>                                        <option value="13" @if ($weekTaskHistory->cond_item_id==13) selected @endif>                                            一般                                        </option>                                    </select>                                </div>                            </div>                            <div class="form-group">                                <div class="col-sm-4 col-sm-offset-2">                                    <button class="btn btn-primary" type="button" data-id="{{$weekTaskHistory->id??0}}"                                            id="save">                                        保存                                    </button>                                    <button class="btn btn-white" type="button" id="cancel">取消</button>                                </div>                            </div>                        </form>                    </div>                </div>            </div>        </div>    </div>    </body>@endsection@section('footer')    <script src="{{asset('js/plugins/switchery/switchery.js')}}"></script>    <script src="https://cdn.jsdelivr.net/npm/bootstrap-select@1.13.9/dist/js/bootstrap-select.min.js"></script>    <script>        $(document).on('click', '#cancel', function () {            tips.closeParentLayer();        });        $(document).on('click', '#save', function () {            var id = $(this).data('id');            var cond_item_id = $('#cond_item_id').val();            var url = '/admin/plan/week-task/history-update/' + id;            var type = 'get';            var ajaxConfig = {                url: url,                type: type,                data: {cond_item_id: cond_item_id},                success: function (result) {                    layer.msg(result.message, {icon: 6, time: 1500}, function () {                        tips.closeParentLayer();                        window.parent.tips.tableRefresh('#table');                    });                }            };            tips.ajax(ajaxConfig);        });    </script>@endsection
 |