Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
T
transport-show-h5
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
transport-show-h5
Commits
622c5ef2
提交
622c5ef2
authored
7月 15, 2020
作者:
lihuihui
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
updata
上级
bce3bcc5
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
18 行增加
和
12 行删除
+18
-12
answerCard.vue
src/modules/exam-module/components/answerCard.vue
+9
-11
buyCourses.vue
src/pages/my/buyCourses.vue
+9
-1
没有找到文件。
src/modules/exam-module/components/answerCard.vue
浏览文件 @
622c5ef2
...
...
@@ -74,6 +74,7 @@ export default {
},
data
()
{
return
{
cardData
:
{},
countIndex
:
1
,
questionType
:
{
1
:
'单选题:'
,
...
...
@@ -84,17 +85,11 @@ export default {
}
},
methods
:
{
duplicates
(
arr
)
{
const
newarr
=
[]
for
(
let
j
=
0
;
j
<
arr
.
length
;
j
++
)
{
for
(
let
i
=
j
+
1
;
i
<
arr
.
length
;
i
++
)
{
if
(
arr
[
j
].
type
===
arr
[
i
].
type
)
{
arr
[
j
].
question_list
=
arr
[
j
].
question_list
.
concat
(
arr
[
i
].
question_list
)
newarr
.
push
(
arr
[
j
])
}
}
}
return
Array
.
from
(
new
Set
(
newarr
))
duplicates
(
c
)
{
// arr.map(item => {
// const data = arr.find(i => { return i.type === item.type })
// console.log(data)
// })
},
go
(
id
)
{
setTimeout
(()
=>
{
...
...
@@ -114,6 +109,9 @@ export default {
return
this
.
questionsData
},
dataList
()
{
// this.cardData = this.questionsData
// this.duplicates(this.cardData.questions)
// console.log(this.duplicates(this.cardData.questions))
let
num
=
1
return
this
.
questionsData
.
questions
.
map
(
item
=>
{
item
.
question_list
.
map
((
subitem
,
index
)
=>
{
...
...
src/pages/my/buyCourses.vue
浏览文件 @
622c5ef2
...
...
@@ -33,7 +33,8 @@ export default {
data
()
{
return
{
order
:
[],
orderTime
:
null
orderTime
:
null
,
goFlag
:
true
}
},
mounted
()
{
...
...
@@ -78,6 +79,10 @@ export default {
})
},
goBuy
(
data
)
{
if
(
this
.
goFlag
)
{
this
.
goFlag
=
false
return
false
}
clearInterval
(
this
.
orderTime
)
this
.
orderTime
=
setInterval
(()
=>
{
this
.
getMyOrder
()
...
...
@@ -86,6 +91,9 @@ export default {
url
:
`/pages/pay/index?data=
${
data
.
product_id
}
`
})
}
},
beforeMount
()
{
this
.
goFlag
=
true
}
}
</
script
>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论