68 lines
2.5 KiB
HTML
Executable File
68 lines
2.5 KiB
HTML
Executable File
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>资产库备份</title>
|
|
<!-- css -->
|
|
<link rel="stylesheet" href="../commons/css/awsui.css">
|
|
<link rel="stylesheet" href="../commons/js/jquery/themes/default/public.css">
|
|
<link rel="stylesheet" href="../apps/com.actionsoft.apps.coe.pal/css/pal.ws.portal.css"/>
|
|
<link type="text/css" rel="stylesheet" href="../apps/_bpm.platform/css/amc/console.admin.amc.public.css" />
|
|
<!-- js -->
|
|
<script type="text/javascript" src="../commons/js/jquery/scripts/jquery.js"></script>
|
|
<script type="text/javascript" src="../commons/js/public.js"></script>
|
|
<script type="text/javascript" src="../commons/js/awsui.js"></script>
|
|
<script type="text/javascript" src="../apps/com.actionsoft.apps.coe.pal/js/pal.backup.js"></script>
|
|
<style type="text/css">
|
|
body {
|
|
min-width: 900px;
|
|
}
|
|
.text-overflow{
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
-o-text-overflow: ellipsis;/*Opera下实现ellipsis效果*/
|
|
}
|
|
</style>
|
|
<script>
|
|
var sid = "<#sid>";
|
|
var wsId = "<#wsId>";
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<button type="button" class="button blue" style="margin: 10px 0 5px 20px;" onclick="addBackup();">新增</button>
|
|
<button type="button" class="button" style="margin: 10px 0 5px 20px;" onclick="refreshData2();">刷新</button>
|
|
</div>
|
|
<div id="mainDiv" style="width:100%;overflow:hidden;">
|
|
<div style="margin-left:0px;margin-right:0px;margin-top:0px; overflow:auto;">
|
|
<table id="listTable" class="listTable">
|
|
<thead>
|
|
<tr>
|
|
<th class="width_20" style="text-align:center;width:20%;">备份时间</th>
|
|
<th class="width_20" style="text-align:center;width:20%;">备份用户</th>
|
|
<th class="width_30" style="text-align:center;width:30%;">备注</th>
|
|
<th class="width_30" style="text-align:center;width:30%;">更多</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="innerTable">
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<!-- 新增备份记录Dialog -->
|
|
<div id="dlg" title="新增备份记录" style="width:500px;display:none;">
|
|
<div style="height:150px;" class="dlg-content awsui-ux">
|
|
<table class="awsui-ux">
|
|
<tbody>
|
|
<tr>
|
|
<td class="awsui-ux-title">备注</td>
|
|
<td><span class="required"><textarea placeholder="请输入200个字以内的备注信息" class="awsui-textarea" style="height: 120px;" id="add_remark"/></textarea></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|