1.资源管理列表添加资源分组筛选
2.通知模板添加执行命令变量 3.打包脚本微调 4.更新readme.md
This commit is contained in:
@@ -41,6 +41,7 @@
|
||||
|
||||
{{"任务 ID {{TaskId}}"}}
|
||||
{{"任务名称 {{TaskName}}"}}
|
||||
{{"执行命令 {{ExecuteCommand}}"}}
|
||||
{{"执行时间 {{ExecuteTime}}"}}
|
||||
{{"执行耗时 {{ProcessTime}}"}}
|
||||
{{"执行状态 {{ExecuteStatus}}"}}
|
||||
|
||||
@@ -42,6 +42,7 @@
|
||||
|
||||
{{"任务 ID {{TaskId}}"}}
|
||||
{{"任务名称 {{TaskName}}"}}
|
||||
{{"执行命令 {{ExecuteCommand}}"}}
|
||||
{{"执行时间 {{ExecuteTime}}"}}
|
||||
{{"执行耗时 {{ProcessTime}}"}}
|
||||
{{"执行状态 {{ExecuteStatus}}"}}
|
||||
|
||||
@@ -9,6 +9,14 @@
|
||||
<div class="layui-inline" style="width: 40%">
|
||||
<input class="layui-input" name="serverName" id="serverName" autocomplete="off" placeholder="资源名称" >
|
||||
</div>
|
||||
<div class="layui-inline" style="width: 20%;text-align: left;">
|
||||
<select name="serverGroupId" id="serverGroupId">
|
||||
<option value="0">全部</option>
|
||||
{{range $k, $v := .serverGroup}}
|
||||
<option value="{{$k}}">{{$v}}</option>
|
||||
{{end}}
|
||||
</select>
|
||||
</div>
|
||||
<button class="layui-btn" data-type="reload">查询</button>
|
||||
</div>
|
||||
</form>
|
||||
@@ -64,6 +72,7 @@
|
||||
table.reload('listReload', {
|
||||
where: {
|
||||
serverName: $('#serverName').val(),
|
||||
serverGroupId:$('#serverGroupId').val(),
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user