提交 622c5ef2 authored 作者: lihuihui's avatar lihuihui

updata

上级 bce3bcc5
......@@ -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) => {
......
......@@ -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 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论