Browse Source

修改蓝牙连接工作

myd
qb 1 year ago
parent
commit
ea71513d3f
  1. 7
      compoment/BasicContainer/BasicContainer.vue
  2. 202
      compoment/BluetoothList/BluetoothList.vue
  3. 4
      config/host.js
  4. 2
      main.js
  5. 4
      manifest.json
  6. 12
      pages.json
  7. 238
      pages/index/index.vue
  8. 7
      pages/login/login.vue
  9. 6
      pagesHome/pages/CustomerSign/CustomerSign.vue
  10. 43
      pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails.vue
  11. 1
      pagesHome/pages/LoadingScan/LoadingScan.vue
  12. 69
      pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue
  13. 12
      pagesHome/pages/PeopleScanUp/PeopleScanUp.vue
  14. 10
      pagesHome/pages/Relocation/Relocation.vue
  15. 10
      pagesHome/pages/RelocationAllocationId/RelocationAllocationId.vue
  16. 12
      pagesHome/pages/ScanUp/ScanUp.vue
  17. 20
      pagesHome/pages/StockUplist/StockUplist.vue
  18. 22
      pagesHome/pages/StockUplistScandetails/StockUplistScandetails.vue
  19. 125
      pagesHome/pages/orderInquiry/orderInquiry.vue
  20. 5
      pagesHome/pages/scansorting/scansorting.vue
  21. 75
      pagesHome/pages/setbarcode/setbarcode.vue
  22. 5
      pagesTask/pages/dynamicCheck/dynamicCheck.vue
  23. 3
      store/index.js
  24. 72
      store/useBluetoothStore.js
  25. 2
      unpackage/dist/build/app-plus/pagesHome/pages/OrderSortingDetail/OrderSortingDetail.css
  26. 1573
      unpackage/dist/dev/app-plus/app-service.js
  27. 93
      unpackage/dist/dev/app-plus/app.css
  28. 4
      unpackage/dist/dev/app-plus/manifest.json
  29. 9
      utils/request.js
  30. 123
      utils/utils.js

7
compoment/BasicContainer/BasicContainer.vue

@ -1,8 +1,8 @@
<template>
<view>
<!-- 顶部导航栏 -->
<u-navbar :title="title" placeholder :autoBack="true" leftIconSize='35' bgColor='#d3832a' leftIconColor='#ffffff'
titleStyle='color:#ffffff'></u-navbar>
<u-navbar :title="title" placeholder :autoBack="false" @leftClick="option.leftClick" leftIconSize='35'
bgColor='#d3832a' leftIconColor='#ffffff' titleStyle='color:#ffffff'></u-navbar>
</view>
<!-- 头部 -->
@ -40,6 +40,9 @@
},
title: {
type: String
},
leftClick() {
uni.navigateBack()
}
})

202
compoment/BluetoothList/BluetoothList.vue

@ -0,0 +1,202 @@
<template>
<view class="maboxbg" v-if="isshow" @click.stop="checkbox(0)">
<view class="modtips" @click.stop.prevent>
<view class="title">
{{title||'选择连接的蓝牙'}}
</view>
<!-- 复选框列表 -->
<scroll-view scroll-y="true" class="scvboxs">
<template v-if="bluetoothList.length !== 0">
<block v-for="(item, index) in bluetoothList" :key="item">
<view class="list-container" @click="handle_single(index as any)">
<!-- 单选图片 -->
<image class="chooseImg" v-show="!details.singleIndex.includes(index)" src="@/static/nocheck.png"
mode=""></image>
<image class="chooseImg" v-show="details.singleIndex.includes(index)" src="@/static/check.png"
mode=""></image>
<view class="list-item-title">{{item.name}}</view>
</view>
</block>
</template>
<template v-else>
<view></view>
</template>
</scroll-view>
<view class="buts">
<view @click="checkbox(1)" v-if="isshowcancel" class="cancel">{{cancelTxt||'取消'}}</view>
<view @click="checkbox(2)" class="confirm">{{confirmTxt||'确认'}}</view>
</view>
</view>
</view>
</template>
<script lang="ts" setup>
import { reactive, toRefs } from "vue";
import useBluetoothStore from "@/store/useBluetoothStore";
import { storeToRefs } from "pinia";
let details = reactive<any>({
title: '',
isshowcancel: true,
confirmTxt: '',
cancelTxt: '',
success: null,
cancel: null,
close: null,
isshow: false,
singleIndex: []
})
const bluetoothStore = useBluetoothStore()
//
const { bluetoothList } = storeToRefs(bluetoothStore)
//
const { CHOOSE_BLUETOOTH, HANDLE_INITBLUETOOTH } = bluetoothStore
// ,
if (bluetoothList.value.length === 0) { HANDLE_INITBLUETOOTH() }
/**
* 修改复选框的值
*/
const handle_single = (index : number) : void => {
if (details.singleIndex.includes(index)) {
//
details.singleIndex.shift()
return
}
details.singleIndex.splice(0, 1, index)
}
function setdetails(objs : any) {
for (let key in objs) {
details[key] = objs[key]
}
}
/**
* 点击事件
*/
function checkbox(type : number) {
switch (type) {
case 0:
if (details.close) {
details.close(details)
} else {
details.isshow = false
}
break;
case 1:
if (details.cancel) {
details.cancel(details)
} else {
details.isshow = false
}
break;
case 2:
if (details.success) {
details.success(details)
} else {
if (details.singleIndex.length === 0) {
uni.showToast({
title: '请选择一项蓝牙信息',
icon: 'none'
})
return
}
CHOOSE_BLUETOOTH(details.singleIndex[0])
details.isshow = false
}
break;
}
}
const { isshow, title, isshowcancel, confirmTxt, cancelTxt } = toRefs(details)
defineExpose({ setdetails, isshow })
</script>
<style lang="scss">
.maboxbg {
width: 100%;
height: 100%;
position: fixed;
left: 0;
top: 0;
background-color: #00000050;
z-index: 10000;
}
.modtips {
width: 630upx;
background: #FFFFFF;
border-radius: 7upx;
display: flex;
flex-direction: column;
align-items: center;
padding: 40upx 20upx;
position: absolute;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
box-sizing: border-box;
//
.title {
font-size: 34upx;
color: #092C4D;
}
.scvboxs {
width: 100%;
max-height: 500upx;
}
.list-container {
display: flex;
align-items: center;
height: 60upx;
.list-item-title {
margin-left: 20upx;
}
}
.buts {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
margin-top: 40upx;
>view {
display: flex;
align-items: center;
justify-content: center;
width: 260upx;
height: 88upx;
border-radius: 8upx;
font-size: 32upx;
}
>.cancel {
background-color: #F5F5F6;
color: #5A6875;
margin-right: 20upx;
}
>.confirm {
background-color: #D3832A;
color: #FFFFFF;
}
}
}
//
.chooseImg {
width: 32upx;
height: 32upx;
}
</style>

