Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
doc_wei
Skyeye
提交
9e491027
S
Skyeye
项目概览
doc_wei
/
Skyeye
通知
1172
Star
154
Fork
127
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
Skyeye
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
9e491027
编写于
6月 22, 2022
作者:
doc_wei
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
【公共】 新增移除集合中指定name的元素,验证成功
上级
b391d966
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
32 addition
and
54 deletion
+32
-54
wages/src/main/resources/template/js/wagesSocialSecurityFund/wagesSocialSecurityFundAdd.js
.../js/wagesSocialSecurityFund/wagesSocialSecurityFundAdd.js
+3
-27
wages/src/main/resources/template/js/wagesSocialSecurityFund/wagesSocialSecurityFundEdit.js
...js/wagesSocialSecurityFund/wagesSocialSecurityFundEdit.js
+3
-27
web/src/main/resources/template/assets/lib/layui/custom.js
web/src/main/resources/template/assets/lib/layui/custom.js
+1
-0
web/src/main/resources/template/assets/lib/layui/customer/arrayUtil.js
...resources/template/assets/lib/layui/customer/arrayUtil.js
+25
-0
未找到文件。
wages/src/main/resources/template/js/wagesSocialSecurityFund/wagesSocialSecurityFundAdd.js
浏览文件 @
9e491027
...
...
@@ -103,15 +103,7 @@ layui.config({
placeholder
:
'
请选择企业
'
,
editorTag
:
false
,
beforeTagDelete
:
function
(
field
,
editor
,
tags
,
val
)
{
var
inArray
=
-
1
;
$
.
each
(
companyList
,
function
(
i
,
item
)
{
if
(
val
==
item
.
name
)
{
inArray
=
i
;
}
});
if
(
inArray
!=
-
1
)
{
//如果该元素在集合中存在
companyList
.
splice
(
inArray
,
1
);
}
companyList
=
[].
concat
(
arrayUtil
.
removeArrayPointName
(
companyList
,
val
));
}
});
$
(
"
body
"
).
on
(
"
click
"
,
"
#companySel
"
,
function
(){
...
...
@@ -143,15 +135,7 @@ layui.config({
placeholder
:
'
请选择部门
'
,
editorTag
:
false
,
beforeTagDelete
:
function
(
field
,
editor
,
tags
,
val
)
{
var
inArray
=
-
1
;
$
.
each
(
departmentList
,
function
(
i
,
item
)
{
if
(
val
==
item
.
name
)
{
inArray
=
i
;
}
});
if
(
inArray
!=
-
1
)
{
departmentList
.
splice
(
inArray
,
1
);
}
departmentList
=
[].
concat
(
arrayUtil
.
removeArrayPointName
(
departmentList
,
val
));
}
});
$
(
"
body
"
).
on
(
"
click
"
,
"
#departmentSel
"
,
function
(){
...
...
@@ -183,15 +167,7 @@ layui.config({
placeholder
:
'
请选择员工
'
,
editorTag
:
false
,
beforeTagDelete
:
function
(
field
,
editor
,
tags
,
val
)
{
var
inArray
=
-
1
;
$
.
each
(
checkStaffList
,
function
(
i
,
item
)
{
if
(
val
==
item
.
name
)
{
inArray
=
i
;
}
});
if
(
inArray
!=
-
1
)
{
//如果该元素在集合中存在
checkStaffList
.
splice
(
inArray
,
1
);
}
checkStaffList
=
[].
concat
(
arrayUtil
.
removeArrayPointName
(
checkStaffList
,
val
));
}
});
$
(
"
body
"
).
on
(
"
click
"
,
"
#userStaffSel
"
,
function
(){
...
...
wages/src/main/resources/template/js/wagesSocialSecurityFund/wagesSocialSecurityFundEdit.js
浏览文件 @
9e491027
...
...
@@ -44,15 +44,7 @@ layui.config({
placeholder
:
'
请选择企业
'
,
editorTag
:
false
,
beforeTagDelete
:
function
(
field
,
editor
,
tags
,
val
)
{
var
inArray
=
-
1
;
$
.
each
(
companyList
,
function
(
i
,
item
)
{
if
(
val
==
item
.
name
)
{
inArray
=
i
;
}
});
if
(
inArray
!=
-
1
)
{
//如果该元素在集合中存在
companyList
.
splice
(
inArray
,
1
);
}
companyList
=
[].
concat
(
arrayUtil
.
removeArrayPointName
(
companyList
,
val
));
}
});
...
...
@@ -64,15 +56,7 @@ layui.config({
placeholder
:
'
请选择部门
'
,
editorTag
:
false
,
beforeTagDelete
:
function
(
field
,
editor
,
tags
,
val
)
{
var
inArray
=
-
1
;
$
.
each
(
departmentList
,
function
(
i
,
item
)
{
if
(
val
==
item
.
name
)
{
inArray
=
i
;
}
});
if
(
inArray
!=
-
1
)
{
departmentList
.
splice
(
inArray
,
1
);
}
departmentList
=
[].
concat
(
arrayUtil
.
removeArrayPointName
(
departmentList
,
val
));
}
});
...
...
@@ -84,15 +68,7 @@ layui.config({
placeholder
:
'
请选择员工
'
,
editorTag
:
false
,
beforeTagDelete
:
function
(
field
,
editor
,
tags
,
val
)
{
var
inArray
=
-
1
;
$
.
each
(
checkStaffList
,
function
(
i
,
item
)
{
if
(
val
==
item
.
name
)
{
inArray
=
i
;
}
});
if
(
inArray
!=
-
1
)
{
//如果该元素在集合中存在
checkStaffList
.
splice
(
inArray
,
1
);
}
checkStaffList
=
[].
concat
(
arrayUtil
.
removeArrayPointName
(
checkStaffList
,
val
));
}
});
...
...
web/src/main/resources/template/assets/lib/layui/custom.js
浏览文件 @
9e491027
...
...
@@ -34,6 +34,7 @@ var customerJS = {
"
reportModelTypeUtil
"
:
"
../../assets/lib/layui/customer/reportModelTypeUtil.js
"
,
// 模型分类工具类
"
schoolUtil
"
:
"
../../assets/lib/layui/customer/schoolUtil.js
"
,
// 学校模块工具类
"
checkWorkUtil
"
:
"
../../assets/lib/layui/customer/checkWorkUtil.js
"
,
// 考勤模块工具类
"
arrayUtil
"
:
"
../../assets/lib/layui/customer/arrayUtil.js
"
,
// 集合工具类
};
//系统基础信息
...
...
web/src/main/resources/template/assets/lib/layui/customer/arrayUtil.js
0 → 100644
浏览文件 @
9e491027
// 集合工具类函数
var
arrayUtil
=
{
/**
* 移除集合中指定name的元素
*
* @param list 集合
* @param name 指定name
*/
removeArrayPointName
:
function
(
list
,
name
)
{
var
inArray
=
-
1
;
$
.
each
(
list
,
function
(
i
,
item
)
{
if
(
name
==
item
.
name
)
{
inArray
=
i
;
}
});
if
(
inArray
!=
-
1
)
{
list
.
splice
(
inArray
,
1
);
}
return
list
;
}
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录