|
- /*
- * 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园(http://www.learun.cn)
- * Copyright (c) 2013-2018 北京泉江科技有限公司
- * 创建人:陈彬彬
- * 日 期:2017.03.22
- * 描 述:数据字典管理
- */
- var refreshGird;
- var bootstrap = function ($, learun) {
- "use strict";
- var classify_itemCode = '';
- var page = {
- init: function () {
- page.initTree();
- page.initGrid();
- page.bind();
- },
- bind: function () {
- // 查询
- $('#btn_Search').on('click', function () {
- var keyword = $('#txt_Keyword').val();
- page.search({ keyword: keyword });
- });
- // 刷新
- $('#lr_refresh').on('click', function () {
- location.reload();
- });
- // 新增
- $('#lr_add').on('click', function () {
- if (!classify_itemCode) {
- learun.alert.warning('请选择字典分类!');
- return false;
- }
- top.selectedDataItemRow = null;
- var parentId = $('#gridtable').jfGridValue('F_ItemDetailId') || '0';
- learun.layerForm({
- id: 'form',
- title: '添加字典',
- url: top.$.rootUrl + '/LR_SystemModule/DataItem/Form?parentId=' + parentId + '&itemCode=' + classify_itemCode,
- width: 500,
- height: 370,
- callBack: function (id) {
- return top[id].acceptClick(refreshGird);
- }
- });
- });
- // 编辑
- $('#lr_edit').on('click', function () {
- var keyValue = $('#gridtable').jfGridValue('F_ItemDetailId');
- top.selectedDataItemRow = $('#gridtable').jfGridGet('rowdata');
-
-
-
-
- if (learun.checkrow(keyValue)) {
- learun.layerForm({
- id: 'form',
- title: '编辑字典',
- url: top.$.rootUrl + '/LR_SystemModule/DataItem/Form?itemCode=' + classify_itemCode,
- width: 500,
- height: 370,
- callBack: function (id) {
- return top[id].acceptClick(refreshGird);
- }
- });
- }
- });
- // 删除
- $('#lr_delete').on('click', function () {
- var keyValue = $('#gridtable').jfGridValue('F_ItemDetailId');
- if (learun.checkrow(keyValue)) {
- learun.layerConfirm('是否确认删除该项!', function (res) {
- if (res) {
- learun.deleteForm(top.$.rootUrl + '/LR_SystemModule/DataItem/DeleteDetailForm', { keyValue: keyValue }, function () {
- refreshGird();
- });
- }
- });
- }
- });
- /*分类管理*/
- $('#lr_category').on('click', function () {
- learun.layerForm({
- id: 'ClassifyIndex',
- title: '分类管理',
- url: top.$.rootUrl + '/LR_SystemModule/DataItem/ClassifyIndex',
- width: 800,
- height: 500,
- maxmin: true,
- btn: null,
- end: function () {
- location.reload();
- }
- });
- });
- },
- initTree: function () {
- $('#lr_left_tree').lrtree({
- url: top.$.rootUrl + '/LR_SystemModule/DataItem/GetClassifyTree',
- nodeClick: function (item) {
- classify_itemCode = item.value;
- $('#titleinfo').text(item.text + '(' + classify_itemCode + ')');
- page.search();
- }
- });
- },
- initGrid: function () {
- $('#gridtable').lrAuthorizeJfGrid({
- url: top.$.rootUrl + '/LR_SystemModule/DataItem/GetDetailList',
- headData: [
- { label: '项目名', name: 'F_ItemName', width: 200, align: 'left' },
- { label: '项目值', name: 'F_ItemValue', width: 200, align: 'left' },
- { label: '简拼', name: 'F_SimpleSpelling', width: 150, align: 'left' },
- { label: '排序', name: 'F_SortCode', width: 80, align: 'center' },
- {
- label: "有效", name: "F_EnabledMark", width: 50, align: "center",
- formatter: function (cellvalue) {
- return cellvalue == 1 ? "<i class=\"fa fa-toggle-on\"></i>" : "<i class=\"fa fa-toggle-off\"></i>";
- }
- },
- { label: "备注", name: "F_Description", width: 200, align: "left" }
- ],
-
- isTree: true,
- mainId: 'F_ItemDetailId',
- parentId: 'F_ParentId',
- });
- },
- search: function (param) {
- param = param || {};
- param.itemCode = classify_itemCode;
- $('#gridtable').jfGridSet('reload', param);
- }
- };
-
- refreshGird = function () {
- page.search();
- };
-
- page.init();
- }
-
-
-
|