Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzou
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzou
提交
db3eb1eb
提交
db3eb1eb
编写于
5月 25, 2020
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
lab_qyk 发布系统代码
上级
4c72c617
变更
18
显示空白字符变更
内嵌
并排
正在显示
18 个修改的文件
包含
23 行增加
和
34 行删除
+23
-34
entity-service.ts
app_web/src/service/entity-service.ts
+1
-1
edit-grid-grid-base.vue
...gets/ibzdepartment/edit-grid-grid/edit-grid-grid-base.vue
+2
-1
main-form-base.vue
...eb/src/widgets/ibzdepartment/main-form/main-form-base.vue
+1
-1
main-grid-base.vue
...eb/src/widgets/ibzdepartment/main-grid/main-grid-base.vue
+2
-1
new-form-form-base.vue
...idgets/ibzdepartment/new-form-form/new-form-form-base.vue
+1
-1
main-form-base.vue
...b/src/widgets/ibzdept-member/main-form/main-form-base.vue
+1
-1
main-grid-base.vue
...b/src/widgets/ibzdept-member/main-grid/main-grid-base.vue
+2
-1
change-pw-form-base.vue
...idgets/ibzemployee/change-pw-form/change-pw-form-base.vue
+1
-1
edit-grid-grid-base.vue
...idgets/ibzemployee/edit-grid-grid/edit-grid-grid-base.vue
+2
-1
main-form-base.vue
app_web/src/widgets/ibzemployee/main-form/main-form-base.vue
+1
-1
main-grid-base.vue
app_web/src/widgets/ibzemployee/main-grid/main-grid-base.vue
+2
-1
new-form-form-base.vue
.../widgets/ibzemployee/new-form-form/new-form-form-base.vue
+1
-1
main-form-base.vue
.../src/widgets/ibzorganization/main-form/main-form-base.vue
+1
-1
main-grid-base.vue
.../src/widgets/ibzorganization/main-grid/main-grid-base.vue
+2
-1
new-form-form-base.vue
...gets/ibzorganization/new-form-form/new-form-form-base.vue
+1
-1
config.xml
config.xml
+0
-5
Dockerfile
ibzou-app/ibzou-app-web/src/main/docker/Dockerfile
+1
-1
ibzou-app-web.yaml
ibzou-app/ibzou-app-web/src/main/docker/ibzou-app-web.yaml
+1
-13
未找到文件。
app_web/src/service/entity-service.ts
浏览文件 @
db3eb1eb
...
@@ -619,7 +619,7 @@ export default class EntityService {
...
@@ -619,7 +619,7 @@ export default class EntityService {
* @memberof EntityService
* @memberof EntityService
*/
*/
public
async
removeBatch
(
context
:
any
=
{},
data
:
any
,
isloading
?:
boolean
):
Promise
<
any
>
{
public
async
removeBatch
(
context
:
any
=
{},
data
:
any
,
isloading
?:
boolean
):
Promise
<
any
>
{
return
Http
.
getInstance
().
delete
(
`/
${
this
.
APPDENAME
}
/batch`
,
isloading
,
data
);
return
Http
.
getInstance
().
delete
(
`/
${
this
.
APPDENAME
}
/batch`
,
isloading
,
data
[
this
.
APPDEKEY
]
);
}
}
/**
/**
...
...
app_web/src/widgets/ibzdepartment/edit-grid-grid/edit-grid-grid-base.vue
浏览文件 @
db3eb1eb
...
@@ -911,8 +911,9 @@ export default class EditGridBase extends Vue implements ControlInterface {
...
@@ -911,8 +911,9 @@ export default class EditGridBase extends Vue implements ControlInterface {
keys
.
push
(
data
.
srfkey
);
keys
.
push
(
data
.
srfkey
);
});
});
let
_removeAction
=
keys
.
length
>
1
?
'removeBatch'
:
this
.
removeAction
;
let
_removeAction
=
keys
.
length
>
1
?
'removeBatch'
:
this
.
removeAction
;
let
_keys
=
keys
.
length
>
1
?
keys
:
keys
[
0
]
;
const
context
:
any
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
));
const
context
:
any
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
));
const
post
:
Promise
<
any
>
=
this
.
service
.
delete
(
_removeAction
,
Object
.
assign
(
context
,{
ibzdepartment
:
keys
.
join
(
';'
)
}),
Object
.
assign
({
ibzdepartment
:
keys
.
join
(
';'
)
},{
viewparams
:
this
.
viewparams
}),
this
.
showBusyIndicator
);
const
post
:
Promise
<
any
>
=
this
.
service
.
delete
(
_removeAction
,
Object
.
assign
(
context
,{
ibzdepartment
:
_keys
}),
Object
.
assign
({
ibzdepartment
:
_keys
},{
viewparams
:
this
.
viewparams
}),
this
.
showBusyIndicator
);
return
new
Promise
((
resolve
:
any
,
reject
:
any
)
=>
{
return
new
Promise
((
resolve
:
any
,
reject
:
any
)
=>
{
post
.
then
((
response
:
any
)
=>
{
post
.
then
((
response
:
any
)
=>
{
if
(
!
response
||
response
.
status
!==
200
)
{
if
(
!
response
||
response
.
status
!==
200
)
{
...
...
app_web/src/widgets/ibzdepartment/main-form/main-form-base.vue
浏览文件 @
db3eb1eb
...
@@ -1292,7 +1292,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -1292,7 +1292,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
*/
public
print
(){
public
print
(){
let
_this
:
any
=
this
;
let
_this
:
any
=
this
;
_this
.
$print
({
id
:
'
form
'
,
popTitle
:
'主编辑表单'
});
_this
.
$print
({
id
:
'
ibzdepartment_main
'
,
popTitle
:
'主编辑表单'
});
}
}
/**
/**
...
...
app_web/src/widgets/ibzdepartment/main-grid/main-grid-base.vue
浏览文件 @
db3eb1eb
...
@@ -764,8 +764,9 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -764,8 +764,9 @@ export default class MainBase extends Vue implements ControlInterface {
keys
.
push
(
data
.
srfkey
);
keys
.
push
(
data
.
srfkey
);
});
});
let
_removeAction
=
keys
.
length
>
1
?
'removeBatch'
:
this
.
removeAction
;
let
_removeAction
=
keys
.
length
>
1
?
'removeBatch'
:
this
.
removeAction
;
let
_keys
=
keys
.
length
>
1
?
keys
:
keys
[
0
]
;
const
context
:
any
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
));
const
context
:
any
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
));
const
post
:
Promise
<
any
>
=
this
.
service
.
delete
(
_removeAction
,
Object
.
assign
(
context
,{
ibzdepartment
:
keys
.
join
(
';'
)
}),
Object
.
assign
({
ibzdepartment
:
keys
.
join
(
';'
)
},{
viewparams
:
this
.
viewparams
}),
this
.
showBusyIndicator
);
const
post
:
Promise
<
any
>
=
this
.
service
.
delete
(
_removeAction
,
Object
.
assign
(
context
,{
ibzdepartment
:
_keys
}),
Object
.
assign
({
ibzdepartment
:
_keys
},{
viewparams
:
this
.
viewparams
}),
this
.
showBusyIndicator
);
return
new
Promise
((
resolve
:
any
,
reject
:
any
)
=>
{
return
new
Promise
((
resolve
:
any
,
reject
:
any
)
=>
{
post
.
then
((
response
:
any
)
=>
{
post
.
then
((
response
:
any
)
=>
{
if
(
!
response
||
response
.
status
!==
200
)
{
if
(
!
response
||
response
.
status
!==
200
)
{
...
...
app_web/src/widgets/ibzdepartment/new-form-form/new-form-form-base.vue
浏览文件 @
db3eb1eb
...
@@ -1131,7 +1131,7 @@ export default class NewFormBase extends Vue implements ControlInterface {
...
@@ -1131,7 +1131,7 @@ export default class NewFormBase extends Vue implements ControlInterface {
*/
*/
public
print
(){
public
print
(){
let
_this
:
any
=
this
;
let
_this
:
any
=
this
;
_this
.
$print
({
id
:
'form'
,
popTitle
:
'新建表单'
});
_this
.
$print
({
id
:
'
ibzdepartment_new
form'
,
popTitle
:
'新建表单'
});
}
}
/**
/**
...
...
app_web/src/widgets/ibzdept-member/main-form/main-form-base.vue
浏览文件 @
db3eb1eb
...
@@ -1031,7 +1031,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -1031,7 +1031,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
*/
public
print
(){
public
print
(){
let
_this
:
any
=
this
;
let
_this
:
any
=
this
;
_this
.
$print
({
id
:
'
form
'
,
popTitle
:
'主编辑表单'
});
_this
.
$print
({
id
:
'
ibzdeptmember_main
'
,
popTitle
:
'主编辑表单'
});
}
}
/**
/**
...
...
app_web/src/widgets/ibzdept-member/main-grid/main-grid-base.vue
浏览文件 @
db3eb1eb
...
@@ -714,8 +714,9 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -714,8 +714,9 @@ export default class MainBase extends Vue implements ControlInterface {
keys
.
push
(
data
.
srfkey
);
keys
.
push
(
data
.
srfkey
);
});
});
let
_removeAction
=
keys
.
length
>
1
?
'removeBatch'
:
this
.
removeAction
;
let
_removeAction
=
keys
.
length
>
1
?
'removeBatch'
:
this
.
removeAction
;
let
_keys
=
keys
.
length
>
1
?
keys
:
keys
[
0
]
;
const
context
:
any
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
));
const
context
:
any
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
));
const
post
:
Promise
<
any
>
=
this
.
service
.
delete
(
_removeAction
,
Object
.
assign
(
context
,{
ibzdeptmember
:
keys
.
join
(
';'
)
}),
Object
.
assign
({
ibzdeptmember
:
keys
.
join
(
';'
)
},{
viewparams
:
this
.
viewparams
}),
this
.
showBusyIndicator
);
const
post
:
Promise
<
any
>
=
this
.
service
.
delete
(
_removeAction
,
Object
.
assign
(
context
,{
ibzdeptmember
:
_keys
}),
Object
.
assign
({
ibzdeptmember
:
_keys
},{
viewparams
:
this
.
viewparams
}),
this
.
showBusyIndicator
);
return
new
Promise
((
resolve
:
any
,
reject
:
any
)
=>
{
return
new
Promise
((
resolve
:
any
,
reject
:
any
)
=>
{
post
.
then
((
response
:
any
)
=>
{
post
.
then
((
response
:
any
)
=>
{
if
(
!
response
||
response
.
status
!==
200
)
{
if
(
!
response
||
response
.
status
!==
200
)
{
...
...
app_web/src/widgets/ibzemployee/change-pw-form/change-pw-form-base.vue
浏览文件 @
db3eb1eb
...
@@ -999,7 +999,7 @@ export default class ChangePwBase extends Vue implements ControlInterface {
...
@@ -999,7 +999,7 @@ export default class ChangePwBase extends Vue implements ControlInterface {
*/
*/
public
print
(){
public
print
(){
let
_this
:
any
=
this
;
let
_this
:
any
=
this
;
_this
.
$print
({
id
:
'
form
'
,
popTitle
:
'变更密码'
});
_this
.
$print
({
id
:
'
ibzemployee_changepw
'
,
popTitle
:
'变更密码'
});
}
}
/**
/**
...
...
app_web/src/widgets/ibzemployee/edit-grid-grid/edit-grid-grid-base.vue
浏览文件 @
db3eb1eb
...
@@ -1003,8 +1003,9 @@ export default class EditGridBase extends Vue implements ControlInterface {
...
@@ -1003,8 +1003,9 @@ export default class EditGridBase extends Vue implements ControlInterface {
keys
.
push
(
data
.
srfkey
);
keys
.
push
(
data
.
srfkey
);
});
});
let
_removeAction
=
keys
.
length
>
1
?
'removeBatch'
:
this
.
removeAction
;
let
_removeAction
=
keys
.
length
>
1
?
'removeBatch'
:
this
.
removeAction
;
let
_keys
=
keys
.
length
>
1
?
keys
:
keys
[
0
]
;
const
context
:
any
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
));
const
context
:
any
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
));
const
post
:
Promise
<
any
>
=
this
.
service
.
delete
(
_removeAction
,
Object
.
assign
(
context
,{
ibzemployee
:
keys
.
join
(
';'
)
}),
Object
.
assign
({
ibzemployee
:
keys
.
join
(
';'
)
},{
viewparams
:
this
.
viewparams
}),
this
.
showBusyIndicator
);
const
post
:
Promise
<
any
>
=
this
.
service
.
delete
(
_removeAction
,
Object
.
assign
(
context
,{
ibzemployee
:
_keys
}),
Object
.
assign
({
ibzemployee
:
_keys
},{
viewparams
:
this
.
viewparams
}),
this
.
showBusyIndicator
);
return
new
Promise
((
resolve
:
any
,
reject
:
any
)
=>
{
return
new
Promise
((
resolve
:
any
,
reject
:
any
)
=>
{
post
.
then
((
response
:
any
)
=>
{
post
.
then
((
response
:
any
)
=>
{
if
(
!
response
||
response
.
status
!==
200
)
{
if
(
!
response
||
response
.
status
!==
200
)
{
...
...
app_web/src/widgets/ibzemployee/main-form/main-form-base.vue
浏览文件 @
db3eb1eb
...
@@ -1634,7 +1634,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -1634,7 +1634,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
*/
public
print
(){
public
print
(){
let
_this
:
any
=
this
;
let
_this
:
any
=
this
;
_this
.
$print
({
id
:
'
form
'
,
popTitle
:
'主编辑表单'
});
_this
.
$print
({
id
:
'
ibzemployee_main
'
,
popTitle
:
'主编辑表单'
});
}
}
/**
/**
...
...
app_web/src/widgets/ibzemployee/main-grid/main-grid-base.vue
浏览文件 @
db3eb1eb
...
@@ -780,8 +780,9 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -780,8 +780,9 @@ export default class MainBase extends Vue implements ControlInterface {
keys
.
push
(
data
.
srfkey
);
keys
.
push
(
data
.
srfkey
);
});
});
let
_removeAction
=
keys
.
length
>
1
?
'removeBatch'
:
this
.
removeAction
;
let
_removeAction
=
keys
.
length
>
1
?
'removeBatch'
:
this
.
removeAction
;
let
_keys
=
keys
.
length
>
1
?
keys
:
keys
[
0
]
;
const
context
:
any
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
));
const
context
:
any
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
));
const
post
:
Promise
<
any
>
=
this
.
service
.
delete
(
_removeAction
,
Object
.
assign
(
context
,{
ibzemployee
:
keys
.
join
(
';'
)
}),
Object
.
assign
({
ibzemployee
:
keys
.
join
(
';'
)
},{
viewparams
:
this
.
viewparams
}),
this
.
showBusyIndicator
);
const
post
:
Promise
<
any
>
=
this
.
service
.
delete
(
_removeAction
,
Object
.
assign
(
context
,{
ibzemployee
:
_keys
}),
Object
.
assign
({
ibzemployee
:
_keys
},{
viewparams
:
this
.
viewparams
}),
this
.
showBusyIndicator
);
return
new
Promise
((
resolve
:
any
,
reject
:
any
)
=>
{
return
new
Promise
((
resolve
:
any
,
reject
:
any
)
=>
{
post
.
then
((
response
:
any
)
=>
{
post
.
then
((
response
:
any
)
=>
{
if
(
!
response
||
response
.
status
!==
200
)
{
if
(
!
response
||
response
.
status
!==
200
)
{
...
...
app_web/src/widgets/ibzemployee/new-form-form/new-form-form-base.vue
浏览文件 @
db3eb1eb
...
@@ -1159,7 +1159,7 @@ export default class NewFormBase extends Vue implements ControlInterface {
...
@@ -1159,7 +1159,7 @@ export default class NewFormBase extends Vue implements ControlInterface {
*/
*/
public
print
(){
public
print
(){
let
_this
:
any
=
this
;
let
_this
:
any
=
this
;
_this
.
$print
({
id
:
'form'
,
popTitle
:
'新建表单'
});
_this
.
$print
({
id
:
'
ibzemployee_new
form'
,
popTitle
:
'新建表单'
});
}
}
/**
/**
...
...
app_web/src/widgets/ibzorganization/main-form/main-form-base.vue
浏览文件 @
db3eb1eb
...
@@ -1171,7 +1171,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -1171,7 +1171,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
*/
public
print
(){
public
print
(){
let
_this
:
any
=
this
;
let
_this
:
any
=
this
;
_this
.
$print
({
id
:
'
form
'
,
popTitle
:
'主编辑表单'
});
_this
.
$print
({
id
:
'
ibzorganization_main
'
,
popTitle
:
'主编辑表单'
});
}
}
/**
/**
...
...
app_web/src/widgets/ibzorganization/main-grid/main-grid-base.vue
浏览文件 @
db3eb1eb
...
@@ -750,8 +750,9 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -750,8 +750,9 @@ export default class MainBase extends Vue implements ControlInterface {
keys
.
push
(
data
.
srfkey
);
keys
.
push
(
data
.
srfkey
);
});
});
let
_removeAction
=
keys
.
length
>
1
?
'removeBatch'
:
this
.
removeAction
;
let
_removeAction
=
keys
.
length
>
1
?
'removeBatch'
:
this
.
removeAction
;
let
_keys
=
keys
.
length
>
1
?
keys
:
keys
[
0
]
;
const
context
:
any
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
));
const
context
:
any
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
));
const
post
:
Promise
<
any
>
=
this
.
service
.
delete
(
_removeAction
,
Object
.
assign
(
context
,{
ibzorganization
:
keys
.
join
(
';'
)
}),
Object
.
assign
({
ibzorganization
:
keys
.
join
(
';'
)
},{
viewparams
:
this
.
viewparams
}),
this
.
showBusyIndicator
);
const
post
:
Promise
<
any
>
=
this
.
service
.
delete
(
_removeAction
,
Object
.
assign
(
context
,{
ibzorganization
:
_keys
}),
Object
.
assign
({
ibzorganization
:
_keys
},{
viewparams
:
this
.
viewparams
}),
this
.
showBusyIndicator
);
return
new
Promise
((
resolve
:
any
,
reject
:
any
)
=>
{
return
new
Promise
((
resolve
:
any
,
reject
:
any
)
=>
{
post
.
then
((
response
:
any
)
=>
{
post
.
then
((
response
:
any
)
=>
{
if
(
!
response
||
response
.
status
!==
200
)
{
if
(
!
response
||
response
.
status
!==
200
)
{
...
...
app_web/src/widgets/ibzorganization/new-form-form/new-form-form-base.vue
浏览文件 @
db3eb1eb
...
@@ -1062,7 +1062,7 @@ export default class NewFormBase extends Vue implements ControlInterface {
...
@@ -1062,7 +1062,7 @@ export default class NewFormBase extends Vue implements ControlInterface {
*/
*/
public
print
(){
public
print
(){
let
_this
:
any
=
this
;
let
_this
:
any
=
this
;
_this
.
$print
({
id
:
'form'
,
popTitle
:
'新建表单'
});
_this
.
$print
({
id
:
'
ibzorganization_new
form'
,
popTitle
:
'新建表单'
});
}
}
/**
/**
...
...
config.xml
浏览文件 @
db3eb1eb
...
@@ -37,11 +37,6 @@
...
@@ -37,11 +37,6 @@
git clone -b master $para2 ibzou/
git clone -b master $para2 ibzou/
export NODE_OPTIONS=--max-old-space-size=4096
export NODE_OPTIONS=--max-old-space-size=4096
cd ibzou/
cd ibzou/
mvn clean package -Pweb
cd ibzou-app/ibzou-app-web
mvn -Pweb docker:build
mvn -Pweb docker:push
docker -H $para1 stack deploy --compose-file=src/main/docker/ibzou-app-web.yaml ibzlab-rt --with-registry-auth
</command>
</command>
</hudson.tasks.Shell>
</hudson.tasks.Shell>
</builders>
</builders>
...
...
ibzou-app/ibzou-app-web/src/main/docker/Dockerfile
浏览文件 @
db3eb1eb
...
@@ -9,6 +9,6 @@ CMD echo "The application will start in ${IBZ_SLEEP}s..." && \
...
@@ -9,6 +9,6 @@ CMD echo "The application will start in ${IBZ_SLEEP}s..." && \
sleep ${IBZ_SLEEP} && \
sleep ${IBZ_SLEEP} && \
java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -jar /ibzou-app-web.jar
java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -jar /ibzou-app-web.jar
EXPOSE
30001
EXPOSE
8080
ADD
ibzou-app-web.jar /ibzou-app-web.jar
ADD
ibzou-app-web.jar /ibzou-app-web.jar
ibzou-app/ibzou-app-web/src/main/docker/ibzou-app-web.yaml
浏览文件 @
db3eb1eb
...
@@ -3,21 +3,9 @@ services:
...
@@ -3,21 +3,9 @@ services:
ibzou-app-web
:
ibzou-app-web
:
image
:
registry.cn-shanghai.aliyuncs.com/ibizsys/ibzou-app-web:latest
image
:
registry.cn-shanghai.aliyuncs.com/ibizsys/ibzou-app-web:latest
ports
:
ports
:
-
"
30001:30001
"
-
"
8080:8080
"
networks
:
networks
:
-
agent_network
-
agent_network
environment
:
-
SPRING_CLOUD_NACOS_DISCOVERY_IP=172.16.180.237
-
SERVER_PORT=30001
-
SPRING_CLOUD_NACOS_DISCOVERY_SERVER-ADDR=172.16.102.211:8848
-
SPRING_REDIS_HOST=172.16.100.243
-
SPRING_REDIS_PORT=6379
-
SPRING_REDIS_DATABASE=0
-
SPRING_DATASOURCE_USERNAME=a_A_5d9d78509
-
SPRING_DATASOURCE_PASSWORD=@6dEfb3@
-
SPRING_DATASOURCE_URL=jdbc:mysql://172.16.180.232:3306/a_A_5d9d78509?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8&useOldAliasMetadataBehavior=true
-
SPRING_DATASOURCE_DRIVER-CLASS-NAME=com.mysql.jdbc.Driver
-
SPRING_DATASOURCE_DEFAULTSCHEMA=a_A_5d9d78509
deploy
:
deploy
:
mode
:
replicated
mode
:
replicated
replicas
:
1
replicas
:
1
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录