Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
center-qa
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
center-qa
Commits
6557ed14
提交
6557ed14
authored
3月 04, 2022
作者:
matian
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'origin/master'
上级
c69492b4
0552e45e
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
18 行增加
和
8 行删除
+18
-8
AddPaper.vue
src/modules/paper/components/AddPaper.vue
+16
-5
PaperQuestions.vue
src/modules/paper/components/PaperQuestions.vue
+1
-1
QuestionSelect.vue
src/modules/paper/components/QuestionSelect.vue
+1
-2
没有找到文件。
src/modules/paper/components/AddPaper.vue
浏览文件 @
6557ed14
...
...
@@ -5,9 +5,11 @@
<div
v-show=
"step === 1"
>
<question-select
@
selection-change=
"handleSelectionChange"
></question-select>
<div
class=
"buttons"
>
<div
class=
"buttons-inner"
>
<el-button
type=
"primary"
@
click=
"nextStep"
>
下一步
</el-button>
</div>
</div>
</div>
<!-- 选题组卷添加试卷第二步 -->
<div
v-show=
"step === 2"
>
<el-form
label-width=
"170px"
>
...
...
@@ -45,10 +47,12 @@
</template>
</el-form>
<div
class=
"buttons"
>
<div
class=
"buttons-inner"
>
<el-button
type=
"primary"
@
click=
"prevStep"
>
上一步
</el-button>
<el-button
type=
"primary"
style=
"margin-left: 20px"
:disabled=
"loading"
@
click=
"handleSave"
>
保存
</el-button>
</div>
</div>
</div>
<BatchSetting
:visible
.
sync=
"visible"
:data=
"questionTypeGroups[batchSettingQuestionType]"
...
...
@@ -65,7 +69,8 @@ import BatchSetting from './BatchSetting.vue'
import
{
batchGetQuestionList
,
updatePaperRules
}
from
'../api.js'
export
default
{
props
:
{
data
:
{
type
:
Object
,
default
:
()
=>
({})
}
data
:
{
type
:
Object
,
default
:
()
=>
({})
},
list
:
{
type
:
Array
,
default
:
()
=>
[]
}
},
components
:
{
QuestionSelect
,
BatchSetting
},
data
()
{
...
...
@@ -83,7 +88,7 @@ export default {
computed
:
{
// 已添加的试题
addedQuestions
()
{
return
this
.
data
.
questions
||
[]
return
this
.
list
||
[]
},
// 已添加的试题总分
addedQuestionsScore
()
{
...
...
@@ -196,11 +201,17 @@ export default {
</
script
>
<
style
lang=
"scss"
scoped
>
.buttons
{
height
:
92px
;
}
.buttons-inner
{
position
:
absolute
;
left
:
50%
;
bottom
:
30px
;
transform
:
translateX
(
-50%
);
left
:
0
;
right
:
0
;
bottom
:
0
;
padding
:
30px
;
text-align
:
center
;
background-color
:
#fff
;
z-index
:
1
;
}
ul
{
display
:
flex
;
...
...
src/modules/paper/components/PaperQuestions.vue
浏览文件 @
6557ed14
...
...
@@ -55,7 +55,7 @@
</el-row>
<!-- 选题组卷 -->
<
template
v-if=
"data.paper_type === 1"
>
<addPaper
:visible
.
sync=
"visible"
:data=
"data"
@
update=
"handleUpdate"
v-if=
"visible"
/>
<addPaper
:visible
.
sync=
"visible"
:data=
"data"
:list=
"questions"
@
update=
"handleUpdate"
v-if=
"visible"
/>
</
template
>
<!-- 自动组卷 -->
<
template
v-if=
"data.paper_type === 2"
>
...
...
src/modules/paper/components/QuestionSelect.vue
浏览文件 @
6557ed14
<
template
>
<div>
<div
style=
"margin-bottom: 25px"
>
<span
style=
"font-size: 14px; color: #606266; padding-right: 12px"
>
题库范围
:
</span>
<span
style=
"font-size: 14px; color: #606266; padding-right: 12px"
>
题库范围
</span>
<el-radio
@
change=
"refetchList"
v-model=
"permission"
:label=
"1"
>
我的题库
</el-radio>
<el-radio
@
change=
"refetchList"
v-model=
"permission"
:label=
"2"
>
公共题库
</el-radio>
</div>
...
...
@@ -29,7 +29,6 @@ export default {
tableOptions
()
{
return
{
limit
:
10
,
remote
:
{
httpRequest
:
getQuestionList
,
params
:
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论