12345678910111213141516171819202122232425262728293031323334353637383940 |
- <div class="bottom-wrap">© <span id="footbottom"></span> 中储粮-单仓档案管理系统 版权所有</div>
- <script type="text/javascript">
- $(function(){
- $("#Map area").click(function(){
- // debugger;
- var name=$(this).data("name");
- window.location.href="/map/grain/"+name+".html";
- })
- });
- </script>
- <script type="text/javascript">
- $(function(){
- $("#opbtn-add").hide();
- $(".opbtn").off().click(function(){
- $("#menu-tb").toggle();
- if($("#menu-tb").is(":hidden")){
- $("#opbtn-remove").hide();
- $("#opbtn-add").show();
- }else{
- $("#opbtn-add").hide();
- $("#opbtn-remove").show();
- }
- // $.parser.parse('#opbtn');
- });
- });
- $.ajax({
- type: "get",
- dataType: 'json',
- contentType: 'application/json;charset=utf-8',
- url: config.baseUrl + '/sys/sync/serverTime',
- success: function(e) {
- $('#footbottom').text(e.data)
- },
- error: function(e) {
- console.log(e);
- }
- });
- </script>
|