選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

50 行
1.1 KiB

  1. /**
  2. * Created by Steven on 2017/7/18.
  3. */
  4. var param_hotel_id = $("#hotel_id").val();
  5. if (param_hotel_id != undefined) {
  6. $("#hotel").find("option[value='" + param_hotel_id + "']").attr("selected", true);
  7. }
  8. $("#hotel").change(function () {
  9. var checkText = $("#hotel").find("option:selected").text();
  10. $("#hotel_name").text(checkText);
  11. // $("#submit").trigger("onclick");
  12. var hotel_id = $(this).children('option:selected').val();
  13. search(hotel_id);
  14. });
  15. $('.select_screen').comboSelect();
  16. function search(hotel_id) {
  17. loading();
  18. var id = '';
  19. if (hotel_id == undefined) {
  20. id = $(".option-selected").attr('data-value');
  21. } else {
  22. id = hotel_id;
  23. }
  24. $.pjax.reload({
  25. container: '#list',
  26. data: {
  27. HOTEL_ID: id,
  28. _csrf: yii.getCsrfToken()
  29. },
  30. replace: false,
  31. timeout: false
  32. }).done(function () {
  33. closeLoading();
  34. });
  35. }
  36. function data_init() {
  37. $("#hotel_name").text($(".option-selected").text());
  38. }
  39. function pjaxFinish(type,msg) {
  40. z.showTip(type, msg);
  41. // search(-2);
  42. z.hideModal('#float-div');
  43. closeLoading();
  44. }