| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@include file="/context/mytags.jsp"%>
- <!DOCTYPE html>
- <html>
- <head>
- <title>扩展属性设置</title>
- <style>
- .ui-button {
- display: inline-block;
- padding: 2px 2px;
- margin-bottom: 0;
- font-size: 8px;
- font-weight: normal;
- line-height: 1.42857143;
- text-align: center;
- white-space: nowrap;
- vertical-align: middle;
- -ms-touch-action: manipulation;
- touch-action: manipulation;
- cursor: pointer;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- background-image: none;
- border: 1px solid transparent;
- border-radius: 4px;
- }
- </style>
- <t:base type="jquery,easyui,tools,DatePicker"></t:base>
- <script type="text/javascript">
- $(document).ready(function(){
- $('#tt').tabs({
- onSelect:function(title){
- $('#tt .panel-body').css('width','auto');
- }
- });
- $(".tabs-wrap").css('width','100%');
- });
- </script>
- </head>
- <body style="overflow-x: hidden;">
- <t:formvalid formid="formobj" dialog="true" usePlugin="password" layout="table" tiptype="1" action="extAttributeController.do?doAdd" >
- <input id="id" name="id" type="hidden" value="${extAttributePage.id }"/>
- <table cellpadding="0" cellspacing="1" class="formtable">
- <tr>
- <td align="right">
- <label class="Validform_label">单据档案类型编码:</label>
- </td>
- <td class="value">
- <input id="billtypecode" name="billtypecode" type="text" style="width: 150px" class="inputxt" datatype="*" ignore="checked" />
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">单据档案类型编码</label>
- </td>
- <td align="right">
- <label class="Validform_label">单据档案名称:</label>
- </td>
- <td class="value">
- <input id="billtypename" name="billtypename" type="text" style="width: 150px" class="inputxt" datatype="*" ignore="checked" />
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">单据档案名称</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">单据档案表名:</label>
- </td>
- <td class="value">
- <input id="tablename" name="tablename" type="text" style="width: 150px" class="inputxt" datatype="*" ignore="checked" />
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">单据档案表名</label>
- </td>
- </tr>
-
- </table>
- <table>
- <tr style="width: auto;">
- <td style="width: 420px;">
- <div style="width: 420px;height: 200px;" >
- <%-- 增加一个div,用于调节页面大小,否则默认太小 --%>
- <div style="width:420px;height:1px;"></div>
- <t:tabs id="tt" iframe="false" tabPosition="top" fit="false">
- <t:tab href="extAttributeController.do?extAttributeDefsetNumList&id=${extAttributePage.id}" icon="icon-search" title="数值型扩展属性设置" id="extAttributeDefsetNum"></t:tab>
- </t:tabs>
- </div>
- </td>
- <td div {width:80px;} style="display:block;width:80px;" >
- </td>
- <td istyle="width: 420px;">
- <div style="width: 420px;height: 200px;" >
- <div style="width:420px;height:1px;"></div>
- <t:tabs id="ttt" iframe="false" tabPosition="top" fit="false">
- <t:tab href="extAttributeController.do?extAttributeDefsetStrList&id=${extAttributePage.id}" icon="icon-search" title="字符型扩展属性设置" id="extAttributeDefsetStr"></t:tab>
- </t:tabs>
- </div>
- </td>
- </tr>
- </table>
- <%-- <div style="width: auto;height: 200px;">
- 增加一个div,用于调节页面大小,否则默认太小
- <div style="width:800px;height:1px;"></div>
- <t:tabs id="tt" iframe="false" tabPosition="top" fit="false">
- <t:tab href="extAttributeController.do?extAttributeDefsetList&id=${extAttributePage.id}" icon="icon-search" title="扩展属性设置明细" id="extAttributeDefset"></t:tab>
- </t:tabs>
- </div> --%>
- </t:formvalid>
- <!-- 添加 附表明细 模版 -->
- </body>
- <script src = "webpage/cn/com/lzt/extattribute/extAttribute.js"></script>
-
|