|
@@ -268,7 +268,11 @@ const rptCustomObj = (function () {
|
|
|
}
|
|
|
|
|
|
// 初始化
|
|
|
- $("#gather-select").modal('show');
|
|
|
+ if (resolve) {
|
|
|
+ setTimeout(() => { $("#gather-select").modal('show'); }, 500);
|
|
|
+ } else {
|
|
|
+ $("#gather-select").modal('show');
|
|
|
+ }
|
|
|
|
|
|
$('#gather-select-ok').unbind('click');
|
|
|
$('#gather-select-ok').bind('click', () => {rptCustomObj.resetGatherSelect(resolve);});
|
|
@@ -287,7 +291,11 @@ const rptCustomObj = (function () {
|
|
|
$('#stage-select-' + s)[0].checked = true;
|
|
|
}
|
|
|
}
|
|
|
- $("#stage-select").modal('show');
|
|
|
+ if (resolve) {
|
|
|
+ setTimeout(() => { $("#stage-select").modal('show'); }, 500);
|
|
|
+ } else {
|
|
|
+ $("#stage-select").modal('show');
|
|
|
+ }
|
|
|
|
|
|
$('#stage-select-ok').unbind('click');
|
|
|
$('#stage-select-ok').bind('click', () => {rptCustomObj.resetStageSelect(resolve);});
|