Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
doc_wei
Skyeye
提交
30611cb4
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看板
提交
30611cb4
编写于
5月 16, 2024
作者:
L
LAPTOP-UV1MNL38\18023
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'company_server' of
https://gitee.com/doc_wei01/skyeye
into company_server
上级
d42ae8c7
a699a255
变更
15
隐藏空白更改
内联
并排
Showing
15 changed file
with
148 addition
and
104 deletion
+148
-104
activiti/src/main/resources/template/js/activitiCommon/processInstanceDetails.js
...rces/template/js/activitiCommon/processInstanceDetails.js
+2
-0
activiti/src/main/resources/template/js/approvalActiviti/approvalProcessTask.js
...urces/template/js/approvalActiviti/approvalProcessTask.js
+2
-0
activiti/src/main/resources/template/js/myActiviti/pendingProcess.js
...c/main/resources/template/js/myActiviti/pendingProcess.js
+3
-0
activiti/src/main/resources/template/js/myActiviti/processedProcess.js
...main/resources/template/js/myActiviti/processedProcess.js
+60
-41
activiti/src/main/resources/template/tpl/activitiCommon/processInstanceDetails.html
...s/template/tpl/activitiCommon/processInstanceDetails.html
+9
-0
activiti/src/main/resources/template/tpl/approvalActiviti/approvalProcessTask.html
...es/template/tpl/approvalActiviti/approvalProcessTask.html
+6
-0
activiti/src/main/resources/template/tpl/myActiviti/processedProcess.html
...n/resources/template/tpl/myActiviti/processedProcess.html
+11
-14
admin-assistant/src/main/resources/template/js/assetManage/assetManageChoose.js
...in/resources/template/js/assetManage/assetManageChoose.js
+1
-1
shop/src/main/resources/template/js/storeStaff/storeStaffDistribute.js
.../resources/template/js/storeStaff/storeStaffDistribute.js
+33
-22
shop/src/main/resources/template/tpl/storeStaff/storeStaffDistribute.html
...sources/template/tpl/storeStaff/storeStaffDistribute.html
+0
-7
userauth/src/main/resources/template/js/sysEveUserStaff/sysEveUserStaffChoose.js
...rces/template/js/sysEveUserStaff/sysEveUserStaffChoose.js
+1
-1
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/shopUtil.js
.../resources/template/assets/lib/layui/customer/shopUtil.js
+7
-7
web/src/main/resources/template/assets/lib/layui/customer/skyeye/dsFormUtil.js
...s/template/assets/lib/layui/customer/skyeye/dsFormUtil.js
+2
-10
web/src/main/resources/template/json/skyeyeClassEnum.json
web/src/main/resources/template/json/skyeyeClassEnum.json
+10
-1
未找到文件。
activiti/src/main/resources/template/js/activitiCommon/processInstanceDetails.js
浏览文件 @
30611cb4
...
@@ -21,6 +21,8 @@ layui.config({
...
@@ -21,6 +21,8 @@ layui.config({
AjaxPostUtil
.
request
({
url
:
flowableBasePath
+
"
queryProcessInstance
"
,
params
:
{
processInstanceId
:
processInstanceId
},
type
:
'
json
'
,
method
:
'
POST
'
,
callback
:
function
(
data
)
{
AjaxPostUtil
.
request
({
url
:
flowableBasePath
+
"
queryProcessInstance
"
,
params
:
{
processInstanceId
:
processInstanceId
},
type
:
'
json
'
,
method
:
'
POST
'
,
callback
:
function
(
data
)
{
// 加载业务数据
// 加载业务数据
activitiUtil
.
loadBusiness
(
data
.
bean
.
objectId
,
data
.
bean
.
objectKey
,
data
.
bean
.
actFlowId
,
'
details
'
);
activitiUtil
.
loadBusiness
(
data
.
bean
.
objectId
,
data
.
bean
.
objectKey
,
data
.
bean
.
actFlowId
,
'
details
'
);
// 当前审批人
$
(
"
#taskCurrentAssignee
"
).
html
(
getNotUndefinedVal
(
data
.
bean
.
task
?.
taskCurrentAssigneeMation
?.
name
));
// 加载流程图片
// 加载流程图片
$
(
"
#processInstanceIdImg
"
).
attr
(
"
src
"
,
fileBasePath
+
'
images/upload/activiti/
'
+
processInstanceId
+
"
.png?cdnversion=
"
+
Math
.
ceil
(
new
Date
()
/
3600000
));
$
(
"
#processInstanceIdImg
"
).
attr
(
"
src
"
,
fileBasePath
+
'
images/upload/activiti/
'
+
processInstanceId
+
"
.png?cdnversion=
"
+
Math
.
ceil
(
new
Date
()
/
3600000
));
matchingLanguage
();
matchingLanguage
();
...
...
activiti/src/main/resources/template/js/approvalActiviti/approvalProcessTask.js
浏览文件 @
30611cb4
...
@@ -25,6 +25,8 @@ layui.config({
...
@@ -25,6 +25,8 @@ layui.config({
// 加载业务数据
// 加载业务数据
activitiUtil
.
loadBusiness
(
data
.
bean
.
objectId
,
data
.
bean
.
objectKey
,
data
.
bean
.
actFlowId
,
'
edit
'
);
activitiUtil
.
loadBusiness
(
data
.
bean
.
objectId
,
data
.
bean
.
objectKey
,
data
.
bean
.
actFlowId
,
'
edit
'
);
// 当前审批人
$
(
"
#taskCurrentAssignee
"
).
html
(
getNotUndefinedVal
(
data
.
bean
.
task
?.
taskCurrentAssigneeMation
?.
name
));
},
async
:
false
});
},
async
:
false
});
AjaxPostUtil
.
request
({
url
:
flowableBasePath
+
"
activitimode016
"
,
params
:
{
taskId
:
taskId
,
processInstanceId
:
processInstanceId
},
type
:
'
json
'
,
method
:
'
GET
'
,
callback
:
function
(
j
){
AjaxPostUtil
.
request
({
url
:
flowableBasePath
+
"
activitimode016
"
,
params
:
{
taskId
:
taskId
,
processInstanceId
:
processInstanceId
},
type
:
'
json
'
,
method
:
'
GET
'
,
callback
:
function
(
j
){
...
...
activiti/src/main/resources/template/js/myActiviti/pendingProcess.js
浏览文件 @
30611cb4
...
@@ -44,6 +44,9 @@ layui.config({
...
@@ -44,6 +44,9 @@ layui.config({
{
field
:
'
createTime
'
,
title
:
'
申请时间
'
,
align
:
'
center
'
,
width
:
150
,
templet
:
function
(
d
)
{
{
field
:
'
createTime
'
,
title
:
'
申请时间
'
,
align
:
'
center
'
,
width
:
150
,
templet
:
function
(
d
)
{
return
d
.
processMation
.
createTime
;
return
d
.
processMation
.
createTime
;
}},
}},
{
field
:
'
assignee
'
,
title
:
'
当前审批人
'
,
width
:
120
,
templet
:
function
(
d
)
{
return
d
.
processMation
.
createName
;
}},
{
field
:
'
name
'
,
title
:
'
当前节点
'
,
width
:
130
,
templet
:
function
(
d
)
{
{
field
:
'
name
'
,
title
:
'
当前节点
'
,
width
:
130
,
templet
:
function
(
d
)
{
return
'
[
'
+
d
.
name
+
'
]
'
;
return
'
[
'
+
d
.
name
+
'
]
'
;
}},
}},
...
...
activiti/src/main/resources/template/js/myActiviti/processedProcess.js
浏览文件 @
30611cb4
var
processInstanceId
=
""
;
//流程id
// 流程id
var
processInstanceId
=
""
;
var
hisTaskId
=
""
;
//历史审批任务id
// 历史审批任务id
var
hisTaskId
=
""
;
layui
.
config
({
layui
.
config
({
base
:
basePath
,
base
:
basePath
,
...
@@ -14,53 +15,69 @@ layui.config({
...
@@ -14,53 +15,69 @@ layui.config({
table
=
layui
.
table
,
table
=
layui
.
table
,
form
=
layui
.
form
;
form
=
layui
.
form
;
// 我的历史任务
// 我的历史
审批
任务
table
.
render
({
table
.
render
({
id
:
'
messageMyHistoryTaskTable
'
,
id
:
'
messageMyHistoryTaskTable
'
,
elem
:
'
#messageMyHistoryTaskTable
'
,
elem
:
'
#messageMyHistoryTaskTable
'
,
method
:
'
post
'
,
method
:
'
post
'
,
url
:
flowableBasePath
+
'
activitimode014
'
,
url
:
flowableBasePath
+
'
activitimode014
'
,
where
:{}
,
where
:
getTableParams
()
,
even
:
true
,
even
:
true
,
page
:
true
,
page
:
true
,
limits
:
getLimits
(),
limits
:
getLimits
(),
limit
:
getLimit
(),
limit
:
getLimit
(),
cols
:
[[
cols
:
[[
{
title
:
systemLanguage
[
"
com.skyeye.serialNumber
"
][
languageType
],
type
:
'
numbers
'
},
{
title
:
systemLanguage
[
"
com.skyeye.serialNumber
"
][
languageType
],
rowspan
:
'
2
'
,
type
:
'
numbers
'
},
{
field
:
'
processInstanceId
'
,
title
:
'
流程ID
'
,
width
:
100
},
{
field
:
'
processInstanceId
'
,
title
:
'
流程ID
'
,
rowspan
:
'
2
'
,
width
:
280
,
templet
:
function
(
d
)
{
{
field
:
'
taskType
'
,
title
:
'
类型
'
,
width
:
150
,
templet
:
function
(
d
)
{
return
'
<a lay-event="details" class="notice-title-click">
'
+
getNotUndefinedVal
(
d
.
hisTask
?.
processInstanceId
)
+
'
</a>
'
;
return
d
.
processMation
.
title
;
}},
}},
{
field
:
'
createName
'
,
title
:
'
申请人
'
,
width
:
12
0
,
templet
:
function
(
d
)
{
{
field
:
'
taskType
'
,
title
:
'
类型
'
,
rowspan
:
'
2
'
,
width
:
15
0
,
templet
:
function
(
d
)
{
return
d
.
processMation
.
createName
;
return
getNotUndefinedVal
(
d
.
processMation
.
title
)
;
}},
}},
{
field
:
'
create
Time
'
,
title
:
'
申请时间
'
,
align
:
'
center
'
,
width
:
15
0
,
templet
:
function
(
d
)
{
{
field
:
'
create
Name
'
,
title
:
'
申请人
'
,
rowspan
:
'
2
'
,
width
:
12
0
,
templet
:
function
(
d
)
{
return
d
.
processMation
.
createTime
;
return
getNotUndefinedVal
(
d
.
processMation
?.
createName
)
;
}},
}},
{
field
:
'
name
'
,
title
:
'
我处理的节点
'
,
width
:
130
,
templet
:
function
(
d
)
{
{
field
:
'
createTime
'
,
title
:
'
申请时间
'
,
rowspan
:
'
2
'
,
align
:
'
center
'
,
width
:
150
,
templet
:
function
(
d
)
{
return
'
[
'
+
d
.
name
+
'
]
'
;
return
getNotUndefinedVal
(
d
.
processMation
?.
createTime
);
}},
}},
{
field
:
'
agencyName
'
,
title
:
'
受理人
'
,
width
:
80
},
{
field
:
'
assigneeList
'
,
title
:
'
当前审批人
'
,
align
:
'
left
'
,
rowspan
:
'
2
'
,
width
:
150
,
templet
:
function
(
d
)
{
{
field
:
'
endTime
'
,
title
:
'
受理时间
'
,
align
:
'
center
'
,
width
:
140
,
templet
:
function
(
d
)
{
if
(
!
isNull
(
d
.
assigneeList
))
{
if
(
!
isNull
(
d
.
endTime
)){
var
str
=
""
;
var
str
=
d
.
endTime
.
toString
();
$
.
each
(
d
.
assigneeList
,
function
(
i
,
item
)
{
str
=
str
.
substring
(
0
,
str
.
length
-
3
);
str
+=
'
<span class="layui-badge layui-bg-blue">
'
+
item
.
name
+
'
</span><br>
'
;
return
date
(
'
Y-m-d H:i
'
,
str
);
});
}
else
{
return
str
;
return
""
;
}
}
return
''
;
}},
}},
{
field
:
'
weatherEnd
'
,
title
:
'
审批进度
'
,
align
:
'
left
'
,
width
:
80
,
templet
:
function
(
d
)
{
{
title
:
'
我处理的
'
,
colspan
:
'
2
'
,
align
:
'
center
'
},
if
(
d
.
weatherEnd
==
0
){
{
field
:
'
weatherEnd
'
,
title
:
'
审批进度
'
,
align
:
'
left
'
,
rowspan
:
'
2
'
,
width
:
80
,
templet
:
function
(
d
)
{
if
(
d
.
weatherEnd
==
0
)
{
return
"
<span class='state-down'>进行中</span>
"
;
return
"
<span class='state-down'>进行中</span>
"
;
}
else
{
}
else
{
return
"
<span class='state-up'>已完成</span>
"
;
return
"
<span class='state-up'>已完成</span>
"
;
}
}
}},
}},
{
title
:
systemLanguage
[
"
com.skyeye.operation
"
][
languageType
],
fixed
:
'
right
'
,
align
:
'
center
'
,
width
:
240
,
toolbar
:
'
#myHistoryTaskTableBar
'
}
{
title
:
systemLanguage
[
"
com.skyeye.operation
"
][
languageType
],
fixed
:
'
right
'
,
rowspan
:
'
2
'
,
align
:
'
center
'
,
width
:
150
,
toolbar
:
'
#myHistoryTaskTableBar
'
}
]],
],
[
{
field
:
'
hisTaskName
'
,
title
:
'
节点
'
,
width
:
130
,
templet
:
function
(
d
)
{
return
'
[
'
+
getNotUndefinedVal
(
d
.
hisTask
?.
name
)
+
'
]
'
;
}},
{
field
:
'
lastUpdateTime
'
,
title
:
'
处理时间
'
,
width
:
130
,
templet
:
function
(
d
)
{
if
(
!
isNull
(
d
.
hisTask
.
endTime
))
{
var
str
=
d
.
hisTask
.
endTime
.
toString
();
str
=
str
.
substring
(
0
,
str
.
length
-
3
);
return
date
(
'
Y-m-d H:i
'
,
str
);
}
else
{
return
""
;
}
}}
]],
done
:
function
(
json
)
{
done
:
function
(
json
)
{
matchingLanguage
();
matchingLanguage
();
initTableSearchUtil
.
initAdvancedSearch
(
this
,
json
.
searchFilter
,
form
,
"
请输入流程ID
"
,
function
()
{
table
.
reloadData
(
"
messageMyHistoryTaskTable
"
,
{
page
:
{
curr
:
1
},
where
:
getTableParams
()});
});
}
}
});
});
...
@@ -76,11 +93,9 @@ layui.config({
...
@@ -76,11 +93,9 @@ layui.config({
}
}
});
});
//撤回
//
撤回
function
withdraw
(
data
)
{
function
withdraw
(
data
)
{
//流程id
processInstanceId
=
data
.
processInstanceId
;
processInstanceId
=
data
.
processInstanceId
;
//历史审批任务id
hisTaskId
=
data
.
hisTaskId
;
hisTaskId
=
data
.
hisTaskId
;
_openNewWindows
({
_openNewWindows
({
url
:
"
../../tpl/activitiCommon/revokeActiviti.html
"
,
url
:
"
../../tpl/activitiCommon/revokeActiviti.html
"
,
...
@@ -89,12 +104,12 @@ layui.config({
...
@@ -89,12 +104,12 @@ layui.config({
area
:
[
'
70vw
'
,
'
40vh
'
],
area
:
[
'
70vw
'
,
'
40vh
'
],
callBack
:
function
(
refreshCode
)
{
callBack
:
function
(
refreshCode
)
{
winui
.
window
.
msg
(
systemLanguage
[
"
com.skyeye.successfulOperation
"
][
languageType
],
{
icon
:
1
,
time
:
2000
});
winui
.
window
.
msg
(
systemLanguage
[
"
com.skyeye.successfulOperation
"
][
languageType
],
{
icon
:
1
,
time
:
2000
});
reloadMyHistoryTask
Table
();
load
Table
();
}
}
});
});
}
}
//刷新流程图
//
刷新流程图
function
refreshPic
(
data
)
{
function
refreshPic
(
data
)
{
layer
.
confirm
(
'
确认重新生成流程图吗?
'
,
{
icon
:
3
,
title
:
'
刷新流程图操作
'
},
function
(
i
)
{
layer
.
confirm
(
'
确认重新生成流程图吗?
'
,
{
icon
:
3
,
title
:
'
刷新流程图操作
'
},
function
(
i
)
{
layer
.
close
(
i
);
layer
.
close
(
i
);
...
@@ -104,14 +119,18 @@ layui.config({
...
@@ -104,14 +119,18 @@ layui.config({
});
});
}
}
//刷新我的历史任务
form
.
render
();
$
(
"
body
"
).
on
(
"
click
"
,
"
#reloadMyHistoryTaskTable
"
,
function
()
{
$
(
"
body
"
).
on
(
"
click
"
,
"
#reloadMyHistoryTaskTable
"
,
function
()
{
reloadMyHistoryTask
Table
();
load
Table
();
});
});
function
reloadMyHistoryTaskTable
(){
function
loadTable
()
{
table
.
reloadData
(
"
messageMyHistoryTaskTable
"
,
{
where
:{}});
table
.
reloadData
(
"
messageMyHistoryTaskTable
"
,
{
where
:
getTableParams
()});
}
}
function
getTableParams
()
{
return
$
.
extend
(
true
,
{},
initTableSearchUtil
.
getSearchValue
(
"
messageMyHistoryTaskTable
"
));
}
exports
(
'
processedProcess
'
,
{});
exports
(
'
processedProcess
'
,
{});
});
});
activiti/src/main/resources/template/tpl/activitiCommon/processInstanceDetails.html
浏览文件 @
30611cb4
...
@@ -32,6 +32,15 @@
...
@@ -32,6 +32,15 @@
<div
id=
"showForm"
style=
"height: auto; width: 100%; float: left;"
>
<div
id=
"showForm"
style=
"height: auto; width: 100%; float: left;"
>
</div>
</div>
<div
class=
"layui-form-item layui-col-xs12"
>
<span
class=
"hr-title"
>
审批信息
</span><hr>
</div>
<div
class=
"layui-form-item layui-col-xs12"
>
<label
class=
"layui-form-label"
>
当前审批人:
</label>
<div
class=
"layui-input-block ver-center"
id=
"taskCurrentAssignee"
>
</div>
</div>
</div>
</div>
<div
class=
"layui-tab-item"
>
<div
class=
"layui-tab-item"
>
<img
alt=
""
src=
""
id=
"processInstanceIdImg"
>
<img
alt=
""
src=
""
id=
"processInstanceIdImg"
>
...
...
activiti/src/main/resources/template/tpl/approvalActiviti/approvalProcessTask.html
浏览文件 @
30611cb4
...
@@ -42,6 +42,12 @@
...
@@ -42,6 +42,12 @@
<div
class=
"layui-form-item layui-col-xs12"
id=
"multiInstanceBox"
>
<div
class=
"layui-form-item layui-col-xs12"
id=
"multiInstanceBox"
>
</div>
</div>
<div
class=
"layui-form-item layui-col-xs12"
>
<label
class=
"layui-form-label"
>
当前审批人:
</label>
<div
class=
"layui-input-block ver-center"
id=
"taskCurrentAssignee"
>
</div>
</div>
<div
class=
"layui-form-item layui-col-xs12"
>
<div
class=
"layui-form-item layui-col-xs12"
>
<label
class=
"layui-form-label"
><span
id=
"resultTitle"
>
审批结果
</span><i
class=
"red"
>
*
</i></label>
<label
class=
"layui-form-label"
><span
id=
"resultTitle"
>
审批结果
</span><i
class=
"red"
>
*
</i></label>
<div
class=
"layui-input-block winui-radio"
>
<div
class=
"layui-input-block winui-radio"
>
...
...
activiti/src/main/resources/template/tpl/myActiviti/processedProcess.html
浏览文件 @
30611cb4
...
@@ -5,28 +5,25 @@
...
@@ -5,28 +5,25 @@
<title></title>
<title></title>
<link
href=
"../../assets/lib/layui/css/layui.css"
rel=
"stylesheet"
/>
<link
href=
"../../assets/lib/layui/css/layui.css"
rel=
"stylesheet"
/>
<link
href=
"../../assets/lib/winui/css/winui.css"
rel=
"stylesheet"
/>
<link
href=
"../../assets/lib/winui/css/winui.css"
rel=
"stylesheet"
/>
<style>
.layui-table-cell
{
height
:
auto
;
text-overflow
:
inherit
;
overflow
:
visible
;
white-space
:
normal
;
word-wrap
:
break-word
;
}
</style>
</head>
</head>
<body>
<body>
<div
class=
"txtcenter"
style=
"margin:0 auto;padding:10px;"
>
<form
class=
"layui-form layui-form-pane"
action=
""
autocomplete=
"off"
>
<div
class=
"layui-form-item"
>
<div
class=
"layui-inline"
>
<!-- <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" type="button" id="formSearch"><language showName="com.skyeye.search2"></language></button> -->
</div>
</div>
</form>
</div>
<div
class=
"winui-toolbar"
>
<div
class=
"winui-toolbar"
>
<div
class=
"winui-tool"
>
<div
class=
"winui-tool"
>
<button
id=
"reloadMyHistoryTaskTable"
class=
"winui-toolbtn"
><i
class=
"fa fa-refresh"
aria-hidden=
"true"
></i><language
showName=
"com.skyeye.refreshDataBtn"
></language></button>
<button
id=
"reloadMyHistoryTaskTable"
class=
"winui-toolbtn
search-table-btn-right
"
><i
class=
"fa fa-refresh"
aria-hidden=
"true"
></i><language
showName=
"com.skyeye.refreshDataBtn"
></language></button>
</div>
</div>
</div>
</div>
<div
style=
"margin:auto 10px;"
>
<div
style=
"margin:
auto 10px;"
>
<table
id=
"messageMyHistoryTaskTable"
lay-filter=
"messageMyHistoryTaskTable"
></table>
<table
id=
"messageMyHistoryTaskTable"
lay-filter=
"messageMyHistoryTaskTable"
></table>
<script
type=
"text/html"
id=
"myHistoryTaskTableBar"
>
<script
type=
"text/html"
id=
"myHistoryTaskTableBar"
>
<
a
class
=
"
layui-btn layui-btn-xs
"
lay
-
event
=
"
details
"
>
详情
<
/a
>
<
a
class
=
"
layui-btn layui-btn-xs
"
lay
-
event
=
"
refreshPic
"
>
刷新流程图
<
/a
>
<
a
class
=
"
layui-btn layui-btn-xs
"
lay
-
event
=
"
refreshPic
"
>
刷新流程图
<
/a
>
{{
#
if
(
d
.
weatherEnd
==
0
){
}}
{{
#
if
(
d
.
weatherEnd
==
0
){
}}
<
a
class
=
"
layui-btn layui-btn-xs layui-btn-danger
"
lay
-
event
=
"
withdraw
"
>
撤回
<
/a
>
<
a
class
=
"
layui-btn layui-btn-xs layui-btn-danger
"
lay
-
event
=
"
withdraw
"
>
撤回
<
/a
>
...
...
admin-assistant/src/main/resources/template/js/assetManage/assetManageChoose.js
浏览文件 @
30611cb4
...
@@ -125,7 +125,7 @@ layui.config({
...
@@ -125,7 +125,7 @@ layui.config({
// 保存
// 保存
$
(
"
body
"
).
on
(
"
click
"
,
"
#saveCheckBox
"
,
function
()
{
$
(
"
body
"
).
on
(
"
click
"
,
"
#saveCheckBox
"
,
function
()
{
var
selectedData
=
tableCheckBoxUtil
.
getValue
({
var
selectedData
=
tableCheckBoxUtil
.
getValue
List
({
gridId
:
'
messageTable
'
gridId
:
'
messageTable
'
});
});
if
(
selectedData
.
length
==
0
)
{
if
(
selectedData
.
length
==
0
)
{
...
...
shop/src/main/resources/template/js/storeStaff/storeStaffDistribute.js
浏览文件 @
30611cb4
...
@@ -10,30 +10,31 @@ layui.config({
...
@@ -10,30 +10,31 @@ layui.config({
var
$
=
layui
.
$
,
var
$
=
layui
.
$
,
form
=
layui
.
form
,
form
=
layui
.
form
,
table
=
layui
.
table
;
table
=
layui
.
table
;
var
selTemplate
=
getFileContent
(
'
tpl/template/select-option.tpl
'
);
authBtn
(
'
1643984717466
'
);
authBtn
(
'
1643984717466
'
);
// 加载区域
// 加载区域
shopUtil
.
getShopAreaMation
(
function
(
json
){
shopUtil
.
getShopAreaMation
(
function
(
json
){
$
(
"
#areaId
"
).
html
(
getDataUseHandlebars
(
$
(
"
#selectTemplate
"
).
html
()
,
json
));
$
(
"
#areaId
"
).
html
(
getDataUseHandlebars
(
selTemplate
,
json
));
loadStore
(
"
-
"
);
loadStore
(
""
);
});
});
form
.
on
(
'
select(areaId)
'
,
function
(
data
)
{
form
.
on
(
'
select(areaId)
'
,
function
(
data
)
{
var
thisRowValue
=
data
.
value
;
var
thisRowValue
=
data
.
value
;
thisRowValue
=
isNull
(
thisRowValue
)
?
"
-
"
:
thisRowValue
;
thisRowValue
=
isNull
(
thisRowValue
)
?
""
:
thisRowValue
;
loadStore
(
thisRowValue
);
loadStore
(
thisRowValue
);
});
});
matchingLanguage
();
matchingLanguage
();
form
.
render
();
form
.
render
();
var
chooseStoreId
=
""
;
var
chooseStoreId
=
""
;
function
loadStore
(
areaId
)
{
function
loadStore
(
shopAreaId
)
{
table
.
render
({
table
.
render
({
id
:
'
storeTable
'
,
id
:
'
storeTable
'
,
elem
:
'
#storeTable
'
,
elem
:
'
#storeTable
'
,
method
:
'
get
'
,
method
:
'
get
'
,
url
:
s
hopBasePath
+
'
queryStoreList
'
,
url
:
s
ysMainMation
.
shopBasePath
+
'
queryStoreListByParams
'
,
where
:
{
areaId
:
a
reaId
,
enabled
:
1
},
where
:
{
shopAreaId
:
shopA
reaId
,
enabled
:
1
},
even
:
false
,
even
:
false
,
page
:
false
,
page
:
false
,
limits
:
getLimits
(),
limits
:
getLimits
(),
...
@@ -46,39 +47,48 @@ layui.config({
...
@@ -46,39 +47,48 @@ layui.config({
]],
]],
done
:
function
(
json
)
{
done
:
function
(
json
)
{
matchingLanguage
();
matchingLanguage
();
chooseStoreId
=
""
;
loadStaff
(
""
);
}
}
});
});
table
.
on
(
'
tool(storeTable)
'
,
function
(
obj
)
{
table
.
on
(
'
tool(storeTable)
'
,
function
(
obj
)
{
var
data
=
obj
.
data
;
var
data
=
obj
.
data
;
var
layEvent
=
obj
.
event
;
var
layEvent
=
obj
.
event
;
if
(
layEvent
==
'
select
'
)
{
if
(
layEvent
==
'
select
'
)
{
chooseStoreId
=
data
.
id
;
chooseStoreId
=
data
.
id
;
loadStaff
(
data
.
id
);
loadStaff
(
data
.
id
);
}
}
});
});
chooseStoreId
=
""
;
loadStaff
(
"
-
"
);
}
}
function
loadStaff
(
storeId
){
function
loadStaff
(
storeId
)
{
table
.
render
({
table
.
render
({
id
:
'
messageTable
'
,
id
:
'
messageTable
'
,
elem
:
'
#messageTable
'
,
elem
:
'
#messageTable
'
,
method
:
'
post
'
,
method
:
'
post
'
,
url
:
shopBasePath
+
'
storeStaff001
'
,
url
:
s
ysMainMation
.
s
hopBasePath
+
'
storeStaff001
'
,
where
:
{
store
Id
:
storeId
},
where
:
{
object
Id
:
storeId
},
even
:
true
,
even
:
true
,
page
:
true
,
page
:
true
,
limits
:
getLimits
(),
limits
:
getLimits
(),
limit
:
getLimit
(),
limit
:
getLimit
(),
cols
:
[[
cols
:
[[
{
title
:
systemLanguage
[
"
com.skyeye.serialNumber
"
][
languageType
],
fixed
:
'
left
'
,
type
:
'
numbers
'
},
{
title
:
systemLanguage
[
"
com.skyeye.serialNumber
"
][
languageType
],
fixed
:
'
left
'
,
type
:
'
numbers
'
},
{
field
:
'
jobNumber
'
,
title
:
'
工号
'
,
align
:
'
left
'
,
width
:
140
},
{
field
:
'
jobNumber
'
,
title
:
'
工号
'
,
align
:
'
left
'
,
width
:
140
,
templet
:
function
(
d
)
{
{
field
:
'
userName
'
,
title
:
'
姓名
'
,
width
:
120
},
return
getNotUndefinedVal
(
d
.
staffMation
?.
jobNumber
);
{
field
:
'
companyName
'
,
title
:
'
企业
'
,
width
:
150
},
}},
{
field
:
'
departmentName
'
,
title
:
'
部门
'
,
width
:
140
},
{
field
:
'
userName
'
,
title
:
'
姓名
'
,
width
:
120
,
templet
:
function
(
d
)
{
{
field
:
'
jobName
'
,
title
:
'
职位
'
,
width
:
140
},
return
getNotUndefinedVal
(
d
.
staffMation
?.
userName
);
}},
{
field
:
'
companyName
'
,
title
:
'
企业
'
,
width
:
150
,
templet
:
function
(
d
)
{
return
getNotUndefinedVal
(
d
.
staffMation
?.
companyName
);
}},
{
field
:
'
departmentName
'
,
title
:
'
部门
'
,
width
:
140
,
templet
:
function
(
d
)
{
return
getNotUndefinedVal
(
d
.
staffMation
?.
departmentName
);
}},
{
field
:
'
jobName
'
,
title
:
'
职位
'
,
width
:
140
,
templet
:
function
(
d
)
{
return
getNotUndefinedVal
(
d
.
staffMation
?.
jobName
);
}},
{
title
:
systemLanguage
[
"
com.skyeye.operation
"
][
languageType
],
fixed
:
'
right
'
,
align
:
'
center
'
,
width
:
150
,
toolbar
:
'
#tableBar
'
}
{
title
:
systemLanguage
[
"
com.skyeye.operation
"
][
languageType
],
fixed
:
'
right
'
,
align
:
'
center
'
,
width
:
150
,
toolbar
:
'
#tableBar
'
}
]],
]],
done
:
function
(
json
)
{
done
:
function
(
json
)
{
...
@@ -99,16 +109,16 @@ layui.config({
...
@@ -99,16 +109,16 @@ layui.config({
function
delet
(
data
)
{
function
delet
(
data
)
{
layer
.
confirm
(
systemLanguage
[
"
com.skyeye.deleteOperationMsg
"
][
languageType
],
{
icon
:
3
,
title
:
systemLanguage
[
"
com.skyeye.deleteOperation
"
][
languageType
]},
function
(
index
)
{
layer
.
confirm
(
systemLanguage
[
"
com.skyeye.deleteOperationMsg
"
][
languageType
],
{
icon
:
3
,
title
:
systemLanguage
[
"
com.skyeye.deleteOperation
"
][
languageType
]},
function
(
index
)
{
layer
.
close
(
index
);
layer
.
close
(
index
);
AjaxPostUtil
.
request
({
url
:
shopBasePath
+
"
storeStaff002
"
,
params
:
{
id
:
data
.
id
},
type
:
'
json
'
,
method
:
"
POST
"
,
callback
:
function
(
json
)
{
AjaxPostUtil
.
request
({
url
:
s
ysMainMation
.
s
hopBasePath
+
"
storeStaff002
"
,
params
:
{
id
:
data
.
id
},
type
:
'
json
'
,
method
:
"
POST
"
,
callback
:
function
(
json
)
{
winui
.
window
.
msg
(
systemLanguage
[
"
com.skyeye.deleteOperationSuccessMsg
"
][
languageType
],
{
icon
:
1
,
time
:
2000
});
winui
.
window
.
msg
(
systemLanguage
[
"
com.skyeye.deleteOperationSuccessMsg
"
][
languageType
],
{
icon
:
1
,
time
:
2000
});
table
.
reloadData
(
"
messageTable
"
,
{
page
:
{
curr
:
1
},
where
:
{
store
Id
:
chooseStoreId
}})
table
.
reloadData
(
"
messageTable
"
,
{
page
:
{
curr
:
1
},
where
:
{
object
Id
:
chooseStoreId
}})
}});
}});
});
});
}
}
// 添加
// 添加
$
(
"
body
"
).
on
(
"
click
"
,
"
#addBean
"
,
function
()
{
$
(
"
body
"
).
on
(
"
click
"
,
"
#addBean
"
,
function
()
{
if
(
isNull
(
chooseStoreId
))
{
if
(
isNull
(
chooseStoreId
))
{
winui
.
window
.
msg
(
'
请先选择门店信息.
'
,
{
icon
:
2
,
time
:
2000
});
winui
.
window
.
msg
(
'
请先选择门店信息.
'
,
{
icon
:
2
,
time
:
2000
});
return
false
;
return
false
;
}
}
...
@@ -116,6 +126,7 @@ layui.config({
...
@@ -116,6 +126,7 @@ layui.config({
systemCommonUtil
.
checkStaffMation
=
[];
// 选择时返回的对象
systemCommonUtil
.
checkStaffMation
=
[];
// 选择时返回的对象
systemCommonUtil
.
openSysAllUserStaffChoosePage
(
function
(
checkStaffMation
){
systemCommonUtil
.
openSysAllUserStaffChoosePage
(
function
(
checkStaffMation
){
var
list
=
new
Array
();
var
list
=
new
Array
();
console
.
log
(
checkStaffMation
)
$
.
each
(
checkStaffMation
,
function
(
i
,
item
)
{
$
.
each
(
checkStaffMation
,
function
(
i
,
item
)
{
list
.
push
(
item
.
id
);
list
.
push
(
item
.
id
);
});
});
...
@@ -123,7 +134,7 @@ layui.config({
...
@@ -123,7 +134,7 @@ layui.config({
storeId
:
chooseStoreId
,
storeId
:
chooseStoreId
,
staffId
:
JSON
.
stringify
(
list
)
staffId
:
JSON
.
stringify
(
list
)
};
};
AjaxPostUtil
.
request
({
url
:
shopBasePath
+
"
storeStaff003
"
,
params
:
params
,
type
:
'
json
'
,
method
:
"
POST
"
,
callback
:
function
(
json
)
{
AjaxPostUtil
.
request
({
url
:
s
ysMainMation
.
s
hopBasePath
+
"
storeStaff003
"
,
params
:
params
,
type
:
'
json
'
,
method
:
"
POST
"
,
callback
:
function
(
json
)
{
loadStaff
(
chooseStoreId
);
loadStaff
(
chooseStoreId
);
}});
}});
});
});
...
...
shop/src/main/resources/template/tpl/storeStaff/storeStaffDistribute.html
浏览文件 @
30611cb4
...
@@ -51,13 +51,6 @@
...
@@ -51,13 +51,6 @@
</form>
</form>
</div>
</div>
<script
type=
"text/x-handlebars-template"
id=
"selectTemplate"
>
<
option
value
=
"
-
"
>
默认区域
<
/option
>
{{
#
each
rows
}}
<
option
value
=
"
{{id}}
"
>
{{
name
}}
<
/option
>
{{
/
each
}}
</script>
<script
src=
"../../assets/lib/layui/layui.js"
></script>
<script
src=
"../../assets/lib/layui/layui.js"
></script>
<script
src=
"../../assets/lib/layui/custom.js"
></script>
<script
src=
"../../assets/lib/layui/custom.js"
></script>
<script
type=
"text/javascript"
>
<script
type=
"text/javascript"
>
...
...
userauth/src/main/resources/template/js/sysEveUserStaff/sysEveUserStaffChoose.js
浏览文件 @
30611cb4
...
@@ -123,7 +123,7 @@ layui.config({
...
@@ -123,7 +123,7 @@ layui.config({
// 保存
// 保存
$
(
"
body
"
).
on
(
"
click
"
,
"
#saveCheckBox
"
,
function
()
{
$
(
"
body
"
).
on
(
"
click
"
,
"
#saveCheckBox
"
,
function
()
{
var
selectedData
=
tableCheckBoxUtil
.
getValue
({
var
selectedData
=
tableCheckBoxUtil
.
getValue
List
({
gridId
:
'
messageTable
'
gridId
:
'
messageTable
'
});
});
if
(
selectedData
.
length
==
0
)
{
if
(
selectedData
.
length
==
0
)
{
...
...
web/src/main/resources/template/assets/lib/layui/custom.js
浏览文件 @
30611cb4
...
@@ -102,6 +102,7 @@ var serviceMap = [
...
@@ -102,6 +102,7 @@ var serviceMap = [
{
"
id
"
:
"
sysMainMation.projectBasePath
"
,
"
name
"
:
"
PM项目服务
"
},
{
"
id
"
:
"
sysMainMation.projectBasePath
"
,
"
name
"
:
"
PM项目服务
"
},
{
"
id
"
:
"
sysMainMation.sealServiceBasePath
"
,
"
name
"
:
"
售后工单服务
"
},
{
"
id
"
:
"
sysMainMation.sealServiceBasePath
"
,
"
name
"
:
"
售后工单服务
"
},
{
"
id
"
:
"
sysMainMation.autoBasePath
"
,
"
name
"
:
"
自动化服务
"
},
{
"
id
"
:
"
sysMainMation.autoBasePath
"
,
"
name
"
:
"
自动化服务
"
},
{
"
id
"
:
"
sysMainMation.wallBasePath
"
,
"
name
"
:
"
表白墙服务
"
},
]
]
function
getRequestHeaders
()
{
function
getRequestHeaders
()
{
...
...
web/src/main/resources/template/assets/lib/layui/customer/shopUtil.js
浏览文件 @
30611cb4
...
@@ -95,7 +95,7 @@ var shopUtil = {
...
@@ -95,7 +95,7 @@ var shopUtil = {
* @returns {string}
* @returns {string}
*/
*/
getKeepFitOrderStateName
:
function
(
data
)
{
getKeepFitOrderStateName
:
function
(
data
)
{
if
(
data
.
cancleState
==
1
){
if
(
data
.
cancleState
==
1
)
{
if
(
data
.
state
==
1
){
if
(
data
.
state
==
1
){
return
"
<span class='state-down'>保养中</span>
"
;
return
"
<span class='state-down'>保养中</span>
"
;
}
else
if
(
data
.
state
==
2
){
}
else
if
(
data
.
state
==
2
){
...
@@ -114,8 +114,8 @@ var shopUtil = {
...
@@ -114,8 +114,8 @@ var shopUtil = {
* @param callback 回执函数
* @param callback 回执函数
*/
*/
getShopAreaMation
:
function
(
callback
)
{
getShopAreaMation
:
function
(
callback
)
{
AjaxPostUtil
.
request
({
url
:
s
hopBasePath
+
"
query
AreaList
"
,
params
:
{},
type
:
'
json
'
,
method
:
"
GET
"
,
callback
:
function
(
json
)
{
AjaxPostUtil
.
request
({
url
:
s
ysMainMation
.
shopBasePath
+
"
queryAllEnabled
AreaList
"
,
params
:
{},
type
:
'
json
'
,
method
:
"
GET
"
,
callback
:
function
(
json
)
{
if
(
typeof
(
callback
)
==
"
function
"
)
{
if
(
typeof
(
callback
)
==
"
function
"
)
{
callback
(
json
);
callback
(
json
);
}
}
},
async
:
false
});
},
async
:
false
});
...
@@ -127,7 +127,7 @@ var shopUtil = {
...
@@ -127,7 +127,7 @@ var shopUtil = {
* @param callback 回执函数
* @param callback 回执函数
*/
*/
queryStaffBelongAreaList
:
function
(
callback
)
{
queryStaffBelongAreaList
:
function
(
callback
)
{
AjaxPostUtil
.
request
({
url
:
shopBasePath
+
"
storeStaff004
"
,
params
:
{},
type
:
'
json
'
,
method
:
"
GET
"
,
callback
:
function
(
json
)
{
AjaxPostUtil
.
request
({
url
:
s
ysMainMation
.
s
hopBasePath
+
"
storeStaff004
"
,
params
:
{},
type
:
'
json
'
,
method
:
"
GET
"
,
callback
:
function
(
json
)
{
if
(
typeof
(
callback
)
==
"
function
"
)
{
if
(
typeof
(
callback
)
==
"
function
"
)
{
callback
(
json
);
callback
(
json
);
}
}
...
@@ -140,7 +140,7 @@ var shopUtil = {
...
@@ -140,7 +140,7 @@ var shopUtil = {
* @param callback 回执函数
* @param callback 回执函数
*/
*/
queryStaffBelongStoreList
:
function
(
callback
)
{
queryStaffBelongStoreList
:
function
(
callback
)
{
AjaxPostUtil
.
request
({
url
:
shopBasePath
+
"
storeStaff005
"
,
params
:
{},
type
:
'
json
'
,
method
:
"
GET
"
,
callback
:
function
(
json
)
{
AjaxPostUtil
.
request
({
url
:
s
ysMainMation
.
s
hopBasePath
+
"
storeStaff005
"
,
params
:
{},
type
:
'
json
'
,
method
:
"
GET
"
,
callback
:
function
(
json
)
{
if
(
typeof
(
callback
)
==
"
function
"
)
{
if
(
typeof
(
callback
)
==
"
function
"
)
{
callback
(
json
);
callback
(
json
);
}
}
...
@@ -157,7 +157,7 @@ var shopUtil = {
...
@@ -157,7 +157,7 @@ var shopUtil = {
if
(
isNull
(
areaId
)){
if
(
isNull
(
areaId
)){
return
[];
return
[];
}
}
AjaxPostUtil
.
request
({
url
:
shopBasePath
+
"
queryStoreList
"
,
params
:
{
areaId
:
areaId
},
type
:
'
json
'
,
method
:
"
GET
"
,
callback
:
function
(
json
)
{
AjaxPostUtil
.
request
({
url
:
s
ysMainMation
.
s
hopBasePath
+
"
queryStoreList
"
,
params
:
{
areaId
:
areaId
},
type
:
'
json
'
,
method
:
"
GET
"
,
callback
:
function
(
json
)
{
if
(
typeof
(
callback
)
==
"
function
"
)
{
if
(
typeof
(
callback
)
==
"
function
"
)
{
callback
(
json
);
callback
(
json
);
}
}
...
@@ -174,7 +174,7 @@ var shopUtil = {
...
@@ -174,7 +174,7 @@ var shopUtil = {
limit
:
1000
,
limit
:
1000
,
page
:
1
page
:
1
};
};
AjaxPostUtil
.
request
({
url
:
shopBasePath
+
"
store001
"
,
params
:
params
,
type
:
'
json
'
,
method
:
"
POST
"
,
callback
:
function
(
json
)
{
AjaxPostUtil
.
request
({
url
:
s
ysMainMation
.
s
hopBasePath
+
"
store001
"
,
params
:
params
,
type
:
'
json
'
,
method
:
"
POST
"
,
callback
:
function
(
json
)
{
if
(
typeof
(
callback
)
==
"
function
"
)
{
if
(
typeof
(
callback
)
==
"
function
"
)
{
callback
(
json
);
callback
(
json
);
}
}
...
...
web/src/main/resources/template/assets/lib/layui/customer/skyeye/dsFormUtil.js
浏览文件 @
30611cb4
...
@@ -1247,16 +1247,8 @@ var dsFormColumnUtil = {
...
@@ -1247,16 +1247,8 @@ var dsFormColumnUtil = {
var
value
=
d
.
value
;
var
value
=
d
.
value
;
// 获取属性对应的组件编码---todo 后续根据编号加载对应的dom
// 获取属性对应的组件编码---todo 后续根据编号加载对应的dom
var
numCode
=
dsFormColumnUtil
.
getAttrKeyNumCode
(
attrKey
);
var
numCode
=
dsFormColumnUtil
.
getAttrKeyNumCode
(
attrKey
);
if
(
isNull
(
numCode
))
{
return
`<input type="text" id="value
${
d
.
id
}
" placeholder="请输入值,如果有多个,请用英文逗号隔开" cus-id="
${
d
.
id
}
" class="layui-input tableInput" win-verify="required" `
+
return
`<input type="text" id="value
${
d
.
id
}
" placeholder="请输入值,如果有多个,请用英文逗号隔开" cus-id="
${
d
.
id
}
" class="layui-input tableInput" win-verify="required" `
+
`value="`
+
(
isNull
(
displayValue
)
?
""
:
displayValue
)
+
`"/>`
`value="`
+
(
isNull
(
displayValue
)
?
""
:
displayValue
)
+
`"/>`
}
else
{
if
(
numCode
==
'
enumCardSolt
'
||
numCode
==
'
dictDataCardSolt
'
)
{
// 枚举卡槽/数据字典卡槽
}
}
return
'
暂不支持
'
;
},
},
getAttrKeyNumCode
:
function
(
attrKey
)
{
getAttrKeyNumCode
:
function
(
attrKey
)
{
...
...
web/src/main/resources/template/json/skyeyeClassEnum.json
浏览文件 @
30611cb4
...
@@ -166,5 +166,14 @@
...
@@ -166,5 +166,14 @@
"reportDataFromType"
:
{
"name"
:
"报表-数据来源类型"
,
"className"
:
"skyeye-report#com.skyeye.datafrom.classenum.ReportDataFromType"
},
"reportDataFromType"
:
{
"name"
:
"报表-数据来源类型"
,
"className"
:
"skyeye-report#com.skyeye.datafrom.classenum.ReportDataFromType"
},
"storeOnlineBookType"
:
{
"name"
:
"商城-门店线上预约类型"
,
"className"
:
"skyeye-shop#com.skyeye.classenum.StoreOnlineBookType"
}
"storeOnlineBookType"
:
{
"name"
:
"商城-门店线上预约类型"
,
"className"
:
"skyeye-shop#com.skyeye.classenum.StoreOnlineBookType"
},
"studentStateEnum"
:
{
"name"
:
"表白墙-学生审核状态"
,
"className"
:
"skyeye-wall#com.skyeye.certification.classenum.StateEnum"
},
"studentStateEnum2"
:
{
"name"
:
"表白墙-学生审核状态-审核页面"
,
"className"
:
"skyeye-wall#com.skyeye.certification.classenum.StateEnum"
,
"filterKey"
:
"id"
,
"filterValue"
:
"3,4"
}
}
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录