| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- @{
- ViewBag.Title = "职位成员";
- Layout = "~/Views/Shared/_LayoutIndex.cshtml";
- }
- <script>
- var jobId = request('jobId');
- var departmentId = request('departmentId');
- $(function () {
- InitialPage();
- GetMember();
- });
- //初始化页面
- function InitialPage() {
- $(".center-Panel").height($(window).height() - 40)
- }
- //加载成员
- function GetMember() {
- $.ajax({
- url: "../../AuthorizeManage/PermissionJob/GetUserListJson?jobId=" + jobId + "&departmentId=" + departmentId,
- type: "get",
- dataType: "json",
- async: false,
- success: function (data) {
- var _html = "";
- $.each(data, function (i) {
- var row = data[i];
- if (row.isdefault == 0) {
- var imgName = "UserCard01.png";
- if (row.gender == 1) {
- imgName = "UserCard02.png";
- }
- var active = "";
- if (row.ischeck == 1) {
- active = "active";
- }
- _html += '<div class="card-box' + active + '">';
- _html += ' <div class="card-box-img">';
- _html += ' <img src="/Content/images/' + imgName + '" />';
- _html += ' </div>';
- _html += ' <div id="' + row.userid + '" class="card-box-content">';
- _html += ' <p>账户:' + row.account + '</p>';
- _html += ' <p>姓名:' + row.realname + '</p>';
- _html += ' <p>部门:' + row.departmentname + '</p>';
- _html += ' </div><i></i>';
- _html += '</div>';
- }
- });
- $(".gridPanel").html(_html);
- $(".card-box").click(function () {
- if (!$(this).hasClass("active")) {
- $(this).addClass("active")
- } else {
- $(this).removeClass("active")
- }
- })
- Loading(false);
- }, beforeSend: function () {
- Loading(true);
- }
- });
- //模糊查询用户(注:这个方法是理由jquery查询)
- $("#txt_TreeKeyword").keyup(function () {
- var value = $(this).val();
- if (value != "") {
- window.setTimeout(function () {
- $(".card-box")
- .hide()
- .filter(":contains('" + (value) + "')")
- .show();
- }, 200);
- } else {
- $(".card-box").show();
- }
- }).keyup();
- }
- //保存表单
- function AcceptClick() {
- var userIds = [];
- $('.gridPanel .active .card-box-content').each(function () {
- userIds.push($(this).attr('id'));
- });
- var postData = $("#form1").GetWebControls();
- postData["jobId"] = jobId;
- postData["userIds"] = String(userIds)
- $.SaveForm({
- url: "../../AuthorizeManage/PermissionJob/SaveMember",
- param: postData,
- loading: "正在保存职位成员...",
- success: function () {
- $.currentIframe().$("#gridTable").trigger("reloadGrid");
- }
- })
- }
- </script>
- <div class="treesearch border-bottom">
- <input id="txt_TreeKeyword" type="text" class="form-control" style="border-top: none;" placeholder="请输入要查询关键字" />
- <span id="btn_TreeSearch" class="input-query" title="Search"><i class="fa fa-search"></i></span>
- </div>
- <div class="center-Panel" style="margin: 0px; border-right: none; border-left: none; border-bottom: none; background-color: #fff; overflow: auto; padding-bottom: 10px;">
- <div class="gridPanel">
- </div>
- </div>
|