-
- @{
- ViewBag.Title = "AuthRoleToAccount";
- Layout = "~/Views/Shared/_MainLayoutPage.cshtml";
- }
- <script src="~/ViewModels/sysmanager.users.js"></script>
- <table id="mydgroles"></table>
- <script>
- var id = "@ViewBag.id";
- if (id != '') {
- //传递账户ID
- var model = new viewModel();
- model.initrolesforauth(id);
- }
- </script>
|