1234567891011121314151617181920212223 |
-
- @{
- ViewBag.Title = "CustomAlertsConfigIndex";
- Layout = "~/Views/Shared/_MainLayoutPage.cshtml";
- }
- <div id="Channeltb">
- <button href="#" id="CustomAlerts-add" class="easyui-linkbutton" data-options="iconCls:'fa fa-plus color_blue',plain:true">新增</button>
- <button href="#" id="CustomAlerts-edit" class="easyui-linkbutton" data-options="iconCls:'fa fa-edit color_blue',plain:true">修改</button>
- <button id="CustomAlerts-del" class="easyui-linkbutton" data-options="iconCls:'fa fa-remove color_blue',plain:true">删除</button>
- <button href="#" id="CustomAlerts-ref" class="easyui-linkbutton" data-options="iconCls:'fa fa-refresh color_blue',plain:true">刷新</button>
- <input id="userAccount" class="easyui-searchbox" data-options="prompt:'支持渠道,项目,指标名称',searcher:Enter_Submit" style="width:250px" />
- <a href="#" id="CustomAlerts-select" class="easyui-linkbutton">查询</a>
- </div>
- <div id="p" class="easyui-panel" data-options="fit:true,border:false">
- <table id="treegrid" data-options="title:'API预警配置 ',fit:true"></table>
- </div>
- <script src="~/ViewModels/APIAlertsConfigIndex.js?r=1.4"></script>
- <script type="text/javascript">
- var model = new viewModel();
- model.init();
- </script>
|