添加项目文件。
This commit is contained in:
144
HT.Cloud.Web/Areas/SystemOrganize/Views/Organize/AddForm.cshtml
Normal file
144
HT.Cloud.Web/Areas/SystemOrganize/Views/Organize/AddForm.cshtml
Normal file
@ -0,0 +1,144 @@
|
||||
@{
|
||||
ViewBag.Title = "Index";
|
||||
Layout = "~/Views/Shared/_Index.cshtml";
|
||||
}
|
||||
<script>
|
||||
layui.use(['jquery', 'form', 'table', 'common', 'commonTable', 'optimizeSelectOption'], function () {
|
||||
var $ = layui.jquery,
|
||||
form = layui.form,
|
||||
table = layui.table,
|
||||
commonTable = layui.commonTable,
|
||||
common = layui.common;
|
||||
//加载数据
|
||||
wcLoading.close();
|
||||
var value = $.request("value");
|
||||
var currentWindow = common.parentWindow();
|
||||
var name = $.request("name");
|
||||
var ids = $.request("ids");
|
||||
var options = {
|
||||
elem: '#currentTableId',
|
||||
url: '/SystemOrganize/Organize/GetTreeGridJson',
|
||||
where: {ids:ids},
|
||||
treeIdName: 'F_Id', // id字段名称
|
||||
treePidName: 'F_ParentId', // pid字段名称
|
||||
cols: [[
|
||||
{ type: 'checkbox' },
|
||||
{ field: 'F_FullName', title: '名称', width: 250 },
|
||||
{ field: 'F_EnCode', title: '编号', width: 200 },
|
||||
{
|
||||
field: 'F_CategoryId', title: '分类', width: 120,
|
||||
templet: function (d) {
|
||||
return top.clients.dataItems["OrganizeCategory"][d.F_CategoryId] == null ? "" : top.clients.dataItems["OrganizeCategory"][d.F_CategoryId];
|
||||
}
|
||||
},
|
||||
{
|
||||
field: 'F_EnabledMark', title: '状态', width: 80,
|
||||
templet: function (d) {
|
||||
if (d.F_EnabledMark == true) {
|
||||
return "<span class='layui-btn layui-btn-normal layui-btn-xs'>有效</span>";
|
||||
} else {
|
||||
return "<span class='layui-btn layui-btn-warm layui-btn-xs'>无效</span>";
|
||||
}
|
||||
}
|
||||
}
|
||||
]],
|
||||
};
|
||||
commonTable.rendertreetable(options);
|
||||
commonTable.tableRowClick("checkbox", "currentTableFilter", "currentTableId");
|
||||
// 监听行双击事件
|
||||
table.on('rowDouble(currentTableFilter)', function (obj) {
|
||||
var pvalue = obj.data.F_Id;
|
||||
var pname = obj.data.F_FullName;
|
||||
var pcode = obj.data.F_EnCode;
|
||||
common.modalConfirm("注:您确定要选择{编号:" + pcode + ",名称:" + pname + "}的数据吗?", function (r) {
|
||||
if (r) {
|
||||
if (!!pvalue) {
|
||||
currentWindow.$('#' + value).val(pvalue);
|
||||
}
|
||||
if (!!pname) {
|
||||
currentWindow.$('#' + name).val(pname);
|
||||
}
|
||||
common.modalClose();
|
||||
}
|
||||
});
|
||||
return false;
|
||||
});
|
||||
// 监听搜索操作
|
||||
form.on('submit(data-search-btn)', function (data) {
|
||||
//执行搜索重载
|
||||
options.where = { ids: (!!ids ? ids : ""), keyword: data.field.txt_keyword };
|
||||
commonTable.rendertreetable(options);
|
||||
return false;
|
||||
});
|
||||
// 监听清除操作
|
||||
form.on('submit(data-clear-btn)', function (data) {
|
||||
ids = "";
|
||||
//执行搜索重载
|
||||
options.where = { ids: (!!ids ? ids : ""), keyword: data.field.txt_keyword };
|
||||
commonTable.rendertreetable(options);
|
||||
return false;
|
||||
});
|
||||
// 监听提交操作
|
||||
form.on('submit(saveBtn)', function (data) {
|
||||
var checkStatus = table.checkStatus('currentTableId').data;
|
||||
var pvalue = [];
|
||||
var pname = [];
|
||||
var pcode = [];
|
||||
for (var i = 0; i < checkStatus.length; i++) {
|
||||
pvalue.push(checkStatus[i].F_Id);
|
||||
pname.push(checkStatus[i].F_FullName);
|
||||
pcode.push(checkStatus[i].F_EnCode);
|
||||
}
|
||||
if (pvalue.length == 0) {
|
||||
common.modalConfirm("注:您确定要清除选择的数据吗?", function (r) {
|
||||
if (r) {
|
||||
currentWindow.$('#' + name).val(null);
|
||||
currentWindow.$('#' + value).val(null);
|
||||
common.modalClose();
|
||||
}
|
||||
});
|
||||
}
|
||||
else {
|
||||
common.modalConfirm("注:您确定要选择{编号:" + pcode.join(",") + ",名称:" + pname.join(",") + "}的数据吗?", function (r) {
|
||||
if (r) {
|
||||
if (!!pvalue) {
|
||||
currentWindow.$('#' + value).val(pvalue.join(","));
|
||||
}
|
||||
if (!!pname) {
|
||||
currentWindow.$('#' + name).val(pname.join(","));
|
||||
}
|
||||
common.modalClose();
|
||||
}
|
||||
});
|
||||
}
|
||||
return false;
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<div class="layuimini-container">
|
||||
<div class="layuimini-main">
|
||||
<fieldset class="table-search-fieldset">
|
||||
@*<legend>搜索信息</legend>*@
|
||||
<div>
|
||||
<form class="layui-form layui-form-pane" action="">
|
||||
<div class="layui-form-item">
|
||||
<div class="layui-inline">
|
||||
<label class="layui-form-label">关键字:</label>
|
||||
<div class="layui-input-inline">
|
||||
<input type="text" id="txt_keyword" name="txt_keyword" autocomplete="off" class="layui-input" placeholder="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="layui-inline">
|
||||
<button type="submit" class="layui-btn layui-btn-primary" lay-submit lay-filter="data-search-btn"><i class="layui-icon"></i> 搜 索</button>
|
||||
<button type="submit" class="layui-btn layui-btn-danger" lay-submit lay-filter="data-clear-btn"><i class="layui-icon"></i> 清 除</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="layui-form-item layui-hide">
|
||||
<button class="layui-btn" lay-submit id="submit" lay-filter="saveBtn">确认保存</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</fieldset>
|
||||
<table class="layui-hide" id="currentTableId" lay-filter="currentTableFilter"></table>
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user