<!doctype html>
|
<html class="no-js">
|
<head>
|
<meta charset="utf-8">
|
[#include "/business/pages/include/static.html" /]
|
<title>基本信息</title>
|
</head>
|
|
<body>
|
<div class="fs_main fs_edit">
|
<form id="myform" method="post">
|
<input type="hidden" id="projectId" name="projectId" value="${release.project_id}"/>
|
<div class="edit_title"><h3>基本信息</h3></div>
|
<table class="edit_layout basicinfo" width="100%">
|
<tr>
|
<th><label>发布标题:</label></th>
|
<td colspan="3"><span class="infotxt">${release.name}</span></td>
|
</tr>
|
|
<tr>
|
<th><label>${Constants.CUSTOMER_CONSTANTS}名称:</label></th>
|
<td><span class="infotxt">${release.customer_name}</span></td>
|
<th><label>${Constants.UNIT_CONSTANTS}:</label></th>
|
<td><span class="infotxt">${release.sub_customer_name}</span></td>
|
</tr>
|
|
<tr>
|
|
<th><label>发布来源:</label></th>
|
<td><span class="infotxt">${release.source_name}</span></td>
|
<th><label>发布类型:</label></th>
|
<td><span class="infotxt">${release.release_type_name}</span></td>
|
</tr>
|
<tr>
|
<th><label>乙方负责人:</label></th>
|
<td><span class="infotxt">${release.second_part_name}</span></td>
|
<th><label>联系电话:</label></th>
|
<td><span class="infotxt">${release.second_part_tel}</span></td>
|
</tr>
|
<tr>
|
<th nowrap><label>预计开始时间:</label></th>
|
<td><span class="infotxt">
|
${DateUtil.format("yyyy-MM-dd HH:mm:ss",release.plan_start_time)}
|
</span></td>
|
<th nowrap><label>预计结束时间:</label></th>
|
<td><span class="infotxt">
|
${DateUtil.format("yyyy-MM-dd HH:mm:ss",release.plan_end_time)}
|
</span></td>
|
</tr>
|
<tr>
|
<th><label>操作步骤:</label></th>
|
<td><span class="infotxt">
|
${StringUtil.str2Html(release.exec_step)}
|
</span>
|
</td>
|
<th><label>发布结果:</label></th>
|
<td><span class="infotxt">[#if release.release_result==1]成功[#elseif release.release_result==2]失败[/#if]</span></td>
|
</tr>
|
</table>
|
|
<div class="edit_title"><h3>发布申请描述</h3></div>
|
<table class="edit_layout basicinfo" width="100%">
|
<tr>
|
<th nowrap><label>发布原因:</label></th>
|
<td colspan="3"><span class="infotxt">
|
${StringUtil.str2Html(release.release_reason)}
|
</span></td>
|
</tr>
|
<tr>
|
<th nowrap><label>发布范围:</label></th>
|
<td colspan="3"><span class="infotxt">
|
${StringUtil.str2Html(release.release_range)}
|
</span></td>
|
</tr>
|
<tr>
|
<th nowrap><label>工作量:</label></th>
|
<td colspan="3"><span class="infotxt">
|
${StringUtil.str2Html(release.workload)}
|
</span></td>
|
</tr>
|
|
<tr>
|
<th style="border:none;"></th>
|
<td style="border:none;"></td>
|
<th style="border:none;"></th>
|
<td style="border:none;"></td>
|
</tr>
|
|
</table>
|
|
<div class="edit_title"><h3>发布方案</h3></div>
|
<table class="edit_layout basicinfo" width="100%">
|
<tr>
|
<th nowrap><label>测试方案及测试步骤:</label></th>
|
<td colspan="3"><span class="infotxt">
|
${StringUtil.str2Html(release.test_step)}
|
</span></td>
|
</tr>
|
<tr>
|
<th nowrap><label>回退条件及回退步骤:</label></th>
|
<td colspan="3"><span class="infotxt">
|
${StringUtil.str2Html(release.callback_step)}
|
</span></td>
|
</tr>
|
<tr>
|
<th nowrap><label>培训计划:</label></th>
|
<td colspan="3"><span class="infotxt">
|
${StringUtil.str2Html(release.train_plan)}
|
</span></td>
|
</tr>
|
<tr>
|
<th nowrap><label>通知相关部门:</label></th>
|
<td colspan="3"><span class="infotxt">
|
${StringUtil.str2Html(release.relation_depart)}
|
</span></td>
|
</tr>
|
<tr>
|
<th style="border:none;"></th>
|
<td style="border:none;"></td>
|
<th style="border:none;"></th>
|
<td style="border:none;"></td>
|
</tr>
|
</table>
|
|
<div class="edit_title"><h3>关联配置</h3></div>
|
<table class="display_form" id="linkDeviceTable" >
|
<tr class="title">
|
<td width="25%">搜索码</td>
|
<td width="25%">配置名称</td>
|
<td>存放位置</td>
|
</tr>
|
[#if linkDeviceList??&&linkDeviceList?size>0]
|
[#list linkDeviceList as device]
|
<tr>
|
<td><input type="hidden" name="linkDeviceId" value="${device.id}">${device.seachcode}</td>
|
<td>${device.ciname}</td>
|
<td>${device.position}</td>
|
</tr>
|
[/#list]
|
[#else]
|
<tr>
|
<td colspan="4" align="center">暂无关联信息</td>
|
</tr>
|
[/#if]
|
</table>
|
</form>
|
</div>
|
|
</body>
|
</html>
|