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. 226
      pages/index/index.vue
  8. 7
      pages/login/login.vue
  9. 6
      pagesHome/pages/CustomerSign/CustomerSign.vue
  10. 11
      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. 87
      pagesHome/pages/orderInquiry/orderInquiry.vue
  20. 5
      pagesHome/pages/scansorting/scansorting.vue
  21. 53
      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. 1357
      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. 53
      utils/utils.js

7
compoment/BasicContainer/BasicContainer.vue

@ -1,8 +1,8 @@
<template> <template>
<view> <view>
<!-- 顶部导航栏 --> <!-- 顶部导航栏 -->
<u-navbar :title="title" placeholder :autoBack="true" leftIconSize='35' bgColor='#d3832a' leftIconColor='#ffffff' <u-navbar :title="title" placeholder :autoBack="false" @leftClick="option.leftClick" leftIconSize='35'
titleStyle='color:#ffffff'></u-navbar> bgColor='#d3832a' leftIconColor='#ffffff' titleStyle='color:#ffffff'></u-navbar>
</view> </view>
<!-- 头部 --> <!-- 头部 -->
@ -40,6 +40,9 @@
}, },
title: { title: {
type: String 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://h5uapi.huitongys.com/'
// const prohost = 'http://test.api.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 InputNum from '@/compoment/InputNum/InputNum.vue';
import BasicContainer from '@/compoment/BasicContainer/BasicContainer.vue'; import BasicContainer from '@/compoment/BasicContainer/BasicContainer.vue';
import PopUp from '@/compoment/PopUp/PopUp.vue'; import PopUp from '@/compoment/PopUp/PopUp.vue';
import BluetoothList from '@/compoment/BluetoothList/BluetoothList.vue';
// import moduleName from '@/compoment/ScanButton/ScanButton.vue'; // import moduleName from '@/compoment/ScanButton/ScanButton.vue';
import saomiao1 from '@/compoment/saomiao1.vue' import saomiao1 from '@/compoment/saomiao1.vue'
import saomiao2 from '@/compoment/saomiao2.vue' import saomiao2 from '@/compoment/saomiao2.vue'
@ -52,6 +53,7 @@ export function createApp() {
.component('InputNum', InputNum) .component('InputNum', InputNum)
.component('BasicContainer', BasicContainer) .component('BasicContainer', BasicContainer)
.component('PopUp', PopUp) .component('PopUp', PopUp)
.component('BluetoothList', BluetoothList)
uni.$u.config.unit = 'rpx' uni.$u.config.unit = 'rpx'
return { return {
app, app,

4
manifest.json

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

12
pages.json

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

226
pages/index/index.vue

@ -43,125 +43,125 @@
import utils from '../../utils/utils'; import utils from '../../utils/utils';
const tip = ref(null) const tip = ref(null)
let details = reactive<listtype>({ tablist: [] }); let details = reactive<listtype>({ tablist: [] });
// let details = reactive<listtype>({ /* let details = reactive<listtype>({
// tablist: [ tablist: [
// { {
// type: 1, type: 1,
// name: '', name: '工作台',
// minilist: [ minilist: [
// { {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png', icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '', name: '订单查询',
// router: '/pagesHome/pages/orderInquiry/orderInquiry', router: '/pagesHome/pages/orderInquiry/orderInquiry',
// }, },
// ] ]
// }, },
// { {
// type: 1, type: 1,
// name: '', name: '库内',
// minilist: [ minilist: [
// { {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png', icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '', name: '分拣打托',
// router: '/pagesHome/pages/scansorting/scansorting', 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', // icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '', // name: '',
// router: '/pagesHome/pages/signinScan/signinScan', // router: '/pagesHome/pages/ordersorting/ordersorting',
// },
// ]
// }, // },
// { // {
// type: 1,
// name: '线',
// minilist: [
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png', // icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '线', // name: '',
// router: '/pagesHome/pages/OfflineUpload/OfflineUpload', // 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) { function gopathpage(path : string) {
uni.navigateTo({ uni.navigateTo({

7
pages/login/login.vue

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

6
pagesHome/pages/CustomerSign/CustomerSign.vue

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

11
pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails.vue

@ -213,6 +213,11 @@
/** /**
* */ * */
async function scandata() { async function scandata() {
try {
uni.showLoading({
title: '数据请求中',
mask: true
});
let loadingId = uni.getStorageSync('checkvehicle').id let loadingId = uni.getStorageSync('checkvehicle').id
let data = { let data = {
@ -231,6 +236,12 @@
// //
if (code === 3001 || code === 200) utils.ttsspke(res.audio) if (code === 3001 || code === 200) utils.ttsspke(res.audio)
initpage() initpage()
} catch (err) {
console.log('err :>> ', err);
//TODO handle the exception
} finally {
uni.hideLoading()
}
} }
function checkphon(index : number) { function checkphon(index : number) {
// details.listcheckindex=index // details.listcheckindex=index

1
pagesHome/pages/LoadingScan/LoadingScan.vue

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

69
pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue

@ -1,7 +1,7 @@
<template> <template>
<!-- <u-navbar title="分拣" placeholder border=true :autoBack="true" leftIconSize='35'></u-navbar> --> <!-- <u-navbar title="分拣" placeholder border=true :autoBack="true" leftIconSize='35'></u-navbar> -->
<u-navbar title="扫描" placeholder :autoBack="true" leftIconSize='35' bgColor='#d3832a' leftIconColor='#ffffff' <u-navbar title="扫描" placeholder :autoBack="false" @leftClick="backPage" leftIconSize='35' bgColor='#d3832a'
titleStyle='color:#ffffff'></u-navbar> leftIconColor='#ffffff' titleStyle='color:#ffffff'></u-navbar>
<image mode="widthFix" class="bgimg" src="/pagesHome/static/bgby.png"></image> <image mode="widthFix" class="bgimg" src="/pagesHome/static/bgby.png"></image>
<!-- <view class="headtop"> <!-- <view class="headtop">
<view> <view>
@ -337,6 +337,7 @@
<saomiao2></saomiao2> <saomiao2></saomiao2>
<tips ref="tip"></tips> <tips ref="tip"></tips>
<tiplist ref="tiplists"></tiplist> <tiplist ref="tiplists"></tiplist>
<BluetoothList ref="bluetoothList"></BluetoothList>
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
@ -357,12 +358,13 @@
onLoad, onLoad,
onShow, onShow,
onHide, onHide,
onUnload,
onPullDownRefresh onPullDownRefresh
} from '@dcloudio/uni-app' } from '@dcloudio/uni-app'
import utils from '@/utils/utils.js' import utils from '@/utils/utils.js'
import { reactive, ref, toRefs, watchEffect } from "vue"; import { reactive, ref, toRefs } from "vue";
import dayjs from 'dayjs'; import dayjs from 'dayjs';
import useBluetoothStore from '@/store/useBluetoothStore.js';
import { storeToRefs } from 'pinia';
let details = reactive({ let details = reactive({
trayCode: '', trayCode: '',
trayType: '', trayType: '',
@ -392,7 +394,10 @@
}) })
let tip = ref(null) let tip = ref(null)
const tiplists = ref(null) const tiplists = ref(null)
const bluetoothList = ref(null)
const bluetoothStore = useBluetoothStore()
const { bluetoothInfo } = storeToRefs(bluetoothStore)
onLoad((op) => { onLoad((op) => {
details.trayCode = op.trayCode details.trayCode = op.trayCode
details.trayType = op.trayType details.trayType = op.trayType
@ -563,14 +568,41 @@
return res return res
} }
function scandata() { 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 === 2) return
// //
else if (details.tabBarState === 3) return scanStock() 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 = () => { const print = () => {
console.log('bluetoothList :>> ', bluetoothList);
console.log('details.detauser :>> ', details.detauser); console.log('details.detauser :>> ', details.detauser);
tiplists.value.setdetails({ tiplists.value.setdetails({
title: '是否打印', title: '是否打印',
@ -886,7 +918,9 @@
confirmTxt: '确认打印', confirmTxt: '确认打印',
isonecheck: true, isonecheck: true,
success: () => { success: () => {
//
// #ifdef APP // #ifdef APP
if (!bluetoothInfo.value.name) return bluetoothList.value.setdetails({ isshow: true })
// //
const time = dayjs().format('YYYY/MM/DD HH:mm:ss') const time = dayjs().format('YYYY/MM/DD HH:mm:ss')
@ -951,6 +985,8 @@
text += orderListText text += orderListText
text += 'FORM\r\n' text += 'FORM\r\n'
text += 'PRINT\r\n' text += 'PRINT\r\n'
//
utils.getbl(bluetoothInfo.value, text)
/* const _arr = [] /* const _arr = []
let list = '' let list = ''
_arr.forEach((value, index) => { _arr.forEach((value, index) => {
@ -978,17 +1014,6 @@
${list} ${list}
^XZ ^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 // #endif
tiplists.value.setdetails({ isshow: false }) 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) const { datelist, detauser, showstate, waybillCode, checkinarr, Remarktext, codelist } = toRefs(details)
</script> </script>

12
pagesHome/pages/PeopleScanUp/PeopleScanUp.vue

@ -525,6 +525,16 @@
// if (Number(details.upshelfScanType) == 1 || Number(details.upshelfScanType) == 2) { // 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 = { let data = {
allocationId: details.scancode, allocationId: details.scancode,
} }
@ -608,7 +618,7 @@
} }
// loading // loading
uni.hideLoading() uni.hideLoading()
console.log('res上架 :>> ', res);
if (res.code == 200) { if (res.code == 200) {
uni.showToast({ uni.showToast({
title: '上架成功', title: '上架成功',

10
pagesHome/pages/Relocation/Relocation.vue

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

10
pagesHome/pages/RelocationAllocationId/RelocationAllocationId.vue

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

12
pagesHome/pages/ScanUp/ScanUp.vue

@ -267,6 +267,18 @@
async function scandata() { async function scandata() {
//idID //idID
if (!details.allocationId) { 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 = { let data = {
allocationId: details.scancode, allocationId: details.scancode,
} }

20
pagesHome/pages/StockUplist/StockUplist.vue

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

22
pagesHome/pages/StockUplistScandetails/StockUplistScandetails.vue

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

87
pagesHome/pages/orderInquiry/orderInquiry.vue

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

5
pagesHome/pages/scansorting/scansorting.vue

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

53
pagesHome/pages/setbarcode/setbarcode.vue

@ -48,6 +48,7 @@
</scroll-view> </scroll-view>
<tiplist ref="tips"></tiplist> <tiplist ref="tips"></tiplist>
<saomiao2></saomiao2> <saomiao2></saomiao2>
<BluetoothList ref="bluetoothList"></BluetoothList>
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
@ -64,6 +65,11 @@
} from '@/api/user.js' } from '@/api/user.js'
import { detailType } from '@/interfaces/pagesHome/setbarcode' import { detailType } from '@/interfaces/pagesHome/setbarcode'
import { reactive, ref, toRefs, inject } from "vue"; 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 const utils = inject('utils') as any
let details = reactive<detailType>({ let details = reactive<detailType>({
items: {}, items: {},
@ -210,22 +216,10 @@
}) })
return return
} }
deta.checklist.map(item => {
print(details.printlist[item])
})
// scandata(response.data[0])
tips.value.setdetails({ isshow: false })
},
cancel: (details) => {
tips.value.setdetails({ isshow: false })
},
close: (details) => {
tips.value.setdetails({ isshow: false })
}
})
}
function print(item : string) {
// #ifdef APP // #ifdef APP
if (!bluetoothInfo.value.name) return bluetoothList.value.setdetails({ isshow: true })
let _isReturn = false
deta.checklist.map(item => {
// const util=(inject('utils') as any) // const util=(inject('utils') as any)
let text = '! 0 200 200 330 1\r\n' let text = '! 0 200 200 330 1\r\n'
text += 'SETBOLD 2\r\n' text += 'SETBOLD 2\r\n'
@ -246,22 +240,23 @@
text += 'ENDQR\r\n' text += 'ENDQR\r\n'
text += 'PRINT\r\n' text += 'PRINT\r\n'
// let text='! 0 200 200 500 1\r\n' utils.getbl(bluetoothInfo.value, text).catch(() => {
// text+='SETBOLD 2\r\n' bluetoothList.value.setdetails({ isshow: true })
// text+='B QR 80 40 M 2 U 8\r\n' _isReturn = true
// 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)
}
}) })
})
if (_isReturn) return
// #endif // #endif
// scandata(response.data[0])
tips.value.setdetails({ isshow: false })
},
cancel: (details) => {
tips.value.setdetails({ isshow: false })
},
close: (details) => {
tips.value.setdetails({ isshow: false })
}
})
} }
async function scandata(code) { async function scandata(code) {
let data = { let data = {

5
pagesTask/pages/dynamicCheck/dynamicCheck.vue

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

3
store/index.js

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

1357
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

@ -1188,3 +1188,96 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
background: #fff; background: #fff;
border: 0.03125rem solid #D3832A; 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", "id": "__UNI__EB22F37",
"name": "货无忧", "name": "货无忧",
"version": { "version": {
"name": "1.0.24", "name": "1.0.26",
"code": 1024 "code": 1026
}, },
"description": "", "description": "",
"developer": { "developer": {

9
utils/request.js

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

53
utils/utils.js

@ -109,7 +109,43 @@ const utils = {
}, 2000) }, 2000)
// #endif // #endif
}, },
//蓝牙打印初始化 // H5蓝牙打印初始化
initbl_App: () => {
// #ifdef APP
let deviceList = [];
let main = plus.android.runtimeMainActivity();
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);
}
// getProfileConnectionState
return deviceList
// #endif
},
// 蓝牙打印初始化
initbl: () => { initbl: () => {
// #ifdef APP // #ifdef APP
let deviceList = []; let deviceList = [];
@ -147,7 +183,13 @@ const utils = {
}, },
//给蓝牙打印机推送打印的内容 //给蓝牙打印机推送打印的内容
getbl: (dev, text) => { getbl: (dev, text) => {
return new Promise((resolve, reject) => {
try {
// #ifdef APP // #ifdef APP
uni.showLoading({
title: '打印中',
mask: true
});
let main = plus.android.runtimeMainActivity(); let main = plus.android.runtimeMainActivity();
let BluetoothAdapter = plus.android.importClass("android.bluetooth.BluetoothAdapter"); let BluetoothAdapter = plus.android.importClass("android.bluetooth.BluetoothAdapter");
let UUID = plus.android.importClass("java.util.UUID"); let UUID = plus.android.importClass("java.util.UUID");
@ -176,15 +218,24 @@ const utils = {
if (!bluetoothSocket.isConnected()) { if (!bluetoothSocket.isConnected()) {
console.log("设备已关闭"); console.log("设备已关闭");
} }
resolve(null)
} else { } else {
uni.showToast({ uni.showToast({
title: '设备连接失败', title: '设备连接失败',
icon: 'error', icon: 'error',
duration: 2000 duration: 2000
}); });
reject(null)
} }
} }
// #endif // #endif
} catch (err) {
reject(null)
//TODO handle the exception
} finally {
uni.hideLoading()
}
})
}, },
//初始化tts语音引擎 //初始化tts语音引擎
inittts() { inittts() {

Loading…
Cancel
Save