|
@@ -3,6 +3,7 @@
|
|
|
*/
|
|
*/
|
|
|
|
|
|
|
|
$(document).ready(function () {
|
|
$(document).ready(function () {
|
|
|
|
|
+ let moduleName = 'stdGLj';
|
|
|
function refreshALlWorkBook() {
|
|
function refreshALlWorkBook() {
|
|
|
if (gljClassTreeObj.workBook) {
|
|
if (gljClassTreeObj.workBook) {
|
|
|
gljClassTreeObj.workBook.refresh();
|
|
gljClassTreeObj.workBook.refresh();
|
|
@@ -14,7 +15,7 @@ $(document).ready(function () {
|
|
|
gljComponentOprObj.workBook.refresh();
|
|
gljComponentOprObj.workBook.refresh();
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
- loadHorizonWidth([$('#leftContent'), $('#midContent'), $('#rightContent')], function () {
|
|
|
|
|
|
|
+ loadHorizonWidth(moduleName, [$('#leftContent'), $('#midContent'), $('#rightContent')], function () {
|
|
|
refreshALlWorkBook();
|
|
refreshALlWorkBook();
|
|
|
});
|
|
});
|
|
|
//章节树与人材机表
|
|
//章节树与人材机表
|
|
@@ -23,7 +24,7 @@ $(document).ready(function () {
|
|
|
leftElesObj.parent = $('#dataRow');
|
|
leftElesObj.parent = $('#dataRow');
|
|
|
leftElesObj.left = $('#leftContent');
|
|
leftElesObj.left = $('#leftContent');
|
|
|
leftElesObj.right = $('#midContent');
|
|
leftElesObj.right = $('#midContent');
|
|
|
- horizontalSlide(leftElesObj, {min: 200, max: `$('#dataRow').width() - $('#rightContent').width() - 200`}, function () {
|
|
|
|
|
|
|
+ horizontalSlide(moduleName, leftElesObj, {min: 200, max: `$('#dataRow').width() - $('#rightContent').width() - 200`}, function () {
|
|
|
refreshALlWorkBook();
|
|
refreshALlWorkBook();
|
|
|
});
|
|
});
|
|
|
//人材机表与人材机组成物表
|
|
//人材机表与人材机组成物表
|
|
@@ -32,7 +33,7 @@ $(document).ready(function () {
|
|
|
rightElesObj.parent = $('#dataRow');
|
|
rightElesObj.parent = $('#dataRow');
|
|
|
rightElesObj.left = $('#midContent');
|
|
rightElesObj.left = $('#midContent');
|
|
|
rightElesObj.right = $('#rightContent');
|
|
rightElesObj.right = $('#rightContent');
|
|
|
- horizontalSlide(rightElesObj, {min: 200, max: `$('#dataRow').width() - $('#leftContent').width() - 200`}, function () {
|
|
|
|
|
|
|
+ horizontalSlide(moduleName, rightElesObj, {min: 200, max: `$('#dataRow').width() - $('#leftContent').width() - 200`}, function () {
|
|
|
refreshALlWorkBook();
|
|
refreshALlWorkBook();
|
|
|
});
|
|
});
|
|
|
});
|
|
});
|