| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <%@ 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="tBusActivitiGreenController.do?doUpdate">
- <input id="id" name="id" type="hidden" value="${tBusActivitiGreenPage.id }"/>
- <table cellpadding="0" cellspacing="1" class="formtable">
-
- <tr>
- <td align="right">
- <label class="Validform_label">签报内容:</label>
- </td>
- <td class="value" colspan="3">
- <textarea id="content" style="width:600px;height: 300px;" class="inputxt" rows="6" name="content" datatype="*">${tBusActivitiGreenPage.content}</textarea>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">签报内容</label>
- </td>
- </tr>
- </table>
- </t:formvalid>
- </body>
- <script src = "webpage/cn/com/lzt/useractiviti/green/tBusUserActivitiGreen.js"></script>
|