|
|
@@ -227,6 +227,7 @@ var AdjustTableFunc = function (sWidthVal, isAStatus) {
|
|
|
if ($("table").length == 0) {
|
|
|
return;
|
|
|
}
|
|
|
+ isAStatus = (isAStatus == "undefined" || isAStatus == undefined || isAStatus == null) ? 0 : parseInt(isAStatus);
|
|
|
// 添加宽度处理
|
|
|
var ScreenWidth = $(document.body).width();
|
|
|
ScreenWidth = ScreenWidth > sWidthVal ? ScreenWidth : sWidthVal;
|
|
|
@@ -1033,7 +1034,6 @@ function bindEventTeaOrignalYS(sWidthVal, isAStatus) {
|
|
|
}
|
|
|
});
|
|
|
//处理表格宽度
|
|
|
- isAStatus = (isAStatus == "undefined" || isAStatus == undefined || isAStatus == null) ? 0 : parseInt(isAStatus);
|
|
|
AdjustTableFunc(sWidthVal, isAStatus);
|
|
|
// 音频处理
|
|
|
if (TestFlag) {
|
|
|
@@ -1176,7 +1176,6 @@ function bindEventYS(sWidthVal, isAStatus) {
|
|
|
}
|
|
|
});
|
|
|
//处理表格宽度
|
|
|
- isAStatus = (isAStatus == "undefined" || isAStatus == undefined || isAStatus == null) ? 0 : parseInt(isAStatus);
|
|
|
AdjustTableFunc(sWidthVal, isAStatus);
|
|
|
// 音频处理
|
|
|
if (TestFlag) {
|