ChannelManage.cshtml 1.5 KB

1234567891011121314151617181920212223
  1. 
  2. @{
  3. ViewBag.Title = "ChannelManage";
  4. Layout = "~/Views/Shared/_MainLayoutPage.cshtml";
  5. }
  6. <div id="Channeltb">
  7. <a href="#" id="Channeltbbtn-add" class="easyui-linkbutton" data-options="iconCls:'fa fa-plus color_blue',plain:true">新增</a>
  8. <a href="#" id="Channeltbbtn-edit" class="easyui-linkbutton" data-options="iconCls:'fa fa-edit color_blue',plain:true">修改</a>
  9. <a href="#" id="Channeltbbtn-del" class="easyui-linkbutton" data-options="iconCls:'fa fa-remove color_blue',plain:true">删除</a>
  10. <a href="#" id="Channeltbbtn-stop" class="easyui-linkbutton" data-options="iconCls:'fa fa-cogs color_blue',plain:true">终止</a>
  11. <a href="#" id="Channeltbbtn-cancel" class="easyui-linkbutton" data-options="iconCls:'fa fa-cogs color_blue',plain:true">启用</a>
  12. <a href="#" id="Channeltbbtn-ref" class="easyui-linkbutton" data-options="iconCls:'fa fa-refresh color_blue',plain:true">刷新</a>
  13. <input id="userAccount" class="easyui-searchbox" data-options="prompt:'支持编码,名称,简码',searcher:Enter_Submit" style="width:180px" />
  14. <a href="#" id="Channeltbbtn-select" class="easyui-linkbutton" ,plain:true">查询</a>
  15. </div>
  16. <div id="p" class="easyui-panel" data-options="fit:true,border:false">
  17. <table id="treegrid" data-options="title:'渠道信息管理&nbsp;',fit:true"></table>
  18. </div>
  19. <script src="~/ViewModels/channelmanager.module.js?r=1.4"></script>
  20. <script type="text/javascript">
  21. var model = new viewModel();
  22. model.init();
  23. </script>