更改承载力-后台管理页面代码
This commit is contained in:
parent
24ce496a85
commit
f4a2143e9e
|
|
@ -8,11 +8,11 @@ layui.use(['table', 'layer', 'laydate', 'jquery', 'form'], function () {
|
|||
laydate = layui.laydate;
|
||||
form = layui.form;
|
||||
if (pers && $.inArray('sysCompanyManage:add', pers) < 0) {
|
||||
var addDiv=document.getElementById('addDiv');
|
||||
if(addDiv){
|
||||
document.getElementById('addDiv').remove();
|
||||
}
|
||||
|
||||
var addDiv = document.getElementById('addDiv');
|
||||
if (addDiv) {
|
||||
document.getElementById('addDiv').remove();
|
||||
}
|
||||
|
||||
}
|
||||
//渲染table
|
||||
table.render({
|
||||
|
|
@ -24,7 +24,7 @@ layui.use(['table', 'layer', 'laydate', 'jquery', 'form'], function () {
|
|||
, cellMinWidth: 80
|
||||
, cols: [[ //表头
|
||||
{
|
||||
field: 'number', width:120,title: '序号', align: 'center', type: 'numbers'
|
||||
field: 'number', width: 120, title: '序号', align: 'center', type: 'numbers'
|
||||
}
|
||||
, {field: 'orgName', align: 'center', title: '公司名称'}
|
||||
, {field: 'social', align: 'center', title: '统一社会信用代码'}
|
||||
|
|
@ -32,14 +32,14 @@ layui.use(['table', 'layer', 'laydate', 'jquery', 'form'], function () {
|
|||
, {field: 'msvsName', align: 'center', title: '法定代表人姓名 '}
|
||||
, {field: 'mandates', align: 'center', title: '企业注册日期'}
|
||||
, {
|
||||
fixed: 'right', width:180, title: '操作', align: 'center', templet: d => {
|
||||
fixed: 'right', width: 180, title: '操作', align: 'center', templet: d => {
|
||||
let text = "";
|
||||
if ($.inArray('sysCompanyManage:update', pers) >= 0) {
|
||||
text +='<a lay-event="edit" style="color: #009688;cursor: pointer;font-size: 16px">编辑</a>';
|
||||
text +='<span lay-event="com" style="font-size: 15px;"> | </span>';
|
||||
text += '<a lay-event="edit" style="color: #009688;cursor: pointer;font-size: 16px">编辑</a>';
|
||||
text += '<span lay-event="com" style="font-size: 15px;"> | </span>';
|
||||
}
|
||||
if ($.inArray('sysCompanyManage:del', pers) >= 0) {
|
||||
text +='<a lay-event="del" style="color: #009688;cursor: pointer;font-size: 16px">删除</a>';
|
||||
text += '<a lay-event="del" style="color: #ff4d4f;cursor: pointer;font-size: 16px">删除</a>';
|
||||
}
|
||||
return text;
|
||||
}
|
||||
|
|
@ -78,7 +78,7 @@ layui.use(['table', 'layer', 'laydate', 'jquery', 'form'], function () {
|
|||
var layEvent = obj.event; //获得 lay-event 对应的值
|
||||
var id = data.id
|
||||
if (layEvent === 'edit') {
|
||||
openForm(id,'修改');
|
||||
openForm(id, '修改');
|
||||
} else if (layEvent === 'del') {
|
||||
delHospital(id);
|
||||
}
|
||||
|
|
@ -105,7 +105,7 @@ layui.use(['table', 'layer', 'laydate', 'jquery', 'form'], function () {
|
|||
$("#keyWord").val(oldKeyWord);
|
||||
break;
|
||||
case "addBtn":
|
||||
openForm("",'新增');
|
||||
openForm("", '新增');
|
||||
break;
|
||||
case "resetBt":
|
||||
oldKeyWord = "";
|
||||
|
|
@ -126,9 +126,9 @@ layui.use(['table', 'layer', 'laydate', 'jquery', 'form'], function () {
|
|||
/**
|
||||
* 新增-修改功能
|
||||
*/
|
||||
function openForm(id,title){
|
||||
localStorage.setItem("id",id);
|
||||
layerOpenForm(title,"./addGovernanceFrom.html","70%","85%")
|
||||
function openForm(id, title) {
|
||||
localStorage.setItem("id", id);
|
||||
layerOpenForm(title, "./addGovernanceFrom.html", "97.5%", "97.5%")
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -136,11 +136,43 @@ function openForm(id,title){
|
|||
*/
|
||||
function delHospital(id) {
|
||||
layer.confirm('确定要删除吗?', {
|
||||
btn : [ '确定', '取消' ]
|
||||
}, function() {
|
||||
ajaxCommonMethod('/corporate/delFirmById',{'id': id},"删除成功","删除失败");
|
||||
btn: ['确定', '取消']
|
||||
}, function () {
|
||||
ajaxCommonMethod('/corporate/delFirmById', {'id': id}, "删除成功", "删除失败");
|
||||
layer.close(1);
|
||||
location.reload();
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
$("#searchBt").click(function () {
|
||||
oldKeyWord = $("#keyWord").val();
|
||||
table.reload('menuTable', {
|
||||
url: czl_ht_url + '/corporate/getFirmContent'
|
||||
, method: 'post' //方式默认是get
|
||||
, page: true
|
||||
, where: {
|
||||
keyWord: oldKeyWord,
|
||||
} //设定异步数据接口的额外参数
|
||||
});
|
||||
/**二次赋值-- 点击搜索按钮之后会进行一次刷新操作*/
|
||||
$("#keyWord").val(oldKeyWord);
|
||||
});
|
||||
|
||||
$("#resetBt").click(function () {
|
||||
oldKeyWord = "";
|
||||
$("#keyWord").val("");
|
||||
table.reload('menuTable', {
|
||||
url: czl_ht_url + '/corporate/getFirmContent'
|
||||
, method: 'post' //方式默认是get
|
||||
, page: true
|
||||
, where: {
|
||||
keyWord: "",
|
||||
} //设定异步数据接口的额外参数
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
$("#addBtn").click(function () {
|
||||
openForm("", '新增');
|
||||
});
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ layui.use(['table', 'layer', 'laydate', 'jquery', 'form'], function () {
|
|||
if(addDiv){
|
||||
document.getElementById('addDiv').remove();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
//渲染table
|
||||
table.render({
|
||||
|
|
@ -38,7 +38,7 @@ layui.use(['table', 'layer', 'laydate', 'jquery', 'form'], function () {
|
|||
text +='<span lay-event="com" style="font-size: 15px;"> | </span>';
|
||||
}
|
||||
if ($.inArray('sysProjectContent:del', pers) >= 0) {
|
||||
text +='<a lay-event="del" style="color: #009688;cursor: pointer;font-size: 16px">删除</a>';
|
||||
text +='<a lay-event="del" style="color: #ff4d4f;cursor: pointer;font-size: 16px">删除</a>';
|
||||
}
|
||||
return text;
|
||||
}
|
||||
|
|
@ -152,7 +152,7 @@ layui.use(['table', 'layer', 'laydate', 'jquery', 'form'], function () {
|
|||
*/
|
||||
function openForm(id,title){
|
||||
localStorage.setItem("id",id);
|
||||
layerOpenForm(title,"./addProjectFrom.html","70%","85%")
|
||||
layerOpenForm(title,"./addProjectFrom.html","97.5%","97.5%")
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -197,3 +197,38 @@ function getSelect(form,Id) {
|
|||
});
|
||||
}
|
||||
|
||||
$("#searchBt").click(function () {
|
||||
oldKeyWord = $("#keyWord").val();
|
||||
oldOrgId = $("#parentId").val();
|
||||
table.reload('menuTable', {
|
||||
url: czl_ht_url + '/corporate/getProjectContent'
|
||||
, method: 'post' //方式默认是get
|
||||
, page: true
|
||||
, where: {
|
||||
keyWord: oldKeyWord,
|
||||
parentId: oldOrgId,
|
||||
} //设定异步数据接口的额外参数
|
||||
});
|
||||
/**二次赋值-- 点击搜索按钮之后会进行一次刷新操作*/
|
||||
$("#keyWord").val(oldKeyWord);
|
||||
getSelect(form,oldOrgId);
|
||||
});
|
||||
|
||||
$("#resetBt").click(function () {
|
||||
oldKeyWord = "";
|
||||
$("#keyWord").val("");
|
||||
table.reload('menuTable', {
|
||||
url: czl_ht_url + '/corporate/getProjectContent'
|
||||
, method: 'post' //方式默认是get
|
||||
, page: true
|
||||
, where: {
|
||||
keyWord: "",
|
||||
parentId : ""
|
||||
} //设定异步数据接口的额外参数
|
||||
});
|
||||
getSelect(form,"");
|
||||
});
|
||||
|
||||
$("#addBtn").click(function () {
|
||||
openForm("",'新增');
|
||||
});
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ layui.use(['table', 'layer', 'laydate', 'jquery', 'form'], function () {
|
|||
if(addDiv){
|
||||
document.getElementById('addDiv').remove();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
//渲染table
|
||||
table.render({
|
||||
|
|
@ -139,7 +139,7 @@ layui.use(['table', 'layer', 'laydate', 'jquery', 'form'], function () {
|
|||
*/
|
||||
function openForm(id,title){
|
||||
localStorage.setItem("id",id);
|
||||
layerOpenForm(title,"./addBranchFrom.html","70%","85%")
|
||||
layerOpenForm(title,"./addBranchFrom.html","97.5%","97.5%")
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -155,3 +155,35 @@ function delHospital(id) {
|
|||
});
|
||||
}
|
||||
|
||||
|
||||
$("#searchBt").click(function () {
|
||||
oldKeyWord = $("#keyWord").val();
|
||||
table.reload('menuTable', {
|
||||
url: czl_ht_url + '/corporate/getMsgContent'
|
||||
, method: 'post' //方式默认是get
|
||||
, page: true
|
||||
, where: {
|
||||
keyWord: oldKeyWord,
|
||||
} //设定异步数据接口的额外参数
|
||||
});
|
||||
/**二次赋值-- 点击搜索按钮之后会进行一次刷新操作*/
|
||||
$("#keyWord").val(oldKeyWord);
|
||||
});
|
||||
|
||||
$("#resetBt").click(function () {
|
||||
oldKeyWord = "";
|
||||
$("#keyWord").val("");
|
||||
table.reload('menuTable', {
|
||||
url: czl_ht_url + '/corporate/getMsgContent'
|
||||
, method: 'post' //方式默认是get
|
||||
, page: true
|
||||
, where: {
|
||||
keyWord: "",
|
||||
} //设定异步数据接口的额外参数
|
||||
});
|
||||
});
|
||||
|
||||
$("#addBtn").click(function () {
|
||||
openForm("",'新增');
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -114,7 +114,7 @@ layui.use(['table', 'form','notice', 'layNotify'], function () {
|
|||
}
|
||||
if ($.inArray('sysTool:del', pers) > 0) {
|
||||
text +='<span lay-event="com" style="font-size: 15px;"> | </span>';
|
||||
text +='<a lay-event="del" style="color: #009688;cursor: pointer;font-size: 15px" id="deleteBtn" >删除</a>';
|
||||
text +='<a lay-event="del" style="color: #ff4d4f;cursor: pointer;font-size: 15px" id="deleteBtn" >删除</a>';
|
||||
}
|
||||
return text;
|
||||
}
|
||||
|
|
@ -213,7 +213,7 @@ function layerOpenProgressView(title,contentUrl){
|
|||
title: [title, 'color:#3B70A1;background-color:#E8ECEB;font-size:20px'],
|
||||
type: 2,
|
||||
content: contentUrl,
|
||||
area: ['90%', '95%'],
|
||||
area: ['97.5%', '97.5%'],
|
||||
maxmin: false,
|
||||
cancel:function (){
|
||||
table.reload('menuTable', {
|
||||
|
|
@ -233,4 +233,4 @@ function reloadTip(tip,message,type){
|
|||
type: type,
|
||||
message: message
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -96,7 +96,7 @@ layui.use(['table', 'form','notice', 'layNotify'], function () {
|
|||
}
|
||||
if ($.inArray('sysBasicData:del', pers) > 0) {
|
||||
text +='<span lay-event="com" style="font-size: 15px;"> | </span>';
|
||||
text +='<a lay-event="del" style="color: #a90f45;cursor: pointer;font-size: 15px">删除</a>';
|
||||
text +='<a lay-event="del" style="color: #ff4d4f;cursor: pointer;font-size: 15px">删除</a>';
|
||||
}
|
||||
return text;
|
||||
}
|
||||
|
|
@ -160,7 +160,7 @@ function layerOpenProgressView(title,contentUrl){
|
|||
title: [title, 'color:#3B70A1;background-color:#E8ECEB;font-size:20px'],
|
||||
type: 2,
|
||||
content: contentUrl,
|
||||
area: ['90%', '95%'],
|
||||
area: ['97.5%', '97.5%'],
|
||||
maxmin: false,
|
||||
cancel:function (){
|
||||
localStorage.removeItem("newProId")
|
||||
|
|
@ -204,7 +204,7 @@ function layerOpenFormForSencond(title,contentUrl){
|
|||
title: [title, 'color:#3B70A1;background-color:#E8ECEB;font-size:20px'],
|
||||
type: 2,
|
||||
content: contentUrl,
|
||||
area: ['90%', '95%'],
|
||||
area: ['97.5%', '97.5%'],
|
||||
maxmin: false,
|
||||
btn: ['确定'],
|
||||
success: function (layero, index) {
|
||||
|
|
@ -231,4 +231,4 @@ function reloadTip(tip,message,type){
|
|||
type: type,
|
||||
message: message
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -259,7 +259,7 @@ function layerOpenProgressView(title,contentUrl){
|
|||
title: [title, 'color:#3B70A1;background-color:#E8ECEB;font-size:20px'],
|
||||
type: 2,
|
||||
content: contentUrl,
|
||||
area: ['90%', '95%'],
|
||||
area: ['97.5%', '97.5%'],
|
||||
maxmin: false,
|
||||
cancel:function (){
|
||||
table.reload('menuTable', {
|
||||
|
|
@ -274,4 +274,4 @@ function layerOpenProgressView(title,contentUrl){
|
|||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -100,7 +100,7 @@ layui.use(['table', 'form','notice', 'layNotify','element'], function () {
|
|||
}
|
||||
if ($.inArray('sysSelfOwned:del', pers) >= 0) {
|
||||
text +='<span lay-event="com" style="font-size: 15px;"> | </span>';
|
||||
text +='<a lay-event="del" style="color: #e71010;cursor: pointer;font-size: 15px">删除</a>';
|
||||
text +='<a lay-event="del" style="color: #ff4d4f;cursor: pointer;font-size: 15px">删除</a>';
|
||||
}
|
||||
return text;
|
||||
}
|
||||
|
|
@ -189,7 +189,7 @@ function layerOpenProgressView(title,contentUrl){
|
|||
title: [title, 'color:#3B70A1;background-color:#E8ECEB;font-size:20px'],
|
||||
type: 2,
|
||||
content: contentUrl,
|
||||
area: ['90%', '95%'],
|
||||
area: ['97.5%', '97.5%'],
|
||||
maxmin: false,
|
||||
cancel:function (){
|
||||
table.reload('menuTable', {
|
||||
|
|
@ -203,4 +203,4 @@ function layerOpenProgressView(title,contentUrl){
|
|||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -121,7 +121,7 @@ layui.use(['table', 'form','notice', 'layNotify','element'], function () {
|
|||
}
|
||||
if ($.inArray('sysSubcontractor:del', pers) >= 0) {
|
||||
text +='<span lay-event="com" style="font-size: 15px;"> | </span>';
|
||||
text +='<a lay-event="del" style="color: #e71010;cursor: pointer;font-size: 15px">删除</a>';
|
||||
text +='<a lay-event="del" style="color: #ff4d4f;cursor: pointer;font-size: 15px">删除</a>';
|
||||
}
|
||||
return text;
|
||||
}
|
||||
|
|
@ -214,7 +214,7 @@ function layerOpenProgressView(title,contentUrl){
|
|||
title: [title, 'color:#3B70A1;background-color:#E8ECEB;font-size:20px'],
|
||||
type: 2,
|
||||
content: contentUrl,
|
||||
area: ['90%', '95%'],
|
||||
area: ['97.5%', '97.5%'],
|
||||
maxmin: false,
|
||||
cancel:function (){
|
||||
table.reload('menuTable', {
|
||||
|
|
@ -229,4 +229,4 @@ function layerOpenProgressView(title,contentUrl){
|
|||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ $("#addBt").click(function(){
|
|||
type: 2,
|
||||
title: '新增',
|
||||
content: 'ownTeamOpen.html',
|
||||
area: ['90%', '95%'],
|
||||
area: ['97.5%', '97.5%'],
|
||||
maxmin: false,
|
||||
closeBtn: true,
|
||||
btn: ['确定', '取消'],
|
||||
|
|
@ -87,7 +87,7 @@ layui.use(['table', 'form','notice', 'layNotify'], function () {
|
|||
text +='<span lay-event="com" style="font-size: 15px;"> | </span>';
|
||||
}
|
||||
if ($.inArray('sysOneTeamSet:del', pers) >= 0) {
|
||||
text +='<a lay-event="del" style="color: #009688;cursor: pointer;font-size: 15px">删除</a>';
|
||||
text +='<a lay-event="del" style="color: #ff4d4f;cursor: pointer;font-size: 15px">删除</a>';
|
||||
}
|
||||
return text;
|
||||
}
|
||||
|
|
@ -156,7 +156,7 @@ layui.use(['table', 'form','notice', 'layNotify'], function () {
|
|||
type: 2,
|
||||
title: '修改',
|
||||
content: './ownTeamModify.html',
|
||||
area: ['90%', '95%'],
|
||||
area: ['97.5%', '97.5%'],
|
||||
maxmin: false,
|
||||
closeBtn: true,
|
||||
btn: ['确定', '取消'],
|
||||
|
|
@ -246,4 +246,4 @@ function query(){
|
|||
groupType: teamType,
|
||||
} //设定异步数据接口的额外参数
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ $("#addBt").click(function(){
|
|||
type: 2,
|
||||
title: '新增',
|
||||
content: 'subTeamOpen.html',
|
||||
area: ['90%', '95%'],
|
||||
area: ['97.5%', '97.5%'],
|
||||
maxmin: false,
|
||||
closeBtn: true,
|
||||
btn: ['确定', '取消'],
|
||||
|
|
@ -87,7 +87,7 @@ layui.use(['table', 'form','notice', 'layNotify'], function () {
|
|||
text +='<span lay-event="com" style="font-size: 15px;"> | </span>';
|
||||
}
|
||||
if ($.inArray('sysSubTeamSet:del', pers) >= 0) {
|
||||
text +='<a lay-event="del" style="color: #009688;cursor: pointer;font-size: 15px">删除</a>';
|
||||
text +='<a lay-event="del" style="color: #ff4d4f;cursor: pointer;font-size: 15px">删除</a>';
|
||||
}
|
||||
return text;
|
||||
}
|
||||
|
|
@ -156,7 +156,7 @@ layui.use(['table', 'form','notice', 'layNotify'], function () {
|
|||
type: 2,
|
||||
title: '修改',
|
||||
content: './subTeamModify.html',
|
||||
area: ['90%', '95%'],
|
||||
area: ['97.5%', '97.5%'],
|
||||
maxmin: false,
|
||||
closeBtn: true,
|
||||
btn: ['确定', '取消'],
|
||||
|
|
@ -246,4 +246,4 @@ function query(){
|
|||
groupType: teamType,
|
||||
} //设定异步数据接口的额外参数
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ $("#addBt").click(function(){
|
|||
type: 2,
|
||||
title: '新增',
|
||||
content: 'untiTeamOpen.html',
|
||||
area: ['90%', '95%'],
|
||||
area: ['97.5%', '97.5%'],
|
||||
maxmin: false,
|
||||
closeBtn: true,
|
||||
btn: ['确定', '取消'],
|
||||
|
|
@ -88,7 +88,7 @@ layui.use(['table', 'form','notice', 'layNotify'], function () {
|
|||
}
|
||||
console.log($.inArray('sysTeamSetByType:del', pers))
|
||||
if ($.inArray('sysTeamSetByType:del', pers) >= 0) {
|
||||
text +='<a lay-event="del" style="color: #009688;cursor: pointer;font-size: 15px">删除</a>';
|
||||
text +='<a lay-event="del" style="color: #ff4d4f;cursor: pointer;font-size: 15px">删除</a>';
|
||||
}
|
||||
return text;
|
||||
}
|
||||
|
|
@ -154,7 +154,7 @@ layui.use(['table', 'form','notice', 'layNotify'], function () {
|
|||
type: 2,
|
||||
title: '修改',
|
||||
content: './untiTeamModify.html',
|
||||
area: ['90%', '95%'],
|
||||
area: ['97.5%', '97.5%'],
|
||||
maxmin: false,
|
||||
closeBtn: true,
|
||||
btn: ['确定', '取消'],
|
||||
|
|
@ -242,4 +242,4 @@ function query(){
|
|||
volLevel: volLevelIds,
|
||||
} //设定异步数据接口的额外参数
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -34,10 +34,29 @@
|
|||
line-height: 20px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
thead {
|
||||
background-color: #FAFAFA !important;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<form class="layui-form" action="" onsubmit="return false">
|
||||
<form class="layui-form" action="" onsubmit="return false" style="margin-left: 15px">
|
||||
<div class="layui-form-item">
|
||||
<div class="layui-input-inline" style="width: 10%; margin-top: 4px;">
|
||||
<input type="text" id="keyWord" placeholder="请输入关键字" autocomplete="off" class="layui-input">
|
||||
</div>
|
||||
<div class="layui-inline" style="margin-top: 4px">
|
||||
<button id="searchBt" class="layui-btn" lay-event="searchBt">查询</button>
|
||||
</div>
|
||||
<div class="layui-inline" style="margin-top: 4px"> 
|
||||
<button id="resetBt" class="layui-btn" lay-event="resetBt">重置</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="layui-inline" style="margin-top: 4px" id="addDiv">
|
||||
<button id="addBtn" class="layui-btn" lay-event="addBtn" >新增</button>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<div style="margin-left: 15px;margin-right: 15px;">
|
||||
|
|
@ -65,18 +84,5 @@
|
|||
<!-- <a lay-event="del" style="color: #009688;cursor: pointer;font-size: 16px">删除</a>-->
|
||||
<!--</script>-->
|
||||
<script type="text/html" id="toolbar">
|
||||
<div class="layui-form-item">
|
||||
<div class="layui-input-inline" style="width: 10%; margin-top: 4px;">
|
||||
<input type="text" id="keyWord" placeholder="请输入关键字" autocomplete="off" class="layui-input">
|
||||
</div>
|
||||
<div class="layui-inline" style="margin-top: 4px">
|
||||
<button id="searchBt" class="layui-btn" lay-event="searchBt">查询</button>
|
||||
</div>
|
||||
<div class="layui-inline" style="margin-top: 4px"> 
|
||||
<button id="resetBt" class="layui-btn" lay-event="resetBt">重置</button>
|
||||
</div>
|
||||
<div class="layui-inline" style="margin-top: 4px" id="addDiv">
|
||||
<button id="addBtn" class="layui-btn" lay-event="addBtn" style="margin-left: 16px;">新增</button>
|
||||
</div>
|
||||
</div>
|
||||
</script>
|
||||
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -37,7 +37,25 @@
|
|||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<form class="layui-form" action="" onsubmit="return false">
|
||||
<form class="layui-form" action="" onsubmit="return false" style="margin-left: 15px;" >
|
||||
<div class="layui-form-item" >
|
||||
<div class="layui-input-inline" style="margin-top: 4px;">
|
||||
<input type="text" id="keyWord" placeholder="请输入关键字" autocomplete="off" class="layui-input" style="width: 86%; ">
|
||||
</div>
|
||||
<div class="layui-inline" style="margin-top: 4px;">
|
||||
<select id="parentId" class="layui-select" name="parentId" lay-verify="required"></select>
|
||||
</div>
|
||||
<div class="layui-inline" style="margin-top: 4px">
|
||||
<button id="searchBt" class="layui-btn" lay-event="searchBt">查询</button>
|
||||
</div>
|
||||
<div class="layui-inline" style="margin-top: 4px"> 
|
||||
<button id="resetBt" class="layui-btn" lay-event="resetBt">重置</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layui-inline" style="margin-top: 4px" id="addDiv">
|
||||
<button id="addBtn" class="layui-btn" lay-event="addBtn" style="margin-left: 0px;" >新增</button>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<div style="margin-left: 15px;margin-right: 15px;">
|
||||
|
|
@ -58,24 +76,7 @@
|
|||
<!-- <a lay-event="del" style="color: #009688;cursor: pointer;font-size: 16px">删除</a>-->
|
||||
<!--</script>-->
|
||||
<script type="text/html" id="toolbar">
|
||||
<div class="layui-form-item">
|
||||
<div class="layui-input-inline" style="margin-top: 4px;">
|
||||
<input type="text" id="keyWord" placeholder="请输入关键字" autocomplete="off" class="layui-input" style="width: 86%; ">
|
||||
</div>
|
||||
<div class="layui-inline" style="margin-top: 4px;">
|
||||
<select id="parentId" class="layui-select" name="parentId" lay-verify="required"></select>
|
||||
</div>
|
||||
<div class="layui-inline" style="margin-top: 4px">
|
||||
<button id="searchBt" class="layui-btn" lay-event="searchBt">查询</button>
|
||||
</div>
|
||||
<div class="layui-inline" style="margin-top: 4px"> 
|
||||
<button id="resetBt" class="layui-btn" lay-event="resetBt">重置</button>
|
||||
</div>
|
||||
<div class="layui-inline" style="margin-top: 4px" id="addDiv">
|
||||
<button id="addBtn" class="layui-btn" lay-event="addBtn" style="margin-left: 16px;" >新增</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</script>
|
||||
<script type="text/javascript" src="../../js/jquery/jquery-3.6.0.js"></script>
|
||||
<script type="text/javascript" src="../../js/jq.js"></script>
|
||||
|
|
|
|||
|
|
@ -92,7 +92,7 @@
|
|||
<input id="id" hidden="hidden"/>
|
||||
<div class="layui-form-item" style="margin-top: 1%;">
|
||||
<div class="layui-input-inline">
|
||||
<label class="layui-form-label"><i class="tip-required"
|
||||
<label class="layui-form-label" style="width: 180px;"><i class="tip-required"
|
||||
style="color: red;font-size: 20px">*</i>公司名称::</label>
|
||||
</div>
|
||||
<div class="layui-input-inline" style="border: 0px dashed dimgrey;width: 74%;">
|
||||
|
|
@ -101,7 +101,7 @@
|
|||
</div>
|
||||
<div class="layui-form-item" style="margin-top: 1%;">
|
||||
<div class="layui-input-inline">
|
||||
<label class="layui-form-label"><i class="tip-required"
|
||||
<label class="layui-form-label" style="width: 180px;"><i class="tip-required"
|
||||
style="color: red;font-size: 20px">*</i>所属公司::</label>
|
||||
</div>
|
||||
<div class="layui-input-inline" style="border: 0px dashed dimgrey;width: 74%;">
|
||||
|
|
@ -267,4 +267,4 @@
|
|||
});
|
||||
}
|
||||
|
||||
</script>
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -38,7 +38,21 @@
|
|||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<form class="layui-form" action="" onsubmit="return false">
|
||||
<form class="layui-form" action="" onsubmit="return false" style="margin-left: 15px;">
|
||||
<div class="layui-form-item">
|
||||
<div class="layui-input-inline" style="width: 10%; margin-top: 4px;">
|
||||
<input type="text" id="keyWord" placeholder="请输入关键字" autocomplete="off" class="layui-input">
|
||||
</div>
|
||||
<div class="layui-inline" style="margin-top: 4px">
|
||||
<button id="searchBt" class="layui-btn" lay-event="searchBt">查询</button>
|
||||
</div>
|
||||
<div class="layui-inline" style="margin-top: 4px"> 
|
||||
<button id="resetBt" class="layui-btn" lay-event="resetBt">重置</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="layui-inline" style="margin-top: 4px" id="addDiv">
|
||||
<button id="addBtn" class="layui-btn" lay-event="addBtn" >新增</button>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<div style="margin-left: 15px;margin-right: 15px;">
|
||||
|
|
@ -68,18 +82,5 @@
|
|||
|
||||
<!--</script>-->
|
||||
<script type="text/html" id="toolbar">
|
||||
<div class="layui-form-item">
|
||||
<div class="layui-input-inline" style="width: 10%; margin-top: 4px;">
|
||||
<input type="text" id="keyWord" placeholder="请输入关键字" autocomplete="off" class="layui-input">
|
||||
</div>
|
||||
<div class="layui-inline" style="margin-top: 4px">
|
||||
<button id="searchBt" class="layui-btn" lay-event="searchBt">查询</button>
|
||||
</div>
|
||||
<div class="layui-inline" style="margin-top: 4px"> 
|
||||
<button id="resetBt" class="layui-btn" lay-event="resetBt">重置</button>
|
||||
</div>
|
||||
<div class="layui-inline" style="margin-top: 4px" id="addDiv">
|
||||
<button id="addBtn" class="layui-btn" lay-event="addBtn" style="margin-left: 16px;">新增</button>
|
||||
</div>
|
||||
</div>
|
||||
</script>
|
||||
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -19,6 +19,10 @@
|
|||
padding: 0px 10px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
thead {
|
||||
background-color: #FAFAFA !important;
|
||||
}
|
||||
</style>
|
||||
<body style="margin-left: 15px">
|
||||
<form class="layui-form" action="" onsubmit="return false">
|
||||
|
|
@ -40,6 +44,8 @@
|
|||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px">
|
||||
<button id="resetBt" class="layui-btn layui-btn-sm">重置</button>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px" id="addDiv">
|
||||
<button id="addBt" class="layui-btn layui-btn-sm">新增</button>
|
||||
</div>
|
||||
|
|
@ -53,7 +59,7 @@
|
|||
</div>
|
||||
</form>
|
||||
|
||||
<table id="demo" lay-filter="test"></table>
|
||||
<table id="demo" lay-filter="test" style="margin-top: 5px;"></table>
|
||||
|
||||
<!--<script type="text/html" id="toolsBar">-->
|
||||
<!-- <a lay-event="update" style="color: #009688;cursor: pointer;font-size: 15px">修改</a>-->
|
||||
|
|
@ -71,4 +77,4 @@
|
|||
<script type="text/javascript" src="../../js/publicJs.js"></script>
|
||||
<script type="text/javascript" src="../../js/select.js"></script>
|
||||
<script type="text/javascript" src="../../js/my/permission.js"></script>
|
||||
<script src="../../js/machineTool/MachineToolLibrary.js"></script>
|
||||
<script src="../../js/machineTool/MachineToolLibrary.js"></script>
|
||||
|
|
|
|||
|
|
@ -20,6 +20,10 @@
|
|||
font-size: 16px;
|
||||
}
|
||||
|
||||
thead {
|
||||
background-color: #FAFAFA !important;
|
||||
}
|
||||
|
||||
</style>
|
||||
<body style="margin-left: 15px">
|
||||
<form class="layui-form" action="" onsubmit="return false">
|
||||
|
|
@ -54,14 +58,16 @@
|
|||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px">
|
||||
<button id="resetBt" class="layui-btn layui-btn-sm">重置</button>
|
||||
</div>
|
||||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px">
|
||||
<button id="exportBt" class="layui-btn layui-btn-sm">导出</button>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px">
|
||||
<button id="exportBt" class="layui-btn layui-btn-sm">导出</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<table id="demo" lay-filter="test" style="overflow:auto;"></table>
|
||||
<table id="demo" lay-filter="test" style="overflow:auto;margin-top: 10px;"></table>
|
||||
|
||||
<script type="text/html" id="toolsBar">
|
||||
<a lay-event="view" style="color: #009688;cursor: pointer;font-size: 15px">详情</a>
|
||||
|
|
@ -207,7 +213,7 @@
|
|||
title: [title, 'color:#3B70A1;background-color:#E8ECEB;font-size:20px'],
|
||||
type: 2,
|
||||
content: contentUrl,
|
||||
area: ['90%', '95%'],
|
||||
area: ['97.5%', '97.5%'],
|
||||
maxmin: false,
|
||||
cancel:function (){
|
||||
localStorage.removeItem("historyProId")
|
||||
|
|
@ -232,4 +238,4 @@
|
|||
range: true
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -448,4 +448,4 @@
|
|||
});
|
||||
}
|
||||
|
||||
</script>
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@
|
|||
}
|
||||
|
||||
table, th, td {
|
||||
border: 1px solid rgb(219 219 219);
|
||||
border: 0px solid rgb(219 219 219);
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
|
@ -347,7 +347,7 @@
|
|||
function generateTable(start, end) {
|
||||
var startDate = new Date(start);
|
||||
var endDate = new Date(end);
|
||||
var table = '<table style="width: 100%"><tr><th rowspan="2" style="min-width: 70px;">工序</th>';
|
||||
var table = '<table style="width: 100%; border: 1px solid rgb(219 219 219);text-align: center;font-size: 16px;padding: 0 24px 0 24px;" ><tr><th rowspan="2" style="min-width: 70px;">工序</th>';
|
||||
var startYear = startDate.getFullYear();
|
||||
var endYear = endDate.getFullYear();
|
||||
|
||||
|
|
@ -587,4 +587,4 @@
|
|||
});
|
||||
}
|
||||
|
||||
</script>
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -20,6 +20,10 @@
|
|||
font-size: 16px;
|
||||
}
|
||||
|
||||
thead {
|
||||
background-color: #FAFAFA !important;
|
||||
}
|
||||
|
||||
</style>
|
||||
<body style="margin-left: 15px">
|
||||
<form class="layui-form" action="" onsubmit="return false">
|
||||
|
|
@ -41,17 +45,19 @@
|
|||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px">
|
||||
<button id="resetBt" class="layui-btn layui-btn-sm">重置</button>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px" id="addDiv">
|
||||
<button id="addBt" class="layui-btn layui-btn-sm">新增</button>
|
||||
</div>
|
||||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px">
|
||||
<button id="exportBt" class="layui-btn layui-btn-sm">导出</button>
|
||||
</div>
|
||||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px">
|
||||
<button id="exportBt" class="layui-btn layui-btn-sm">导出</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<table id="demo" lay-filter="test" style="overflow:auto;"></table>
|
||||
<table id="demo" lay-filter="test" style="overflow:auto;margin-top: 10px;"></table>
|
||||
|
||||
<!--<script type="text/html" id="toolsBar">-->
|
||||
<!-- <a lay-event="view" style="color: #009688;cursor: pointer;font-size: 15px">详情</a>-->
|
||||
|
|
@ -71,4 +77,4 @@
|
|||
<script type="text/javascript" src="../../js/publicJs.js"></script>
|
||||
<script type="text/javascript" src="../../js/select.js"></script>
|
||||
<script type="text/javascript" src="../../js/my/permission.js"></script>
|
||||
<script src="../../js/newPro/newProPreArrangementList.js"></script>
|
||||
<script src="../../js/newPro/newProPreArrangementList.js"></script>
|
||||
|
|
|
|||
|
|
@ -20,6 +20,10 @@
|
|||
font-size: 16px;
|
||||
}
|
||||
|
||||
thead {
|
||||
background-color: #FAFAFA !important;
|
||||
}
|
||||
|
||||
</style>
|
||||
<body style="margin-left: 15px">
|
||||
<form class="layui-form" action="" onsubmit="return false">
|
||||
|
|
@ -38,14 +42,16 @@
|
|||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px">
|
||||
<button id="resetBt" class="layui-btn layui-btn-sm">重置</button>
|
||||
</div>
|
||||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px">
|
||||
<button id="exportBt" class="layui-btn layui-btn-sm">导出</button>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px">
|
||||
<button id="exportBt" class="layui-btn layui-btn-sm">导出</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<table id="demo" lay-filter="test" style="overflow:auto;"></table>
|
||||
<table id="demo" lay-filter="test" style="overflow:auto;margin-top: 8px;"></table>
|
||||
|
||||
<script type="text/html" id="toolsBar">
|
||||
<a lay-event="view" style="color: #009688;cursor: pointer;font-size: 15px">详情</a>
|
||||
|
|
@ -167,7 +173,7 @@
|
|||
title: [title, 'color:#3B70A1;background-color:#E8ECEB;font-size:20px'],
|
||||
type: 2,
|
||||
content: contentUrl,
|
||||
area: ['90%', '95%'],
|
||||
area: ['97.5%', '97.5%'],
|
||||
maxmin: false,
|
||||
cancel:function (){
|
||||
localStorage.removeItem("releaseProId")
|
||||
|
|
@ -184,4 +190,4 @@
|
|||
});
|
||||
}
|
||||
|
||||
</script>
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -35,6 +35,10 @@
|
|||
.layui-table-tool-self{
|
||||
display: none;
|
||||
}
|
||||
|
||||
thead {
|
||||
background-color: #FAFAFA !important;
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<form class="layui-form" action="" onsubmit="return false" style="padding: 10px">
|
||||
|
|
@ -419,4 +423,4 @@
|
|||
}
|
||||
|
||||
|
||||
</script>
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -29,6 +29,10 @@
|
|||
background-color: #e5ede7;
|
||||
height: 32px;
|
||||
}
|
||||
|
||||
thead {
|
||||
background-color: #FAFAFA !important;
|
||||
}
|
||||
</style>
|
||||
<body style="padding: 0 24px 0 24px;">
|
||||
<form class="layui-form" action="" onsubmit="return false">
|
||||
|
|
|
|||
|
|
@ -19,6 +19,10 @@
|
|||
padding: 0px 10px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
thead {
|
||||
background-color: #FAFAFA !important;
|
||||
}
|
||||
</style>
|
||||
<body style="margin-left: 15px">
|
||||
<form class="layui-form" action="" onsubmit="return false">
|
||||
|
|
@ -40,6 +44,9 @@
|
|||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px">
|
||||
<button id="resetBt" class="layui-btn layui-btn-sm">重置</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px" id="addDiv">
|
||||
<button id="addBt" class="layui-btn layui-btn-sm">新增</button>
|
||||
</div>
|
||||
|
|
@ -53,7 +60,7 @@
|
|||
</div>
|
||||
</form>
|
||||
|
||||
<table id="demo" lay-filter="test"></table>
|
||||
<table id="demo" lay-filter="test" style="margin-top: 8px;"></table>
|
||||
|
||||
<!--<script type="text/html" id="toolsBar">-->
|
||||
<!-- <a lay-event="view" style="color: #009688;cursor: pointer;font-size: 15px">详情</a>-->
|
||||
|
|
@ -77,4 +84,4 @@
|
|||
<script type="text/javascript" src="../../js/publicJs.js"></script>
|
||||
<script type="text/javascript" src="../../js/select.js"></script>
|
||||
<script type="text/javascript" src="../../js/my/permission.js"></script>
|
||||
<script src="../../js/personnelPool/branchStaffList.js"></script>
|
||||
<script src="../../js/personnelPool/branchStaffList.js"></script>
|
||||
|
|
|
|||
|
|
@ -19,6 +19,10 @@
|
|||
padding: 0px 10px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
thead {
|
||||
background-color: #FAFAFA !important;
|
||||
}
|
||||
</style>
|
||||
<body style="margin-left: 15px">
|
||||
<form class="layui-form" action="" onsubmit="return false">
|
||||
|
|
@ -40,6 +44,10 @@
|
|||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px">
|
||||
<button id="resetBt" class="layui-btn layui-btn-sm">重置</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px" id="addDiv">
|
||||
<button id="addBt" class="layui-btn layui-btn-sm">新增</button>
|
||||
</div>
|
||||
|
|
@ -53,7 +61,7 @@
|
|||
</div>
|
||||
</form>
|
||||
|
||||
<table id="demo" lay-filter="test"></table>
|
||||
<table id="demo" lay-filter="test" style="margin-top: 8px;"></table>
|
||||
|
||||
<!--<script type="text/html" id="toolsBar">-->
|
||||
<!-- <a lay-event="view" style="color: #009688;cursor: pointer;font-size: 15px">详情</a>-->
|
||||
|
|
@ -77,4 +85,4 @@
|
|||
<script type="text/javascript" src="../../js/publicJs.js"></script>
|
||||
<script type="text/javascript" src="../../js/select.js"></script>
|
||||
<script type="text/javascript" src="../../js/my/permission.js"></script>
|
||||
<script src="../../js/personnelPool/selfOwnedList.js"></script>
|
||||
<script src="../../js/personnelPool/selfOwnedList.js"></script>
|
||||
|
|
|
|||
|
|
@ -19,6 +19,10 @@
|
|||
padding: 0px 10px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
thead {
|
||||
background-color: #FAFAFA !important;
|
||||
}
|
||||
</style>
|
||||
<body style="margin-left: 15px">
|
||||
<form class="layui-form" action="" onsubmit="return false">
|
||||
|
|
@ -45,6 +49,9 @@
|
|||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px">
|
||||
<button id="resetBt" class="layui-btn layui-btn-sm">重置</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px" id="addDiv">
|
||||
<button id="addBt" class="layui-btn layui-btn-sm">新增</button>
|
||||
</div>
|
||||
|
|
@ -58,7 +65,7 @@
|
|||
</div>
|
||||
</form>
|
||||
|
||||
<table id="demo" lay-filter="test"></table>
|
||||
<table id="demo" lay-filter="test" style="margin-top: 8px;"></table>
|
||||
|
||||
<!--<script type="text/html" id="toolsBar">-->
|
||||
<!-- <a lay-event="view" style="color: #009688;cursor: pointer;font-size: 15px">详情</a>-->
|
||||
|
|
@ -83,4 +90,4 @@
|
|||
<script type="text/javascript" src="../../js/publicJs.js"></script>
|
||||
<script type="text/javascript" src="../../js/select.js"></script>
|
||||
<script type="text/javascript" src="../../js/my/permission.js"></script>
|
||||
<script src="../../js/personnelPool/subcontractorList.js"></script>
|
||||
<script src="../../js/personnelPool/subcontractorList.js"></script>
|
||||
|
|
|
|||
|
|
@ -21,6 +21,10 @@
|
|||
padding: 0px 10px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
thead {
|
||||
background-color: #FAFAFA !important;
|
||||
}
|
||||
</style>
|
||||
<body style="margin-left: 15px">
|
||||
<form class="layui-form" action="" onsubmit="return false">
|
||||
|
|
@ -48,6 +52,8 @@
|
|||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px">
|
||||
<button id="resetBt" class="layui-btn layui-btn-sm">重置</button>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px">
|
||||
<button id="exportBt" class="layui-btn layui-btn-sm">导出</button>
|
||||
</div>
|
||||
|
|
@ -55,7 +61,7 @@
|
|||
</div>
|
||||
</form>
|
||||
|
||||
<table id="demo" lay-filter="test"></table>
|
||||
<table id="demo" lay-filter="test" style="margin-top: 8px;"></table>
|
||||
|
||||
<script type="text/html" id="toolsBar">
|
||||
<a lay-event="view" style="color: #009688;cursor: pointer;font-size: 15px">详情</a>
|
||||
|
|
@ -209,4 +215,4 @@
|
|||
getOrgName(form, null);
|
||||
});
|
||||
|
||||
</script>
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -19,6 +19,10 @@
|
|||
padding: 0px 10px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
thead {
|
||||
background-color: #FAFAFA !important;
|
||||
}
|
||||
</style>
|
||||
<body style="margin-left: 15px">
|
||||
<form class="layui-form" action="" onsubmit="return false">
|
||||
|
|
@ -43,14 +47,16 @@
|
|||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px">
|
||||
<button id="resetBt" class="layui-btn layui-btn-sm">重置</button>
|
||||
</div>
|
||||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px">
|
||||
</div>
|
||||
<div>
|
||||
<div class="layui-input-inline" style="width: 70px;">
|
||||
<button id="exportBt" class="layui-btn layui-btn-sm">导出</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<table id="demo" lay-filter="test"></table>
|
||||
<table id="demo" lay-filter="test" style="margin-top: 8px;"></table>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -181,4 +187,4 @@
|
|||
getOrgName(form,null);
|
||||
});
|
||||
|
||||
</script>
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -25,6 +25,10 @@
|
|||
/* word-wrap:break-word;*/
|
||||
/* work-break:break-all;*/
|
||||
/*}*/
|
||||
|
||||
thead {
|
||||
background-color: #FAFAFA !important;
|
||||
}
|
||||
</style>
|
||||
<body style="margin-left: 15px">
|
||||
<form class="layui-form" action="" onsubmit="return false">
|
||||
|
|
@ -44,6 +48,8 @@
|
|||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px">
|
||||
<button id="resetBt" class="layui-btn layui-btn-sm">重置</button>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px" id="addDiv">
|
||||
<button id="addBt" class="layui-btn layui-btn-sm">新增</button>
|
||||
</div>
|
||||
|
|
@ -51,7 +57,7 @@
|
|||
</div>
|
||||
</form>
|
||||
|
||||
<table id="demo" lay-filter="test"></table>
|
||||
<table id="demo" lay-filter="test" style="margin-top: 8px;"></table>
|
||||
<script type="text/html" id="switchTpl">
|
||||
<input type="checkbox" id="statusSwitch" name="status" value="{{d.resourceSetId}}" lay-skin="switch" lay-text="启用|锁定" lay-filter="statusSwitch" {{ d.isEnable == 1 ? 'checked' : '' }}>
|
||||
</script>
|
||||
|
|
@ -71,4 +77,4 @@
|
|||
<script type="text/javascript" src="../../js/publicJs.js"></script>
|
||||
<script type="text/javascript" src="../../js/select.js"></script>
|
||||
<script type="text/javascript" src="../../js/my/permission.js"></script>
|
||||
<script src="../../js/teamset/ownTeamSetList.js"></script>
|
||||
<script src="../../js/teamset/ownTeamSetList.js"></script>
|
||||
|
|
|
|||
|
|
@ -25,6 +25,10 @@
|
|||
/* word-wrap:break-word;*/
|
||||
/* work-break:break-all;*/
|
||||
/*}*/
|
||||
|
||||
thead {
|
||||
background-color: #FAFAFA !important;
|
||||
}
|
||||
</style>
|
||||
<body style="margin-left: 15px">
|
||||
<form class="layui-form" action="" onsubmit="return false">
|
||||
|
|
@ -44,6 +48,8 @@
|
|||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px">
|
||||
<button id="resetBt" class="layui-btn layui-btn-sm">重置</button>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px" id="addDiv">
|
||||
<button id="addBt" class="layui-btn layui-btn-sm">新增</button>
|
||||
</div>
|
||||
|
|
@ -51,7 +57,7 @@
|
|||
</div>
|
||||
</form>
|
||||
|
||||
<table id="demo" lay-filter="test"></table>
|
||||
<table id="demo" lay-filter="test" style="margin-top: 8px;"></table>
|
||||
<script type="text/html" id="switchTpl">
|
||||
<input type="checkbox" id="statusSwitch" name="status" value="{{d.resourceSetId}}" lay-skin="switch" lay-text="启用|锁定" lay-filter="statusSwitch" {{ d.isEnable == 1 ? 'checked' : '' }}>
|
||||
</script>
|
||||
|
|
@ -71,4 +77,4 @@
|
|||
<script type="text/javascript" src="../../js/publicJs.js"></script>
|
||||
<script type="text/javascript" src="../../js/select.js"></script>
|
||||
<script type="text/javascript" src="../../js/my/permission.js"></script>
|
||||
<script src="../../js/teamset/subTeamSetList.js"></script>
|
||||
<script src="../../js/teamset/subTeamSetList.js"></script>
|
||||
|
|
|
|||
|
|
@ -25,6 +25,10 @@
|
|||
/* word-wrap:break-word;*/
|
||||
/* work-break:break-all;*/
|
||||
/*}*/
|
||||
|
||||
thead {
|
||||
background-color: #FAFAFA !important;
|
||||
}
|
||||
</style>
|
||||
<body style="margin-left: 15px">
|
||||
<form class="layui-form" action="" onsubmit="return false">
|
||||
|
|
@ -44,6 +48,9 @@
|
|||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px">
|
||||
<button id="resetBt" class="layui-btn layui-btn-sm">重置</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div class="layui-input-inline" style="width: 70px;margin-top: 2px" id="addDiv">
|
||||
<button id="addBt" class="layui-btn layui-btn-sm">新增</button>
|
||||
</div>
|
||||
|
|
@ -51,7 +58,7 @@
|
|||
</div>
|
||||
</form>
|
||||
|
||||
<table id="demo" lay-filter="test"></table>
|
||||
<table id="demo" lay-filter="test" style="margin-top: 8px;"></table>
|
||||
<script type="text/html" id="switchTpl">
|
||||
<input type="checkbox" id="statusSwitch" name="status" value="{{d.resourceSetId}}" lay-skin="switch" lay-text="启用|锁定" lay-filter="statusSwitch" {{ d.isEnable == 1 ? 'checked' : '' }}>
|
||||
</script>
|
||||
|
|
@ -71,4 +78,4 @@
|
|||
<script type="text/javascript" src="../../js/publicJs.js"></script>
|
||||
<script type="text/javascript" src="../../js/select.js"></script>
|
||||
<script type="text/javascript" src="../../js/my/permission.js"></script>
|
||||
<script src="../../js/teamset/untiTeamSetList.js"></script>
|
||||
<script src="../../js/teamset/untiTeamSetList.js"></script>
|
||||
|
|
|
|||
Loading…
Reference in New Issue