消息语音提醒
This commit is contained in:
parent
8e318e6378
commit
63675c5228
@ -29,9 +29,16 @@
|
|||||||
import {
|
import {
|
||||||
getToken
|
getToken
|
||||||
} from '@/utils/auth'
|
} from '@/utils/auth'
|
||||||
|
let innerAudioContext ='';
|
||||||
|
// #ifdef APP || H5
|
||||||
|
const jyJPush = uni.requireNativePlugin('JY-JPush');
|
||||||
|
// #endif
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
msgSocket: this.$msgSocket,
|
||||||
|
// 是否正在播放
|
||||||
|
ifPlay:false,
|
||||||
aindex: 1,
|
aindex: 1,
|
||||||
msgNum: null,
|
msgNum: null,
|
||||||
identity: 'user',
|
identity: 'user',
|
||||||
@ -64,10 +71,92 @@
|
|||||||
// #ifdef APP || H5
|
// #ifdef APP || H5
|
||||||
this.identity = uni.getStorageSync('identity');
|
this.identity = uni.getStorageSync('identity');
|
||||||
// #endif
|
// #endif
|
||||||
|
if (!this.nowPageInterval) {
|
||||||
|
this.nowPageInterval = setInterval(() => {
|
||||||
|
// console.log('this.$msgSocket: ',this.$msgSocket);
|
||||||
|
this.msgSocket = this.$msgSocket
|
||||||
|
}, 3000);
|
||||||
|
}
|
||||||
|
console.log(this.aindex);
|
||||||
|
setTimeout(() => {
|
||||||
|
this.msgInfo()
|
||||||
|
}, 2000);
|
||||||
this.aindex = this.msg
|
this.aindex = this.msg
|
||||||
|
|
||||||
},
|
},
|
||||||
|
watch: {
|
||||||
|
msgSocket(newVal, oldVal) {
|
||||||
|
console.log('msgSocket值发生变化', newVal, oldVal)
|
||||||
|
this.msgInfo()
|
||||||
|
},
|
||||||
|
deep: true,
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
dianyidain() {
|
||||||
|
if(!this.ifPlay){
|
||||||
|
console.log('执行了,dianyidain');
|
||||||
|
if(innerAudioContext!=""){
|
||||||
|
try {
|
||||||
|
console.log('调用前先销毁');
|
||||||
|
innerAudioContext.stop();
|
||||||
|
innerAudioContext.destroy();
|
||||||
|
innerAudioContext="";
|
||||||
|
}catch (e){
|
||||||
|
console.log('销毁出错');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
innerAudioContext = uni.createInnerAudioContext();
|
||||||
|
this.ifPlay=true
|
||||||
|
// #ifdef APP-PLUS
|
||||||
|
innerAudioContext.src = '../../static/msgV.mp3';
|
||||||
|
// #endif
|
||||||
|
// #ifndef APP-PLUS
|
||||||
|
innerAudioContext.src = 'https://www.nuoyunr.com/lananRsc/rescue/msgV.mp3';
|
||||||
|
// #endif
|
||||||
|
// 设置播放次数和计数器
|
||||||
|
const playCount = 3;
|
||||||
|
let currentCount = 0;
|
||||||
|
// 初次播放
|
||||||
|
innerAudioContext.play();
|
||||||
|
innerAudioContext.onError((err) => {
|
||||||
|
console.error('播放错误', err);
|
||||||
|
this.ifPlay=false
|
||||||
|
innerAudioContext.stop();
|
||||||
|
innerAudioContext.destroy(); // 播放错误后释放实例
|
||||||
|
});
|
||||||
|
// 监听音频播放结束事件
|
||||||
|
innerAudioContext.onEnded(() => {
|
||||||
|
// 播放计数加一
|
||||||
|
currentCount++;
|
||||||
|
// 判断是否达到播放次数上限
|
||||||
|
if (currentCount < playCount) {
|
||||||
|
// 继续播放
|
||||||
|
innerAudioContext.play();
|
||||||
|
} else {
|
||||||
|
// 播放完成,可以在这里添加额外的逻辑
|
||||||
|
console.log('播放完成');
|
||||||
|
this.ifPlay=false
|
||||||
|
//及时释放资源
|
||||||
|
innerAudioContext.stop();
|
||||||
|
innerAudioContext.destroy();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}else{
|
||||||
|
console.log('正在播放音频,拒绝播放请求');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
msgInfo() {
|
||||||
|
console.log(this.msgSocket, 'msgSocket')
|
||||||
|
if (this.msgSocket) {
|
||||||
|
console.log('消息回调启动成功')
|
||||||
|
this.msgSocket.onMessage(res => {
|
||||||
|
console.log("发出提示音", res);
|
||||||
|
// this.getbottom();
|
||||||
|
this.dianyidain()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
},
|
||||||
async getbottom() {
|
async getbottom() {
|
||||||
if (!getToken()) {
|
if (!getToken()) {
|
||||||
return
|
return
|
||||||
|
@ -6,7 +6,7 @@ module.exports = {
|
|||||||
imagesUrl: 'http://shequ.0315e.com/static/images/pages/',
|
imagesUrl: 'http://shequ.0315e.com/static/images/pages/',
|
||||||
baseImageUrl: 'https://www.nuoyunr.com/minio/',
|
baseImageUrl: 'https://www.nuoyunr.com/minio/',
|
||||||
shareUrl: 'https://www.lighting-it.cn/share?inviteId=',
|
shareUrl: 'https://www.lighting-it.cn/share?inviteId=',
|
||||||
wsUrl: 'wss://www.nuoyunr.com',
|
wsUrl: 'ws://192.168.1.17:48080',
|
||||||
// 应用信息
|
// 应用信息
|
||||||
appInfo: {
|
appInfo: {
|
||||||
// 应用名称
|
// 应用名称
|
||||||
|
38
main.js
38
main.js
@ -3,10 +3,48 @@ import uView from "uview-ui";
|
|||||||
import config from '@/config'
|
import config from '@/config'
|
||||||
const baseUrl = config.baseUrl
|
const baseUrl = config.baseUrl
|
||||||
Vue.prototype.$baseUrl = baseUrl;
|
Vue.prototype.$baseUrl = baseUrl;
|
||||||
|
const baseImageUrl = config.baseImageUrl
|
||||||
|
Vue.prototype.$baseImageUrl = baseImageUrl;
|
||||||
Vue.use(uView);
|
Vue.use(uView);
|
||||||
|
// 如此配置即可
|
||||||
|
import {
|
||||||
|
tabBarconnect,
|
||||||
|
closeMsgSocket,
|
||||||
|
sendMsg
|
||||||
|
} from '@/utils/tebBarSocket'
|
||||||
|
import {
|
||||||
|
getStrData
|
||||||
|
} from '@/utils/auth'
|
||||||
|
let msgTimer;
|
||||||
|
let msgSocket;
|
||||||
|
export function startMsgSocket(tenantId,userId) {
|
||||||
|
msgSocket = null
|
||||||
|
msgSocket = tabBarconnect(tenantId,userId);
|
||||||
|
if (!msgTimer && getStrData('userId')) {
|
||||||
|
msgTimer = setInterval(() => {
|
||||||
|
sendMsg(msgSocket)
|
||||||
|
}, 10000);
|
||||||
|
}
|
||||||
|
Vue.prototype.$msgSocket = msgSocket
|
||||||
|
}
|
||||||
|
Vue.prototype.$startMsgSocket = startMsgSocket; //userid
|
||||||
|
export function tabBarcloseSocket() {
|
||||||
|
closeMsgSocket;
|
||||||
|
}
|
||||||
|
export function getclearInterval() {
|
||||||
|
console.log('执行关闭请求');
|
||||||
|
clearInterval(msgTimer);
|
||||||
|
msgTimer = undefined;
|
||||||
|
|
||||||
|
}
|
||||||
|
Vue.prototype.$getclearInterval = getclearInterval;
|
||||||
// #ifndef VUE3
|
// #ifndef VUE3
|
||||||
import Vue from 'vue'
|
import Vue from 'vue'
|
||||||
import './uni.promisify.adaptor'
|
import './uni.promisify.adaptor'
|
||||||
|
import {
|
||||||
|
request
|
||||||
|
} from "@/utils/request.js"
|
||||||
|
Vue.prototype.$request = request
|
||||||
Vue.config.productionTip = false
|
Vue.config.productionTip = false
|
||||||
App.mpType = 'app'
|
App.mpType = 'app'
|
||||||
const app = new Vue({
|
const app = new Vue({
|
||||||
|
@ -47,7 +47,9 @@ import OrderCard from "@/components/orderCard.vue";
|
|||||||
import config from '@/config'
|
import config from '@/config'
|
||||||
import {
|
import {
|
||||||
getToken,
|
getToken,
|
||||||
getUserInfo
|
getUserInfo,
|
||||||
|
getStrData,
|
||||||
|
getTenantId
|
||||||
} from '@/utils/auth'
|
} from '@/utils/auth'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@ -109,6 +111,17 @@ export default {
|
|||||||
defaultAvatar: require('@/static/icons/avatar.png')
|
defaultAvatar: require('@/static/icons/avatar.png')
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
onLoad(){
|
||||||
|
if(!getToken()){
|
||||||
|
uni.reLaunch({
|
||||||
|
url: '/pages/login/login'
|
||||||
|
})
|
||||||
|
}else{
|
||||||
|
if(!this.$msgSocket){
|
||||||
|
this.$startMsgSocket(getTenantId(),getStrData("userId"))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
onShow() {
|
onShow() {
|
||||||
if(!getToken()){
|
if(!getToken()){
|
||||||
uni.reLaunch({
|
uni.reLaunch({
|
||||||
|
@ -16,9 +16,16 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad() {
|
onLoad() {
|
||||||
uni.reLaunch({
|
if(getToken()){
|
||||||
url: '/pages/login/login'
|
//跳转首页
|
||||||
})
|
uni.navigateTo({
|
||||||
|
url: '/pages-home/home/home'
|
||||||
|
})
|
||||||
|
}else{
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/login/login'
|
||||||
|
})
|
||||||
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
||||||
|
@ -51,7 +51,8 @@
|
|||||||
setToken,
|
setToken,
|
||||||
setTenantId,
|
setTenantId,
|
||||||
setUserInfo,
|
setUserInfo,
|
||||||
setJSONData
|
setJSONData,
|
||||||
|
setStrData
|
||||||
} from '@/utils/auth'
|
} from '@/utils/auth'
|
||||||
import {
|
import {
|
||||||
login,
|
login,
|
||||||
@ -155,6 +156,11 @@
|
|||||||
})
|
})
|
||||||
setToken(res.data.loginResult.accessToken)
|
setToken(res.data.loginResult.accessToken)
|
||||||
setUserInfo(res.data.userinfo)
|
setUserInfo(res.data.userinfo)
|
||||||
|
setStrData("userId",res.data.userinfo.id)
|
||||||
|
if(res.data.userinfo.roleCodes.indexOf("repair_staff")){
|
||||||
|
//维修工角色,需要再查一下是否是班组长
|
||||||
|
this.getIdLeader()
|
||||||
|
}
|
||||||
this.getStaffInfo(res.data.userinfo.id)
|
this.getStaffInfo(res.data.userinfo.id)
|
||||||
//跳转首页
|
//跳转首页
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
@ -203,6 +209,20 @@
|
|||||||
setJSONData("staffInfo",res.data)
|
setJSONData("staffInfo",res.data)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* 查是否班组长
|
||||||
|
*/
|
||||||
|
getIdLeader(){
|
||||||
|
request({
|
||||||
|
url: '/admin-api/repair/worker/getIfLeader',
|
||||||
|
method: 'get'
|
||||||
|
}).then((res) => {
|
||||||
|
console.log(res)
|
||||||
|
if (res.code == 200) {
|
||||||
|
setStrData("ifLeader",res.data)
|
||||||
|
}
|
||||||
|
})
|
||||||
},
|
},
|
||||||
getxz(index) {
|
getxz(index) {
|
||||||
this.activeid = index
|
this.activeid = index
|
||||||
|
@ -50,7 +50,8 @@ import {
|
|||||||
getToken,
|
getToken,
|
||||||
getUserInfo,
|
getUserInfo,
|
||||||
getJSONData,
|
getJSONData,
|
||||||
removeToken,removeUserInfo,removeJSONData
|
removeTenantId,
|
||||||
|
removeToken,removeUserInfo,removeJSONData,removeStrData
|
||||||
} from '@/utils/auth'
|
} from '@/utils/auth'
|
||||||
const UQRCode = require('uqrcodejs');
|
const UQRCode = require('uqrcodejs');
|
||||||
export default {
|
export default {
|
||||||
@ -78,6 +79,10 @@ export default {
|
|||||||
//直接取缓存中的用户信息
|
//直接取缓存中的用户信息
|
||||||
this.customInfo = getUserInfo()
|
this.customInfo = getUserInfo()
|
||||||
this.staff = getJSONData("staffInfo")
|
this.staff = getJSONData("staffInfo")
|
||||||
|
uni.showToast({
|
||||||
|
title: this.staff.uniqueCode,
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
if(this.staff.uniqueCode){
|
if(this.staff.uniqueCode){
|
||||||
this.showUniCode =true
|
this.showUniCode =true
|
||||||
this.generateUniCode(this.staff.uniqueCode)
|
this.generateUniCode(this.staff.uniqueCode)
|
||||||
@ -117,6 +122,8 @@ export default {
|
|||||||
removeToken()
|
removeToken()
|
||||||
removeUserInfo()
|
removeUserInfo()
|
||||||
removeJSONData("staffInfo")
|
removeJSONData("staffInfo")
|
||||||
|
removeStrData("userId")
|
||||||
|
removeTenantId()
|
||||||
//跳转首页
|
//跳转首页
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: '/pages/login/login'
|
url: '/pages/login/login'
|
||||||
|
BIN
static/msgV.mp3
Normal file
BIN
static/msgV.mp3
Normal file
Binary file not shown.
@ -19,7 +19,9 @@ export function setTenantId(TenantId) {
|
|||||||
export function getTenantId(){
|
export function getTenantId(){
|
||||||
return uni.getStorageSync(TenantIdKey)
|
return uni.getStorageSync(TenantIdKey)
|
||||||
}
|
}
|
||||||
|
export function removeTenantId() {
|
||||||
|
return uni.removeStorageSync(TenantIdKey);
|
||||||
|
}
|
||||||
export function hasRole(roleCode) {
|
export function hasRole(roleCode) {
|
||||||
const roleList = uni.getStorageSync('role')
|
const roleList = uni.getStorageSync('role')
|
||||||
if (roleList && roleList.length > 0) {
|
if (roleList && roleList.length > 0) {
|
||||||
@ -63,3 +65,15 @@ export function removeJSONData(keyStr) {
|
|||||||
return uni.removeStorageSync(keyStr)
|
return uni.removeStorageSync(keyStr)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function getStrData(keyStr) {
|
||||||
|
return uni.getStorageSync(keyStr)
|
||||||
|
}
|
||||||
|
|
||||||
|
export function setStrData(keyStr,dataStr) {
|
||||||
|
return uni.setStorageSync(keyStr, dataStr)
|
||||||
|
}
|
||||||
|
|
||||||
|
export function removeStrData(keyStr) {
|
||||||
|
return uni.removeStorageSync(keyStr)
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -1,23 +1,26 @@
|
|||||||
import {
|
import {
|
||||||
startMsgSocket
|
startMsgSocket
|
||||||
} from '../main.js'
|
} from '../main.js'
|
||||||
|
import {
|
||||||
|
getTenantId,
|
||||||
|
getStrData
|
||||||
|
} from '@/utils/auth'
|
||||||
import config from '@/config'
|
import config from '@/config'
|
||||||
export function tabBarconnect(userId) {
|
|
||||||
console.log("通知socket链接", userId);
|
export function tabBarconnect(tenantId, userId) {
|
||||||
|
console.log("通知socket链接", tenantId, userId);
|
||||||
var socketTask = uni.connectSocket({
|
var socketTask = uni.connectSocket({
|
||||||
url: config.wsUrl + '/websocket/announcement/' + userId,
|
url: config.wsUrl + '/websocket/message/'+tenantId+'/' + userId,
|
||||||
success(res) {
|
success(res) {
|
||||||
|
|
||||||
},
|
},
|
||||||
fail(err) {
|
fail(err) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
);
|
);
|
||||||
return socketTask;
|
return socketTask;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
export function sendMsg(SocketTask) {
|
export function sendMsg(SocketTask) {
|
||||||
if (SocketTask) {
|
if (SocketTask) {
|
||||||
SocketTask.send({
|
SocketTask.send({
|
||||||
@ -26,17 +29,13 @@ export function sendMsg(SocketTask) {
|
|||||||
console.log('消息链接正常')
|
console.log('消息链接正常')
|
||||||
},
|
},
|
||||||
fail: err => {
|
fail: err => {
|
||||||
console.log('消息链接异常 重新链接' + err, uni.getStorageSync('userId'));
|
console.log('消息链接异常 重新链接' + err, getStrData('userId'));
|
||||||
|
startMsgSocket(getTenantId(),getStrData('userId'));
|
||||||
startMsgSocket(uni.getStorageSync('userId'));
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
startMsgSocket(uni.getStorageSync('userId'));
|
startMsgSocket(getTenantId(),getStrData('userId'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function closeMsgSocket(SocketTask) {
|
export function closeMsgSocket(SocketTask) {
|
||||||
|
Loading…
Reference in New Issue
Block a user