|
|
|
@ -3,6 +3,7 @@ const sunmi_print = uni.requireNativePlugin('Sunmi-Print-Inner')
|
|
|
|
|
const TTSSpeech = uni.requireNativePlugin("MT-TTS-Speech"); |
|
|
|
|
// #endif
|
|
|
|
|
const utils={ |
|
|
|
|
//一体机打印初始化
|
|
|
|
|
init:()=>{ |
|
|
|
|
// #ifdef APP
|
|
|
|
|
return new Promise((relove, reject)=>{ |
|
|
|
@ -18,6 +19,7 @@ const utils={
|
|
|
|
|
}) |
|
|
|
|
// #endif
|
|
|
|
|
},
|
|
|
|
|
//检查打印机状态
|
|
|
|
|
getstate:()=>{ |
|
|
|
|
// #ifdef APP
|
|
|
|
|
return new Promise((relove, reject)=>{ |
|
|
|
@ -57,6 +59,7 @@ const utils={
|
|
|
|
|
}) |
|
|
|
|
// #endif
|
|
|
|
|
}, |
|
|
|
|
//打印的内容
|
|
|
|
|
printxie:async (obj)=>{ |
|
|
|
|
// #ifdef APP
|
|
|
|
|
let res=await sunmi_print.labelLocate(); |
|
|
|
@ -106,6 +109,7 @@ const utils={
|
|
|
|
|
},2000)
|
|
|
|
|
// #endif
|
|
|
|
|
}, |
|
|
|
|
//蓝牙打印初始化
|
|
|
|
|
initbl:()=>{ |
|
|
|
|
// #ifdef APP
|
|
|
|
|
let deviceList = []; |
|
|
|
@ -134,6 +138,7 @@ const utils={
|
|
|
|
|
return deviceList |
|
|
|
|
// #endif
|
|
|
|
|
}, |
|
|
|
|
//给蓝牙打印机推送打印的内容
|
|
|
|
|
getbl:(dev,text)=>{ |
|
|
|
|
// #ifdef APP
|
|
|
|
|
let main = plus.android.runtimeMainActivity(); |
|
|
|
@ -174,6 +179,7 @@ const utils={
|
|
|
|
|
} |
|
|
|
|
// #endif
|
|
|
|
|
}, |
|
|
|
|
//初始化tts语音引擎
|
|
|
|
|
inittts(){ |
|
|
|
|
// #ifdef APP
|
|
|
|
|
TTSSpeech.init((status) => { |
|
|
|
@ -237,13 +243,15 @@ const utils={
|
|
|
|
|
}, 'com.iflytek.speechcloud') |
|
|
|
|
// #endif
|
|
|
|
|
}, |
|
|
|
|
ttsspke:(text)=>{ //语音播报
|
|
|
|
|
//语音播报
|
|
|
|
|
ttsspke:(text)=>{
|
|
|
|
|
// #ifdef APP
|
|
|
|
|
console.log('语音播报'); |
|
|
|
|
if(!text){return} |
|
|
|
|
TTSSpeech.speak({ text }); |
|
|
|
|
// #endif
|
|
|
|
|
}, |
|
|
|
|
//设置扫描的广播
|
|
|
|
|
setting:()=>{ |
|
|
|
|
// #ifdef APP
|
|
|
|
|
let main=plus.android.runtimeMainActivity() |
|
|
|
@ -266,6 +274,7 @@ const utils={
|
|
|
|
|
main.sendBroadcast(intentSetting) |
|
|
|
|
// #endif
|
|
|
|
|
}, |
|
|
|
|
//获取当前APP的版本信息
|
|
|
|
|
getversion:()=>{ |
|
|
|
|
return new Promise((relove, reject)=>{ |
|
|
|
|
// #ifdef APP
|
|
|
|
@ -285,6 +294,7 @@ const utils={
|
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
//执行下载更新(apk和wgt都可以)
|
|
|
|
|
updatefile:(file)=>{ |
|
|
|
|
// #ifdef APP
|
|
|
|
|
const downloadTask = uni.downloadFile({ //执行下载
|
|
|
|
@ -319,6 +329,7 @@ const utils={
|
|
|
|
|
}); |
|
|
|
|
// #endif
|
|
|
|
|
}, |
|
|
|
|
//执行下载更新(无感)(wgt)
|
|
|
|
|
updatefile1:(file)=>{ |
|
|
|
|
// #ifdef APP
|
|
|
|
|
const downloadTask = uni.downloadFile({ //执行下载
|
|
|
|
|