xinyb
2024-04-22 bc82b6b46b695c41a42ff569c33d30800a6aec98
提交 | 用户 | age
4fd63a 1 <%@ page import="com.yc.utils.SessionKey" %>
X 2 <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
4a551f 3 <!DOCTYPE html >
a6a76f 4 <html>
F 5 <head>
4fd63a 6     <meta http-equiv="content-Type" content="text/html; charset=GBK"/>
X 7     <meta name="keywords" Content="在线帮助"/>
8     <meta name="description" Content="在线帮助"/>
9     <meta name="author" Content="NetEase Customer Service,Customer Experience & Development Team"/>
10     <meta name="copyright" Content="NetEase.com,Inc."/>
11     <meta name="robots" content="index, follow"/>
12     <meta name="googlebot" content="index, follow"/>
13     <script type="text/javascript" src="/js/jquery-1.4.4.min.js"></script>
14     <script type="text/javascript" src="/js/hotkey.js"></script>
168a15 15     <script type="text/javascript" src="/js/encode.js"></script>
4fd63a 16     <link rel="shortcut icon" href="<%=request.getContextPath() %>/resource/ycfavicon.ico" type="image/x-icon"/>
X 17     <title>帮助-功能[?FormID]-窗体类型[?FormType]</title>
18     <link href="<%=request.getContextPath() %>/style/help/page_common20091106.css" rel="stylesheet" type="text/css"
19           media="all"/>
20     <link href="<%=request.getContextPath() %>/style/help/126mail_adv_style.css" rel="stylesheet" type="text/css"/>
168a15 21     <style type="text/css">
X 22         <!--
23         #scroller {
24             position: absolute;
25             z-index: 1;
26             overflow: auto; /* winphone8和android4+ */
27             -webkit-overflow-scrolling: touch; /* ios5+ */
28             width: 100%;
29             height: 100%;
30         }
a6a76f 31
168a15 32         .wrap {
X 33             width: 100%;
34         }
35
36         .Fl_right {
37             width: 100%;
38         }
39
40         .page_content {
41             width: 100%;
42         }
43
44         .con_text {
45             width: 100%;
46         }
47
48         .thumbnail {
49             width: 100%;
50         }
51
52         .contentImg {
53             width: 100%;
54         }
55
56         body {
57             margin: 0px;
58             padding: 0px;
59         }
60
61         .Fl_right, .Footer,.page_content h2 {
62             background: white;
63         }
64         .Fl_right{
65             margin-left: 50px;
66         }
67         -->
68     </style>
69 </head>
70 <%
71     String dbid = (String) request.getSession().getAttribute(SessionKey.DATA_BASE_ID);
72 %>
73
a6a76f 74 <body class="body-bg">
4fd63a 75 <div id="scrollbody">
X 76     <div id="scroller">
77         <div class="wrap">
78             <!--/header end-->
79             <div class="con">
80                 <!--/nav end-->
81                 <!--/nav_bottom end-->
82                 <!--中部主体 开始-->
83                 <div class="content">
84                     <div class="Fl_right">
85                         <!--/searchArea end-->
86                         <div class="page_content">
87                             <h2 style="width:100%;height:100%;">
88                                 <!--
a6a76f 89                     <table width="100%">
F 90                     <tr>
91                     <td align="left" width="50%">功能[?FormID]使用说明</td>
92                     <td align="right" width="50%"><img src="<%=request.getContextPath() %>/images/help/helplogo-2.jpg" /></td>
93                     </tr>
94                     </table>    
95                      -->
4fd63a 96                                 【[?HelpTitle]】使用说明
bc7683 97                                 <div align="right"><a href="javascript:addtab();" style="font-size:13px;">编辑</a></div>
4fd63a 98                             </h2>
X 99                             <div class="con_text">
100                                 [?HelpContent]
101                                 <div id="pageGGBox"></div>
102                             </div>
103                             <div class="Footer" style="width:100%;"><br/></div>
104                         </div>
105
106                     </div>
107                 </div>
108                 <div class="clear"></div>
109                 <div class="clear"></div>
110             </div><!--/con end-->
111
112         </div><!--/#wrap-->
a6a76f 113     </div>
F 114 </div>
115 </body>
168a15 116 <script type="text/javascript">
X 117     var help =<%=request.getParameter("help")%>;
118     function addtab() {
119         var param = "<%=request.getSession().getAttribute(SessionKey.USERCODE)%>;<%=request.getSession().getAttribute(SessionKey.USERNAME)%>;[?FormID]";
433963 120         $.post("/execProcV2.do", {
168a15 121             "formid": 9653,
X 122             "param": param,
123             "disableDuplicateSubmitUUID": systemUuid.uuid
124         }, function (data) {
125             if (data != null) {
433963 126                 var json = data;
168a15 127                 if (json.state == 0) {
433963 128                     var j = json.data.linkdocinfo;
X 129                     if (j == null || j == '') {
130                         alert("获取不到编辑界面参数:"+j);
131                         return;
132                     }
133                     j = j.split(";");
168a15 134                     if (help != null && help == 1) {
X 135                         var p = encodeText("where=doccode='" + j[2] + "'");
136                         if (top.JumpURL != null) {
137                             top.JumpURL({type: 1, formid: j[0], formtype: j[1], parm: p});
138                         }
139                     } else {
140                         top.addTab("", j[0], j[1], "where=doccode='" + j[2] + "'");
141                     }
142                     // top.addTab("", 9652, 16, "where=doccode='[?FormID]' and formname='[?FormName]'");
143                 }
144             }
145         });
146     }
147
4fd63a 148     if (navigator.userAgent.match(/iPad|iPhone|Android/i)) {
X 149         var myScroll = new IScroll('#scrollbody', {
150             mouseWheel: true,
151             scrollbars: true,
152             zoom: true,
153             scrollX: true,
154             scrollY: true,
155             wheelAction: 'zoom'
156         });
157     }
168a15 158     $(function () {
X 159         if (help != null && help == 1) {
160             if (top.HelpContent != null) {
161                 top.HelpContent('[?FormID]');
162             }
163         }
164     })
a6a76f 165 </script>
F 166 </html>