Compare commits
2 Commits
3c7bd9a97f
...
cef9f18921
Author | SHA1 | Date |
---|---|---|
|
cef9f18921 | |
|
96c3b57f23 |
|
@ -8,8 +8,8 @@
|
|||
</a>
|
||||
</h1>
|
||||
</div>
|
||||
<div><audio ref="audioPlayer" :src="require('@/assets/mp3/tip.mp3')" autoplay></audio>
|
||||
<el-button id="aaaaaaaaaa" @click="playAudio">播放</el-button>
|
||||
<div><audio ref="audioPlayer" ></audio>
|
||||
<el-button id="aaaaaaaaaa">播放</el-button>
|
||||
</div>
|
||||
<div class="site-navbar__body clearfix">
|
||||
<el-menu class="site-navbar__menu" mode="horizontal">
|
||||
|
@ -102,7 +102,7 @@ export default {
|
|||
chatNumXdd: 0,
|
||||
ringOrderId: null,
|
||||
userId: null,
|
||||
|
||||
audioPlayer:null
|
||||
}
|
||||
},
|
||||
components: {
|
||||
|
@ -389,7 +389,8 @@ export default {
|
|||
})
|
||||
},
|
||||
playAudio(){
|
||||
this.$refs.audioPlayer.play()
|
||||
this.$refs.audioPlayer.src = require('@/assets/mp3/tip.mp3');
|
||||
this.$refs.audioPlayer.play();
|
||||
},
|
||||
// 获取视频圈未审核数据
|
||||
dataSelectSpq() {
|
||||
|
@ -399,7 +400,10 @@ export default {
|
|||
}).then(({ data }) => {
|
||||
if (data.data >= 0) {
|
||||
this.$cookie.set('numberSpq', data.data)
|
||||
document.getElementById('aaaaaaaaaa').click()
|
||||
document.getElementById('aaaaaaaaaa').addEventListener('click',()=>{
|
||||
console.log("dddd")
|
||||
this.playAudio()
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
|
@ -564,7 +568,7 @@ export default {
|
|||
this.userId = window.localStorage.getItem('userId');
|
||||
this.ringOrderId = window.localStorage.getItem('ringOrderId');
|
||||
|
||||
//生产需替换
|
||||
//生产需替换
|
||||
//互动管理菜单 - 每8秒检查一个功能下是否有未处理信息 单个重复检测时间为60秒
|
||||
//紧急求助
|
||||
// this.chatNumJjqz = setInterval(() => {
|
||||
|
|
Loading…
Reference in New Issue