Commit c444b1a7 authored by zhengke's avatar zhengke

2

parent 511efba4
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
display: inline-block; display: inline-block;
margin: 0px auto; margin: 0px auto;
padding-top: 8px; padding-top: 8px;
min-height: 500px; min-height: 300px;
border: 1px solid #e5e5e5; border: 1px solid #e5e5e5;
position: relative; position: relative;
} }
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
.row_input { .row_input {
width: 40px; width: 40px;
height: 27px; height: 27px;
margin-bottom: 6px; margin-bottom: 6px!important;
} }
.seats-block .row { .seats-block .row {
...@@ -263,7 +263,6 @@ ...@@ -263,7 +263,6 @@
var self = this; var self = this;
function MyViewModel() { function MyViewModel() {
alert();
//定义数组对象 //定义数组对象
// self.SeatData = ko.observableArray([]); // self.SeatData = ko.observableArray([]);
self.InitSeat = function () { self.InitSeat = function () {
...@@ -389,7 +388,6 @@ ...@@ -389,7 +388,6 @@
self.reSeat = function (dataRowIndex) { self.reSeat = function (dataRowIndex) {
var dataList = SeatData(); var dataList = SeatData();
alert();
var col_input = $("#col_input").val(); var col_input = $("#col_input").val();
var newObj = self.clone(SeatData()[dataRowIndex]); var newObj = self.clone(SeatData()[dataRowIndex]);
if (newObj.noLenth > 0) if (newObj.noLenth > 0)
...@@ -578,7 +576,6 @@ ...@@ -578,7 +576,6 @@
SeatData()[rowIndex].noLenth = _thisLen; SeatData()[rowIndex].noLenth = _thisLen;
SeatData()[rowIndex].myArr = []; SeatData()[rowIndex].myArr = [];
if (_thisLen == 0) { if (_thisLen == 0) {
var louIndex = []; var louIndex = [];
var tangIndex =[]; var tangIndex =[];
...@@ -634,6 +631,14 @@ ...@@ -634,6 +631,14 @@
console.log((i + 1 - lourow - TangCount), "排"); console.log((i + 1 - lourow - TangCount), "排");
} }
} }
$(".row_input").each(function (x) {
//console.log($(this),'thsithisthis');
console.log($(this).val(), 'vvvvvvvv')
if ($(this).val() == '') {
$(this).addClass('noSeat');
}
})
SeatData.replace(SeatData()[i], newObj); SeatData.replace(SeatData()[i], newObj);
} }
...@@ -694,11 +699,14 @@ ...@@ -694,11 +699,14 @@
event.stopPropagation(); // 阻止事件冒泡 event.stopPropagation(); // 阻止事件冒泡
} }
}); });
//$(".seats-container").click(function () {
// istuo = true;
//})
// 鼠标移动时计算遮罩的位置,宽 高 // 鼠标移动时计算遮罩的位置,宽 高
$(".seats-container").mousemove(function (ev) { $(".seats-container").mousemove(function (ev) {
//if (!flag) return;//只有开启了拖拽,才进行mouseover操作 //if (!flag) return;//只有开启了拖拽,才进行mouseover操作
var _offTopPage = $(document).scrollTop(); var _offTopPage = $(document).scrollTop();
var divLeft = $(".seats-container").offset().left + $(".seats-container").width();
if (ev.buttons == 1 && isSetSeat == true) { if (ev.buttons == 1 && isSetSeat == true) {
if (ev.pageX < oldLeft) {//向左拖 if (ev.pageX < oldLeft) {//向左拖
moveSelected.style.left = ev.pageX + 'px'; moveSelected.style.left = ev.pageX + 'px';
...@@ -714,9 +722,13 @@ ...@@ -714,9 +722,13 @@
} }
ev.preventDefault(); // 阻止默认行为 ev.preventDefault(); // 阻止默认行为
ev.stopPropagation(); // 阻止事件冒泡 ev.stopPropagation(); // 阻止事件冒泡
$(".seat_menu").css({ "display": 'none' }); $(".seat_menu").css({ "display": 'none' });
} }
}); });
//$(".seats-container").mouseleave(function (ev) {
// clearDragData();
//});
$(".seats-container").on('contextmenu', function (ev) { $(".seats-container").on('contextmenu', function (ev) {
//-------------禁用系统的右键功能----------- //-------------禁用系统的右键功能-----------
$(document).bind('contextmenu', function (ev) { $(document).bind('contextmenu', function (ev) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment