APIAlertsConfigIndex.cshtml 1.2 KB

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