4
config/host.js

@ -20,8 +20,8 @@ const devhost = 'http://test.api.huitongys.com/'
/**
* 正式域名
* */
const prohost = 'http://h5uapi.huitongys.com/'
// const prohost = 'http://test.api.huitongys.com/'
// const prohost = 'http://h5uapi.huitongys.com/'
const prohost = 'http://test.api.huitongys.com/'
/**
* 图片域名
* */

2
main.js

@ -24,6 +24,7 @@ import tiplist from '@/compoment/tiplist/tiplist.vue'
import InputNum from '@/compoment/InputNum/InputNum.vue';
import BasicContainer from '@/compoment/BasicContainer/BasicContainer.vue';
import PopUp from '@/compoment/PopUp/PopUp.vue';
import BluetoothList from '@/compoment/BluetoothList/BluetoothList.vue';
// import moduleName from '@/compoment/ScanButton/ScanButton.vue';
import saomiao1 from '@/compoment/saomiao1.vue'
import saomiao2 from '@/compoment/saomiao2.vue'
@ -52,6 +53,7 @@ export function createApp() {
.component('InputNum', InputNum)
.component('BasicContainer', BasicContainer)
.component('PopUp', PopUp)
.component('BluetoothList', BluetoothList)
uni.$u.config.unit = 'rpx'
return {
app,

4
manifest.json

@ -2,8 +2,8 @@
"name" : "货无忧",
"appid" : "__UNI__EB22F37",
"description" : "",
"versionName" : "1.0.24",
"versionCode" : 1024,
"versionName" : "1.0.26",
"versionCode" : 1026,
"transformPx" : false,
/* 5+App */
"app-plus" : {

12
pages.json

@ -1272,12 +1272,12 @@
// "selectedIconPath": "/static/TabberIcon/icon3check.png",
// "text": "报表"
// },
{
"pagePath": "pages/news/news",
"iconPath": "/static/TabberIcon/icon4.png",
"selectedIconPath": "/static/TabberIcon/icon4check.png",
"text": "消息"
},
// {
// "pagePath": "pages/news/news",
// "iconPath": "/static/TabberIcon/icon4.png",
// "selectedIconPath": "/static/TabberIcon/icon4check.png",
// "text": "消息"
// },
{
"pagePath": "pages/user/user",
"iconPath": "/static/TabberIcon/icon5.png",

238
pages/index/index.vue

@ -43,125 +43,125 @@
import utils from '../../utils/utils';
const tip = ref(null)
let details = reactive<listtype>({ tablist: [] });
// let details = reactive<listtype>({
// tablist: [
// {
// type: 1,
// name: '',
// minilist: [
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '',
// router: '/pagesHome/pages/orderInquiry/orderInquiry',
// },
// ]
// },
// {
// type: 1,
// name: '',
// minilist: [
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '',
// router: '/pagesHome/pages/scansorting/scansorting',
// },
// // {
// // icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// // name: '',
// // router: '/pagesHome/pages/ordersorting/ordersorting',
// // },
// // {
// // icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// // name: '',
// // router: '/pagesHome/pages/lnventorysorting/lnventorysorting',
// // },
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '',
// router: '/pagesHome/pages/ScanUpType/ScanUpType',
// },
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '',
// router: '/pagesHome/pages/PeopleScanUpType/PeopleScanUpType',
// },
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '',
// router: '/pagesHome/pages/RelocationType/RelocationType',
// },
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '',
// router: '/pagesHome/pages/Retention/Retention',
// },
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '',
// router: '/pagesHome/pages/MergeTray/MergeTray',
// },
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '',
// router: '/pagesHome/pages/DownGoodsType/DownGoodsType',
// },
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '',
// router: '/pagesHome/pages/RemoveTray/RemoveTray',
// },
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '',
// router: '/pagesHome/pages/Check/Check',
// },
// ]
// },
// {
// type: 1,
// name: '',
// minilist: [
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '',
// router: '/pagesHome/pages/pickingScan/pickingScan',
// },
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '',
// router: '/pagesHome/pages/SelfPickupScan/SelfPickupScan',
// },
// ]
// },
// {
// type: 1,
// name: '',
// minilist: [
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '',
// router: '/pagesHome/pages/LoadingScan/LoadingScan',
// },
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '',
// router: '/pagesHome/pages/signinScan/signinScan',
// },
// ]
// },
// {
// type: 1,
// name: '线',
// minilist: [
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '线',
// router: '/pagesHome/pages/OfflineUpload/OfflineUpload',
// },
// ]
// },
// ]
// })
/* let details = reactive<listtype>({
tablist: [
{
type: 1,
name: '工作台',
minilist: [
{
icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
name: '订单查询',
router: '/pagesHome/pages/orderInquiry/orderInquiry',
},
]
},
{
type: 1,
name: '库内',
minilist: [
{
icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
name: '分拣打托',
router: '/pagesHome/pages/scansorting/scansorting',
},
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '',
// router: '/pagesHome/pages/ordersorting/ordersorting',
// },
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '',
// router: '/pagesHome/pages/lnventorysorting/lnventorysorting',
// },
{
icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
name: '扫码上架',
router: '/pagesHome/pages/ScanUpType/ScanUpType',
},
{
icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
name: '手动上架',
router: '/pagesHome/pages/PeopleScanUpType/PeopleScanUpType',
},
{
icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
name: '移库',
router: '/pagesHome/pages/RelocationType/RelocationType',
},
{
icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
name: '滞留',
router: '/pagesHome/pages/Retention/Retention',
},
{
icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
name: '合托',
router: '/pagesHome/pages/MergeTray/MergeTray',
},
{
icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
name: '下架',
router: '/pagesHome/pages/DownGoodsType/DownGoodsType',
},
{
icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
name: '空置托盘',
router: '/pagesHome/pages/RemoveTray/RemoveTray',
},
{
icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
name: '复核',
router: '/pagesHome/pages/Check/Check',
},
]
},
{
type: 1,
name: '出库',
minilist: [
{
icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
name: '拣货扫描',
router: '/pagesHome/pages/pickingScan/pickingScan',
},
{
icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
name: '自提扫描',
router: '/pagesHome/pages/SelfPickupScan/SelfPickupScan',
},
]
},
{
type: 1,
name: '配送',
minilist: [
{
icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
name: '装车扫描',
router: '/pagesHome/pages/LoadingScan/LoadingScan',
},
{
icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
name: '签收扫描',
router: '/pagesHome/pages/signinScan/signinScan',
},
]
},
{
type: 1,
name: '离线上传',
minilist: [
{
icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
name: '离线上传',
router: '/pagesHome/pages/OfflineUpload/OfflineUpload',
},
]
},
]
}) */
function gopathpage(path : string) {
uni.navigateTo({

7
pages/login/login.vue

@ -71,6 +71,8 @@
import utils from '@/utils/utils';
// pinia
import { useUserStore } from '@/store/uaeUserStore';
import useBluetoothStore from '@/store/useBluetoothStore.js';
const { HANDLE_INITBLUETOOTH } = useBluetoothStore()
// import { storeToRefs } from 'pinia';
const userStore = useUserStore()
const { HANDLE_ACCTOKEN, HANDLE_REFTOKEN, HANDLE_USERINFO } = userStore
@ -95,6 +97,8 @@
details.tenantId = users.tenantId
details.username = users.username
}
//
HANDLE_INITBLUETOOTH()
})
onShow(() => {
const timer = setTimeout(() => {
@ -168,7 +172,8 @@
'scope': 'all',
'username': details.username,
'password': details.password,
'tenantId': details.tenantId
'tenantId': details.tenantId,
'isLogin': true
}
uni.showLoading({
mask: true,

6
pagesHome/pages/CustomerSign/CustomerSign.vue

@ -68,12 +68,12 @@
<view :class="item.positioning==1?'ydk':''" @click="getLocation(item)">
{{item.positioning==1?'已打卡':'定位打卡'}}
</view>
<view @click="gosinorderscan(item)">扫描</view>
<view @click="gosinorderscan(item)">扫描</view>
<view @click="uplodimg(item)">上传签收图片</view>
</view>
<view @click="gosetorice(item)" class="mabut">
<!-- <view @click="gosetorice(item)" class="mabut">
设置增值服务
</view>
</view> -->
<view class="mabut" @click="allclick(item)"
v-if="authbuts.findIndex(val => val.code === '127')!=-1&&item.deliveryStatus!='完成配送'">
批量签收

43
pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails.vue

@ -213,24 +213,35 @@
/**
* */
async function scandata() {
let loadingId = uni.getStorageSync('checkvehicle').id
try {
uni.showLoading({
title: '数据请求中',
mask: true
});
let loadingId = uni.getStorageSync('checkvehicle').id
let data = {
reservationId: details.items.id,
deliveryId: details.id,
// reservationId: '1707271276416094210',
// deliveryId: '1707271279670874114',
loadingId,
type: 2,
barcode: details.scancode
}
let data = {
reservationId: details.items.id,
deliveryId: details.id,
// reservationId: '1707271276416094210',
// deliveryId: '1707271279670874114',
loadingId,
type: 2,
barcode: details.scancode
let res = await deliveryloadingscan(data)
console.log('res', res);
const { code } = res
//
if (code === 3001 || code === 200) utils.ttsspke(res.audio)
initpage()
} catch (err) {
console.log('err :>> ', err);
//TODO handle the exception
} finally {
uni.hideLoading()
}
let res = await deliveryloadingscan(data)
console.log('res', res);
const { code } = res
//
if (code === 3001 || code === 200) utils.ttsspke(res.audio)
initpage()
}
function checkphon(index : number) {
// details.listcheckindex=index

1
pagesHome/pages/LoadingScan/LoadingScan.vue

@ -299,6 +299,7 @@
taskTime_end: date.value[1] || '',
type: details.checkstate
}
console.log('data :>> ', data);
let response = await deliverypage(data)
console.log(response);
if (response.code !== 200) return

69
pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue

@ -1,7 +1,7 @@
<template>
<!-- <u-navbar title="分拣" placeholder border=true :autoBack="true" leftIconSize='35'></u-navbar> -->
<u-navbar title="扫描" placeholder :autoBack="true" leftIconSize='35' bgColor='#d3832a' leftIconColor='#ffffff'
titleStyle='color:#ffffff'></u-navbar>
<u-navbar title="扫描" placeholder :autoBack="false" @leftClick="backPage" leftIconSize='35' bgColor='#d3832a'
leftIconColor='#ffffff' titleStyle='color:#ffffff'></u-navbar>
<image mode="widthFix" class="bgimg" src="/pagesHome/static/bgby.png"></image>
<!-- <view class="headtop">
<view>
@ -337,6 +337,7 @@
<saomiao2></saomiao2>
<tips ref="tip"></tips>
<tiplist ref="tiplists"></tiplist>
<BluetoothList ref="bluetoothList"></BluetoothList>
</template>
<script lang="ts" setup>
@ -357,12 +358,13 @@
onLoad,
onShow,
onHide,
onUnload,
onPullDownRefresh
} from '@dcloudio/uni-app'
import utils from '@/utils/utils.js'
import { reactive, ref, toRefs, watchEffect } from "vue";
import { reactive, ref, toRefs } from "vue";
import dayjs from 'dayjs';
import useBluetoothStore from '@/store/useBluetoothStore.js';
import { storeToRefs } from 'pinia';
let details = reactive({
trayCode: '',
trayType: '',
@ -392,7 +394,10 @@
})
let tip = ref(null)
const tiplists = ref(null)
const bluetoothList = ref(null)
const bluetoothStore = useBluetoothStore()
const { bluetoothInfo } = storeToRefs(bluetoothStore)
onLoad((op) => {
details.trayCode = op.trayCode
details.trayType = op.trayType
@ -563,14 +568,41 @@
return res
}
function scandata() {
//
if (details.scancode[0] === 'T') scanTray()
//
if (details.tabBarState === 1) return scanOrder()
else if (details.tabBarState === 1) return scanOrder()
//
else if (details.tabBarState === 2) return
//
else if (details.tabBarState === 3) return scanStock()
}
/**
* 扫描托盘码
*/
async function scanTray() {
let data = {
trayCode: details.scancode
}
let res = await warehouseTrayTypeorderScanTrayCode(data)
if (res.code !== 200) return
console.log('res', res);
if (Number(res.data.isHasData) === 0) {
uni.setStorageSync('trayCodeType', res.data.data)
uni.navigateTo({
url: '/pagesHome/pages/ScanSortingType/ScanSortingType?trayCode=' + details.scancode
})
} else {
uni.navigateTo({
url: '/pagesHome/pages/OrderSortingDetail/OrderSortingDetail?trayCode='
+ res.data.data.trayCode + '&trayType='
+ res.data.data.trayType
})
}
}
/**
* 扫描包件执行的回调
*/
@ -874,7 +906,7 @@
* 打印
*/
const print = () => {
console.log('bluetoothList :>> ', bluetoothList);
console.log('details.detauser :>> ', details.detauser);
tiplists.value.setdetails({
title: '是否打印',
@ -886,7 +918,9 @@
confirmTxt: '确认打印',
isonecheck: true,
success: () => {
//
// #ifdef APP
if (!bluetoothInfo.value.name) return bluetoothList.value.setdetails({ isshow: true })
//
const time = dayjs().format('YYYY/MM/DD HH:mm:ss')
@ -951,6 +985,8 @@
text += orderListText
text += 'FORM\r\n'
text += 'PRINT\r\n'
//
utils.getbl(bluetoothInfo.value, text)
/* const _arr = []
let list = ''
_arr.forEach((value, index) => {
@ -978,17 +1014,6 @@
${list}
^XZ
` */
let sylist = utils.initbl()
console.log(sylist);
sylist.every(item => {
// , 退
console.log(item);
if (item.uuids) {
utils.getbl(item, text)
return false
}
return true
})
// #endif
tiplists.value.setdetails({ isshow: false })
},
@ -1001,6 +1026,16 @@
})
}
/**
* 返回上一页
*/
function backPage() {
console.log('111 :>> ', 111);
uni.redirectTo({
url: '/pagesHome/pages/scansorting/scansorting'
})
}
const { datelist, detauser, showstate, waybillCode, checkinarr, Remarktext, codelist } = toRefs(details)
</script>

12
pagesHome/pages/PeopleScanUp/PeopleScanUp.vue

@ -525,6 +525,16 @@
// if (Number(details.upshelfScanType) == 1 || Number(details.upshelfScanType) == 2) {
// }
if (details.scancode[0] === 'T') {
uni.showToast({
title: '请扫描库位码',
icon: 'none'
})
// #ifdef APP
utils.ttsspke('请扫描库位码')
// #endif
return
}
let data = {
allocationId: details.scancode,
}
@ -608,7 +618,7 @@
}
// loading
uni.hideLoading()
console.log('res上架 :>> ', res);
if (res.code == 200) {
uni.showToast({
title: '上架成功',

10
pagesHome/pages/Relocation/Relocation.vue

@ -342,6 +342,16 @@
let res = null
// ,
if (!details.allocationId) {
if (details.scancode[0] === 'T') {
uni.showToast({
title: '请扫描库位码',
icon: 'none'
})
// #ifdef APP
utils.ttsspke('请扫描库位码')
// #endif
return
}
let data = {
allocationId: details.scancode
}

10
pagesHome/pages/RelocationAllocationId/RelocationAllocationId.vue

@ -272,6 +272,16 @@
})
async function scandata(flg ?: boolean, type ?: number) {
let res = null
if (details.scancode[0] === 'T') {
uni.showToast({
title: '请扫描库位码',
icon: 'none'
})
// #ifdef APP
utils.ttsspke('请扫描库位码')
// #endif
return
}
if (flg) {
if (type == 1) {
let data = {

12
pagesHome/pages/ScanUp/ScanUp.vue

@ -267,6 +267,18 @@
async function scandata() {
//idID
if (!details.allocationId) {
console.log('details.scancode[0] :>> ', details.scancode[0]);
if (details.scancode[0] === 'T') {
uni.showToast({
title: '请扫描库位码',
icon: 'none'
})
// #ifdef APP
utils.ttsspke('请扫描库位码')
// #endif
return
}
console.log('111 :>> ', 111);
let data = {
allocationId: details.scancode,
}

20
pagesHome/pages/StockUplist/StockUplist.vue

@ -130,6 +130,8 @@
</view>
</scroll-view>
<tiplist ref="tiplists"></tiplist>
<saomiao2></saomiao2>
<BluetoothList ref="bluetoothList"></BluetoothList>
</template>
<script lang="ts" setup>
@ -151,6 +153,11 @@
postZeroStockUp
} from '@/api/user.js'
import { reactive, toRefs, ref, inject } from "vue";
import useBluetoothStore from '@/store/useBluetoothStore.js';
import { storeToRefs } from 'pinia';
const bluetoothList = ref(null)
const bluetoothStore = useBluetoothStore()
const { bluetoothInfo } = storeToRefs(bluetoothStore)
const utils = inject('utils') as any
const tiplists = ref(null)
let details = reactive<detailType>({
@ -185,6 +192,7 @@
onShow(() => {
uni.$on('scancodedate', function (code) {
if (code) {
console.log('code :>> ', code);
console.log(code);
details.scancode = code
if (details.isscan) scandata()
@ -341,6 +349,7 @@
stockupId: details.stockupId,
trayId: details.trayId,
reservationId: details.reservationId,
scanType: 1
}
let res = await distributionStockupscanningCode(data)
if (res.code !== 200) return
@ -516,8 +525,9 @@
}
// , 退
if (!_flag) return tiplists.value.setdetails({ isshow: false })
let _isReturn = false
for (let i = 0; i <= _inputValue; i++) {
if (_isReturn) return
console.log('i :>> ', i);
let text = '! 0 200 200 330 1\r\n'
text += 'SETBOLD 2\r\n'
@ -541,11 +551,9 @@
text += 'PRINT\r\n'
let sylist = utils.initbl()
console.log(sylist);
sylist.map(item => {
console.log(item);
if (item.uuids) {
utils.getbl(item, text)
}
utils.getbl(bluetoothInfo.value, text).catch(() => {
bluetoothList.value.setdetails({ isshow: true })
_isReturn = true
})
}
// #ifdef APP

22
pagesHome/pages/StockUplistScandetails/StockUplistScandetails.vue

@ -94,6 +94,7 @@
</view>
</view>
<tiplist ref="tiplists"></tiplist>
<BluetoothList ref="bluetoothList"></BluetoothList>
<saomiao2></saomiao2>
</template>
@ -109,7 +110,12 @@
import { detailType } from '@/interfaces/pagesHome/StockUplistScandetails'
import { reactive, ref, toRefs, inject } from "vue";
import utils from '@/utils/utils';
import useBluetoothStore from '@/store/useBluetoothStore.js';
import { storeToRefs } from 'pinia';
const util = (inject('utils') as any)
const bluetoothList = ref(null)
const bluetoothStore = useBluetoothStore()
const { bluetoothInfo } = storeToRefs(bluetoothStore)
let details = reactive<detailType>({
dataList: [],
stockArticleId: '',
@ -207,7 +213,10 @@
return
}
// #ifdef APP
deta.checklist.map(item => {
if (!bluetoothInfo.value.name) return bluetoothList.value.setdetails({ isshow: true })
let _isReturn = false
deta.checklist.forEach(item => {
if (_isReturn) return
let text = '! 0 200 200 330 1\r\n'
text += 'SETBOLD 2\r\n'
text += `T 56 0 0 0 ${details.dataList[item]?.orderCode}\r\n`
@ -228,15 +237,12 @@
text += `T 55 0 140 260 ${details.dataList[item]?.packageBarCode}\r\n`
text += 'FORM\r\n'
text += 'PRINT\r\n'
let sylist = util.initbl()
console.log(sylist);
sylist.map(item => {
console.log(item);
if (item.uuids) {
util.getbl(item, text)
}
util.getbl(bluetoothInfo.value, text).catch(() => {
bluetoothList.value.setdetails({ isshow: true })
_isReturn = true
})
})
if (_isReturn) return
// #endif
tiplists.value.setdetails({ isshow: false })
},

125
pagesHome/pages/orderInquiry/orderInquiry.vue

@ -10,25 +10,28 @@
<input class="searchInput" v-model="scancode" type="text">
<!-- 搜索结果列表 -->
<view class="searchResultList" v-if="isShowOrderList">
<!-- <view class="searchResultList" v-if="isShowOrderList">
<view v-for="item in distributionOrderList" :key="item" @click="handleSearchOrder(item)">
{{item}}
</view>
</view>
</view> -->
</view>
<view class="search">
<view class="searchType" @click="showTypeList">
{{searchForm.searchTypeList.find((item)=> item.type === searchForm.type).label}}
<view class="searchType" @click="scandata">
搜索
</view>
<!-- <view class="searchType" @click="showTypeList">
{{searchForm.searchTypeList.find((item)=> item.type === searchForm.type).label}}
</view> -->
<!-- 搜索类型列表 -->
<view class="searchResultList" v-if="isShowTypeList">
<!-- <view class="searchResultList" v-if="isShowTypeList">
<view>
<view v-for="value in searchForm.searchTypeList" :key="value.label"
@click="handleSearchFormType(value.type)">{{value.label}}</view>
</view>
</view>
</view> -->
</view>
</view>
@ -36,7 +39,10 @@
<!-- 数据详情 -->
<view class="dataInfo">
<view class="dataInfo__item">
<text class="label">订单状态:</text>{{orderStateDictionaries[dataInfo.orderCode] || ''}}
<text class="label">订单码:</text>{{dataInfo.orderCode}}
</view>
<view class="dataInfo__item">
<text class="label">订单状态:</text>{{orderStateDictionaries[dataInfo.orderStatus] || ''}}
</view>
<view class="dataInfo__item">
<text class="label">品牌:</text>
@ -50,6 +56,12 @@
{{dataInfo.mallName || ''}}
</text>
</view>
<view class="dataInfo__item">
<text class="label">商场收货人:</text>
<text>
{{dataInfo.consigneePerson || ''}}
</text>
</view>
<view class="dataInfo__item">
<text class="label">商场电话:</text>
<text>
@ -59,7 +71,7 @@
<view class="dataInfo__item">
<text class="label">客户名称:</text>
<text>
{{dataInfo.consigneePerson || ''}}
{{dataInfo.customerName || ''}}
</text>
</view>
<view class="dataInfo__item">
@ -78,7 +90,7 @@
{{dataInfo.completeSet === 1 ? '齐套' : '未齐套'}}
</text>
</view>
<view>
<view class="dataInfo__item">
<view class="label">收货地址:</view>
<view>{{dataInfo.customerAddress || ''}}</view>
</view>
@ -106,7 +118,8 @@
<view class="batchOperationBtn" @click="batchPrint">打印</view>
</view>
<u-checkbox-group v-model="checkboxValue" placement="column">
<view class="packagesList__item" v-for="item in packageList" :key="item.orderPackageCode">
<view :class="{'packagesList__item':true, 'active': item.orderPackageCode === scancode }"
v-for="item in packageList" :key="item.orderPackageCode">
<view>
<u-checkbox :name="item.id" :checked="item.isChecked" @change="checkboxChange(item)" size="18px" />
</view>
@ -134,7 +147,7 @@
</view>
<tiplist ref="tiplists"></tiplist>
<saomiao2></saomiao2>
<BluetoothList ref="bluetoothList"></BluetoothList>
</template>
<script lang="ts" setup>
@ -152,7 +165,11 @@
distributionOrderInfoInQuery,
BatchPrintPackages
} from '@/api/user.js'
import useBluetoothStore from '@/store/useBluetoothStore.js';
import { storeToRefs } from 'pinia';
const bluetoothList = ref(null)
const bluetoothStore = useBluetoothStore()
const { bluetoothInfo } = storeToRefs(bluetoothStore)
// type
const isShowTypeList = ref<Boolean>(false)
@ -189,6 +206,8 @@
'20': '已入库',
'30': '部分出库',
'40': '已出库',
'50': '部分装车',
'60': '已装车',
'70': '部分签收',
'80': '已签收',
})
@ -244,7 +263,20 @@
}, 500)
})
function scandata() { }
async function scandata() {
searchForm.condition = scancode.value
// let res = await distributionOrderInFuzzyQuery(searchForm)
const res = await distributionOrderInfoInQuery(searchForm)
const { code, data } = res
if (code === 200) {
dataInfo.value = data
packageList.value = data.list.map(item => {
item.isChecked = false
return item
})
stockList.value = data.stockList
}
}
// type
function handleSearchFormType(type : number) {
@ -340,7 +372,10 @@
// }
console.log('data :>> ', data);
// #ifdef APP
if (!bluetoothInfo.value.name) return bluetoothList.value.setdetails({ isshow: true })
let _isReturn = false
data.map(item => {
if (_isReturn) return
let text = '! 0 200 200 330 1\r\n'
text += 'SETBOLD 1\r\n'
text += `T 56 0 0 0 ${item.orderCode}\r\n`
@ -361,15 +396,12 @@
text += `T 55 0 140 260 ${item.qrCode}\r\n`
text += 'FORM\r\n'
text += 'PRINT\r\n'
let sylist = utils.initbl()
console.log(sylist);
sylist.map(item => {
console.log(item);
if (item.uuids) {
utils.getbl(item, text)
}
utils.getbl(bluetoothInfo.value, text).catch(() => {
bluetoothList.value.setdetails({ isshow: true })
_isReturn = true
})
})
if (_isReturn) return
// #endif
tiplists.value.setdetails({ isshow: false })
},
@ -383,27 +415,27 @@
}
//
let timer : any
watch([scancode], (newVal, oldVal) => {
console.log('newVal :>> ', newVal);
if (newVal[0] === oldVal[0]) return
//
//
if (timer) clearTimeout(timer)
timer = setTimeout(async () => {
searchForm.condition = scancode.value
//
let res = await distributionOrderInFuzzyQuery(searchForm)
isShowOrderList.value = true
const { code, data } = res
console.log('res :>> ', res);
if (code === 200) {
distributionOrderList.value = data
}
clearTimeout(timer)
}, 1000)
})
/* let timer : any
watch([scancode], (newVal, oldVal) => {
console.log('newVal :>> ', newVal);
if (newVal[0] === oldVal[0]) return
//
//
if (timer) clearTimeout(timer)
timer = setTimeout(async () => {
searchForm.condition = scancode.value
//
let res = await distributionOrderInFuzzyQuery(searchForm)
isShowOrderList.value = true
const { code, data } = res
console.log('res :>> ', res);
if (code === 200) {
distributionOrderList.value = data
}
clearTimeout(timer)
}, 1000)
}) */
</script>
<style lang="scss" scoped>
@ -457,7 +489,7 @@
height: 100%;
display: flex;
align-items: center;
padding: 0 20upx;
padding: 0 40upx;
background: #fff;
border: 1upx solid $themeColors;
border-radius: 10upx;
@ -474,12 +506,12 @@
.dataInfo__item {
flex: none;
min-width: 50%;
line-height: 80upx;
line-height: 60upx;
display: inline-flex;
.label {
display: inline-block;
width: 120upx;
width: 160upx;
text-align: right;
margin-right: 20rpx;
}
@ -543,6 +575,11 @@
grid-template-columns: 1fr 3fr 1fr 1fr 3fr 1fr 1fr;
// display: flex;
margin: 10upx 0;
&.active {
background: #e40b2c;
color: #fff;
}
}
}
</style>

5
pagesHome/pages/scansorting/scansorting.vue

@ -104,6 +104,11 @@
import utils from '@/utils/utils.js'
//
const option = reactive({
leftClick() {
uni.reLaunch({
url: "/pages/index/index"
})
},
//
title: '任务列表',
//

75
pagesHome/pages/setbarcode/setbarcode.vue

@ -48,6 +48,7 @@
</scroll-view>
<tiplist ref="tips"></tiplist>
<saomiao2></saomiao2>
<BluetoothList ref="bluetoothList"></BluetoothList>
</template>
<script lang="ts" setup>
@ -64,6 +65,11 @@
} from '@/api/user.js'
import { detailType } from '@/interfaces/pagesHome/setbarcode'
import { reactive, ref, toRefs, inject } from "vue";
import useBluetoothStore from '@/store/useBluetoothStore.js';
import { storeToRefs } from 'pinia';
const bluetoothList = ref(null)
const bluetoothStore = useBluetoothStore()
const { bluetoothInfo } = storeToRefs(bluetoothStore)
const utils = inject('utils') as any
let details = reactive<detailType>({
items: {},
@ -210,9 +216,37 @@
})
return
}
// #ifdef APP
if (!bluetoothInfo.value.name) return bluetoothList.value.setdetails({ isshow: true })
let _isReturn = false
deta.checklist.map(item => {
print(details.printlist[item])
// const util=(inject('utils') as any)
let text = '! 0 200 200 330 1\r\n'
text += 'SETBOLD 2\r\n'
text += `T 56 0 0 0 ${item}\r\n`
text += 'LINE 0 50 420 50 3\r\n'
text += `T 55 0 0 60 客户\r\n`
text += 'LINE 40 50 40 110 3\r\n'
text += `T 55 0 50 60 ${details.customer}\r\n`
text += 'LINE 40 80 420 80 3\r\n'
text += `T 55 0 50 90 ${details.deliveryAddress}\r\n`
text += 'LINE 0 110 420 110 3\r\n'
text += `T 55 0 0 120 物料\r\n`
text += 'LINE 40 110 40 140 3\r\n'
text += `T 55 0 60 120 ${details.items.materialName}\r\n`
text += 'LINE 0 140 420 140 3\r\n'
text += 'B QR 150 150 M 2 U 4\r\n'
text += `MA,${item}\r\n`
text += 'ENDQR\r\n'
text += 'PRINT\r\n'
utils.getbl(bluetoothInfo.value, text).catch(() => {
bluetoothList.value.setdetails({ isshow: true })
_isReturn = true
})
})
if (_isReturn) return
// #endif
// scandata(response.data[0])
tips.value.setdetails({ isshow: false })
},
@ -224,45 +258,6 @@
}
})
}
function print(item : string) {
// #ifdef APP
// const util=(inject('utils') as any)
let text = '! 0 200 200 330 1\r\n'
text += 'SETBOLD 2\r\n'
text += `T 56 0 0 0 ${item}\r\n`
text += 'LINE 0 50 420 50 3\r\n'
text += `T 55 0 0 60 客户\r\n`
text += 'LINE 40 50 40 110 3\r\n'
text += `T 55 0 50 60 ${details.customer}\r\n`
text += 'LINE 40 80 420 80 3\r\n'
text += `T 55 0 50 90 ${details.deliveryAddress}\r\n`
text += 'LINE 0 110 420 110 3\r\n'
text += `T 55 0 0 120 物料\r\n`
text += 'LINE 40 110 40 140 3\r\n'
text += `T 55 0 60 120 ${details.items.materialName}\r\n`
text += 'LINE 0 140 420 140 3\r\n'
text += 'B QR 150 150 M 2 U 4\r\n'
text += `MA,${item}\r\n`
text += 'ENDQR\r\n'
text += 'PRINT\r\n'
// let text='! 0 200 200 500 1\r\n'
// text+='SETBOLD 2\r\n'
// text+='B QR 80 40 M 2 U 8\r\n'
// text+=`MA,${item}\r\n`
// text+='ENDQR\r\n'
// text+=`T 56 0 15 280 ${item}\r\n`
// text+='PRINT\r\n'
let sylist = utils.initbl()
console.log(sylist);
sylist.map(item => {
console.log(item);
if (item.uuids) {
utils.getbl(item, text)
}
})
// #endif
}
async function scandata(code) {
let data = {
scanType: 2,

5
pagesTask/pages/dynamicCheck/dynamicCheck.vue

@ -79,6 +79,11 @@
const basicContainer = ref(null)
const option = reactive({
leftClick() {
uni.reLaunch({
url: "/pages/index/index"
})
},
title: '任务列表',
pullDownRefreshInitPage: async () => {
//

3
store/index.js

@ -8,7 +8,8 @@ export default createStore({
access_token: '',
refresh_token: '',
userinfo: {},
repetitionCode: 4000
// 暂时没用
// repetitionCode: 4000
},
mutations: {
updateislog(state, islogin) {

72
store/useBluetoothStore.js

@ -0,0 +1,72 @@
import {
defineStore
} from 'pinia';
import {
reactive,
ref
} from 'vue';
import utils from '@/utils/utils.js';
// 创建hooks函数仓库
const useBluetoothStore = defineStore('useBluetoothStore', () => {
/**
* 已连接的蓝牙 && 打印链接成功的蓝牙信息
*/
const bluetoothInfo = reactive({
name: '',
address: '',
status: '',
uuids: [],
op: {},
})
/**
* 设备内已匹配的蓝牙信息组成的数组
*/
const bluetoothList = ref([])
/**
* 蓝牙信息初始化, 获取设备内已匹配的蓝牙信息
*/
const HANDLE_INITBLUETOOTH = () => {
// #ifdef APP
bluetoothList.value = utils.initbl_App()
console.log('bluetoothList.value :>> ', bluetoothList.value);
// #endif
}
/**
* 选择蓝牙
* @index 蓝牙数组中被选中的索引
*/
const CHOOSE_BLUETOOTH = (index) => {
// 将被选中的值赋给蓝牙信息中
for (let key in bluetoothInfo) {
bluetoothInfo[key] = bluetoothList.value[index][key]
}
console.log('bluetoothInfo :>> ', bluetoothInfo);
}
/**
* 重置已选中蓝牙信息
*/
const CLEAR_BL_INFO = () => {
bluetoothInfo.name = ''
bluetoothInfo.address = ''
bluetoothInfo.status = ''
bluetoothInfo.uuids = []
bluetoothInfo.op = {}
}
return {
bluetoothInfo,
bluetoothList,
HANDLE_INITBLUETOOTH,
CHOOSE_BLUETOOTH
}
})
// 导出仓库
export default useBluetoothStore

2
unpackage/dist/build/app-plus/pagesHome/pages/OrderSortingDetail/OrderSortingDetail.css vendored

File diff suppressed because one or more lines are too long

1573
unpackage/dist/dev/app-plus/app-service.js vendored

File diff suppressed because it is too large Load Diff

93
unpackage/dist/dev/app-plus/app.css vendored

@ -1187,4 +1187,97 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
color: #D3832A;
background: #fff;
border: 0.03125rem solid #D3832A;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.maboxbg[data-v-05b5e40b] {
width: 100%;
height: 100%;
position: fixed;
left: 0;
top: 0;
background-color: #00000050;
z-index: 10000;
}
.modtips[data-v-05b5e40b] {
width: 19.6875rem;
background: #FFFFFF;
border-radius: 0.21875rem;
display: flex;
flex-direction: column;
align-items: center;
padding: 1.25rem 0.625rem;
position: absolute;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
box-sizing: border-box;
}
.modtips .title[data-v-05b5e40b] {
font-size: 1.0625rem;
color: #092C4D;
}
.modtips .scvboxs[data-v-05b5e40b] {
width: 100%;
max-height: 15.625rem;
}
.modtips .list-container[data-v-05b5e40b] {
display: flex;
align-items: center;
height: 1.875rem;
}
.modtips .list-container .list-item-title[data-v-05b5e40b] {
margin-left: 0.625rem;
}
.modtips .buts[data-v-05b5e40b] {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
margin-top: 1.25rem;
}
.modtips .buts > uni-view[data-v-05b5e40b] {
display: flex;
align-items: center;
justify-content: center;
width: 8.125rem;
height: 2.75rem;
border-radius: 0.25rem;
font-size: 1rem;
}
.modtips .buts > .cancel[data-v-05b5e40b] {
background-color: #F5F5F6;
color: #5A6875;
margin-right: 0.625rem;
}
.modtips .buts > .confirm[data-v-05b5e40b] {
background-color: #D3832A;
color: #FFFFFF;
}
.chooseImg[data-v-05b5e40b] {
width: 1rem;
height: 1rem;
}

4
unpackage/dist/dev/app-plus/manifest.json vendored

@ -7,8 +7,8 @@
"id": "__UNI__EB22F37",
"name": "货无忧",
"version": {
"name": "1.0.24",
"code": 1024
"name": "1.0.26",
"code": 1026
},
"description": "",
"developer": {

9
utils/request.js

@ -210,7 +210,7 @@ const HandleRequest = (params, key) => {
return
} else if (res.statusCode == 401) {
// 登录失败时
if (!refresh_token && params.url.indexOf('blade-auth/oauth/token') != -1) {
if (isLogin) {
return uni.showToast({
title: "登录失败",
icon: 'none'
@ -277,7 +277,14 @@ let _isRefreshToken = {
_isRefreshToken: null
}
let isLogin = false
const service = async (params) => {
console.log('params :>> ', params);
if (params.data.isLogin) {
isLogin = true
delete params.data.isLogin
} else isLogin = false
console.log('params :>> ', params);
const _key = params.url + JSON.stringify(params.data)
// 防止重复请求

123
utils/utils.js

@ -109,8 +109,8 @@ const utils = {
}, 2000)
// #endif
},
//蓝牙打印初始化
initbl: () => {
// H5蓝牙打印初始化
initbl_App: () => {
// #ifdef APP
let deviceList = [];
let main = plus.android.runtimeMainActivity();
@ -145,46 +145,97 @@ const utils = {
return deviceList
// #endif
},
//给蓝牙打印机推送打印的内容
getbl: (dev, text) => {
// 蓝牙打印初始化
initbl: () => {
// #ifdef APP
let deviceList = [];
let main = plus.android.runtimeMainActivity();
let BluetoothAdapter = plus.android.importClass("android.bluetooth.BluetoothAdapter");
let UUID = plus.android.importClass("java.util.UUID");
let uuid = UUID.fromString("00001101-0000-1000-8000-00805F9B34FB");
let BAdapter = BluetoothAdapter.getDefaultAdapter();
let device = BAdapter.getRemoteDevice(dev.address);
plus.android.importClass(device);
let bluetoothSocket = device.createInsecureRfcommSocketToServiceRecord(uuid);
plus.android.importClass(bluetoothSocket);
console.log("开始连接打印机:" + dev.name);
if (!bluetoothSocket.isConnected()) {
bluetoothSocket.connect();
if (bluetoothSocket.isConnected()) {
console.log("设备已连接,开始发送打印文件");
let outputStream = bluetoothSocket.getOutputStream();
plus.android.importClass(outputStream);
// sb(outputStream);
let Context = plus.android.importClass("android.content.Context");
let BManager = main.getSystemService(Context.BLUETOOTH_SERVICE);
plus.android.importClass(BManager);
let BAdapter = BManager.getAdapter();
plus.android.importClass(BAdapter);
let lists = BAdapter.getBondedDevices();
// let aaa = BAdapter.getProfileConnectionState()
// console.log('aaa :>> ', aaa);
// console.log('lists :>> ', lists);
plus.android.importClass(lists);
let iterator = lists.iterator();
console.log('iterator :>> ', iterator);
plus.android.importClass(iterator);
while (iterator.hasNext()) {
let d = iterator.next();
plus.android.importClass(d);
let temp = {
name: d.getName(),
address: d.getAddress(),
status: d.getBondState(),
uuids: d.getUuids(),
op: d
};
deviceList.push(temp);
}
// text+='PRINT\r\n'
console.log(text)
let arrayBuffer = plus.android.invoke(text, 'getBytes', 'gbk');
outputStream.write(arrayBuffer);
// console.log(111111111);
outputStream.flush();
bluetoothSocket.close();
// getProfileConnectionState
return deviceList
// #endif
},
//给蓝牙打印机推送打印的内容
getbl: (dev, text) => {
return new Promise((resolve, reject) => {
try {
// #ifdef APP
uni.showLoading({
title: '打印中',
mask: true
});
let main = plus.android.runtimeMainActivity();
let BluetoothAdapter = plus.android.importClass("android.bluetooth.BluetoothAdapter");
let UUID = plus.android.importClass("java.util.UUID");
let uuid = UUID.fromString("00001101-0000-1000-8000-00805F9B34FB");
let BAdapter = BluetoothAdapter.getDefaultAdapter();
let device = BAdapter.getRemoteDevice(dev.address);
plus.android.importClass(device);
let bluetoothSocket = device.createInsecureRfcommSocketToServiceRecord(uuid);
plus.android.importClass(bluetoothSocket);
console.log("开始连接打印机:" + dev.name);
if (!bluetoothSocket.isConnected()) {
console.log("设备已关闭");
bluetoothSocket.connect();
if (bluetoothSocket.isConnected()) {
console.log("设备已连接,开始发送打印文件");
let outputStream = bluetoothSocket.getOutputStream();
plus.android.importClass(outputStream);
// sb(outputStream);
// text+='PRINT\r\n'
console.log(text)
let arrayBuffer = plus.android.invoke(text, 'getBytes', 'gbk');
outputStream.write(arrayBuffer);
// console.log(111111111);
outputStream.flush();
bluetoothSocket.close();
if (!bluetoothSocket.isConnected()) {
console.log("设备已关闭");
}
resolve(null)
} else {
uni.showToast({
title: '设备连接失败',
icon: 'error',
duration: 2000
});
reject(null)
}
}
} else {
uni.showToast({
title: '设备连接失败',
icon: 'error',
duration: 2000
});
// #endif
} catch (err) {
reject(null)
//TODO handle the exception
} finally {
uni.hideLoading()
}
}
// #endif
})
},
//初始化tts语音引擎
inittts() {

Loading…
Cancel
Save