Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
educationStu
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
向伟
educationStu
Commits
04d7232a
Commit
04d7232a
authored
Sep 10, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
95e54e80
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
12 additions
and
14 deletions
+12
-14
Calculation.vue
src/components/subject/Calculation.vue
+1
-1
Cloze.vue
src/components/subject/Cloze.vue
+1
-1
Connect.vue
src/components/subject/Connect.vue
+1
-1
FillInTheBlanks.vue
src/components/subject/FillInTheBlanks.vue
+1
-1
Other.vue
src/components/subject/Other.vue
+1
-1
SharingChoose.vue
src/components/subject/SharingChoose.vue
+1
-1
SingleChoice.vue
src/components/subject/SingleChoice.vue
+2
-2
SingleChoiceNumber.vue
src/components/subject/SingleChoiceNumber.vue
+1
-3
SortingProblem.vue
src/components/subject/SortingProblem.vue
+1
-1
judge.vue
src/components/subject/judge.vue
+1
-1
shortAnswer.vue
src/components/subject/shortAnswer.vue
+1
-1
No files found.
src/components/subject/Calculation.vue
View file @
04d7232a
...
...
@@ -21,7 +21,7 @@
:current=
"current"
@
change=
"onchange"
>
<swiper-item
v-if=
"sortIndex != 1"
></swiper-item>
<swiper-item></swiper-item>
<swiper-item
v-for=
"(item1, index1) in data.DetailsList"
:key=
"index1"
>
<view
class=
"item1"
>
<view
class=
"flex flex_start_center"
>
...
...
src/components/subject/Cloze.vue
View file @
04d7232a
...
...
@@ -21,7 +21,7 @@
:current=
"current"
@
change=
"onchange"
>
<swiper-item
v-if=
"sortIndex != 1"
></swiper-item>
<swiper-item></swiper-item>
<swiper-item
v-for=
"(item1, index1) in data.DetailsList"
:key=
"index1"
>
<view
class=
"item1"
>
<view
class=
"flex flex_start_center"
>
...
...
src/components/subject/Connect.vue
View file @
04d7232a
...
...
@@ -15,7 +15,7 @@
:current=
"current"
@
change=
"onchange"
>
<swiper-item
v-if=
"sortIndex != 1"
></swiper-item>
<swiper-item></swiper-item>
<swiper-item
v-for=
"(item1, index1) in data.DetailsList"
:key=
"item1.id"
...
...
src/components/subject/FillInTheBlanks.vue
View file @
04d7232a
...
...
@@ -15,7 +15,7 @@
:current=
"current"
@
change=
"onchange"
>
<swiper-item
v-if=
"sortIndex != 1"
></swiper-item>
<swiper-item></swiper-item>
<swiper-item
v-for=
"(item1, index1) in data.DetailsList"
:key=
"index1"
>
<view
class=
"item1"
>
<view
class=
"flex flex_start_center"
>
...
...
src/components/subject/Other.vue
View file @
04d7232a
...
...
@@ -21,7 +21,7 @@
:current=
"current"
@
change=
"onchange"
>
<swiper-item
v-if=
"sortIndex != 1"
></swiper-item>
<swiper-item></swiper-item>
<swiper-item
v-for=
"(item1, index1) in data.DetailsList"
:key=
"index1"
>
<view
class=
"item1"
>
<view
class=
"flex flex_start_center"
>
...
...
src/components/subject/SharingChoose.vue
View file @
04d7232a
...
...
@@ -13,7 +13,7 @@
</view>
</view>
<swiper
class=
"swiper-box"
:autoplay=
"autoplay"
:current=
"current"
@
change=
"onchange"
>
<swiper-item
v-if=
"sortIndex != 1"
></swiper-item>
<swiper-item></swiper-item>
<swiper-item
v-for=
"(item1, index1) in data.DetailsList"
:key=
"item1.id"
>
<view
class=
"item1"
style=
"padding:0 20px;"
>
<view
class=
"flex flex_start_center"
>
...
...
src/components/subject/SingleChoice.vue
View file @
04d7232a
...
...
@@ -122,9 +122,9 @@ export default {
});
},
onchange
(
e
)
{
if
(
data
.
sortIndex
==
1
)
{
//
if (data.sortIndex == 1) {
data
.
ExamIndex
=
e
.
detail
.
current
;
}
//
}
if
(
data
.
ExamIndex
===
data
.
data
.
DetailsList
.
length
+
1
)
{
console
.
log
(
"单选"
,
e
.
detail
);
this
.
$emit
(
"getAfterTopic"
);
...
...
src/components/subject/SingleChoiceNumber.vue
View file @
04d7232a
...
...
@@ -115,9 +115,7 @@ export default {
});
},
onchange
(
e
)
{
if
(
data
.
sortIndex
==
1
)
{
data
.
ExamIndex
=
e
.
detail
.
current
;
}
data
.
ExamIndex
=
e
.
detail
.
current
;
if
(
data
.
ExamIndex
===
data
.
data
.
DetailsList
.
length
+
1
)
{
console
.
log
(
"单选"
,
e
.
detail
);
this
.
$emit
(
"getAfterTopic"
);
...
...
src/components/subject/SortingProblem.vue
View file @
04d7232a
...
...
@@ -21,7 +21,7 @@
:current=
"current"
@
change=
"onchange"
>
<swiper-item
v-if=
"sortIndex != 1"
></swiper-item>
<swiper-item></swiper-item>
<swiper-item
v-for=
"(item1, index1) in data.DetailsList"
:key=
"index1"
...
...
src/components/subject/judge.vue
View file @
04d7232a
...
...
@@ -20,7 +20,7 @@
:current=
"current"
@
change=
"onchange"
>
<swiper-item
v-if=
"sortIndex != 1"
></swiper-item>
<swiper-item></swiper-item>
<swiper-item
v-for=
"(item1, index1) in data.DetailsList"
:key=
"index1"
>
<view
class=
"item1"
>
<view
class=
"flex flex_start_center"
>
...
...
src/components/subject/shortAnswer.vue
View file @
04d7232a
...
...
@@ -21,7 +21,7 @@
:current=
"current"
@
change=
"onchange"
>
<swiper-item
v-if=
"sortIndex != 1"
></swiper-item>
<swiper-item></swiper-item>
<swiper-item
v-for=
"(item1, index1) in data.DetailsList"
:key=
"index1"
>
<view
class=
"item1"
>
<view
class=
"flex flex_start_center"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment