| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <%@ 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?doAdd">
- <input id="id" name="id" type="hidden" value="${entity.id }"/>
- <table cellpadding="0" cellspacing="1" class="formtable">
- <tr>
- <td align="right">
- <label class="Validform_label">所属部门:</label>
- </td>
- <td class="value" colspan="3">
- <input type="hidden" name="departId" id="departId" value="${empty entity.departId?param.departId:entity.departId}"/>
- <input type="text" name="depName" id="depName" value="${empty entity.depName?param.depName:entity.depName}" readonly="readonly"/>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">当前状况:</label>
- </td>
- <td class="value" colspan="3">
- <textarea id="current" style="width:600px;height: 100px;" class="inputxt" name="current" datatype="*" >${entity.current}</textarea>
- <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" colspan="3">
- <textarea id="expect" style="width:600px;height: 100px;" class="inputxt" name="expect" datatype="*" >${entity.expect}</textarea>
- <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" colspan="3">
- <t:webUploader auto="true" busiId="${entity.id}" readOnly="${param.load=='detail' || in_process}"
- busiTable="t_b_activiti_green"
- bizType="attachment"
- extensions="png,jpg,jpeg,bmp"
- name="attachment" duplicate="true" fileNumLimit="10"
- nullMsg="附件不可为空"></t:webUploader>
- <span class="Validform_checktip Validform_right" style="display: none;">文件已上传</span>
- <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>
-
|