Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
X
x-learn
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
x-learn
Commits
982efcd3
提交
982efcd3
authored
12月 01, 2021
作者:
matian
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat:路由修改以及页面样式调整
上级
e8177951
隐藏空白字符变更
内嵌
并排
正在显示
14 个修改的文件
包含
57 行增加
和
68 行删除
+57
-68
index.js
src/modules/teacher/data/course/index.js
+3
-3
List.vue
src/modules/teacher/data/course/views/List.vue
+2
-2
PersonalList.vue
src/modules/teacher/data/course/views/PersonalList.vue
+5
-11
ExamInfo.vue
src/modules/teacher/data/exam/components/ExamInfo.vue
+4
-4
Finished.vue
src/modules/teacher/data/exam/components/Finished.vue
+3
-5
Score.vue
src/modules/teacher/data/exam/components/Score.vue
+4
-4
Submission.vue
src/modules/teacher/data/exam/components/Submission.vue
+5
-5
TitleData.vue
src/modules/teacher/data/exam/components/TitleData.vue
+1
-1
index.js
src/modules/teacher/data/exam/index.js
+3
-3
ExamData.vue
src/modules/teacher/data/exam/views/ExamData.vue
+14
-13
List.vue
src/modules/teacher/data/exam/views/List.vue
+2
-2
Finished.vue
src/modules/teacher/data/test/components/Finished.vue
+3
-5
index.js
src/modules/teacher/data/test/index.js
+5
-3
List.vue
src/modules/teacher/data/test/views/List.vue
+3
-7
没有找到文件。
src/modules/teacher/data/course/index.js
浏览文件 @
982efcd3
...
@@ -4,9 +4,9 @@ const routes = [
...
@@ -4,9 +4,9 @@ const routes = [
component
:
()
=>
import
(
'@/components/layout/index.vue'
),
component
:
()
=>
import
(
'@/components/layout/index.vue'
),
children
:
[
children
:
[
{
path
:
'/teacher/data/course'
,
component
:
()
=>
import
(
'./views/List.vue'
)
},
{
path
:
'/teacher/data/course'
,
component
:
()
=>
import
(
'./views/List.vue'
)
},
{
path
:
'/classDatas'
,
component
:
()
=>
import
(
'./views/ClassList.vue'
)
},
{
path
:
'/
teacher/data/
classDatas'
,
component
:
()
=>
import
(
'./views/ClassList.vue'
)
},
{
path
:
'/personal'
,
component
:
()
=>
import
(
'./views/PersonalList.vue'
)
},
{
path
:
'/
teacher/data/
personal'
,
component
:
()
=>
import
(
'./views/PersonalList.vue'
)
},
{
path
:
'/detail'
,
component
:
()
=>
import
(
'./views/CourseProcessList.vue'
)
}
{
path
:
'/
teacher/data/
detail'
,
component
:
()
=>
import
(
'./views/CourseProcessList.vue'
)
}
]
]
}
}
]
]
...
...
src/modules/teacher/data/course/views/List.vue
浏览文件 @
982efcd3
...
@@ -59,7 +59,7 @@ export default {
...
@@ -59,7 +59,7 @@ export default {
methods
:
{
methods
:
{
toClassData
(
row
)
{
toClassData
(
row
)
{
this
.
$router
.
push
({
this
.
$router
.
push
({
path
:
'/classDatas'
,
path
:
'/
teacher/data/
classDatas'
,
query
:
{
query
:
{
row
:
row
row
:
row
}
}
...
@@ -67,7 +67,7 @@ export default {
...
@@ -67,7 +67,7 @@ export default {
},
},
toPersonal
(
row
)
{
toPersonal
(
row
)
{
this
.
$router
.
push
({
this
.
$router
.
push
({
path
:
'/personal'
,
path
:
'/
teacher/data/
personal'
,
query
:
{
query
:
{
row
:
row
row
:
row
}
}
...
...
src/modules/teacher/data/course/views/PersonalList.vue
浏览文件 @
982efcd3
...
@@ -15,18 +15,14 @@
...
@@ -15,18 +15,14 @@
<
script
>
<
script
>
export
default
{
export
default
{
data
()
{
data
()
{
return
{
return
{}
}
},
},
computed
:
{
computed
:
{
// 列表配置
// 列表配置
tableOptions
()
{
tableOptions
()
{
return
{
return
{
remote
:
{
remote
:
{},
},
filters
:
[{
type
:
'input'
,
prop
:
'class_name'
,
placeholder
:
'学生姓名'
,
label
:
'学生姓名'
}],
filters
:
[
{
type
:
'input'
,
prop
:
'class_name'
,
placeholder
:
'学生姓名'
,
label
:
'学生姓名'
}
],
columns
:
[
columns
:
[
{
label
:
'学生姓名'
,
prop
:
'paper_title'
,
slots
:
'table-name'
},
{
label
:
'学生姓名'
,
prop
:
'paper_title'
,
slots
:
'table-name'
},
{
label
:
'总学习时长'
,
prop
:
'class_name'
,
align
:
'center'
,
sortable
:
true
},
{
label
:
'总学习时长'
,
prop
:
'class_name'
,
align
:
'center'
,
sortable
:
true
},
...
@@ -35,16 +31,14 @@ export default {
...
@@ -35,16 +31,14 @@ export default {
{
label
:
'本课完成率'
,
prop
:
'grthr'
,
align
:
'center'
,
sortable
:
true
},
{
label
:
'本课完成率'
,
prop
:
'grthr'
,
align
:
'center'
,
sortable
:
true
},
{
label
:
'操作'
,
slots
:
'table-operate'
,
align
:
'center'
}
{
label
:
'操作'
,
slots
:
'table-operate'
,
align
:
'center'
}
],
],
data
:
[
data
:
[{
class_name
:
'dfwjehf'
}]
{
class_name
:
'dfwjehf'
}
]
}
}
}
}
},
},
methods
:
{
methods
:
{
toPersonDetail
(
row
)
{
toPersonDetail
(
row
)
{
this
.
$router
.
push
({
this
.
$router
.
push
({
path
:
'/detail'
,
path
:
'/
teacher/data/
detail'
,
query
:
{
query
:
{
row
:
row
row
:
row
}
}
...
...
src/modules/teacher/data/exam/components/ExamInfo.vue
浏览文件 @
982efcd3
...
@@ -5,16 +5,16 @@
...
@@ -5,16 +5,16 @@
<h1
style=
"font-size: 16px"
>
考试信息
</h1>
<h1
style=
"font-size: 16px"
>
考试信息
</h1>
<img
class=
"logo"
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/x-learning/data/exam.png"
alt=
""
/>
<img
class=
"logo"
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/x-learning/data/exam.png"
alt=
""
/>
</div>
</div>
<el-row
type=
"flex
"
class=
"row-bg"
justify=
"space-around"
>
<el-row
:gutter=
"20
"
class=
"row-bg"
justify=
"space-around"
>
<el-col
:span=
"
6
"
>
<el-col
:span=
"
8
"
>
<div
class=
"title"
>
总分
</div>
<div
class=
"title"
>
总分
</div>
<div><span
class=
"num"
>
100
</span><span
class=
"fen"
>
分
</span></div>
<div><span
class=
"num"
>
100
</span><span
class=
"fen"
>
分
</span></div>
</el-col>
</el-col>
<el-col
:span=
"
6
"
>
<el-col
:span=
"
8
"
>
<div
class=
"title"
>
及格分数
</div>
<div
class=
"title"
>
及格分数
</div>
<div><span
class=
"num"
>
100
</span><span
class=
"fen"
>
分
</span></div>
<div><span
class=
"num"
>
100
</span><span
class=
"fen"
>
分
</span></div>
</el-col>
</el-col>
<el-col
:span=
"
6
"
>
<el-col
:span=
"
8
"
>
<div
class=
"title"
>
考试总时长
</div>
<div
class=
"title"
>
考试总时长
</div>
<div><span
class=
"num"
>
100
</span><span
class=
"fen"
>
小时
</span></div>
<div><span
class=
"num"
>
100
</span><span
class=
"fen"
>
小时
</span></div>
</el-col>
</el-col>
...
...
src/modules/teacher/data/exam/components/Finished.vue
浏览文件 @
982efcd3
...
@@ -11,15 +11,13 @@
...
@@ -11,15 +11,13 @@
<
script
>
<
script
>
export
default
{
export
default
{
data
()
{
data
()
{
return
{
return
{}
}
},
},
computed
:
{
computed
:
{
// 列表配置
// 列表配置
tableOptions
()
{
tableOptions
()
{
return
{
return
{
remote
:
{
remote
:
{},
},
columns
:
[
columns
:
[
{
label
:
'排名'
,
prop
:
'paper_title'
,
align
:
'center'
},
{
label
:
'排名'
,
prop
:
'paper_title'
,
align
:
'center'
},
...
@@ -43,7 +41,7 @@ export default {
...
@@ -43,7 +41,7 @@ export default {
methods
:
{
methods
:
{
toPersonal
(
row
)
{
toPersonal
(
row
)
{
this
.
$router
.
push
({
this
.
$router
.
push
({
path
:
'/PersonalList'
,
path
:
'/
teacher/data/
PersonalList'
,
query
:
{
query
:
{
row
:
row
row
:
row
}
}
...
...
src/modules/teacher/data/exam/components/Score.vue
浏览文件 @
982efcd3
...
@@ -5,16 +5,16 @@
...
@@ -5,16 +5,16 @@
<h1
style=
"font-size: 16px"
>
分数统计
</h1>
<h1
style=
"font-size: 16px"
>
分数统计
</h1>
<img
class=
"logo"
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/x-learning/data/score.png"
alt=
""
/>
<img
class=
"logo"
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/x-learning/data/score.png"
alt=
""
/>
</div>
</div>
<el-row
type=
"flex
"
class=
"row-bg"
justify=
"space-around"
>
<el-row
:gutter=
"20
"
class=
"row-bg"
justify=
"space-around"
>
<el-col
:span=
"
6
"
>
<el-col
:span=
"
8
"
>
<div
class=
"title"
>
平均分
</div>
<div
class=
"title"
>
平均分
</div>
<div><span
class=
"num"
>
100
</span><span
class=
"fen"
>
分
</span></div>
<div><span
class=
"num"
>
100
</span><span
class=
"fen"
>
分
</span></div>
</el-col>
</el-col>
<el-col
:span=
"
6
"
>
<el-col
:span=
"
8
"
>
<div
class=
"title"
>
最高分
</div>
<div
class=
"title"
>
最高分
</div>
<div><span
class=
"num"
>
100
</span><span
class=
"fen"
>
分
</span></div>
<div><span
class=
"num"
>
100
</span><span
class=
"fen"
>
分
</span></div>
</el-col>
</el-col>
<el-col
:span=
"
6
"
>
<el-col
:span=
"
8
"
>
<div
class=
"title"
>
最低分
</div>
<div
class=
"title"
>
最低分
</div>
<div><span
class=
"num"
>
100
</span><span
class=
"fen"
>
分
</span></div>
<div><span
class=
"num"
>
100
</span><span
class=
"fen"
>
分
</span></div>
</el-col>
</el-col>
...
...
src/modules/teacher/data/exam/components/Submission.vue
浏览文件 @
982efcd3
...
@@ -5,17 +5,17 @@
...
@@ -5,17 +5,17 @@
<h1
style=
"font-size: 16px"
>
交卷统计
</h1>
<h1
style=
"font-size: 16px"
>
交卷统计
</h1>
<img
class=
"logo"
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/x-learning/data/time.png"
alt=
""
/>
<img
class=
"logo"
src=
"https://webapp-pub.oss-cn-beijing.aliyuncs.com/x-learning/data/time.png"
alt=
""
/>
</div>
</div>
<el-row
type=
"flex
"
class=
"row-bg"
justify=
"space-around"
>
<el-row
:gutter=
"20
"
class=
"row-bg"
justify=
"space-around"
>
<el-col
:span=
"
6
"
>
<el-col
:span=
"
8
"
>
<div
class=
"title"
>
最早交卷
</div>
<div
class=
"title"
>
最早交卷
</div>
<div><span
class=
"num"
>
100
</span><span
class=
"fen"
>
分钟
</span></div>
<div><span
class=
"num"
>
100
</span><span
class=
"fen"
>
分钟
</span></div>
</el-col>
</el-col>
<el-col
:span=
"
6
"
>
<el-col
:span=
"
8
"
>
<div
class=
"title"
>
最迟交卷
</div>
<div
class=
"title"
>
最迟交卷
</div>
<div><span
class=
"num"
>
100
</span><span
class=
"fen"
>
分钟
</span></div>
<div><span
class=
"num"
>
100
</span><span
class=
"fen"
>
分钟
</span></div>
</el-col>
</el-col>
<el-col
:span=
"
6
"
>
<el-col
:span=
"
8
"
>
<div
class=
"title"
>
平均交卷时长
</div>
<div
class=
"title"
style=
"white-space: nowrap"
>
平均交卷时长
</div>
<div><span
class=
"num"
>
100
</span><span
class=
"fen"
>
分钟
</span></div>
<div><span
class=
"num"
>
100
</span><span
class=
"fen"
>
分钟
</span></div>
</el-col>
</el-col>
</el-row>
</el-row>
...
...
src/modules/teacher/data/exam/components/TitleData.vue
浏览文件 @
982efcd3
<
template
>
<
template
>
<el-card>
<el-card
style=
"margin-right: -20px"
>
<app-container>
<app-container>
<h1
style=
"color: #333; font-size: 16px; border-left: 3px solid #aa1941; padding-left: 7px"
>
题目数据
</h1>
<h1
style=
"color: #333; font-size: 16px; border-left: 3px solid #aa1941; padding-left: 7px"
>
题目数据
</h1>
<el-button
type=
"text"
style=
"font-size: 16px; color: #aa1941; float: right; margin-top: -40px"
>
导出
</el-button>
<el-button
type=
"text"
style=
"font-size: 16px; color: #aa1941; float: right; margin-top: -40px"
>
导出
</el-button>
...
...
src/modules/teacher/data/exam/index.js
浏览文件 @
982efcd3
...
@@ -4,10 +4,10 @@ const routes = [
...
@@ -4,10 +4,10 @@ const routes = [
component
:
()
=>
import
(
'@/components/layout/index.vue'
),
component
:
()
=>
import
(
'@/components/layout/index.vue'
),
children
:
[
children
:
[
{
path
:
'/teacher/data/exam'
,
component
:
()
=>
import
(
'./views/List.vue'
)
},
{
path
:
'/teacher/data/exam'
,
component
:
()
=>
import
(
'./views/List.vue'
)
},
{
path
:
'/class'
,
component
:
()
=>
import
(
'./views/ClassList.vue'
)
},
{
path
:
'/
teacher/data/
class'
,
component
:
()
=>
import
(
'./views/ClassList.vue'
)
},
{
path
:
'/PersonalList'
,
component
:
()
=>
import
(
'./views/PersonalList.vue'
)
},
{
path
:
'/
teacher/data/
PersonalList'
,
component
:
()
=>
import
(
'./views/PersonalList.vue'
)
},
{
path
:
'/teacher/data/exam/classDetail'
,
component
:
()
=>
import
(
'./views/ClassDetail.vue'
)
},
{
path
:
'/teacher/data/exam/classDetail'
,
component
:
()
=>
import
(
'./views/ClassDetail.vue'
)
},
{
path
:
'/examData'
,
component
:
()
=>
import
(
'./views/ExamData.vue'
)
}
{
path
:
'/
teacher/data/
examData'
,
component
:
()
=>
import
(
'./views/ExamData.vue'
)
}
]
]
}
}
]
]
...
...
src/modules/teacher/data/exam/views/ExamData.vue
浏览文件 @
982efcd3
<
template
>
<
template
>
<div
class=
"container"
>
<div
class=
"container"
>
<el-row
type=
"flex"
class=
"row-bg"
justify=
"space-between"
style=
"margin-bottom: 30px"
>
<el-row
type=
"flex"
class=
"row-bg"
justify=
"space-between"
style=
"margin-bottom: 30px"
>
<el-col
:span=
"10"
><h1
style=
"padding-left: 50px; font-size: 30px"
>
模拟测试一
</h1></el-col>
<el-col><h1
style=
"padding-left: 50px; font-size: 30px"
>
模拟测试一
</h1></el-col>
<el-col
:span=
"
5
"
>
<el-col
:span=
"
11
"
>
<el-select
v-model=
"label"
placeholder=
"请选择"
>
<el-select
v-model=
"label"
placeholder=
"请选择"
>
<el-option
v-for=
"item in options"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
>
</el-option>
<el-option
v-for=
"item in options"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
>
</el-option>
</el-select>
</el-select>
<el-button
type=
"text"
style=
"margin-left: 20px"
>
导出pdf
</el-button>
<el-button
type=
"text"
style=
"margin-left: 20px"
>
导出pdf
</el-button>
</el-col>
</el-col>
</el-row>
</el-row>
<el-row
type=
"flex
"
class=
"row-bg"
>
<el-row
:gutter=
"10
"
class=
"row-bg"
>
<el-col
class=
"col"
><ExamInfo
/></el-col>
<el-col
:span=
"8"
class=
"col"
><ExamInfo
/></el-col>
<el-col
class=
"col"
><Submission
/></el-col>
<el-col
:span=
"8"
class=
"col"
><Submission
/></el-col>
<el-col><Score
/></el-col>
<el-col
:span=
"7"
><Score
/></el-col>
</el-row>
</el-row>
<el-row
type=
"flex
"
class=
"row-bg"
>
<el-row
:gutter=
"10
"
class=
"row-bg"
>
<el-col
class=
"col"
><ScoreRanking
/></el-col>
<el-col
:span=
"12"
class=
"col"
><ScoreRanking
/></el-col>
<el-col><TitleData
/></el-col>
<el-col
:span=
"11"
><TitleData
/></el-col>
</el-row>
</el-row>
<el-row
type=
"flex
"
class=
"row-bg"
>
<el-row
:gutter=
"10
"
class=
"row-bg"
>
<el-col
class=
"col"
><Result
/></el-col>
<el-col
:span=
"8"
class=
"col"
><Result
/></el-col>
<el-col
class=
"col"
><ScoreRange
/></el-col>
<el-col
:span=
"8"
class=
"col"
><ScoreRange
/></el-col>
<el-col><QuestionType
/></el-col>
<el-col
:span=
"7"
><QuestionType
/></el-col>
</el-row>
</el-row>
</div>
</div>
</
template
>
</
template
>
...
@@ -48,6 +48,7 @@ export default {
...
@@ -48,6 +48,7 @@ export default {
<
style
>
<
style
>
.row-bg
{
.row-bg
{
margin-top
:
30px
;
margin-top
:
30px
;
padding
:
10px
0
;
}
}
.col
{
.col
{
margin-right
:
21px
;
margin-right
:
21px
;
...
...
src/modules/teacher/data/exam/views/List.vue
浏览文件 @
982efcd3
...
@@ -76,7 +76,7 @@ export default {
...
@@ -76,7 +76,7 @@ export default {
methods
:
{
methods
:
{
toExamData
(
row
)
{
toExamData
(
row
)
{
this
.
$router
.
push
({
this
.
$router
.
push
({
path
:
'/examData'
,
path
:
'/
teacher/data/
examData'
,
query
:
{
query
:
{
row
:
row
row
:
row
}
}
...
@@ -85,7 +85,7 @@ export default {
...
@@ -85,7 +85,7 @@ export default {
// 班级数据
// 班级数据
toClassData
(
row
)
{
toClassData
(
row
)
{
this
.
$router
.
push
({
this
.
$router
.
push
({
path
:
'/class'
,
path
:
'/
teacher/data/
class'
,
query
:
{
query
:
{
row
:
row
row
:
row
}
}
...
...
src/modules/teacher/data/test/components/Finished.vue
浏览文件 @
982efcd3
...
@@ -11,15 +11,13 @@
...
@@ -11,15 +11,13 @@
<
script
>
<
script
>
export
default
{
export
default
{
data
()
{
data
()
{
return
{
return
{}
}
},
},
computed
:
{
computed
:
{
// 列表配置
// 列表配置
tableOptions
()
{
tableOptions
()
{
return
{
return
{
remote
:
{
remote
:
{},
},
columns
:
[
columns
:
[
{
label
:
'排名'
,
prop
:
'paper_title'
,
align
:
'center'
},
{
label
:
'排名'
,
prop
:
'paper_title'
,
align
:
'center'
},
...
@@ -43,7 +41,7 @@ export default {
...
@@ -43,7 +41,7 @@ export default {
methods
:
{
methods
:
{
toPersonal
(
row
)
{
toPersonal
(
row
)
{
this
.
$router
.
push
({
this
.
$router
.
push
({
path
:
'/person'
,
path
:
'/
teacher/data/
person'
,
query
:
{
query
:
{
row
:
row
row
:
row
}
}
...
...
src/modules/teacher/data/test/index.js
浏览文件 @
982efcd3
...
@@ -2,9 +2,11 @@ const routes = [
...
@@ -2,9 +2,11 @@ const routes = [
{
{
path
:
'/'
,
path
:
'/'
,
component
:
()
=>
import
(
'@/components/layout/index.vue'
),
component
:
()
=>
import
(
'@/components/layout/index.vue'
),
children
:
[{
path
:
'/teacher/data/test'
,
component
:
()
=>
import
(
'./views/List.vue'
)
},
children
:
[
{
path
:
'/classList'
,
component
:
()
=>
import
(
'./views/ClassList.vue'
)
},
{
path
:
'/teacher/data/test'
,
component
:
()
=>
import
(
'./views/List.vue'
)
},
{
path
:
'/person'
,
component
:
()
=>
import
(
'./views/PersonalList.vue'
)
}]
{
path
:
'/teacher/data/classList'
,
component
:
()
=>
import
(
'./views/ClassList.vue'
)
},
{
path
:
'/teacher/data/person'
,
component
:
()
=>
import
(
'./views/PersonalList.vue'
)
}
]
}
}
]
]
...
...
src/modules/teacher/data/test/views/List.vue
浏览文件 @
982efcd3
...
@@ -22,9 +22,7 @@ export default {
...
@@ -22,9 +22,7 @@ export default {
// 列表配置
// 列表配置
tableOptions
()
{
tableOptions
()
{
return
{
return
{
remote
:
{
remote
:
{},
},
filters
:
[
filters
:
[
{
type
:
'select'
,
prop
:
'class_name'
,
placeholder
:
'练习名称'
},
{
type
:
'select'
,
prop
:
'class_name'
,
placeholder
:
'练习名称'
},
{
type
:
'select'
,
prop
:
'paper_title'
,
placeholder
:
'所属课程'
}
{
type
:
'select'
,
prop
:
'paper_title'
,
placeholder
:
'所属课程'
}
...
@@ -41,16 +39,14 @@ export default {
...
@@ -41,16 +39,14 @@ export default {
{
label
:
'及格率'
,
prop
:
'dwefw'
,
align
:
'center'
},
{
label
:
'及格率'
,
prop
:
'dwefw'
,
align
:
'center'
},
{
label
:
'操作'
,
slots
:
'table-operate'
,
align
:
'center'
}
{
label
:
'操作'
,
slots
:
'table-operate'
,
align
:
'center'
}
],
],
data
:
[
data
:
[{
paper_title
:
'adsada'
}]
{
paper_title
:
'adsada'
}
]
}
}
}
}
},
},
methods
:
{
methods
:
{
toClassData
(
row
)
{
toClassData
(
row
)
{
this
.
$router
.
push
({
this
.
$router
.
push
({
path
:
'/classList'
,
path
:
'/
teacher/data/
classList'
,
query
:
{
query
:
{
row
:
row
row
:
row
}
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论