Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
project-road-admin
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
project-road-admin
Commits
637daba9
提交
637daba9
authored
8月 23, 2022
作者:
lihuihui
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update
上级
7c897c13
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
12 个修改的文件
包含
257 行增加
和
156 行删除
+257
-156
base.css
src/assets/css/base.css
+8
-1
style.scss
src/assets/theme/style.scss
+1
-1
PageTemplate.vue
src/components/base/PageTemplate.vue
+78
-0
essay.vue
src/modules/banner/components/essay.vue
+0
-1
List.vue
src/modules/banner/views/List.vue
+44
-42
Update.vue
src/modules/banner/views/Update.vue
+0
-0
Update.vue
src/modules/essay/views/Update.vue
+2
-14
List.vue
src/modules/menu/views/List.vue
+44
-41
Update.vue
src/modules/menu/views/Update.vue
+0
-0
FormType.vue
src/modules/pages/components/FormType.vue
+7
-2
List.vue
src/modules/pages/views/List.vue
+49
-40
Update.vue
src/modules/pages/views/Update.vue
+24
-14
没有找到文件。
src/assets/css/base.css
浏览文件 @
637daba9
...
...
@@ -86,5 +86,12 @@ textarea:focus {
}
:root
{
--main-color
:
rgba
(
184
,
1
,
64
,
1
);
--main-color
:
#1655B2
;
}
.breadcrumb
{
padding-bottom
:
20px
;
font-size
:
16px
;
font-weight
:
bold
;
color
:
rgba
(
0
,
0
,
0
,
1
);
line-height
:
100%
;
}
src/assets/theme/style.scss
浏览文件 @
637daba9
$--color-primary
:
rgba
(
184
,
1
,
64
,
1
)
;
$--color-primary
:
#1655B2
;
/* 改变 icon 字体路径变量,必需 */
$--font-path
:
'element-ui/lib/theme-chalk/fonts'
;
...
...
src/components/base/PageTemplate.vue
0 → 100644
浏览文件 @
637daba9
<
template
>
<div
class=
"create-box"
>
<template
v-if=
"type == 1"
>
<div
class=
"l-img-r-text-box"
>
<img
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/pages/highway/road/ztyw.png"
/>
<div
class=
"text"
>
文字占位文字占位文字占位文字占位文字占位文字占位文字占位文字占位
</div>
</div>
</
template
>
<
template
v-if=
"type == '2'"
>
<div
class=
"t-img-b-text"
>
<img
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/pages/highway/road/stxw.png"
/>
<div
class=
"text"
>
文字占位文字占位文字占位 文字占位文字占位文字占位 文字占位文字占位
</div>
</div>
</
template
>
<
template
v-if=
"type == '3'"
>
<div
class=
"c-text"
>
文字占位文字占位文字占位文字占位文字占位文字占位文字占位文字占位文字占位文字占位文字占位
</div>
</
template
>
</div>
</template>
<
script
>
export
default
{
props
:
{
type
:
{
type
:
String
}
},
data
()
{
return
{}
},
computed
:
{},
methods
:
{}
}
</
script
>
<
style
lang=
"scss"
scoped
>
.l-img-r-text-box
{
width
:
280px
;
padding
:
14px
22px
14px
12px
;
border
:
1px
solid
#f0f0f0
;
display
:
flex
;
border-radius
:
6px
;
img
{
width
:
90px
;
margin-right
:
12px
;
}
.text
{
font-size
:
12px
;
color
:
#363636
;
line-height
:
17px
;
}
}
.t-img-b-text
{
width
:
280px
;
border
:
1px
solid
#dcdfe6
;
border-radius
:
4px
;
padding
:
12px
14px
13px
;
img
{
width
:
252px
;
display
:
block
;
}
.text
{
font-size
:
12px
;
color
:
#363636
;
line-height
:
17px
;
margin-top
:
18px
;
}
}
.c-text
{
width
:
280px
;
font-size
:
12px
;
color
:
#363636
;
line-height
:
17px
;
border-radius
:
6px
;
border
:
1px
solid
#f0f0f0
;
padding
:
20px
;
}
</
style
>
src/modules/banner/components/essay.vue
浏览文件 @
637daba9
...
...
@@ -80,7 +80,6 @@ export default {
}
],
columns
:
[
{
label
:
'id'
,
prop
:
'id'
,
align
:
'center'
},
{
label
:
'封面图'
,
slots
:
'picture'
,
align
:
'center'
,
width
:
'170px'
},
{
label
:
'标题'
,
prop
:
'title'
,
align
:
'center'
},
{
label
:
'摘要'
,
prop
:
'remark'
,
align
:
'center'
},
...
...
src/modules/banner/views/List.vue
浏览文件 @
637daba9
<
template
>
<app-card
class=
"register-box"
>
<app-list
v-bind=
"tableOptions"
ref=
"list"
>
<div
class=
"line"
></div>
<div
class=
"btn-box"
>
<el-button
type=
"primary"
@
click=
"$router.push(
{ path: '/banner/update' })">新建Banner
</el-button>
</div>
<template
v-slot:filter-time
>
<el-date-picker
v-model=
"filterDate"
@
change=
"changeDate"
type=
"datetimerange"
range-separator=
"至"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
>
</el-date-picker>
</
template
>
<
template
v-slot:picture=
"{ row }"
>
<div
:style=
"`background-image:url($
{row.picture});background-size: cover;width:200px;height:100px;`">
</div>
</
template
>
<
template
v-slot:release-status=
"{ row }"
>
<el-switch
v-model=
"row.status"
@
change=
"updateStatus(row)"
>
</el-switch>
</
template
>
<
template
v-slot:sort-select=
"{ row }"
>
<el-select
v-model=
"row.sort"
placeholder=
"请选择"
@
change=
"updateStatus(row)"
>
<el-option
v-for=
"item in options"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
>
</el-option>
</el-select>
</
template
>
<
template
v-slot:table-x=
"{ row }"
>
<el-button
type=
"text"
@
click=
"handleEdit(row)"
>
编辑
</el-button>
<el-button
type=
"text"
@
click=
"handleDelete(row)"
>
删除
</el-button>
</
template
>
</app-list>
</app-card>
<div>
<div
class=
"breadcrumb"
>
Banner管理
</div>
<app-card
class=
"register-box"
>
<app-list
v-bind=
"tableOptions"
ref=
"list"
>
<div
class=
"line"
></div>
<div
class=
"btn-box"
>
<el-button
type=
"primary"
@
click=
"$router.push(
{ path: '/banner/update' })">新建Banner
</el-button>
</div>
<template
v-slot:filter-time
>
<el-date-picker
v-model=
"filterDate"
@
change=
"changeDate"
type=
"datetimerange"
range-separator=
"至"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
>
</el-date-picker>
</
template
>
<
template
v-slot:picture=
"{ row }"
>
<div
:style=
"`background-image:url($
{row.picture});background-size: cover;width:200px;height:100px;`">
</div>
</
template
>
<
template
v-slot:release-status=
"{ row }"
>
<el-switch
v-model=
"row.status"
@
change=
"updateStatus(row)"
>
</el-switch>
</
template
>
<
template
v-slot:sort-select=
"{ row }"
>
<el-select
style=
"width: 70px;"
v-model=
"row.sort"
placeholder=
"请选择"
@
change=
"updateStatus(row)"
>
<el-option
v-for=
"item in options"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
>
</el-option>
</el-select>
</
template
>
<
template
v-slot:table-x=
"{ row }"
>
<el-button
type=
"text"
@
click=
"handleEdit(row)"
>
编辑
</el-button>
<el-button
type=
"text"
@
click=
"handleDelete(row)"
>
删除
</el-button>
</
template
>
</app-list>
</app-card>
</div>
</template>
<
script
>
...
...
@@ -95,17 +98,16 @@ export default {
}
],
columns
:
[
{
label
:
'id'
,
prop
:
'id'
,
align
:
'center'
},
{
label
:
'标题'
,
prop
:
'title'
,
align
:
'center'
},
{
label
:
'图片'
,
slots
:
'picture'
,
align
:
'center'
,
width
:
'200px'
},
{
label
:
'图片'
,
slots
:
'picture'
,
width
:
'240px'
},
{
label
:
'标题'
,
prop
:
'title'
},
{
label
:
'id'
,
prop
:
'id'
},
{
label
:
'创建时间'
,
prop
:
'created_time'
},
{
label
:
'展示顺序'
,
slots
:
'sort-select'
},
{
label
:
'发布状态'
,
slots
:
'release-status'
,
align
:
'center'
slots
:
'release-status'
},
{
label
:
'创建时间'
,
prop
:
'created_time'
,
align
:
'center'
},
{
label
:
'排序'
,
slots
:
'sort-select'
,
align
:
'center'
},
{
label
:
'操作'
,
slots
:
'table-x'
,
align
:
'center'
}
{
label
:
'操作'
,
slots
:
'table-x'
}
]
}
}
...
...
src/modules/banner/views/Update.vue
浏览文件 @
637daba9
差异被折叠。
点击展开。
src/modules/essay/views/Update.vue
浏览文件 @
637daba9
...
...
@@ -118,7 +118,7 @@ export default {
},
data
()
{
return
{
activeName
:
'
1
'
,
activeName
:
'
0
'
,
status
:
true
,
drawer
:
false
,
direction
:
'rtl'
,
...
...
@@ -193,19 +193,7 @@ export default {
return
data
[
scope
.
row
.
type
]
}
},
{
label
:
'页面模板'
,
prop
:
'layout_name'
,
align
:
'center'
,
computed
:
scope
=>
{
const
data
=
{
1
:
'左图又文字'
,
2
:
'上图下文'
,
3
:
'文本'
}
return
data
[
scope
.
row
.
layout
]
}
},
{
label
:
'页面模板'
,
prop
:
'layout_name'
,
align
:
'center'
},
{
label
:
'标题'
,
prop
:
'title'
,
align
:
'center'
},
{
label
:
'创建时间'
,
prop
:
'created_time'
,
align
:
'center'
},
{
label
:
'操作'
,
slots
:
'table-x'
,
align
:
'center'
}
...
...
src/modules/menu/views/List.vue
浏览文件 @
637daba9
<
template
>
<app-card
class=
"register-box"
>
<app-list
v-bind=
"tableOptions"
ref=
"list"
>
<div
class=
"line"
></div>
<div
class=
"btn-box"
>
<el-button
type=
"primary"
@
click=
"$router.push(
{ path: '/menu/update' })">新建菜单
</el-button>
</div>
<template
v-slot:filter-time
>
<el-date-picker
v-model=
"filterDate"
@
change=
"changeDate"
type=
"datetimerange"
range-separator=
"至"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
>
</el-date-picker>
</
template
>
<
template
v-slot:picture=
"{ row }"
>
<div
:style=
"`background-image:url($
{row.picture});background-size: cover;width:50px;height:40px;`">
</div>
</
template
>
<
template
v-slot:release-status=
"{ row }"
>
<el-switch
v-model=
"row.status"
@
change=
"updateStatus(row)"
>
</el-switch>
</
template
>
<
template
v-slot:sort-select=
"{ row }"
>
<el-select
v-model=
"row.sort"
placeholder=
"请选择"
@
change=
"updateStatus(row)"
>
<el-option
v-for=
"item in options"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
>
</el-option>
</el-select>
</
template
>
<
template
v-slot:table-x=
"{ row }"
>
<el-button
type=
"text"
@
click=
"handleEdit(row)"
>
编辑
</el-button>
<el-button
type=
"text"
@
click=
"handleDelete(row)"
>
删除
</el-button>
</
template
>
</app-list>
</app-card>
<div>
<div
class=
"breadcrumb"
>
菜单管理
</div>
<app-card
class=
"register-box"
>
<app-list
v-bind=
"tableOptions"
ref=
"list"
>
<div
class=
"line"
></div>
<div
class=
"btn-box"
>
<el-button
type=
"primary"
@
click=
"$router.push(
{ path: '/menu/update' })">新建菜单
</el-button>
</div>
<template
v-slot:filter-time
>
<el-date-picker
v-model=
"filterDate"
@
change=
"changeDate"
type=
"datetimerange"
range-separator=
"至"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
>
</el-date-picker>
</
template
>
<
template
v-slot:picture=
"{ row }"
>
<div
:style=
"`background-image:url($
{row.picture});background-size: cover;width:50px;height:40px;`">
</div>
</
template
>
<
template
v-slot:release-status=
"{ row }"
>
<el-switch
v-model=
"row.status"
@
change=
"updateStatus(row)"
>
</el-switch>
</
template
>
<
template
v-slot:sort-select=
"{ row }"
>
<el-select
style=
"width: 70px;"
v-model=
"row.sort"
placeholder=
"请选择"
@
change=
"updateStatus(row)"
>
<el-option
v-for=
"item in options"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
>
</el-option>
</el-select>
</
template
>
<
template
v-slot:table-x=
"{ row }"
>
<el-button
type=
"text"
@
click=
"handleEdit(row)"
>
编辑
</el-button>
<el-button
type=
"text"
@
click=
"handleDelete(row)"
>
删除
</el-button>
</
template
>
</app-list>
</app-card>
</div>
</template>
<
script
>
...
...
@@ -95,18 +98,18 @@ export default {
}
],
columns
:
[
{
label
:
'id'
,
prop
:
'id'
,
align
:
'center'
},
{
label
:
'菜单图标'
,
slots
:
'picture'
,
align
:
'center'
,
width
:
'50px'
},
{
label
:
'菜单名称'
,
prop
:
'title'
,
align
:
'center'
},
{
label
:
'备注'
,
prop
:
'comment'
,
align
:
'center'
},
{
label
:
'菜单图标'
,
slots
:
'picture'
},
{
label
:
'菜单名称'
,
prop
:
'title'
},
{
label
:
'备注'
,
prop
:
'comment'
},
{
label
:
'id'
,
prop
:
'id'
},
{
label
:
'创建时间'
,
prop
:
'created_time'
},
{
label
:
'展示顺序'
,
slots
:
'sort-select'
},
{
label
:
'发布状态'
,
slots
:
'release-status'
,
align
:
'center'
},
{
label
:
'创建时间'
,
prop
:
'created_time'
,
align
:
'center'
},
{
label
:
'排序'
,
slots
:
'sort-select'
,
align
:
'center'
},
{
label
:
'操作'
,
slots
:
'table-x'
,
align
:
'center'
}
{
label
:
'操作'
,
slots
:
'table-x'
}
]
}
}
...
...
src/modules/menu/views/Update.vue
浏览文件 @
637daba9
差异被折叠。
点击展开。
src/modules/pages/components/FormType.vue
浏览文件 @
637daba9
...
...
@@ -65,7 +65,12 @@
<el-input
style=
"width: 20%"
v-model=
"data.offline_info"
></el-input>
</el-form-item>
<el-form-item
label=
"线下支付信息:"
prop=
"offline_more_info"
v-if=
"data.pay_type.includes('3')"
>
<v-editor
style=
"width: 500px"
:maxHeight=
"200"
:disabled=
"!!$route.query.type"
v-model=
"data.offline_more_info"
></v-editor>
<v-editor
style=
"width: 500px"
:maxHeight=
"200"
:disabled=
"!!$route.query.type"
v-model=
"data.offline_more_info"
></v-editor>
</el-form-item>
<el-form-item
label=
"单位优惠:"
>
<el-radio
v-model=
"data.can_company"
:label=
"1"
>
开启
</el-radio>
...
...
@@ -266,7 +271,7 @@ export default {
font-size
:
16px
;
font-weight
:
bold
;
color
:
#333333
;
border-left
:
3px
solid
rgba
(
184
,
1
,
64
,
1
)
;
border-left
:
3px
solid
#1655b2
;
padding-left
:
7px
;
margin-bottom
:
25px
;
}
...
...
src/modules/pages/views/List.vue
浏览文件 @
637daba9
<
template
>
<app-card
class=
"register-box"
>
<app-list
v-bind=
"tableOptions"
ref=
"list"
>
<div
class=
"line"
></div>
<div
class=
"btn-box"
>
<el-button
type=
"primary"
@
click=
"$router.push(
{ path: '/pages/update' })">新建页面
</el-button>
</div>
<template
v-slot:filter-time
>
<el-date-picker
v-model=
"filterDate"
@
change=
"changeDate"
type=
"datetimerange"
range-separator=
"至"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
>
</el-date-picker>
</
template
>
<
template
v-slot:release-status=
"{ row }"
>
<el-switch
v-model=
"row.status"
@
change=
"updateStatus(row)"
>
</el-switch>
</
template
>
<
template
v-slot:sort-select=
"{ row }"
>
<el-select
v-model=
"row.sort"
placeholder=
"请选择"
@
change=
"updateStatus(row)"
>
<el-option
v-for=
"item in options"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
>
</el-option>
</el-select>
</
template
>
<
template
v-slot:table-x=
"{ row }"
>
<el-button
type=
"text"
@
click=
"handleEdit(row)"
>
编辑
</el-button>
<el-button
type=
"text"
@
click=
"handleDelete(row)"
>
删除
</el-button>
</
template
>
</app-list>
</app-card>
<div>
<div
class=
"breadcrumb"
>
页面管理
</div>
<app-card
class=
"register-box"
>
<app-list
v-bind=
"tableOptions"
ref=
"list"
>
<div
class=
"line"
></div>
<div
class=
"btn-box"
>
<el-button
type=
"primary"
@
click=
"$router.push(
{ path: '/pages/update' })">新建页面
</el-button>
</div>
<template
v-slot:filter-time
>
<el-date-picker
v-model=
"filterDate"
@
change=
"changeDate"
type=
"datetimerange"
range-separator=
"至"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
>
</el-date-picker>
</
template
>
<
template
v-slot:release-status=
"{ row }"
>
<el-switch
v-model=
"row.status"
@
change=
"updateStatus(row)"
>
</el-switch>
</
template
>
<
template
v-slot:layout=
"{ row }"
>
<div>
{{
row
.
layout_name
}}
</div>
<PageTemplate
:type=
"row.layout"
></PageTemplate>
</
template
>
<
template
v-slot:sort-select=
"{ row }"
>
<el-select
style=
"width: 70px"
v-model=
"row.sort"
placeholder=
"请选择"
@
change=
"updateStatus(row)"
>
<el-option
v-for=
"item in options"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
>
</el-option>
</el-select>
</
template
>
<
template
v-slot:table-x=
"{ row }"
>
<el-button
type=
"text"
@
click=
"handleEdit(row)"
>
编辑
</el-button>
<el-button
type=
"text"
@
click=
"handleDelete(row)"
>
删除
</el-button>
</
template
>
</app-list>
</app-card>
</div>
</template>
<
script
>
// 接口
import
{
getAppList
,
updatePages
,
deletePages
}
from
'../api'
import
PageTemplate
from
'@/components/base/PageTemplate.vue'
export
default
{
components
:
{
PageTemplate
},
data
()
{
const
count
=
[]
for
(
let
i
=
0
;
i
<
100
;
i
++
)
{
...
...
@@ -92,18 +103,16 @@ export default {
}
],
columns
:
[
{
label
:
'id'
,
prop
:
'id'
,
align
:
'center'
},
{
label
:
'页面类型'
,
prop
:
'type_name'
,
align
:
'center'
},
{
label
:
'页面模板'
,
prop
:
'layout_name'
,
align
:
'center'
},
{
label
:
'标题'
,
prop
:
'title'
,
align
:
'center'
},
{
label
:
'页面类型'
,
prop
:
'type_name'
},
{
label
:
'页面模板'
,
slots
:
'layout'
,
width
:
'350px'
},
{
label
:
'页面名称'
,
prop
:
'title'
},
{
label
:
'创建时间'
,
prop
:
'created_time'
},
{
label
:
'展示顺序'
,
slots
:
'sort-select'
},
{
label
:
'发布状态'
,
slots
:
'release-status'
,
align
:
'center'
slots
:
'release-status'
},
{
label
:
'创建时间'
,
prop
:
'created_time'
,
align
:
'center'
},
{
label
:
'排序'
,
slots
:
'sort-select'
,
align
:
'center'
},
{
label
:
'操作'
,
slots
:
'table-x'
,
align
:
'center'
}
{
label
:
'操作'
,
slots
:
'table-x'
}
]
}
}
...
...
src/modules/pages/views/Update.vue
浏览文件 @
637daba9
<
template
>
<div
class=
"create-box"
>
<
app-card
:title=
"!$route.query.id ? '新建页面' : '编辑页面'
"
>
<el-form
:model=
"ruleForm"
ref=
"ruleForm"
label-width=
"100px"
class=
"demo-ruleForm"
style=
"width: 50%; margin: 0 auto"
>
<
div
class=
"breadcrumb
"
>
{{
!
$route
.
query
.
id
?
'新建页面'
:
'编辑页面'
}}
</div>
<app-card>
<el-form
:model=
"ruleForm"
ref=
"ruleForm"
label-width=
"100px"
class=
"demo-ruleForm"
style=
"width: 500px"
>
<el-form-item
label=
"页面名称"
prop=
"title"
>
<el-input
v-model=
"ruleForm.title"
placeholder=
"请填写页面名称"
></el-input>
</el-form-item
>
<el-form-item
label=
"页面类型"
>
<el-radio-group
v-model=
"ruleForm.type"
>
<el-radio
label=
"1"
>
首页展示区
</el-radio>
...
...
@@ -16,14 +16,20 @@
</el-form-item>
<el-form-item
label=
"页面模板"
>
<el-radio-group
v-model=
"ruleForm.layout"
>
<el-radio
label=
"1"
>
左图又文字
</el-radio>
<el-radio
label=
"2"
>
上图下文
</el-radio>
<el-radio
label=
"3"
>
文本
</el-radio>
<div
style=
"margin-top: 10px; padding-bottom: 10px"
>
<el-radio
label=
"1"
>
左图右文
</el-radio>
<PageTemplate
v-if=
"ruleForm.layout == '1'"
type=
"1"
style=
"margin-top: 10px;"
></PageTemplate>
</div>
<div
style=
"margin-top: 10px; padding-bottom: 10px"
>
<el-radio
label=
"2"
>
上图下文
</el-radio>
<PageTemplate
v-if=
"ruleForm.layout == '2'"
type=
"2"
style=
"margin-top: 10px;"
></PageTemplate>
</div>
<div
style=
"margin-top: 10px; padding-bottom: 10px"
>
<el-radio
label=
"3"
>
文本
</el-radio>
<PageTemplate
v-if=
"ruleForm.layout == '3'"
type=
"3"
style=
"margin-top: 10px;"
></PageTemplate>
</div>
</el-radio-group>
</el-form-item>
<el-form-item
label=
"页面名称"
prop=
"title"
>
<el-input
v-model=
"ruleForm.title"
></el-input>
</el-form-item>
<el-form-item>
<div
style=
"padding-top: 20px"
>
<el-button
type=
"primary"
@
click=
"submitForm"
>
确认
</el-button>
...
...
@@ -37,7 +43,11 @@
<
script
>
import
{
createPages
,
getDetails
,
updatePages
}
from
'../api'
import
PageTemplate
from
'@/components/base/PageTemplate.vue'
export
default
{
components
:
{
PageTemplate
},
data
()
{
return
{
ruleForm
:
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论