You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

238 line
9.6 KiB

  1. $('#_province').on('change', '[name*="province"],[name*="city"]', function () {
  2. $.pjax.reload({
  3. container: '#_province',
  4. url: '/hotel/hotel/_province',
  5. data: {id: $(this).val()},
  6. replace: false,
  7. timeout: false
  8. })
  9. });
  10. /**
  11. * 添加基础房型
  12. * @param index
  13. */
  14. function add_contacts(index) {
  15. var a = $("#stroke_tbody tr").length; //基础房型的条数
  16. var tr_no = $("input[name='tr_no']:last").length > 0 ? (parseInt($("input[name='tr_no']:last").val()) + 1) : 0;
  17. var travel_html = '<tr class="stroke_room_tr"><td>' + '<input type="hidden" name="tr_no" value="' + tr_no + '"><div class="form-group"><input type="text" class="form-control room_name" name="OperaHotelBaseRoom[' + tr_no + '][BASE_ROOM_NAME]" id="" placeholder="输入房型名称"></div></td>'
  18. +'<td><div class="form-group"><label for="big'+tr_no+'"><input type="checkbox" id="big'+tr_no+'" checked name="OperaHotelBaseRoom['+ tr_no +'][BED_TYPE][]" value="1">大床</label><br/><label for="double'+ tr_no +'"><input type="checkbox" id="double' + tr_no + '" value="2" name="OperaHotelBaseRoom['+ tr_no +'][BED_TYPE][]">双床</label><br/>' +
  19. '<label for="many'+tr_no+'"><input type="checkbox" id="many'+tr_no+'" value="10" name="OperaHotelBaseRoom['+ tr_no +'][BED_TYPE][]">多床</label></div></td>'+
  20. '<td><div class="form-group"><select class="form-control" name="OperaHotelBaseRoom[' + tr_no + '][CURRENCY_CODE]"><option value="1">人民币</option></select></div></td>' +
  21. '<td><div class="form-group"><input type="text" class="form-control room_area" name="OperaHotelBaseRoom[' + tr_no + '][AREA_SIZE]" id="" placeholder="输入房型面积"></div></td>' +
  22. '<td><div class="form-group"><div class="form-inline"><div class="fileinput fileinput-new" data-provides="fileinput" onclick="imageShow()">\n' +
  23. ' <div class="fileinput-new thumbnail" style="height: 65px; width: 80px">\n' +
  24. ' <img data-trigger="openImage" src="/resource/img/default-thumbnail.png"/></div>\n' +
  25. ' <div class="fileinput-preview fileinput-exists thumbnail" data-type="2" data-trigger="openDivImage"' +
  26. ' style="height: 65px; width: 80px"></div>\n' +
  27. ' <div style="float: right; margin-top: 10px">\n' +
  28. ' <span class="btn default btn-file">\n' +
  29. ' <span class="fileinput-new btn btn-secondary"> 选择图片 </span>\n' +
  30. ' <span class="fileinput-exists btn-default"> 重新选择 </span>\n' +
  31. ' <input type="file" onchange="checkSize(this)" name="OperaHotelBaseRoom['+ tr_no +'][ROOM_IMG]">\n' +
  32. ' </span>\n' +
  33. ' </div>\n' +
  34. '<br>\n' +
  35. '<span style="color: red;">* 建议大小 160 * 130 </span></div></div></div></td>' +
  36. '<td><div class="form-group">\n' +
  37. ' <div class="form-inline">\n' +
  38. ' <span>可售</span>\n' +
  39. ' </div>\n' +
  40. '</div></td>'+
  41. '<td><button type="button" onclick="delete_contacts(this)"class="btn btn-danger">删除 </button></td></tr>';
  42. $("#stroke_tbody").append(travel_html);
  43. }
  44. function imageShow() {
  45. $(".thumbnail").on('click', "img[data-trigger='openImage']", function () {
  46. if (self.frameElement && self.frameElement.tagName == "IFRAME") {
  47. parent.z.showImage(z.thumbnailToHeight($(this).attr('src')));
  48. } else {
  49. z.showImage(z.thumbnailToHeight($(this).attr('src')));
  50. }
  51. var type = $(this).parent().siblings().attr('data-type');
  52. if(type)
  53. {
  54. switch (type)
  55. {
  56. case '1':
  57. $('.bigImage').css('width', '180px');
  58. $('.bigImage').css('height', '180px');
  59. $('.bigImage').find('img').css('width', '170px');
  60. $('.bigImage').find('img').css('height', '170px');
  61. break;
  62. case '2':
  63. $('.bigImage').css('width', '160px');
  64. $('.bigImage').css('height', '130px');
  65. $('.bigImage').find('img').css('width', '150px');
  66. $('.bigImage').find('img').css('height', '120px');
  67. break;
  68. }
  69. }
  70. })
  71. $(".fileinput").on('click', "div[data-trigger='openDivImage']", function () {
  72. if (self.frameElement && self.frameElement.tagName == "IFRAME") {
  73. parent.z.showImage($(this).find('img').attr('src'));
  74. } else {
  75. z.showImage($(this).find('img').attr('src'));
  76. }
  77. var type = $(this).attr('data-type');
  78. if(type)
  79. {
  80. switch (type)
  81. {
  82. case '1':
  83. $('.bigImage').css('width', '180px');
  84. $('.bigImage').css('height', '180px');
  85. $('.bigImage').find('img').css('width', '170px');
  86. $('.bigImage').find('img').css('height', '170px');
  87. break;
  88. case '2':
  89. $('.bigImage').css('width', '160px');
  90. $('.bigImage').css('height', '130px');
  91. $('.bigImage').find('img').css('width', '150px');
  92. $('.bigImage').find('img').css('height', '120px');
  93. break;
  94. }
  95. }
  96. })
  97. $("._image").on('click', "img[data-trigger='openImage']", function () {
  98. if (self.frameElement && self.frameElement.tagName == "IFRAME") {
  99. parent.z.showImage(z.thumbnailToHeight($(this).attr('src')));
  100. } else {
  101. z.showImage(z.thumbnailToHeight($(this).attr('src')));
  102. }
  103. })
  104. $("body").on('click', ".bigDivImage", function () {
  105. $(".bigDivImage").remove();
  106. })
  107. $('.loading-form').on('beforeValidate', function (e) {
  108. loading();
  109. return true;
  110. }).on('beforeSubmit', function (e) {
  111. loading();
  112. return true;
  113. }).on('ajaxComplete', function (e) {
  114. closeLoading();
  115. return true;
  116. }).on('afterValidate', function (e) {
  117. closeLoading();
  118. return true;
  119. });
  120. //如果使用了pajx,重载后,需要closeLoading()
  121. $(document).on('click', '.zLoading', function (e) {
  122. loading();
  123. if ($(this).attr('type') !== undefined && $(this).attr('type').toLowerCase() === 'submit') {
  124. $('form').submit();
  125. }
  126. return true;
  127. });
  128. $(document).on('pjax:success', '[data-pjax-container]', function () {
  129. closeLoading();
  130. });
  131. if (typeof initFlag !== 'undefined' && initFlag === true)
  132. z.init();
  133. }
  134. /**
  135. * 添加礼盒
  136. */
  137. function add_gift() {
  138. var gift_no = $("input[name='gift_no']:last").length > 0 ? (parseInt($("input[name='gift_no']:last").val()) + 1) : 0;
  139. var travel_html = '<tr class="stroke_tr"><td>' + '<input type="hidden" name="gift_no" value="' + gift_no + '"><div class="form-group"><input type="text" class="form-control" name="OperaHotelGift[' + gift_no + '][GIFT_NAME]" id="" placeholder="输入礼盒名称"></div></td>'+
  140. '<td><div class="form-group"><textarea class="form-control" name="OperaHotelGift[' + gift_no + '][GIFT_CONTENT]" id="" placeholder="输入礼盒内容" style="width: 350px; height: 60px"></textarea></div></td>' +
  141. '<td><button type="button" onclick="delete_gifts(this)"class="btn btn-danger">删除 </button></td></tr>';
  142. $("#gift_tbody").append(travel_html);
  143. }
  144. /**
  145. * 删除联系人行
  146. * @param index
  147. * @returns {boolean}
  148. */
  149. function delete_contacts(index) {
  150. var tr_num = $("#stroke_tbody tr").length; //行程的条数
  151. if (tr_num <= 1) {
  152. Command: parent.toastr["warning"]('至少添加一个基础房型!!!');
  153. return false;
  154. }
  155. $(index).closest('.stroke_room_tr').remove();
  156. }
  157. /**
  158. * 删除礼盒
  159. * @param index
  160. * @returns {boolean}
  161. */
  162. function delete_gifts(index) {
  163. var tr_num = $("#gift_tbody tr").length; //行程的条数
  164. if (tr_num <= 1) {
  165. Command: parent.toastr["warning"]('至少添加一个礼盒信息!!!');
  166. return false;
  167. }
  168. $(index).closest('.stroke_tr').remove();
  169. }
  170. /**
  171. * 取消按钮
  172. */
  173. function hotelIndex() {
  174. window.location.href = '/hotel/hotel/index';
  175. }
  176. function pjaxFinish(type, msg) {
  177. z.showTip(type, msg);
  178. z.hideModal('#float-div');
  179. closeLoading();
  180. }
  181. function tabChange(type) {
  182. if (type == 1) {
  183. $('#div_container1').css('display','block');
  184. $('#div_container2').css('display','none');
  185. $('#div_container3').css('display','none');
  186. }else if(type==2){
  187. $('#div_container1').css('display','none');
  188. $('#div_container2').css('display','block');
  189. $('#div_container3').css('display','none');
  190. }else if(type == 3)
  191. {
  192. $('#div_container1').css('display','none');
  193. $('#div_container2').css('display','none');
  194. $('#div_container3').css('display','block');
  195. }
  196. }
  197. function selectLabel(obj, name, id_name) {
  198. res_id = $(obj).val().trim();
  199. if (res_id != -1) {
  200. res_name = $(obj).find('option:selected').text();
  201. var cstr = '<span class="span_principal label label-primary" style="padding: 7px; cursor: pointer;"><input type="hidden" name="' + name + '[]" value="' + res_id + '">' + res_name + '&nbsp; <span onclick="delTicket(this)">X</span>';
  202. var oldstr = $('#' + id_name).html();
  203. //判断该票种是否已经添加
  204. if (oldstr.indexOf(cstr) == -1) {
  205. $('#' + id_name).html(oldstr + cstr);
  206. } else {
  207. ZZAlertInfo('该标签已经被添加');
  208. }
  209. }
  210. }
  211. // 删除label标签
  212. function delTicket(obj) {
  213. if(confirm('确定删除吗?'))
  214. {
  215. $(obj).parent().remove();
  216. }
  217. }