Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
doc_wei
Skyeye
提交
a4ce5984
S
Skyeye
项目概览
doc_wei
/
Skyeye
通知
1173
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看板
提交
a4ce5984
编写于
6月 12, 2023
作者:
doc_wei
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
面试者选择修改
上级
67539350
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
41 addition
and
202 deletion
+41
-202
boss/src/main/resources/template/js/bossInterviewArrangement/bossInterviewArrangementList.js
.../bossInterviewArrangement/bossInterviewArrangementList.js
+20
-27
boss/src/main/resources/template/js/bossInterviewee/myChargeBossIntervieweeListChoose.js
...e/js/bossInterviewee/myChargeBossIntervieweeListChoose.js
+0
-111
boss/src/main/resources/template/tpl/bossInterviewArrangement/bossInterviewArrangementList.html
...ossInterviewArrangement/bossInterviewArrangementList.html
+8
-10
boss/src/main/resources/template/tpl/bossInterviewee/myChargeBossIntervieweeListChoose.html
...pl/bossInterviewee/myChargeBossIntervieweeListChoose.html
+0
-45
web/src/main/resources/template/assets/lib/layui/customer/bossUtil.js
.../resources/template/assets/lib/layui/customer/bossUtil.js
+2
-3
web/src/main/resources/template/assets/lib/layui/customer/skyeye/dsFormUtil.js
...s/template/assets/lib/layui/customer/skyeye/dsFormUtil.js
+11
-6
未找到文件。
boss/src/main/resources/template/js/bossInterviewArrangement/bossInterviewArrangementList.js
浏览文件 @
a4ce5984
...
...
@@ -27,20 +27,31 @@ layui.config({
limit
:
getLimit
(),
cols
:
[[
{
title
:
systemLanguage
[
"
com.skyeye.serialNumber
"
][
languageType
],
type
:
'
numbers
'
},
{
field
:
'
interviewName
'
,
title
:
'
面试者
'
,
width
:
100
},
{
field
:
'
departmentName
'
,
title
:
'
面试部门
'
,
width
:
140
},
{
field
:
'
jobName
'
,
title
:
'
面试岗位
'
,
width
:
150
},
{
field
:
'
oddNumber
'
,
title
:
'
单据编号
'
,
align
:
'
left
'
,
width
:
200
,
templet
:
function
(
d
)
{
return
'
<a lay-event="details" class="notice-title-click">
'
+
d
.
oddNumber
+
'
</a>
'
;
}},
{
field
:
'
interviewMation
'
,
title
:
'
面试者
'
,
width
:
100
,
templet
:
function
(
d
)
{
return
d
.
interviewMation
.
name
;
}},
{
field
:
'
recruitDepartmentMation
'
,
title
:
'
面试部门
'
,
width
:
140
,
templet
:
function
(
d
)
{
return
isNull
(
d
.
personRequireMation
)
?
''
:
d
.
personRequireMation
.
recruitDepartmentMation
.
name
;
}},
{
field
:
'
recruitJobMation
'
,
title
:
'
面试岗位
'
,
width
:
150
,
templet
:
function
(
d
)
{
return
isNull
(
d
.
personRequireMation
)
?
''
:
d
.
personRequireMation
.
recruitJobMation
.
name
;
}},
{
field
:
'
interviewTime
'
,
title
:
'
面试时间
'
,
width
:
140
,
align
:
'
center
'
},
{
field
:
'
interviewer
'
,
title
:
'
面试官
'
,
width
:
120
},
{
field
:
'
interviewer
'
,
title
:
'
面试官
'
,
width
:
120
,
templet
:
function
(
d
)
{
return
isNull
(
d
.
interviewerMation
)
?
''
:
d
.
interviewerMation
.
name
;
}},
{
field
:
'
state
'
,
title
:
'
面试状态
'
,
width
:
160
,
templet
:
function
(
d
)
{
return
bossUtil
.
showStateName
(
d
.
state
);
return
skyeyeClassEnumUtil
.
getEnumDataNameByCodeAndKey
(
"
bossInterviewArrangementState
"
,
'
id
'
,
d
.
state
,
'
name
'
);
}},
{
field
:
'
createTime
'
,
title
:
systemLanguage
[
"
com.skyeye.entryTime
"
][
languageType
],
align
:
'
center
'
,
width
:
150
},
{
title
:
systemLanguage
[
"
com.skyeye.operation
"
][
languageType
],
fixed
:
'
right
'
,
align
:
'
center
'
,
width
:
257
,
toolbar
:
'
#messageTableBar
'
}
{
title
:
systemLanguage
[
"
com.skyeye.operation
"
][
languageType
],
fixed
:
'
right
'
,
align
:
'
center
'
,
width
:
140
,
toolbar
:
'
#messageTableBar
'
}
]],
done
:
function
(
json
)
{
matchingLanguage
();
initTableSearchUtil
.
initAdvancedSearch
(
this
,
json
.
searchFilter
,
form
,
"
请输入
面试者
"
,
function
()
{
initTableSearchUtil
.
initAdvancedSearch
(
this
,
json
.
searchFilter
,
form
,
"
请输入
单据编号
"
,
function
()
{
table
.
reloadData
(
"
messageTable
"
,
{
page
:
{
curr
:
1
},
where
:
getTableParams
()});
});
}
...
...
@@ -53,8 +64,6 @@ layui.config({
details
(
data
);
}
else
if
(
layEvent
===
'
edit
'
)
{
// 编辑
edit
(
data
);
}
else
if
(
layEvent
===
'
sub
'
)
{
// 提交
sub
(
data
);
}
else
if
(
layEvent
===
'
cancellation
'
)
{
// 作废
cancellation
(
data
);
}
else
if
(
layEvent
===
'
inductionResult
'
)
{
// 入职
...
...
@@ -77,9 +86,8 @@ layui.config({
// 编辑
function
edit
(
data
)
{
rowId
=
data
.
id
;
_openNewWindows
({
url
:
"
../../tpl/bossInterviewArrangement/bossInterviewArrangementEdit.html
"
,
url
:
systemCommonUtil
.
getUrl
(
'
FP2023060400003&id=
'
+
data
.
id
,
null
)
,
title
:
systemLanguage
[
"
com.skyeye.editPageTitle
"
][
languageType
],
pageId
:
"
bossInterviewArrangementEdit
"
,
area
:
[
'
90vw
'
,
'
90vh
'
],
...
...
@@ -105,20 +113,6 @@ layui.config({
});
}
// 提交
function
sub
(
data
)
{
layer
.
confirm
(
'
确认提交该数据吗?
'
,
{
icon
:
3
,
title
:
'
提交操作
'
},
function
(
index
)
{
layer
.
close
(
index
);
var
params
=
{
id
:
data
.
id
,
};
AjaxPostUtil
.
request
({
url
:
flowableBasePath
+
"
submitBossInterviewArrangement
"
,
params
:
params
,
type
:
'
json
'
,
method
:
"
PUT
"
,
callback
:
function
(
json
)
{
winui
.
window
.
msg
(
"
提交成功
"
,
{
icon
:
1
,
time
:
2000
});
loadTable
();
}});
});
}
// 作废
function
cancellation
(
data
)
{
layer
.
confirm
(
'
确认作废该申请吗?
'
,
{
icon
:
3
,
title
:
'
作废操作
'
},
function
(
index
)
{
...
...
@@ -132,9 +126,8 @@ layui.config({
// 详情
function
details
(
data
)
{
rowId
=
data
.
id
;
_openNewWindows
({
url
:
"
../../tpl/bossInterviewArrangement/bossInterviewArrangementDetails.html
"
,
url
:
systemCommonUtil
.
getUrl
(
'
FP2023060400004&id=
'
+
data
.
id
,
null
)
,
title
:
systemLanguage
[
"
com.skyeye.detailsPageTitle
"
][
languageType
],
pageId
:
"
bossInterviewArrangementDetails
"
,
area
:
[
'
90vw
'
,
'
90vh
'
],
...
...
boss/src/main/resources/template/js/bossInterviewee/myChargeBossIntervieweeListChoose.js
已删除
100644 → 0
浏览文件 @
67539350
var
rowId
=
""
;
layui
.
config
({
base
:
basePath
,
version
:
skyeyeVersion
}).
extend
({
window
:
'
js/winui.window
'
}).
define
([
'
window
'
,
'
table
'
,
'
jquery
'
,
'
winui
'
,
'
form
'
],
function
(
exports
)
{
winui
.
renderColor
();
var
index
=
parent
.
layer
.
getFrameIndex
(
window
.
name
);
var
$
=
layui
.
$
,
form
=
layui
.
form
,
table
=
layui
.
table
;
table
.
render
({
id
:
'
messageTable
'
,
elem
:
'
#messageTable
'
,
method
:
'
post
'
,
url
:
flowableBasePath
+
'
bossInterviewee001
'
,
where
:
getTableParams
(),
even
:
true
,
page
:
true
,
limits
:
getLimits
(),
limit
:
getLimit
(),
cols
:
[[
{
type
:
'
radio
'
},
{
title
:
systemLanguage
[
"
com.skyeye.serialNumber
"
][
languageType
],
type
:
'
numbers
'
},
{
field
:
'
name
'
,
title
:
'
姓名
'
,
align
:
'
left
'
,
width
:
100
,
templet
:
function
(
d
)
{
return
'
<a lay-event="details" class="notice-title-click">
'
+
d
.
name
+
'
</a>
'
;
}},
{
field
:
'
phone
'
,
title
:
'
联系方式
'
,
align
:
'
left
'
,
width
:
120
},
{
field
:
'
fromName
'
,
title
:
'
来源
'
,
align
:
'
left
'
,
width
:
120
},
{
field
:
'
workYears
'
,
title
:
'
工作年限
'
,
align
:
'
left
'
,
width
:
100
},
{
field
:
'
favoriteJob
'
,
title
:
'
心仪岗位
'
,
align
:
'
left
'
,
width
:
130
},
{
field
:
'
stateName
'
,
title
:
'
状态
'
,
align
:
'
left
'
,
width
:
80
},
{
field
:
'
createName
'
,
title
:
systemLanguage
[
"
com.skyeye.createName
"
][
languageType
],
width
:
120
},
{
field
:
'
createTime
'
,
title
:
systemLanguage
[
"
com.skyeye.createTime
"
][
languageType
],
align
:
'
center
'
,
width
:
150
},
{
field
:
'
lastUpdateName
'
,
title
:
systemLanguage
[
"
com.skyeye.lastUpdateName
"
][
languageType
],
align
:
'
left
'
,
width
:
120
},
{
field
:
'
lastUpdateTime
'
,
title
:
systemLanguage
[
"
com.skyeye.lastUpdateTime
"
][
languageType
],
align
:
'
center
'
,
width
:
150
}
]],
done
:
function
(
res
){
matchingLanguage
();
$
(
'
#messageTable
'
).
next
().
find
(
'
.layui-table-body
'
).
find
(
"
table
"
).
find
(
"
tbody
"
).
children
(
"
tr
"
).
on
(
'
dblclick
'
,
function
(){
var
dubClick
=
$
(
'
#messageTable
'
).
next
().
find
(
'
.layui-table-body
'
).
find
(
"
table
"
).
find
(
"
tbody
"
).
find
(
"
.layui-table-hover
"
);
dubClick
.
find
(
"
input[type='radio']
"
).
prop
(
"
checked
"
,
true
);
form
.
render
();
var
chooseIndex
=
JSON
.
stringify
(
dubClick
.
data
(
'
index
'
));
var
obj
=
res
.
rows
[
chooseIndex
];
parent
.
bossUtil
.
bossIntervieweeChooseMation
=
obj
;
parent
.
refreshCode
=
'
0
'
;
parent
.
layer
.
close
(
index
);
});
$
(
'
#messageTable
'
).
next
().
find
(
'
.layui-table-body
'
).
find
(
"
table
"
).
find
(
"
tbody
"
).
children
(
"
tr
"
).
on
(
'
click
'
,
function
(){
var
click
=
$
(
'
#messageTable
'
).
next
().
find
(
'
.layui-table-body
'
).
find
(
"
table
"
).
find
(
"
tbody
"
).
find
(
"
.layui-table-hover
"
);
click
.
find
(
"
input[type='radio']
"
).
prop
(
"
checked
"
,
true
);
form
.
render
();
})
}
});
table
.
on
(
'
tool(messageTable)
'
,
function
(
obj
)
{
var
data
=
obj
.
data
;
var
layEvent
=
obj
.
event
;
if
(
layEvent
===
'
edit
'
)
{
//编辑
edit
(
data
);
}
});
// 详情
function
details
(
data
)
{
rowId
=
data
.
id
;
_openNewWindows
({
url
:
"
../../tpl/bossInterviewee/bossIntervieweeDetails.html
"
,
title
:
systemLanguage
[
"
com.skyeye.editPageTitle
"
][
languageType
],
pageId
:
"
bossIntervieweeDetails
"
,
area
:
[
'
90vw
'
,
'
90vh
'
],
callBack
:
function
(
refreshCode
)
{
}
});
}
form
.
render
();
form
.
on
(
'
submit(formSearch)
'
,
function
(
data
)
{
if
(
winui
.
verifyForm
(
data
.
elem
))
{
table
.
reloadData
(
"
messageTable
"
,
{
page
:
{
curr
:
1
},
where
:
getTableParams
()});
}
return
false
;
});
// 刷新数据
$
(
"
body
"
).
on
(
"
click
"
,
"
#reloadTable
"
,
function
()
{
loadTable
();
});
function
loadTable
()
{
table
.
reloadData
(
"
messageTable
"
,
{
where
:
getTableParams
()});
}
function
getTableParams
()
{
return
{
name
:
$
(
"
#name
"
).
val
(),
phone
:
$
(
"
#phone
"
).
val
(),
type
:
2
,
state
:
'
0,1
'
};
}
exports
(
'
myChargeBossIntervieweeListChoose
'
,
{});
});
boss/src/main/resources/template/tpl/bossInterviewArrangement/bossInterviewArrangementList.html
浏览文件 @
a4ce5984
...
...
@@ -16,19 +16,17 @@
<div
style=
"margin:auto 10px;"
>
<table
id=
"messageTable"
lay-filter=
"messageTable"
></table>
<script
type=
"text/html"
id=
"messageTableBar"
>
{{
#
if
(
d
.
state
==
'
1
'
&&
auth
(
'
1649929371715
'
)){
}}
<
a
class
=
"
layui-btn layui-btn-xs
"
lay
-
event
=
"
sub
"
>
提交
<
/a
>
{{
#
if
((
d
.
state
==
'
2
'
||
d
.
state
==
'
3
'
))
{
}}
{{
#
if
(
auth
(
'
1649929381788
'
))
{
}}
<
a
class
=
"
layui-btn layui-btn-xs layui-btn-danger
"
lay
-
event
=
"
cancellation
"
>
作废
<
/a
>
{{
#
}
}}
{{
#
if
(
auth
(
'
1649929352279
'
))
{
}}
<
a
class
=
"
layui-btn layui-btn-xs
"
lay
-
event
=
"
edit
"
><
language
showName
=
"
com.skyeye.editBtn
"
><
/language></
a
>
{{
#
}
}}
{{
#
}
}}
{{
#
if
((
d
.
state
==
'
1
'
||
d
.
state
==
'
2
'
||
d
.
state
==
'
3
'
)
&&
auth
(
'
1649929381788
'
)){
}}
<
a
class
=
"
layui-btn layui-btn-xs layui-btn-danger
"
lay
-
event
=
"
cancellation
"
>
作废
<
/a
>
{{
#
}
}}
{{
#
if
(
d
.
state
==
'
1
'
&&
auth
(
'
1649929364723
'
)){
}}
<
a
class
=
"
layui-btn layui-btn-xs
"
lay
-
event
=
"
edit
"
><
language
showName
=
"
com.skyeye.editBtn
"
><
/language></
a
>
{{
#
}
}}
{{
#
if
(
d
.
state
==
'
4
'
&&
auth
(
'
1650189947768
'
)){
}}
{{
#
if
(
d
.
state
==
'
4
'
&&
auth
(
'
1650189947768
'
))
{
}}
<
a
class
=
"
layui-btn layui-btn-xs
"
lay
-
event
=
"
inductionResult
"
>
入职
<
/a
>
{{
#
}
}}
<
a
class
=
"
layui-btn layui-btn-xs layui-btn-normal
"
lay
-
event
=
"
details
"
>
详情
<
/a
>
</script>
</div>
...
...
boss/src/main/resources/template/tpl/bossInterviewee/myChargeBossIntervieweeListChoose.html
已删除
100644 → 0
浏览文件 @
67539350
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
/>
<title></title>
<link
href=
"../../assets/lib/layui/css/layui.css"
rel=
"stylesheet"
/>
<link
href=
"../../assets/lib/winui/css/winui.css"
rel=
"stylesheet"
/>
</head>
<body>
<div
class=
"txtcenter"
style=
"margin:0 auto;padding-top:10px;"
>
<div
class=
"winui-tip alert-info"
id=
"showInfo"
>
面试者选择规则:1.该列表仅加载当前登录用户负责的未面试/面试中的人员 2.双击指定行即可选中
</div>
<form
class=
"layui-form layui-form-pane"
action=
""
autocomplete=
"off"
>
<div
class=
"layui-form-item"
>
<div
class=
"layui-inline"
>
<label
class=
"layui-form-label"
>
姓名
</label>
<div
class=
"layui-input-inline"
>
<input
type=
"text"
id=
"name"
name=
"name"
placeholder=
"请输入姓名"
class=
"layui-input"
/>
</div>
<label
class=
"layui-form-label"
>
联系方式
</label>
<div
class=
"layui-input-inline"
>
<input
type=
"text"
id=
"phone"
name=
"phone"
placeholder=
"请输入联系方式"
class=
"layui-input"
/>
</div>
<button
type=
"reset"
class=
"layui-btn layui-btn-primary list-form-search"
><language
showName=
"com.skyeye.reset"
></language></button>
<button
class=
"layui-btn list-form-search"
lay-submit
lay-filter=
"formSearch"
><language
showName=
"com.skyeye.search2"
></language></button>
</div>
</div>
</form>
</div>
<div
class=
"winui-toolbar"
>
<div
class=
"winui-tool"
>
<button
id=
"reloadTable"
class=
"winui-toolbtn"
><i
class=
"fa fa-refresh"
aria-hidden=
"true"
></i><language
showName=
"com.skyeye.refreshDataBtn"
></language></button>
</div>
</div>
<div
style=
"margin:auto 10px;"
>
<table
id=
"messageTable"
lay-filter=
"messageTable"
></table>
</div>
<script
src=
"../../assets/lib/layui/layui.js"
></script>
<script
src=
"../../assets/lib/layui/custom.js"
></script>
<script
type=
"text/javascript"
>
layui
.
config
({
base
:
'
../../js/bossInterviewee/
'
}).
use
(
'
myChargeBossIntervieweeListChoose
'
);
</script>
</body>
</html>
\ No newline at end of file
web/src/main/resources/template/assets/lib/layui/customer/bossUtil.js
浏览文件 @
a4ce5984
...
...
@@ -66,16 +66,15 @@ var bossUtil = {
*
* @param callback 回调函数
*/
bossIntervieweeChooseMation
:
{},
// 已经选择的面试者信息
openBossIntervieweeChoosePage
:
function
(
callback
)
{
_openNewWindows
({
url
:
"
../../tpl/bossInterviewee/myChargeBossIntervieweeListChoose.html
"
,
url
:
systemCommonUtil
.
getUrl
(
'
FP2023061200001
'
,
null
)
,
title
:
"
面试者
"
,
pageId
:
"
myChargeBossIntervieweeListChoose
"
,
area
:
[
'
90vw
'
,
'
90vh
'
],
callBack
:
function
(
refreshCode
)
{
if
(
typeof
(
callback
)
==
"
function
"
)
{
callback
(
bossUtil
.
bossIntervieweeChoose
Mation
);
callback
(
chooseItem
Mation
);
}
}});
},
...
...
web/src/main/resources/template/assets/lib/layui/customer/skyeye/dsFormUtil.js
浏览文件 @
a4ce5984
...
...
@@ -287,7 +287,8 @@ var dsFormUtil = {
saveData
:
function
(
formSubType
,
approvalId
)
{
var
params
=
{};
$
.
each
(
dsFormUtil
.
pageMation
.
dsFormPageContents
,
function
(
i
,
content
)
{
if
(
!
isNull
(
content
.
attrDefinition
)
&&
!
$
.
isEmptyObject
(
content
.
attrDefinition
)
&&
content
.
isEdit
==
1
)
{
if
(
!
isNull
(
content
.
attrDefinition
)
&&
!
$
.
isEmptyObject
(
content
.
attrDefinition
)
&&
(
content
.
isEdit
==
1
||
(
isNull
(
content
.
isEdit
)
&&
content
.
isEdit
+
''
!=
'
0
'
)))
{
// 获取组件中获取值的脚本
var
dsFormComponent
=
content
.
dsFormComponent
;
var
getValueScript
=
getDataUseHandlebars
(
'
{{#this}}
'
+
dsFormComponent
.
jsValue
+
'
{{/this}}
'
,
content
);
...
...
@@ -790,6 +791,7 @@ var dsFormTableUtil = {
initTableSearchUtil
.
initAdvancedSearch
(
this
,
json
.
searchFilter
,
form
,
pageMation
.
searchTips
,
function
()
{
table
.
reloadData
(
id
,
{
page
:
{
curr
:
1
},
where
:
dsFormTableUtil
.
getTableParams
()});
});
dsFormTableUtil
.
initChooseHtml
(
id
,
pageMation
.
whetherChoose
,
json
,
tableCheckBoxUtil
,
form
);
}
});
table
.
on
(
`tool(
${
id
}
)`
,
function
(
obj
)
{
...
...
@@ -804,20 +806,21 @@ var dsFormTableUtil = {
});
},
initChooseHtml
:
function
(
id
,
whetherChoose
,
json
,
tableCheckBoxUtil
)
{
initChooseHtml
:
function
(
id
,
whetherChoose
,
json
,
tableCheckBoxUtil
,
form
)
{
if
(
whetherChoose
==
'
radio
'
)
{
$
(
`#
${
id
}
`
).
next
().
find
(
'
.layui-table-body
'
).
find
(
"
table
"
).
find
(
"
tbody
"
).
children
(
"
tr
"
).
on
(
'
dblclick
'
,
function
(){
$
(
`#
${
id
}
`
).
next
().
find
(
'
.layui-table-body
'
).
find
(
"
table
"
).
find
(
"
tbody
"
).
children
(
"
tr
"
).
on
(
'
dblclick
'
,
function
()
{
var
dubClick
=
$
(
`#
${
id
}
`
).
next
().
find
(
'
.layui-table-body
'
).
find
(
"
table
"
).
find
(
"
tbody
"
).
find
(
"
.layui-table-hover
"
);
dubClick
.
find
(
"
input[type='radio']
"
).
prop
(
"
checked
"
,
true
);
form
.
render
();
var
chooseIndex
=
JSON
.
stringify
(
dubClick
.
data
(
'
index
'
));
var
obj
=
res
.
rows
[
chooseIndex
];
var
obj
=
json
.
rows
[
chooseIndex
];
parent
.
chooseItemMation
=
obj
;
parent
.
refreshCode
=
'
0
'
;
var
index
=
parent
.
layer
.
getFrameIndex
(
window
.
name
);
parent
.
layer
.
close
(
index
);
});
$
(
`#
${
id
}
`
).
next
().
find
(
'
.layui-table-body
'
).
find
(
"
table
"
).
find
(
"
tbody
"
).
children
(
"
tr
"
).
on
(
'
click
'
,
function
(){
$
(
`#
${
id
}
`
).
next
().
find
(
'
.layui-table-body
'
).
find
(
"
table
"
).
find
(
"
tbody
"
).
children
(
"
tr
"
).
on
(
'
click
'
,
function
()
{
var
click
=
$
(
`#
${
id
}
`
).
next
().
find
(
'
.layui-table-body
'
).
find
(
"
table
"
).
find
(
"
tbody
"
).
find
(
"
.layui-table-hover
"
);
click
.
find
(
"
input[type='radio']
"
).
prop
(
"
checked
"
,
true
);
form
.
render
();
...
...
@@ -841,6 +844,7 @@ var dsFormTableUtil = {
return
false
;
}
parent
.
chooseListMation
=
[].
concat
(
selectedData
);
var
index
=
parent
.
layer
.
getFrameIndex
(
window
.
name
);
parent
.
layer
.
close
(
index
);
parent
.
refreshCode
=
'
0
'
;
});
...
...
@@ -889,7 +893,8 @@ var dsFormTableUtil = {
var
header
=
[];
if
(
column
.
whetherChoose
==
'
radio
'
||
column
.
whetherChoose
==
'
checkbox
'
)
{
header
.
push
({
type
:
column
.
whetherChoose
type
:
column
.
whetherChoose
,
fixed
:
'
left
'
});
}
if
(
!
isNull
(
column
.
serialNumColumn
)
&&
column
.
serialNumColumn
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录