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

📄 topsf02providerlist.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>F02供应商列表</title>  <body>  <html:form action="/actTopsF02Provider" method="post">    <html:hidden property="method"/>    <tops:showPageFunction pageFunction="F02供应商列表"/>    <tops:toolbar>      <tops:toolbutton caption="新增 " method="add" image="page_add" checkAtClient="false "/>      <tops:toolbutton caption="删除 " method="delete" image="delete" confirm="确定删除这些F02供应商吗 ?" 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">联系电话1</td>        <td width="10%" nowrap class="title">电子邮件</td>        <td width="10%" 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>              <bean:write name="obj" property="proriderId"/>            </td>            <td>              <tops:link action="actTopsF02Provider" caption="n" method="modify" argname1="id" argbeanproperty1="page-obj-id" captionbeanproperty="page-obj-proriderName"/>            </td>            <td>              <bean:write name="obj" property="proriderLinkman"/>            </td>            <td>              <bean:write name="obj" property="proriderLinktel1"/>            </td>            <td>              <bean:write name="obj" property="proriderEmail"/>            </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="center">                  <td width="5%" nowrap class="title">序号</td>                  <td width="20%" nowrap class="title">姓名</td>                  <td width="15%" nowrap class="title">职务</td>                  <td width="30%" nowrap class="title">电子邮件</td>                  <td width="15%" nowrap class="title">工作电话</td>                  <td width="20%" nowrap class="title">操作</td>                </tr>                <logic:notEmpty name="obj" property="linkMans">                  <logic:iterate id="linkman" name="obj" property="linkMans" indexId="linkManIndex">                    <tr align="center">                      <td height="20">                        <tops:tableOrd indexName="linkManIndex"/>                      </td>                      <td height="20">                        <tops:link action="actTopsF03Linkman" caption="n" method="modify" argname1="id" argbeanproperty1="page-linkman-id" captionbeanproperty="page-linkman-name"/>                      </td>                      <td height="20">                        <bean:write name="linkman" property="degree"/>                      </td>                      <td height="20">                        <bean:write name="linkman" property="email"/>                      </td>                      <td height="20">                        <bean:write name="linkman" property="workTel"/>                      </td>                      <td height="20">                        <tops:link action="actTopsF02Provider" confirm="确定把该联系人从本供应商中删除吗?" caption="移除联系人" method="removelinkman" argname1="linkManUuid" argbeanproperty1="page-linkman-id"/>                      </td>                    </tr>                  </logic:iterate>                </logic:notEmpty>                <logic:empty name="obj" property="linkMans">                  <tr>                    <td colspan="6" height="20" align="center">                      没有其他联系人(                      <tops:link action="actTopsF03Linkman" caption="添加联系人" method="add" argname1="providerUuid" argbeanproperty1="page-obj-id"/>                    </td>                  </tr>                </logic:empty>              </table>            </td>          </tr>        </logic:iterate>      </logic:notEmpty>      <logic:empty name="objlist">        <tr>          <td colspan="8" 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 + -