| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <%@ 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>
- <t:base type="jquery,easyui,tools,DatePicker"></t:base>
- <script type="text/javascript">
- $(document).ready(function(){
- // 查看的时候隐藏选择按钮及清除按钮
- if(location.href.indexOf("load=detail")!=-1){
- $("#projectSearch").remove();
- $("#projectRedo").remove();
- }
- $(".tabs-wrap").css('width','100%');
- });
- </script>
- </head>
- <body>
- <t:formvalid formid="formobj" dialog="true" usePlugin="password" layout="table" action="projectServiceController.do?doUpdate" >
- <input id="id" name="id" type="hidden" value="${projectServicePage.id }"/>
- <table style="width: 600px;" cellpadding="0" cellspacing="1" class="formtable">
- <tr>
- <td align="right">
- <label class="Validform_label">
- <span color="red" class="requiredIcon">*</span>项目:
- </label>
- </td>
- <td class="value">
- <input readonly="true" type="text" id="projectName" name="projectName" datatype="*" value='${projectServicePage.projectName}' style="width: 157px" placeholder="请选择项目名称" onclick="openDepartmentSelect()">
- <input id="projectid" name="projectid" type="hidden" value='${projectServicePage.projectid}'>
- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-select" id="projectSearch" onclick="openDepartmentSelect()">选择</a>
- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-clean" id="projectRedo" onclick="callbackClean()">清空</a>
- <label class="Validform_label" style="display: none;">项目</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">
- <span color="red" class="requiredIcon">*</span>服务类型:
- </label>
- </td>
- <td class="value">
- <t:dictSelect field="servicetypedetail" type="list" typeGroupCode="servicetypedetail" datatype="*" defaultVal="${projectServicePage.servicetypedetail}" hasLabel="false" title="服务类型"></t:dictSelect>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">
- 服务编码:
- </label>
- </td>
- <td class="value">
- <input id="code" name="code" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${projectServicePage.code}'/>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">服务编码</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">
- <span color="red" class="requiredIcon">*</span>服务名称:
- </label>
- </td>
- <td class="value">
- <input id="name" name="name" type="text" style="width: 150px" class="inputxt" datatype="*" ignore="checked" value='${projectServicePage.name}'/>
- <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/projectservice/projectService.js"></script>
|