|
- /**
- * Created by Steven on 2017/7/18.
- */
-
-
- var param_hotel_id = $("#hotel_id").val();
- if (param_hotel_id != undefined) {
- $("#hotel").find("option[value='" + param_hotel_id + "']").attr("selected", true);
- }
- $("#hotel").change(function () {
- var checkText = $("#hotel").find("option:selected").text();
- $("#hotel_name").text(checkText);
- // $("#submit").trigger("onclick");
- var hotel_id = $(this).children('option:selected').val();
- search(hotel_id);
- });
- $('.select_screen').comboSelect();
- function search(hotel_id) {
- loading();
- var id = '';
- if (hotel_id == undefined) {
- id = $(".option-selected").attr('data-value');
- } else {
- id = hotel_id;
- }
- $.pjax.reload({
- container: '#list',
- data: {
- HOTEL_ID: id,
- _csrf: yii.getCsrfToken()
-
- },
- replace: false,
- timeout: false
- }).done(function () {
- closeLoading();
- });
-
- }
-
- function data_init() {
- $("#hotel_name").text($(".option-selected").text());
- }
-
- function pjaxFinish(type,msg) {
- z.showTip(type, msg);
- // search(-2);
- z.hideModal('#float-div');
- closeLoading();
- }
|