|
- $('#_province').on('change', '[name*="province"],[name*="city"]', function () {
- $.pjax.reload({
- container: '#_province',
- url: '/hotel/hotel/_province',
- data: {id: $(this).val()},
- replace: false,
- timeout: false
- })
- });
-
- /**
- * 添加基础房型
- * @param index
- */
- function add_contacts(index) {
- var a = $("#stroke_tbody tr").length; //基础房型的条数
- var tr_no = $("input[name='tr_no']:last").length > 0 ? (parseInt($("input[name='tr_no']:last").val()) + 1) : 0;
- 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>'
- +'<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/>' +
- '<label for="many'+tr_no+'"><input type="checkbox" id="many'+tr_no+'" value="10" name="OperaHotelBaseRoom['+ tr_no +'][BED_TYPE][]">多床</label></div></td>'+
- '<td><div class="form-group"><select class="form-control" name="OperaHotelBaseRoom[' + tr_no + '][CURRENCY_CODE]"><option value="1">人民币</option></select></div></td>' +
- '<td><div class="form-group"><input type="text" class="form-control room_area" name="OperaHotelBaseRoom[' + tr_no + '][AREA_SIZE]" id="" placeholder="输入房型面积"></div></td>' +
- '<td><div class="form-group"><div class="form-inline"><div class="fileinput fileinput-new" data-provides="fileinput" onclick="imageShow()">\n' +
- ' <div class="fileinput-new thumbnail" style="height: 65px; width: 80px">\n' +
- ' <img data-trigger="openImage" src="/resource/img/default-thumbnail.png"/></div>\n' +
- ' <div class="fileinput-preview fileinput-exists thumbnail" data-type="2" data-trigger="openDivImage"' +
- ' style="height: 65px; width: 80px"></div>\n' +
- ' <div style="float: right; margin-top: 10px">\n' +
- ' <span class="btn default btn-file">\n' +
- ' <span class="fileinput-new btn btn-secondary"> 选择图片 </span>\n' +
- ' <span class="fileinput-exists btn-default"> 重新选择 </span>\n' +
- ' <input type="file" onchange="checkSize(this)" name="OperaHotelBaseRoom['+ tr_no +'][ROOM_IMG]">\n' +
- ' </span>\n' +
- ' </div>\n' +
- '<br>\n' +
- '<span style="color: red;">* 建议大小 160 * 130 </span></div></div></div></td>' +
- '<td><div class="form-group">\n' +
- ' <div class="form-inline">\n' +
- ' <span>可售</span>\n' +
- ' </div>\n' +
- '</div></td>'+
- '<td><button type="button" onclick="delete_contacts(this)"class="btn btn-danger">删除 </button></td></tr>';
- $("#stroke_tbody").append(travel_html);
- }
-
- function imageShow() {
- $(".thumbnail").on('click', "img[data-trigger='openImage']", function () {
-
- if (self.frameElement && self.frameElement.tagName == "IFRAME") {
- parent.z.showImage(z.thumbnailToHeight($(this).attr('src')));
- } else {
- z.showImage(z.thumbnailToHeight($(this).attr('src')));
- }
-
- var type = $(this).parent().siblings().attr('data-type');
- if(type)
- {
- switch (type)
- {
- case '1':
- $('.bigImage').css('width', '180px');
- $('.bigImage').css('height', '180px');
- $('.bigImage').find('img').css('width', '170px');
- $('.bigImage').find('img').css('height', '170px');
- break;
- case '2':
- $('.bigImage').css('width', '160px');
- $('.bigImage').css('height', '130px');
- $('.bigImage').find('img').css('width', '150px');
- $('.bigImage').find('img').css('height', '120px');
- break;
- }
- }
- })
- $(".fileinput").on('click', "div[data-trigger='openDivImage']", function () {
-
- if (self.frameElement && self.frameElement.tagName == "IFRAME") {
- parent.z.showImage($(this).find('img').attr('src'));
- } else {
- z.showImage($(this).find('img').attr('src'));
- }
-
- var type = $(this).attr('data-type');
- if(type)
- {
- switch (type)
- {
- case '1':
- $('.bigImage').css('width', '180px');
- $('.bigImage').css('height', '180px');
- $('.bigImage').find('img').css('width', '170px');
- $('.bigImage').find('img').css('height', '170px');
- break;
- case '2':
- $('.bigImage').css('width', '160px');
- $('.bigImage').css('height', '130px');
- $('.bigImage').find('img').css('width', '150px');
- $('.bigImage').find('img').css('height', '120px');
- break;
- }
- }
- })
- $("._image").on('click', "img[data-trigger='openImage']", function () {
-
- if (self.frameElement && self.frameElement.tagName == "IFRAME") {
- parent.z.showImage(z.thumbnailToHeight($(this).attr('src')));
- } else {
- z.showImage(z.thumbnailToHeight($(this).attr('src')));
- }
- })
- $("body").on('click', ".bigDivImage", function () {
- $(".bigDivImage").remove();
- })
-
- $('.loading-form').on('beforeValidate', function (e) {
- loading();
- return true;
- }).on('beforeSubmit', function (e) {
- loading();
- return true;
- }).on('ajaxComplete', function (e) {
- closeLoading();
- return true;
- }).on('afterValidate', function (e) {
- closeLoading();
- return true;
- });
-
- //如果使用了pajx,重载后,需要closeLoading()
- $(document).on('click', '.zLoading', function (e) {
- loading();
- if ($(this).attr('type') !== undefined && $(this).attr('type').toLowerCase() === 'submit') {
- $('form').submit();
- }
- return true;
- });
- $(document).on('pjax:success', '[data-pjax-container]', function () {
- closeLoading();
- });
- if (typeof initFlag !== 'undefined' && initFlag === true)
- z.init();
- }
-
-
- /**
- * 添加礼盒
- */
- function add_gift() {
- var gift_no = $("input[name='gift_no']:last").length > 0 ? (parseInt($("input[name='gift_no']:last").val()) + 1) : 0;
- 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>'+
- '<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>' +
- '<td><button type="button" onclick="delete_gifts(this)"class="btn btn-danger">删除 </button></td></tr>';
- $("#gift_tbody").append(travel_html);
- }
-
- /**
- * 删除联系人行
- * @param index
- * @returns {boolean}
- */
- function delete_contacts(index) {
- var tr_num = $("#stroke_tbody tr").length; //行程的条数
- if (tr_num <= 1) {
- Command: parent.toastr["warning"]('至少添加一个基础房型!!!');
- return false;
- }
- $(index).closest('.stroke_room_tr').remove();
- }
-
- /**
- * 删除礼盒
- * @param index
- * @returns {boolean}
- */
- function delete_gifts(index) {
- var tr_num = $("#gift_tbody tr").length; //行程的条数
- if (tr_num <= 1) {
- Command: parent.toastr["warning"]('至少添加一个礼盒信息!!!');
- return false;
- }
- $(index).closest('.stroke_tr').remove();
- }
-
- /**
- * 取消按钮
- */
- function hotelIndex() {
- window.location.href = '/hotel/hotel/index';
- }
-
- function pjaxFinish(type, msg) {
- z.showTip(type, msg);
- z.hideModal('#float-div');
- closeLoading();
- }
-
- function tabChange(type) {
- if (type == 1) {
- $('#div_container1').css('display','block');
- $('#div_container2').css('display','none');
- $('#div_container3').css('display','none');
- }else if(type==2){
- $('#div_container1').css('display','none');
- $('#div_container2').css('display','block');
- $('#div_container3').css('display','none');
- }else if(type == 3)
- {
- $('#div_container1').css('display','none');
- $('#div_container2').css('display','none');
- $('#div_container3').css('display','block');
- }
- }
-
-
- function selectLabel(obj, name, id_name) {
- res_id = $(obj).val().trim();
- if (res_id != -1) {
- res_name = $(obj).find('option:selected').text();
- var cstr = '<span class="span_principal label label-primary" style="padding: 7px; cursor: pointer;"><input type="hidden" name="' + name + '[]" value="' + res_id + '">' + res_name + ' <span onclick="delTicket(this)">X</span>';
- var oldstr = $('#' + id_name).html();
- //判断该票种是否已经添加
- if (oldstr.indexOf(cstr) == -1) {
- $('#' + id_name).html(oldstr + cstr);
- } else {
- ZZAlertInfo('该标签已经被添加');
- }
- }
- }
-
- // 删除label标签
- function delTicket(obj) {
- if(confirm('确定删除吗?'))
- {
- $(obj).parent().remove();
- }
- }
|