修复记忆播放
parent
6f72645313
commit
de24de6d58
|
@ -348,11 +348,20 @@ Anot({
|
|||
this.isPlaying = true
|
||||
} else {
|
||||
if (SONIST.stat === 'ready') {
|
||||
if (this.curr.id) {
|
||||
if (this.isPlaying) {
|
||||
SONIST.pause()
|
||||
} else {
|
||||
SONIST.play()
|
||||
}
|
||||
} else {
|
||||
let lastPlay = Anot.ls('last-play') || 0
|
||||
SONIST.play(lastPlay).then(it => {
|
||||
it.time = 0
|
||||
this.updateCurr(it)
|
||||
this.draw()
|
||||
})
|
||||
}
|
||||
this.isPlaying = !this.isPlaying
|
||||
}
|
||||
}
|
||||
|
|
|
@ -44,17 +44,9 @@ export default Anot({
|
|||
dbCache = null
|
||||
this.__APP__ = Anot.vmodels.app
|
||||
this.list = LS.getAll()
|
||||
let lastPlay = Anot.ls('last-play') || 0
|
||||
|
||||
SONIST.clear()
|
||||
SONIST.push(LS.getAll())
|
||||
|
||||
// if (appInit.autoPlay) {
|
||||
// SONIST.play(lastPlay).then(it => {
|
||||
// this.__APP__.play(it)
|
||||
// this.curr = it.id
|
||||
// })
|
||||
// }
|
||||
},
|
||||
watch: {
|
||||
'props.curr'(v) {
|
||||
|
|
Reference in New Issue