Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Skyeye云
Skyeye
提交
8ea6c61a
S
Skyeye
项目概览
Skyeye云
/
Skyeye
通知
1432
Star
162
Fork
130
代码
文件
提交
分支
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看板
提交
8ea6c61a
编写于
6月 22, 2023
作者:
Skyeye云
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
证照管理托管到表单布局
上级
ec5a6766
变更
13
隐藏空白更改
内联
并排
Showing
13 changed file
with
15 addition
and
814 deletion
+15
-814
admin-assistant/src/main/resources/template/js/licenceManage/licenceManageAdd.js
...n/resources/template/js/licenceManage/licenceManageAdd.js
+0
-124
admin-assistant/src/main/resources/template/js/licenceManage/licenceManageDetails.js
...sources/template/js/licenceManage/licenceManageDetails.js
+0
-37
admin-assistant/src/main/resources/template/js/licenceManage/licenceManageEdit.js
.../resources/template/js/licenceManage/licenceManageEdit.js
+0
-167
admin-assistant/src/main/resources/template/js/licenceManage/licenceManageList.js
.../resources/template/js/licenceManage/licenceManageList.js
+0
-131
admin-assistant/src/main/resources/template/tpl/licenceManage/licenceManageAdd.html
...esources/template/tpl/licenceManage/licenceManageAdd.html
+0
-101
admin-assistant/src/main/resources/template/tpl/licenceManage/licenceManageDetails.html
...rces/template/tpl/licenceManage/licenceManageDetails.html
+0
-21
admin-assistant/src/main/resources/template/tpl/licenceManage/licenceManageDetailsTemplate.tpl
...mplate/tpl/licenceManage/licenceManageDetailsTemplate.tpl
+0
-73
admin-assistant/src/main/resources/template/tpl/licenceManage/licenceManageEdit.html
...sources/template/tpl/licenceManage/licenceManageEdit.html
+0
-21
admin-assistant/src/main/resources/template/tpl/licenceManage/licenceManageEditTemplate.tpl
.../template/tpl/licenceManage/licenceManageEditTemplate.tpl
+0
-83
admin-assistant/src/main/resources/template/tpl/licenceManage/licenceManageList.html
...sources/template/tpl/licenceManage/licenceManageList.html
+0
-49
common/src/main/resources/template/js/dsFormPage/editPageContent.js
.../main/resources/template/js/dsFormPage/editPageContent.js
+3
-3
web/src/main/resources/template/assets/lib/layui/customer/skyeye/dsFormUtil.js
...s/template/assets/lib/layui/customer/skyeye/dsFormUtil.js
+10
-2
web/src/main/resources/template/assets/lib/winui/winui.js
web/src/main/resources/template/assets/lib/winui/winui.js
+2
-2
未找到文件。
admin-assistant/src/main/resources/template/js/licenceManage/licenceManageAdd.js
已删除
100644 → 0
浏览文件 @
ec5a6766
var
userList
=
new
Array
();
//选择用户返回的集合或者进行回显的集合
var
borrowList
=
new
Array
();
//选择用户返回的集合或者进行回显的集合
// 证照管理
layui
.
config
({
base
:
basePath
,
version
:
skyeyeVersion
}).
extend
({
window
:
'
js/winui.window
'
}).
define
([
'
window
'
,
'
jquery
'
,
'
winui
'
,
'
fileUpload
'
,
'
tagEditor
'
,
'
laydate
'
],
function
(
exports
)
{
winui
.
renderColor
();
layui
.
use
([
'
form
'
],
function
(
form
)
{
var
index
=
parent
.
layer
.
getFrameIndex
(
window
.
name
);
var
$
=
layui
.
$
,
laydate
=
layui
.
laydate
;
// 签发时间
laydate
.
render
({
elem
:
'
#issueTime
'
,
type
:
'
date
'
,
trigger
:
'
click
'
});
// 下次年审时间
laydate
.
render
({
elem
:
'
#nextAnnualReview
'
,
type
:
'
date
'
,
trigger
:
'
click
'
});
// 有效期至
laydate
.
render
({
elem
:
'
#termOfValidityTime
'
,
type
:
'
date
'
,
trigger
:
'
click
'
});
form
.
on
(
'
radio(annualReview)
'
,
function
(
data
)
{
var
val
=
data
.
value
;
if
(
val
==
'
2
'
){
$
(
"
#nextTime
"
).
addClass
(
'
layui-hide
'
);
$
(
"
#nextAnnualReview
"
).
val
(
""
);
}
else
if
(
val
==
'
1
'
){
$
(
"
#nextTime
"
).
removeClass
(
'
layui-hide
'
);
}
else
{
winui
.
window
.
msg
(
'
状态值错误
'
,
{
icon
:
2
,
time
:
2000
});
}
});
form
.
on
(
'
radio(termOfValidity)
'
,
function
(
data
)
{
var
val
=
data
.
value
;
if
(
val
==
'
2
'
){
$
(
"
#termTime
"
).
removeClass
(
'
layui-hide
'
);
}
else
if
(
val
==
'
1
'
){
$
(
"
#termTime
"
).
addClass
(
'
layui-hide
'
);
$
(
"
#termOfValidityTime
"
).
val
(
""
);
}
else
{
winui
.
window
.
msg
(
'
状态值错误
'
,
{
icon
:
2
,
time
:
2000
});
}
});
skyeyeEnclosure
.
init
(
'
enclosureUpload
'
);
matchingLanguage
();
form
.
render
();
form
.
on
(
'
submit(formAddBean)
'
,
function
(
data
)
{
if
(
winui
.
verifyForm
(
data
.
elem
))
{
var
params
=
{
licenceName
:
$
(
"
#licenceName
"
).
val
(),
licenceNum
:
$
(
"
#licenceNum
"
).
val
(),
issuingOrganization
:
$
(
"
#issuingOrganization
"
).
val
(),
issueTime
:
$
(
"
#issueTime
"
).
val
(),
annualReview
:
data
.
field
.
annualReview
,
nextAnnualReview
:
$
(
"
#nextAnnualReview
"
).
val
(),
termOfValidity
:
data
.
field
.
termOfValidity
,
termOfValidityTime
:
$
(
"
#termOfValidityTime
"
).
val
(),
roomAddDesc
:
$
(
"
#roomAddDesc
"
).
val
(),
enclosureInfo
:
skyeyeEnclosure
.
getEnclosureIdsByBoxId
(
'
enclosureUpload
'
),
licenceAdmin
:
systemCommonUtil
.
tagEditorGetItemData
(
'
licenceAdmin
'
,
userList
),
borrowId
:
systemCommonUtil
.
tagEditorGetItemData
(
'
borrowId
'
,
borrowList
)
};
AjaxPostUtil
.
request
({
url
:
flowableBasePath
+
"
licence002
"
,
params
:
params
,
type
:
'
json
'
,
callback
:
function
(
json
)
{
parent
.
layer
.
close
(
index
);
parent
.
refreshCode
=
'
0
'
;
}});
}
return
false
;
});
// 管理人
$
(
'
#licenceAdmin
'
).
tagEditor
({
initialTags
:
[],
placeholder
:
'
请选择管理人
'
,
editorTag
:
false
,
beforeTagDelete
:
function
(
field
,
editor
,
tags
,
val
)
{
userList
=
[].
concat
(
arrayUtil
.
removeArrayPointName
(
userList
,
val
));
}
});
// 管理人选择
$
(
"
body
"
).
on
(
"
click
"
,
"
#userNameSelPeople
"
,
function
(
e
)
{
systemCommonUtil
.
userReturnList
=
[].
concat
(
userList
);
systemCommonUtil
.
chooseOrNotMy
=
"
1
"
;
// 人员列表中是否包含自己--1.包含;其他参数不包含
systemCommonUtil
.
chooseOrNotEmail
=
"
2
"
;
// 人员列表中是否必须绑定邮箱--1.必须;其他参数没必要
systemCommonUtil
.
checkType
=
"
2
"
;
// 人员选择类型,1.多选;其他。单选
systemCommonUtil
.
openSysUserStaffChoosePage
(
function
(
userReturnList
)
{
// 重置数据
userList
=
[].
concat
(
systemCommonUtil
.
tagEditorResetData
(
'
licenceAdmin
'
,
userReturnList
));
});
});
// 借用人
$
(
'
#borrowId
'
).
tagEditor
({
initialTags
:
[],
placeholder
:
'
请选择借用人
'
,
editorTag
:
false
,
beforeTagDelete
:
function
(
field
,
editor
,
tags
,
val
)
{
borrowList
=
[].
concat
(
arrayUtil
.
removeArrayPointName
(
borrowList
,
val
));
}
});
// 借用人选择
$
(
"
body
"
).
on
(
"
click
"
,
"
#borrowNameSelPeople
"
,
function
(
e
)
{
systemCommonUtil
.
userReturnList
=
[].
concat
(
borrowList
);
systemCommonUtil
.
chooseOrNotMy
=
"
1
"
;
// 人员列表中是否包含自己--1.包含;其他参数不包含
systemCommonUtil
.
chooseOrNotEmail
=
"
2
"
;
// 人员列表中是否必须绑定邮箱--1.必须;其他参数没必要
systemCommonUtil
.
checkType
=
"
2
"
;
// 人员选择类型,1.多选;其他。单选
systemCommonUtil
.
openSysUserStaffChoosePage
(
function
(
userReturnList
)
{
// 重置数据
borrowList
=
[].
concat
(
systemCommonUtil
.
tagEditorResetData
(
'
borrowId
'
,
userReturnList
));
});
});
$
(
"
body
"
).
on
(
"
click
"
,
"
#cancle
"
,
function
()
{
parent
.
layer
.
close
(
index
);
});
});
});
\ No newline at end of file
admin-assistant/src/main/resources/template/js/licenceManage/licenceManageDetails.js
已删除
100644 → 0
浏览文件 @
ec5a6766
layui
.
config
({
base
:
basePath
,
version
:
skyeyeVersion
}).
extend
({
window
:
'
js/winui.window
'
}).
define
([
'
window
'
,
'
jquery
'
,
'
winui
'
],
function
(
exports
)
{
winui
.
renderColor
();
layui
.
use
([
'
form
'
],
function
(
form
)
{
var
index
=
parent
.
layer
.
getFrameIndex
(
window
.
name
);
var
$
=
layui
.
$
;
showGrid
({
id
:
"
showForm
"
,
url
:
flowableBasePath
+
"
licence006
"
,
params
:
{
rowId
:
parent
.
rowId
},
pagination
:
false
,
template
:
getFileContent
(
'
tpl/licenceManage/licenceManageDetailsTemplate.tpl
'
),
ajaxSendLoadBefore
:
function
(
hdb
)
{
},
ajaxSendAfter
:
function
(
json
)
{
if
(
json
.
bean
.
annualReview
==
"
否
"
){
$
(
"
#nextTime
"
).
addClass
(
'
layui-hide
'
);
}
if
(
json
.
bean
.
termOfValidity
==
"
永久
"
){
$
(
"
#termTime
"
).
addClass
(
'
layui-hide
'
);
}
// 附件回显
skyeyeEnclosure
.
showDetails
({
"
enclosureUploadBtn
"
:
json
.
bean
.
enclosureInfo
});
matchingLanguage
();
}
});
});
});
\ No newline at end of file
admin-assistant/src/main/resources/template/js/licenceManage/licenceManageEdit.js
已删除
100644 → 0
浏览文件 @
ec5a6766
var
userList
=
new
Array
();
//选择用户返回的集合或者进行回显的集合
var
borrowList
=
new
Array
();
//选择用户返回的集合或者进行回显的集合
// 证照管理
layui
.
config
({
base
:
basePath
,
version
:
skyeyeVersion
}).
extend
({
window
:
'
js/winui.window
'
}).
define
([
'
window
'
,
'
jquery
'
,
'
winui
'
,
'
fileUpload
'
,
'
tagEditor
'
,
'
laydate
'
],
function
(
exports
)
{
winui
.
renderColor
();
layui
.
use
([
'
form
'
],
function
(
form
)
{
var
index
=
parent
.
layer
.
getFrameIndex
(
window
.
name
);
var
$
=
layui
.
$
,
laydate
=
layui
.
laydate
;
form
.
on
(
'
radio(annualReview)
'
,
function
(
data
)
{
var
val
=
data
.
value
;
if
(
val
==
'
2
'
){
$
(
"
#nextTime
"
).
addClass
(
'
layui-hide
'
);
$
(
"
#nextAnnualReview
"
).
val
(
""
);
}
else
if
(
val
==
'
1
'
){
$
(
"
#nextTime
"
).
removeClass
(
'
layui-hide
'
);
}
else
{
winui
.
window
.
msg
(
'
状态值错误
'
,
{
icon
:
2
,
time
:
2000
});
}
});
form
.
on
(
'
radio(termOfValidity)
'
,
function
(
data
)
{
var
val
=
data
.
value
;
if
(
val
==
'
2
'
){
$
(
"
#termTime
"
).
removeClass
(
'
layui-hide
'
);
}
else
if
(
val
==
'
1
'
){
$
(
"
#termTime
"
).
addClass
(
'
layui-hide
'
);
$
(
"
#termOfValidityTime
"
).
val
(
""
);
}
else
{
winui
.
window
.
msg
(
'
状态值错误
'
,
{
icon
:
2
,
time
:
2000
});
}
});
showGrid
({
id
:
"
showForm
"
,
url
:
flowableBasePath
+
"
licence004
"
,
params
:
{
rowId
:
parent
.
rowId
},
pagination
:
false
,
template
:
getFileContent
(
'
tpl/licenceManage/licenceManageEditTemplate.tpl
'
),
ajaxSendLoadBefore
:
function
(
hdb
)
{
hdb
.
registerHelper
(
"
compare1
"
,
function
(
v1
,
options
){
if
(
isNull
(
v1
)){
return
path
+
"
assets/img/uploadPic.png
"
;
}
else
{
return
basePath
+
v1
;
}
});
},
ajaxSendAfter
:
function
(
json
)
{
// 签发时间
laydate
.
render
({
elem
:
'
#issueTime
'
,
type
:
'
date
'
,
trigger
:
'
click
'
});
// 下次年审时间
laydate
.
render
({
elem
:
'
#nextAnnualReview
'
,
type
:
'
date
'
,
trigger
:
'
click
'
});
// 有效期至
laydate
.
render
({
elem
:
'
#termOfValidityTime
'
,
type
:
'
date
'
,
trigger
:
'
click
'
});
$
(
"
input:radio[name=annualReview][value=
"
+
json
.
bean
.
annualReview
+
"
]
"
).
attr
(
"
checked
"
,
true
);
$
(
"
input:radio[name=termOfValidity][value=
"
+
json
.
bean
.
termOfValidity
+
"
]
"
).
attr
(
"
checked
"
,
true
);
if
(
json
.
bean
.
annualReview
==
2
){
$
(
"
#nextTime
"
).
addClass
(
'
layui-hide
'
);
$
(
"
#nextAnnualReview
"
).
val
(
""
);
}
if
(
json
.
bean
.
termOfValidity
==
2
){
$
(
"
#termTime
"
).
removeClass
(
'
layui-hide
'
);
}
var
userNames
=
[];
userList
=
[].
concat
(
json
.
bean
.
licenceAdmin
);
$
.
each
(
json
.
bean
.
licenceAdmin
,
function
(
i
,
item
)
{
userNames
.
push
(
item
.
name
);
});
// 管理人员选择
$
(
'
#licenceAdmin
'
).
tagEditor
({
initialTags
:
userNames
,
placeholder
:
'
请选择管理人
'
,
editorTag
:
false
,
beforeTagDelete
:
function
(
field
,
editor
,
tags
,
val
)
{
userList
=
[].
concat
(
arrayUtil
.
removeArrayPointName
(
userList
,
val
));
}
});
var
borrowNames
=
[];
borrowList
=
[].
concat
(
json
.
bean
.
borrowId
);
$
.
each
(
json
.
bean
.
borrowId
,
function
(
i
,
item
)
{
borrowNames
.
push
(
item
.
name
);
});
// 借用人员选择
$
(
'
#borrowId
'
).
tagEditor
({
initialTags
:
borrowNames
,
placeholder
:
'
请选择借用人
'
,
editorTag
:
false
,
beforeTagDelete
:
function
(
field
,
editor
,
tags
,
val
)
{
borrowList
=
[].
concat
(
arrayUtil
.
removeArrayPointName
(
borrowList
,
val
));
}
});
// 附件回显
skyeyeEnclosure
.
initTypeISData
({
'
enclosureUpload
'
:
json
.
bean
.
enclosureInfo
});
matchingLanguage
();
form
.
render
();
form
.
on
(
'
submit(formEditBean)
'
,
function
(
data
)
{
if
(
winui
.
verifyForm
(
data
.
elem
))
{
var
params
=
{
rowId
:
parent
.
rowId
,
licenceName
:
$
(
"
#licenceName
"
).
val
(),
licenceNum
:
$
(
"
#licenceNum
"
).
val
(),
issuingOrganization
:
$
(
"
#issuingOrganization
"
).
val
(),
issueTime
:
$
(
"
#issueTime
"
).
val
(),
annualReview
:
data
.
field
.
annualReview
,
nextAnnualReview
:
$
(
"
#nextAnnualReview
"
).
val
(),
termOfValidity
:
data
.
field
.
termOfValidity
,
termOfValidityTime
:
$
(
"
#termOfValidityTime
"
).
val
(),
roomAddDesc
:
$
(
"
#roomAddDesc
"
).
val
(),
enclosureInfo
:
skyeyeEnclosure
.
getEnclosureIdsByBoxId
(
'
enclosureUpload
'
),
licenceAdmin
:
systemCommonUtil
.
tagEditorGetItemData
(
'
licenceAdmin
'
,
userList
),
borrowId
:
systemCommonUtil
.
tagEditorGetItemData
(
'
borrowId
'
,
borrowList
)
};
AjaxPostUtil
.
request
({
url
:
flowableBasePath
+
"
licence005
"
,
params
:
params
,
type
:
'
json
'
,
callback
:
function
(
json
)
{
parent
.
layer
.
close
(
index
);
parent
.
refreshCode
=
'
0
'
;
}});
}
return
false
;
});
}
});
// 管理人员选择
$
(
"
body
"
).
on
(
"
click
"
,
"
#userNameSelPeople
"
,
function
(
e
)
{
systemCommonUtil
.
userReturnList
=
[].
concat
(
userList
);
systemCommonUtil
.
chooseOrNotMy
=
"
1
"
;
// 人员列表中是否包含自己--1.包含;其他参数不包含
systemCommonUtil
.
chooseOrNotEmail
=
"
2
"
;
// 人员列表中是否必须绑定邮箱--1.必须;其他参数没必要
systemCommonUtil
.
checkType
=
"
2
"
;
// 人员选择类型,1.多选;其他。单选
systemCommonUtil
.
openSysUserStaffChoosePage
(
function
(
userReturnList
)
{
// 重置数据
userList
=
[].
concat
(
systemCommonUtil
.
tagEditorResetData
(
'
licenceAdmin
'
,
userReturnList
));
});
});
// 借用人员选择
$
(
"
body
"
).
on
(
"
click
"
,
"
#borrowNameSelPeople
"
,
function
(
e
)
{
systemCommonUtil
.
userReturnList
=
[].
concat
(
borrowList
);
systemCommonUtil
.
chooseOrNotMy
=
"
1
"
;
// 人员列表中是否包含自己--1.包含;其他参数不包含
systemCommonUtil
.
chooseOrNotEmail
=
"
2
"
;
// 人员列表中是否必须绑定邮箱--1.必须;其他参数没必要
systemCommonUtil
.
checkType
=
"
2
"
;
// 人员选择类型,1.多选;其他。单选
systemCommonUtil
.
openSysUserStaffChoosePage
(
function
(
userReturnList
)
{
// 重置数据
borrowList
=
[].
concat
(
systemCommonUtil
.
tagEditorResetData
(
'
borrowId
'
,
userReturnList
));
});
});
$
(
"
body
"
).
on
(
"
click
"
,
"
#cancle
"
,
function
()
{
parent
.
layer
.
close
(
index
);
});
});
});
\ No newline at end of file
admin-assistant/src/main/resources/template/js/licenceManage/licenceManageList.js
已删除
100644 → 0
浏览文件 @
ec5a6766
var
rowId
=
""
;
layui
.
config
({
base
:
basePath
,
version
:
skyeyeVersion
}).
extend
({
window
:
'
js/winui.window
'
}).
define
([
'
window
'
,
'
table
'
,
'
jquery
'
,
'
winui
'
,
'
form
'
],
function
(
exports
)
{
winui
.
renderColor
();
var
$
=
layui
.
$
,
form
=
layui
.
form
,
table
=
layui
.
table
;
// 新增证照
authBtn
(
'
1566464868733
'
);
// 证照列表
table
.
render
({
id
:
'
licencelistTable
'
,
elem
:
'
#licencelistTable
'
,
method
:
'
post
'
,
url
:
flowableBasePath
+
'
licence001
'
,
where
:
getTableParams
(),
even
:
true
,
page
:
true
,
limits
:
getLimits
(),
limit
:
getLimit
(),
cols
:
[[
{
title
:
systemLanguage
[
"
com.skyeye.serialNumber
"
][
languageType
],
type
:
'
numbers
'
},
{
field
:
'
licenceName
'
,
title
:
'
证照名称
'
,
width
:
170
,
templet
:
function
(
d
)
{
return
'
<a lay-event="details" class="notice-title-click">
'
+
d
.
licenceName
+
'
</a>
'
;
}},
{
field
:
'
issueTime
'
,
title
:
'
签发日期
'
,
align
:
'
center
'
,
width
:
120
},
{
field
:
'
nextAnnualReview
'
,
title
:
'
下次年审时间
'
,
align
:
'
center
'
,
width
:
120
},
{
field
:
'
termOfValidityTime
'
,
title
:
'
有效期至
'
,
align
:
'
center
'
,
width
:
120
},
{
field
:
'
licenceAdmin
'
,
title
:
'
管理人
'
,
width
:
120
},
{
field
:
'
borrowName
'
,
title
:
'
借用人
'
,
width
:
120
},
{
title
:
systemLanguage
[
"
com.skyeye.operation
"
][
languageType
],
fixed
:
'
right
'
,
align
:
'
center
'
,
width
:
150
,
toolbar
:
'
#licencelisttableBar
'
}
]],
done
:
function
(
json
)
{
matchingLanguage
();
}
});
table
.
on
(
'
tool(licencelistTable)
'
,
function
(
obj
)
{
var
data
=
obj
.
data
;
var
layEvent
=
obj
.
event
;
if
(
layEvent
===
'
details
'
)
{
//详情
details
(
data
);
}
else
if
(
layEvent
===
'
delet
'
)
{
//删除
delet
(
data
);
}
else
if
(
layEvent
===
'
edit
'
)
{
//编辑
edit
(
data
);
}
});
form
.
render
();
// 详情
function
details
(
data
)
{
rowId
=
data
.
id
;
_openNewWindows
({
url
:
"
../../tpl/licenceManage/licenceManageDetails.html
"
,
title
:
systemLanguage
[
"
com.skyeye.detailsPageTitle
"
][
languageType
],
pageId
:
"
licencedetails
"
,
area
:
[
'
90vw
'
,
'
90vh
'
],
callBack
:
function
(
refreshCode
)
{
}});
}
// 删除
function
delet
(
data
)
{
var
msg
=
'
确认删除该证照吗?
'
;
layer
.
confirm
(
msg
,
{
icon
:
3
,
title
:
'
删除证照
'
},
function
(
index
)
{
layer
.
close
(
index
);
AjaxPostUtil
.
request
({
url
:
flowableBasePath
+
"
licence003
"
,
params
:
{
rowId
:
data
.
id
},
type
:
'
json
'
,
callback
:
function
(
json
)
{
winui
.
window
.
msg
(
systemLanguage
[
"
com.skyeye.deleteOperationSuccessMsg
"
][
languageType
],
{
icon
:
1
,
time
:
2000
});
loadTable
();
}});
});
}
// 新增证照
$
(
"
body
"
).
on
(
"
click
"
,
"
#licencelistaddBean
"
,
function
()
{
_openNewWindows
({
url
:
"
../../tpl/licenceManage/licenceManageAdd.html
"
,
title
:
"
新增证照
"
,
pageId
:
"
licenceManageAdd
"
,
area
:
[
'
90vw
'
,
'
90vh
'
],
callBack
:
function
(
refreshCode
)
{
winui
.
window
.
msg
(
systemLanguage
[
"
com.skyeye.successfulOperation
"
][
languageType
],
{
icon
:
1
,
time
:
2000
});
loadTable
();
}});
});
// 编辑
function
edit
(
data
)
{
rowId
=
data
.
id
;
_openNewWindows
({
url
:
"
../../tpl/licenceManage/licenceManageEdit.html
"
,
title
:
"
编辑证照
"
,
pageId
:
"
licenceManageEdit
"
,
area
:
[
'
90vw
'
,
'
90vh
'
],
callBack
:
function
(
refreshCode
)
{
winui
.
window
.
msg
(
systemLanguage
[
"
com.skyeye.successfulOperation
"
][
languageType
],
{
icon
:
1
,
time
:
2000
});
loadTable
();
}});
}
$
(
"
body
"
).
on
(
"
click
"
,
"
#reloadlicencelistTable
"
,
function
()
{
loadTable
();
});
// 搜索表单
$
(
"
body
"
).
on
(
"
click
"
,
"
#licencelistformSearch
"
,
function
()
{
table
.
reloadData
(
"
licencelistTable
"
,
{
page
:
{
curr
:
1
},
where
:
getTableParams
()});
});
function
loadTable
()
{
table
.
reloadData
(
"
licencelistTable
"
,
{
where
:
getTableParams
()});
}
function
getTableParams
()
{
return
{
licenceName
:
$
(
"
#licenceName
"
).
val
()
};
}
exports
(
'
licenceManageList
'
,
{});
});
admin-assistant/src/main/resources/template/tpl/licenceManage/licenceManageAdd.html
已删除
100644 → 0
浏览文件 @
ec5a6766
<!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
style=
"padding:20px; margin:0 auto;"
>
<form
class=
"layui-form"
action=
""
id=
"showForm"
>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
证照名称
<i
class=
"red"
>
*
</i></label>
<div
class=
"layui-input-block"
>
<input
type=
"text"
id=
"licenceName"
name=
"licenceName"
win-verify=
"required"
placeholder=
"请输入证照名称"
class=
"layui-input"
/>
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
证照编号
<i
class=
"red"
>
*
</i></label>
<div
class=
"layui-input-block"
>
<input
type=
"text"
id=
"licenceNum"
name=
"licenceNum"
win-verify=
"required"
placeholder=
"请输入证照编号"
class=
"layui-input"
/>
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
签发机关
<i
class=
"red"
>
*
</i></label>
<div
class=
"layui-input-block"
>
<input
type=
"text"
id=
"issuingOrganization"
name=
"issuingOrganization"
win-verify=
"required"
placeholder=
"请输入签发机关"
class=
"layui-input"
/>
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
签发时间
<i
class=
"red"
>
*
</i></label>
<div
class=
"layui-input-block"
>
<input
type=
"text"
id=
"issueTime"
name=
"issueTime"
win-verify=
"required"
placeholder=
"请选择签发时间"
class=
"layui-input"
/>
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
是否年审
<i
class=
"red"
>
*
</i></label>
<div
class=
"layui-input-block winui-radio"
>
<input
type=
"radio"
name=
"annualReview"
value=
"1"
title=
"是"
lay-filter=
"annualReview"
checked
/>
<input
type=
"radio"
name=
"annualReview"
value=
"2"
title=
"否"
lay-filter=
"annualReview"
/>
</div>
</div>
<div
class=
"layui-form-item"
id=
"nextTime"
>
<label
class=
"layui-form-label"
>
下次年审时间
</label>
<div
class=
"layui-input-block"
>
<input
type=
"text"
id=
"nextAnnualReview"
name=
"nextAnnualReview"
placeholder=
"请选择下次年审时间"
class=
"layui-input"
/>
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
有效期
<i
class=
"red"
>
*
</i></label>
<div
class=
"layui-input-block winui-radio"
>
<input
type=
"radio"
name=
"termOfValidity"
value=
"1"
title=
"永久"
lay-filter=
"termOfValidity"
checked
/>
<input
type=
"radio"
name=
"termOfValidity"
value=
"2"
title=
"非永久"
lay-filter=
"termOfValidity"
/>
</div>
</div>
<div
class=
"layui-form-item layui-hide"
id=
"termTime"
>
<label
class=
"layui-form-label"
>
有效期至
</label>
<div
class=
"layui-input-block"
>
<input
type=
"text"
id=
"termOfValidityTime"
name=
"termOfValidityTime"
placeholder=
"请选择有效期截止时间"
class=
"layui-input"
/>
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
管理人
</label>
<div
class=
"layui-input-block"
>
<input
type=
"text"
id=
"licenceAdmin"
name=
"licenceAdmin"
placeholder=
"请选择管理人"
class=
"layui-input"
/>
<i
class=
"fa fa-user-plus input-icon"
id=
"userNameSelPeople"
></i>
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
借用人
</label>
<div
class=
"layui-input-block"
>
<input
type=
"text"
id=
"borrowId"
name=
"borrowId"
placeholder=
"请选择借用人"
class=
"layui-input"
/>
<i
class=
"fa fa-user-plus input-icon"
id=
"borrowNameSelPeople"
></i>
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
相关描述
</label>
<div
class=
"layui-input-block"
>
<textarea
id=
"roomAddDesc"
name=
"roomAddDesc"
placeholder=
"请输入相关描述"
class=
"layui-textarea"
style=
"height: 100px;"
maxlength=
"200"
></textarea>
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
相关附件
</label>
<div
class=
"layui-input-block"
id=
"enclosureUpload"
>
</div>
</div>
<div
class=
"layui-form-item layui-col-xs12"
>
<div
class=
"layui-input-block"
>
<button
class=
"winui-btn"
id=
"cancle"
><language
showName=
"com.skyeye.cancel"
></language></button>
<button
class=
"winui-btn"
lay-submit
lay-filter=
"formAddBean"
><language
showName=
"com.skyeye.save"
></language></button>
</div>
</div>
</form>
</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/licenceManage/
'
}).
use
(
'
licenceManageAdd
'
);
</script>
</body>
</html>
\ No newline at end of file
admin-assistant/src/main/resources/template/tpl/licenceManage/licenceManageDetails.html
已删除
100644 → 0
浏览文件 @
ec5a6766
<!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
style=
"padding:20px; margin:0 auto;"
>
<form
class=
"layui-form"
action=
""
id=
"showForm"
>
</form>
</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/licenceManage/
'
}).
use
(
'
licenceManageDetails
'
);
</script>
</body>
</html>
\ No newline at end of file
admin-assistant/src/main/resources/template/tpl/licenceManage/licenceManageDetailsTemplate.tpl
已删除
100644 → 0
浏览文件 @
ec5a6766
{{
#
bean
}}
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
证照名称:
</label>
<div
class=
"layui-input-block ver-center"
>
{
{
licenceName
}
}
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
证照编号:
</label>
<div
class=
"layui-input-block ver-center"
>
{
{
licenceNum
}
}
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
签发单位:
</label>
<div
class=
"layui-input-block ver-center"
>
{
{
issuingOrganization
}
}
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
签发时间:
</label>
<div
class=
"layui-input-block ver-center"
>
{
{
issueTime
}
}
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
是否年审:
</label>
<div
class=
"layui-input-block ver-center"
>
{
{
annualReview
}
}
</div>
</div>
<div
class=
"layui-form-item"
id=
"nextTime"
>
<label
class=
"layui-form-label"
>
下次年审时间:
</label>
<div
class=
"layui-input-block ver-center"
>
{
{
nextAnnualReview
}
}
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
有效期:
</label>
<div
class=
"layui-input-block ver-center"
>
{
{
termOfValidity
}
}
</div>
</div>
<div
class=
"layui-form-item"
id=
"termTime"
>
<label
class=
"layui-form-label"
>
有效期至:
</label>
<div
class=
"layui-input-block ver-center"
>
{
{
termOfValidityTime
}
}
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
管理人:
</label>
<div
class=
"layui-input-block ver-center"
>
{
{
licenceAdmin
}
}
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
借用人:
</label>
<div
class=
"layui-input-block ver-center"
>
{
{
borrowName
}
}
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
相关描述:
</label>
<div
class=
"layui-input-block ver-center"
>
{
{
roomAddDesc
}
}
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
相关附件:
</label>
<div
class=
"layui-input-block ver-center"
id=
"enclosureUploadBtn"
>
</div>
</div>
{
{/
bean
}
}
\ No newline at end of file
admin-assistant/src/main/resources/template/tpl/licenceManage/licenceManageEdit.html
已删除
100644 → 0
浏览文件 @
ec5a6766
<!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
style=
"padding:20px; margin:0 auto;"
>
<form
class=
"layui-form"
action=
""
id=
"showForm"
>
</form>
</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/licenceManage/
'
}).
use
(
'
licenceManageEdit
'
);
</script>
</body>
</html>
\ No newline at end of file
admin-assistant/src/main/resources/template/tpl/licenceManage/licenceManageEditTemplate.tpl
已删除
100644 → 0
浏览文件 @
ec5a6766
{{
#
bean
}}
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
证照名称
<i
class=
"red"
>
*
</i></label>
<div
class=
"layui-input-block"
>
<input
type=
"text"
id=
"licenceName"
name=
"licenceName"
win-verify=
"required"
placeholder=
"请输入证照名称"
class=
"layui-input"
value=
"{
{
licenceName
}
}"
/>
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
证照编号
<i
class=
"red"
>
*
</i></label>
<div
class=
"layui-input-block"
>
<input
type=
"text"
id=
"licenceNum"
name=
"licenceNum"
win-verify=
"required"
placeholder=
"请输入证照编号"
class=
"layui-input"
value=
"{
{
licenceNum
}
}"
/>
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
签发机关
<i
class=
"red"
>
*
</i></label>
<div
class=
"layui-input-block"
>
<input
type=
"text"
id=
"issuingOrganization"
name=
"issuingOrganization"
win-verify=
"required"
placeholder=
"请输入签发机关"
class=
"layui-input"
value=
"{
{
issuingOrganization
}
}"
/>
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
签发时间
<i
class=
"red"
>
*
</i></label>
<div
class=
"layui-input-block"
>
<input
type=
"text"
id=
"issueTime"
name=
"issueTime"
win-verify=
"required"
placeholder=
"请选择签发时间"
class=
"layui-input"
value=
"{
{
issueTime
}
}"
/>
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
是否年审
<i
class=
"red"
>
*
</i></label>
<div
class=
"layui-input-block winui-radio"
>
<input
type=
"radio"
name=
"annualReview"
value=
"1"
title=
"是"
lay-filter=
"annualReview"
/>
<input
type=
"radio"
name=
"annualReview"
value=
"2"
title=
"否"
lay-filter=
"annualReview"
/>
</div>
</div>
<div
class=
"layui-form-item"
id=
"nextTime"
>
<label
class=
"layui-form-label"
>
下次年审时间
</label>
<div
class=
"layui-input-block"
>
<input
type=
"text"
id=
"nextAnnualReview"
name=
"nextAnnualReview"
placeholder=
"请选择下次年审时间"
class=
"layui-input"
value=
"{
{
nextAnnualReview
}
}"
/>
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
有效期
<i
class=
"red"
>
*
</i></label>
<div
class=
"layui-input-block winui-radio"
>
<input
type=
"radio"
name=
"termOfValidity"
value=
"1"
title=
"永久"
lay-filter=
"termOfValidity"
/>
<input
type=
"radio"
name=
"termOfValidity"
value=
"2"
title=
"非永久"
lay-filter=
"termOfValidity"
/>
</div>
</div>
<div
class=
"layui-form-item layui-hide"
id=
"termTime"
>
<label
class=
"layui-form-label"
>
有效期至
</label>
<div
class=
"layui-input-block"
>
<input
type=
"text"
id=
"termOfValidityTime"
name=
"termOfValidityTime"
placeholder=
"请选择有效期截止时间"
class=
"layui-input"
value=
"{
{
termOfValidityTime
}
}"
/>
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
管理人
</label>
<div
class=
"layui-input-block"
>
<input
type=
"text"
id=
"licenceAdmin"
name=
"licenceAdmin"
placeholder=
"请选择管理人"
class=
"layui-input"
/>
<i
class=
"fa fa-user-plus input-icon"
id=
"userNameSelPeople"
></i>
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
借用人
</label>
<div
class=
"layui-input-block"
>
<input
type=
"text"
id=
"borrowId"
name=
"borrowId"
placeholder=
"请选择借用人"
class=
"layui-input"
/>
<i
class=
"fa fa-user-plus input-icon"
id=
"borrowNameSelPeople"
></i>
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
相关描述
</label>
<div
class=
"layui-input-block"
>
<textarea
id=
"roomAddDesc"
name=
"roomAddDesc"
placeholder=
"请输入相关描述"
class=
"layui-textarea"
style=
"height: 100px;"
maxlength=
"200"
>
{
{
roomAddDesc
}
}
</textarea>
</div>
</div>
<div
class=
"layui-form-item"
>
<label
class=
"layui-form-label"
>
相关附件
</label>
<div
class=
"layui-input-block"
id=
"enclosureUpload"
>
</div>
</div>
<div
class=
"layui-form-item layui-col-xs12"
>
<div
class=
"layui-input-block"
>
<button
class=
"winui-btn"
id=
"cancle"
><language
showName=
"com.skyeye.cancel"
></language></button>
<button
class=
"winui-btn"
lay-submit
lay-filter=
"formEditBean"
><language
showName=
"com.skyeye.save"
></language></button>
</div>
</div>
{
{/
bean
}
}
\ No newline at end of file
admin-assistant/src/main/resources/template/tpl/licenceManage/licenceManageList.html
已删除
100644 → 0
浏览文件 @
ec5a6766
<!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
style=
"margin:0 auto; height: 100%;"
>
<div
class=
"txtcenter"
style=
"margin:0 auto; padding-top: 10px;"
>
<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=
"licenceName"
name=
"licenceName"
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"
type=
"button"
id=
"licencelistformSearch"
><language
showName=
"com.skyeye.search2"
></language></button>
</div>
</div>
</form>
</div>
<div
class=
"winui-toolbar"
>
<div
class=
"winui-tool"
style=
"text-align: left;"
>
<button
id=
"reloadlicencelistTable"
class=
"winui-toolbtn"
><i
class=
"fa fa-refresh"
aria-hidden=
"true"
></i><language
showName=
"com.skyeye.refreshDataBtn"
></language></button>
<button
id=
"licencelistaddBean"
class=
"winui-toolbtn"
auth=
"1566464868733"
><i
class=
"fa fa-plus"
aria-hidden=
"true"
></i>
新增证照
</button>
</div>
</div>
<div
style=
"margin:auto 10px;"
>
<table
id=
"licencelistTable"
lay-filter=
"licencelistTable"
></table>
<script
type=
"text/html"
id=
"licencelisttableBar"
>
{{
#
if
(
auth
(
'
1566464920562
'
)){
}}
<
a
class
=
"
layui-btn layui-btn-xs
"
lay
-
event
=
"
edit
"
><
language
showName
=
"
com.skyeye.editBtn
"
><
/language></
a
>
{{
#
}
}}
{{
#
if
(
auth
(
'
1566464933972
'
)){
}}
<
a
class
=
"
layui-btn layui-btn-xs layui-btn-danger
"
lay
-
event
=
"
delet
"
><
language
showName
=
"
com.skyeye.deleteBtn
"
><
/language></
a
>
{{
#
}
}}
</script>
</div>
</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/licenceManage/
'
}).
use
(
'
licenceManageList
'
);
</script>
</body>
</html>
\ No newline at end of file
common/src/main/resources/template/js/dsFormPage/editPageContent.js
浏览文件 @
8ea6c61a
...
...
@@ -33,19 +33,19 @@ layui.config({
</div>`
,
'
placeholderBox
'
:
`<div class="layui-form-item layui-col-xs12">
<label class="layui-form-label">提示语:</label>
<div class="layui-input-block
winui-radio
">
<div class="layui-input-block">
<input type="text" id="placeholder" name="placeholder" placeholder="请输入控件提示语" class="layui-input" />
</div>
</div>`
,
'
remarkBox
'
:
`<div class="layui-form-item layui-col-xs12">
<label class="layui-form-label">备注:</label>
<div class="layui-input-block
winui-radio
">
<div class="layui-input-block">
<input type="text" id="remark" name="remark" placeholder="请输入备注" class="layui-input" />
</div>
</div>`
,
'
classNameBox
'
:
`<div class="layui-form-item layui-col-xs12">
<label class="layui-form-label">class属性:</label>
<div class="layui-input-block
winui-radio
">
<div class="layui-input-block">
<input type="text" id="className" name="className" placeholder="请输入class属性" class="layui-input" />
</div>
</div>`
,
...
...
web/src/main/resources/template/assets/lib/layui/customer/skyeye/dsFormUtil.js
浏览文件 @
8ea6c61a
...
...
@@ -511,11 +511,11 @@ var dsFormUtil = {
if
(
isNull
(
customAttr
.
objectId
)
&&
isNull
(
customAttr
.
defaultData
)
&&
isNull
(
customAttr
.
businessApi
)
&&
$
.
isEmptyObject
(
customAttr
.
businessApi
))
{
return
content
;
}
content
.
context
=
dsFormUtil
.
getHtmlContentByDataFrom
(
customAttr
,
content
.
dsFormComponent
.
htmlDataFrom
);
content
.
context
=
dsFormUtil
.
getHtmlContentByDataFrom
(
customAttr
,
content
.
dsFormComponent
.
htmlDataFrom
,
content
.
id
);
return
content
;
},
getHtmlContentByDataFrom
:
function
(
obj
,
htmlDataFrom
)
{
getHtmlContentByDataFrom
:
function
(
obj
,
htmlDataFrom
,
contentId
)
{
var
json
=
{};
var
dataType
=
obj
.
dataType
;
if
(
dataType
==
1
)
{
...
...
@@ -549,6 +549,14 @@ var dsFormUtil = {
},
async
:
false
});
}
if
(
!
isNull
(
htmlDataFrom
))
{
$
.
each
(
json
,
function
(
i
,
item
)
{
item
.
radioName
=
'
skyeyeName
'
+
contentId
;
item
.
name
=
item
.
name
||
item
.
title
;
if
(
item
.
isDefault
)
{
// 默认选中
item
.
checked
=
'
checked
'
;
}
});
return
getDataUseHandlebars
(
htmlDataFrom
,
json
);
}
return
''
;
...
...
web/src/main/resources/template/assets/lib/winui/winui.js
浏览文件 @
8ea6c61a
...
...
@@ -462,9 +462,9 @@
var
tips
=
''
;
var
value
=
othis
.
val
();
// 如果是单选,则获取单选的值
if
(
othis
.
hasClass
(
"
winui-radio
"
))
{
if
(
othis
.
hasClass
(
"
winui-radio
"
))
{
value
=
othis
.
find
(
"
input:checked
"
).
val
();
if
(
value
===
undefined
)
{
if
(
value
===
undefined
)
{
value
=
""
;
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录