⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 topsf03linkmanlist.jsp

📁 Jbuilder2006开发的严格按MVC设计模式组织开发过程
💻 JSP
字号:
<%@page contentType="text/html; charset=GBK"%><%@taglib uri="/WEB-INF/struts-html.tld" prefix="html"%><%@taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%><%@taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%><%@taglib uri="/WEB-INF/tops.tld" prefix="tops"%><html:html>  <head>  <html:base/>  <tops:includeCSS fileName="style"/>  <tops:includeJs fileName="common"/>  <tops:includeJs fileName="datepicker"/>  </head>  <title>F03联系人列表</title>  <body>  <html:form action="/actTopsF03Linkman" method="post">    <html:hidden property="method"/>    <tops:showPageFunction pageFunction="F03联系人列表"/>    <tops:toolbar>      <tops:toolbutton caption="新增 " method="add" image="page_add" checkAtClient="false "/>      <tops:toolbutton caption="删除 " method="delete" image="delete" confirm="确定删除这些F03联系人吗 ?" checkAtClient="false"/>      <td>        <html:text property="keyword"/>      </td>      <tops:toolbutton caption="查询" method="search" image="application_form_magnify" checkAtClient="false"/>    </tops:toolbar>    <table cellpadding="0" cellspacing="1" border="0" width="100%" id="PowerTable">      <tr align="center">        <td height="20" width="5%" nowrap class="title">          <tops:selectAllCheckBox/>        </td>        <td width="5%" nowrap class="title">序号</td>        <td width="10%" nowrap class="title">姓名</td>        <td width="10%" nowrap class="title">单位</td>        <td width="10%" nowrap class="title">职务</td>        <td width="10%" nowrap class="title">电子邮件</td>        <td width="10%" nowrap class="title">工作电话</td>        <td width="7%" nowrap class="title">明细</td>      </tr>      <logic:notEmpty name="objlist">        <logic:iterate id="obj" name="objlist" indexId="index">          <tr align="center">            <td height="20">              <tops:selectCheckBox/>            </td>            <td>              <tops:tableOrd/>            </td>            <td>              <tops:link action="actTopsF03Linkman" caption="n" method="modify" argname1="id" argbeanproperty1="page-obj-id" captionbeanproperty="page-obj-name"/>            </td>            <td>              <bean:write name="obj" property="deptName"/>            </td>            <td>              <bean:write name="obj" property="degree"/>            </td>            <td>              <bean:write name="obj" property="email"/>            </td>            <td>              <bean:write name="obj" property="workTel"/>            </td>            <td>              <tops:tableCollapse/>            </td>          </tr>          <tr align="center" style="display:none">            <td colspan="8">              <table cellpadding="0" cellspacing="1" border="0" width="90%">                <tr align="left">                  <td height="20" width="100" align="right" class="title">QQ:</td>                  <td>                    <bean:write name="obj" property="qqCode"/>                    &nbsp;                  </td>                </tr>                <tr align="left">                  <td height="20" align="right" class="title">MSN:</td>                  <td>                    <bean:write name="obj" property="msnCode"/>                  </td>                </tr>                <tr align="left">                  <td height="20" align="right" class="title">私人电话:</td>                  <td>                    <bean:write name="obj" property="privateTel"/>                  </td>                </tr>                <tr align="left">                  <td height="20" align="right" class="title">手机号码:</td>                  <td>                    <bean:write name="obj" property="mobile"/>                  </td>                </tr>                <tr align="left">                  <td height="20" align="right" class="title">传真:</td>                  <td>                    <bean:write name="obj" property="fax"/>                  </td>                </tr>                <tr align="left">                  <td height="20" align="right" class="title">通信地址:</td>                  <td>                    <bean:write name="obj" property="address"/>                  </td>                </tr>                <tr align="left">                  <td height="20" align="right" class="title">邮政编码:</td>                  <td>                    <bean:write name="obj" property="postalCode"/>                  </td>                </tr>                <tr align="left">                  <td height="20" align="right" class="title">所属客户:</td>                  <td>                    <bean:write name="obj" property="clientName"/>                  </td>                </tr>                <tr align="left">                  <td height="20" align="right" class="title">所属供应商:</td>                  <td>                    <bean:write name="obj" property="proriderName"/>                  </td>                </tr>              </table>            </td>          </tr>        </logic:iterate>      </logic:notEmpty>      <logic:empty name="objlist">        <tr>          <td colspan="16" height="20" align="center">没有数据</td>        </tr>      </logic:empty>    </table>    <logic:notEmpty name="pageStr">      <bean:write name="pageStr" scope="request" filter="false"/>    </logic:notEmpty>  </html:form>  </body></html:html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -