Commit faac6d8e authored by 秦垚玲's avatar 秦垚玲

fix:首页跳转

parent 72a9ec7c
...@@ -1721,8 +1721,8 @@ function gotoTouSuZhiNan() { ...@@ -1721,8 +1721,8 @@ function gotoTouSuZhiNan() {
</div> </div>
</div> </div>
<iframe src="home.html" style="border:none; overflow:hidden; width:100%; height:740px;"></iframe> <iframe src="home.html" id="homeBox" style="border:none; overflow:hidden; width:100%; height:740px;display: block;"></iframe>
<!-- <iframe src="account.html" style="border:none; overflow:hidden; width:100%; height:740px;"></iframe> --> <iframe src="account.html" id="accountBox" style="border:none; overflow:hidden; width:100%; height:740px; display: none;"></iframe>
<!-- <iframe src="account_detail.html" style="border:none; overflow:hidden; width:100%; height:850px;"></iframe> --> <!-- <iframe src="account_detail.html" style="border:none; overflow:hidden; width:100%; height:850px;"></iframe> -->
<!-- <iframe src="account_list.html" style="border:none; overflow:hidden; width:100%; height:2050px;"></iframe> --> <!-- <iframe src="account_list.html" style="border:none; overflow:hidden; width:100%; height:2050px;"></iframe> -->
...@@ -1756,8 +1756,9 @@ function gotoTouSuZhiNan() { ...@@ -1756,8 +1756,9 @@ function gotoTouSuZhiNan() {
</div> </div>
<ul class="sub_menu" id="ul0511"> <ul class="sub_menu" id="ul0511">
<li><a href="#" id="5111" ondrag="dragMenu(this);" ondragend="releaseMenuu(this);" onClick="taskBar.createWin('5111','活期账户','N00001','','15');SJCJ_MENU_2('5111','');">活期账户</a></li> <!-- <li><a href="#" id="5111" ondrag="dragMenu(this);" ondragend="releaseMenuu(this);" onClick="taskBar.createWin('5111','活期账户','N00001','','15');SJCJ_MENU_2('5111','');">活期账户</a></li> -->
<li><a href="#" id="5111" ondrag="dragMenu(this);" ondragend="releaseMenuu(this);" onClick="onAccount()">活期账户</a></li>
<li><a href="#" id="5112" ondrag="dragMenu(this);" ondragend="releaseMenuu(this);" onClick="taskBar.createWin('5112','定期账户','N00201','','15');SJCJ_MENU_2('5112','');">定期账户</a></li> <li><a href="#" id="5112" ondrag="dragMenu(this);" ondragend="releaseMenuu(this);" onClick="taskBar.createWin('5112','定期账户','N00201','','15');SJCJ_MENU_2('5112','');">定期账户</a></li>
...@@ -5959,6 +5960,14 @@ function isNewVersion() ...@@ -5959,6 +5960,14 @@ function isNewVersion()
else else
return false; return false;
} }
function onAccount(){
let homeBox = document.getElementById("homeBox");
homeBox.style.display = "none";
let accountBox = document.getElementById("accountBox");
accountBox.style.display = "block";
}
function newESafeDlWin(){ function newESafeDlWin(){
//1 //1
......
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