Browse Source

切换装车接口

myd
qb 1 year ago
parent
commit
1b391dc014
  1. 62
      api/user.js
  2. 21
      compoment/InputNum/InputNum.vue
  3. 8
      compoment/PopUp/PopUp.vue
  4. 62
      compoment/PullDownBox/PullDownBox.vue
  5. 87
      compoment/ScrollList/ScrollList.vue
  6. 3
      config/host.js
  7. 6
      main.js
  8. 31
      pages.json
  9. 302
      pages/index/index.vue
  10. 65
      pagesHome/pages/ArrivalList/ArrivalList.vue
  11. 23
      pagesHome/pages/StowageList/StowageList.vue
  12. 432
      pagesHome/pages/StowageListDetails/StowageListDetails.vue
  13. 826
      pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue
  14. 66
      pagesHome/pages/orderInquiry/orderInquiry.vue
  15. 95
      pagesUser/pages/about/about.vue
  16. 4
      unpackage/dist/dev/app-plus/app-config-service.js
  17. 6602
      unpackage/dist/dev/app-plus/app-service.js
  18. 57
      unpackage/dist/dev/app-plus/app.css
  19. 6
      unpackage/dist/dev/app-plus/manifest.json
  20. 38
      unpackage/dist/dev/mp-weixin/api/user.js
  21. 5
      unpackage/dist/dev/mp-weixin/app.js
  22. 9
      unpackage/dist/dev/mp-weixin/app.json
  23. 14
      unpackage/dist/dev/mp-weixin/common/assets.js
  24. 108
      unpackage/dist/dev/mp-weixin/common/vendor.js

62
api/user.js

@ -1980,4 +1980,64 @@ export function postLoadingZero(data) {
data
});
}
// /logpm-trunkline/api/carsLoad/loadingScan
/**
* 配载整托装车
* @param {Object} data
*/
export function postLoadingTray(data) {
return request({
url: `logpm-trunkline/api/carsLoad/loadingTray`,
method: "post",
data
});
}
/**
* 到车列表
* @param {Object} data
*/
export function postArriveUnloadPageList(data) {
return request({
url: `logpm-trunkline/api/carsLoad/arriveUnloadPageList`,
method: "post",
data
});
}
/**
* 到车列表
* @param {Object} data
*/
export function postArriveUnloadCarsDetail(data) {
return request({
url: `logpm-trunkline/api/carsLoad/unloadCarsDetail`,
method: "post",
data
});
}
/**
* 到车列表
* @param {Object} data
*/
export function postCarsLoadUnloadPackage(data) {
return request({
url: `logpm-trunkline/api/carsLoad/unloadPackage`,
method: "post",
data
});
}
/**
* 到车列表
* @param {Object} data
*/
export function postCarsLoadUnloadZero(data) {
return request({
url: `logpm-trunkline/api/carsLoad/unloadZero`,
method: "post",
data
});
}
// /logpm-trunkline/carsLoad/unloadPackage

21
compoment/InputNum/InputNum.vue

@ -1,5 +1,5 @@
<template>
<input class="inputNum" type="number" @input="inputNum" v-model="number" />
<input class="inputNum" type="number" @blur="blurInput" v-model="number" />
</template>
<script setup lang="ts">
@ -47,14 +47,27 @@
$emit('update:modelValue', number.value)
//
clearTimeout(isInput)
}, 500)
}, 300)
}
//
function blurInput() {
number.value = parseInt(number.value)
// NaN, number.value0
if (number.value !== number.value) number.value = 0
//
if (number.value >= props.maxNum) number.value = props.maxNum
//
if (number.value <= props.minNum) number.value = props.minNum
$emit('update:modelValue', number.value)
//
}
</script>
<style>
.inputNum {
border: 1upx solid #000;
padding-left: 10upx;
border: 1upx solid #999;
padding: 5upx 20upx;
border-radius: 5upx;
}
</style>

8
compoment/PopUp/PopUp.vue

@ -77,7 +77,7 @@
</script>
<style lang="scss" scoped>
$subjectColor: #D3832A;
// $subjectColor: #D3832A;
//
.popUpMask {
@ -124,14 +124,14 @@
>view {
padding: 15upx 50upx;
border-radius: 10upx;
background: $subjectColor;
background: var(--subjectColor);
color: #fff;
}
.closeButton {
color: $subjectColor;
color: var(--subjectColor);
background: #fff;
border: 1upx solid $subjectColor;
border: 1upx solid var(--subjectColor);
}
}

62
compoment/PullDownBox/PullDownBox.vue

@ -0,0 +1,62 @@
<template>
<view class="PullDownBox">
<view @click="handleShowPullDown" class="Pulldown-title-container">
<!-- 标题显示内容 -->
<view class="Pulldown-title">
<slot name="title"></slot>
</view>
<u-icon :class="{'icon': true,'normal':isShowPullDownBox, 'active': !isShowPullDownBox}" name="arrow-down"
color="#2979ff" size="28"></u-icon>
</view>
<view class="">
<template v-if="isShowPullDownBox">
<slot name="content"></slot>
</template>
</view>
</view>
</template>
<script setup lang="ts">
import { ref } from 'vue';
/** 是否显示下拉框 */
const isShowPullDownBox = ref(false)
/** 是否显示下拉内容 */
const handleShowPullDown = () => {
isShowPullDownBox.value = !isShowPullDownBox.value
}
</script>
<style lang="scss" scoped>
.PullDownBox {
background: #fff;
margin-bottom: 10upx;
padding: 10upx;
}
.Pulldown-title-container {
display: flex;
}
.Pulldown-title {
flex: 1;
}
.icon {
padding: 0 10upx;
flex: none;
transition: all 0.2s;
}
.normal {
transform: rotate(0deg);
}
.active {
transform: rotate(180deg);
}
</style>

87
compoment/ScrollList/ScrollList.vue

@ -0,0 +1,87 @@
<template>
<!-- @scrolltolower触底事件@scroll滚动事件 -->
<scroll-view scroll-y="true" :style="{height: containerHeight+'px'}" @scroll="scrollTop = $event.detail.scrollTop"
@scrolltolower="$emit('@scrolltolower')">
<!-- 监听滚动事件使用passive修饰符 -->
<view :style="paddingStyle">
<!-- key使用index可避免多次渲染该dom -->
<view id="box" v-for="(item, index) in showList" :key="index">
<!-- 使用作用域插槽将遍历后的数据item和index传递出去 -->
<slot :item="item" :$index="index"></slot>
</view>
</view>
</scroll-view>
</template>
<script>
export default {
name: "App",
props: {
//
allList: {
type: Array,
default () {
return []
}
},
//
containerHeight: {
type: Number,
default: 0
},
},
data() {
return {
oneHeight: 200, // ,200.mounted
scrollTop: 0 //
};
},
async mounted() {
//
await this.$nextTick(() => {
})
// uniapp
const query = uni.createSelectorQuery();
console.log('query.select :>> ', query.select('#box').boundingClientRect);
query.select('#box').boundingClientRect(data => {
console.log('data :>> ', data);
this.oneHeight = data.height
}).exec();
},
computed: {
//
showNum() {
return ~~(this.containerHeight / this.oneHeight) + 2;
},
//
startIndex() {
// index
const curIndex = ~~(this.scrollTop / this.oneHeight)
// console.log(this.showNum, this.oneHeight)
// index使this.showNum
return curIndex < this.showNum ? 0 : curIndex - this.showNum
},
// index
endIndex() {
// index
const curIndex = ~~(this.scrollTop / this.oneHeight)
let end = curIndex + this.showNum * 3; // 2
let len = this.allList.length
return end >= len ? len : end; //
},
//
showList() {
return this.allList.slice(this.startIndex, this.endIndex)
},
//
paddingStyle() {
return {
paddingTop: this.startIndex * this.oneHeight + 'px',
paddingBottom: (this.allList.length - this.endIndex) * this.oneHeight + 'px'
}
}
},
};
</script>

3
config/host.js

@ -8,13 +8,14 @@
// lmy
// const devhost = 'http://192.168.10.123:8889/'
// zhy
const devhost = 'http://192.168.10.48:13000/'
// const devhost = 'http://192.168.10.48:13000/'
// tjj
// const devhost = 'http://192.168.10.25:13000/'
// cyz
// const devhost = 'http://192.168.10.75:8777/'
// const devhost = 'http://192.168.6.141:8777/'
// 正式
const devhost = 'http://h5uapi.huitongys.com/'
// const devhost = 'http://h5uapi.huitongys.com/'
// cg
// const devhost = 'http://192.168.10.200:13000/'

6
main.js

@ -25,7 +25,8 @@ 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 ScrollList from '@/compoment/ScrollList/ScrollList.vue';
import PullDownBox from '@/compoment/PullDownBox/PullDownBox.vue';
import saomiao1 from '@/compoment/saomiao1.vue'
import saomiao2 from '@/compoment/saomiao2.vue'
import saomiao3 from '@/compoment/saomiao3.vue'
@ -54,6 +55,9 @@ export function createApp() {
.component('BasicContainer', BasicContainer)
.component('PopUp', PopUp)
.component('BluetoothList', BluetoothList)
.component('ScrollList', ScrollList)
.component('PullDownBox', PullDownBox)
uni.$u.config.unit = 'rpx'
return {
app,

31
pages.json

@ -229,6 +229,25 @@
}
}
},
{
"path": "pages/VehicleArrivalDetails/VehicleArrivalDetails",
"style": {
"navigationBarTitleText": "到车入库详情",
"enablePullDownRefresh": true,
"onReachBottomDistance": 1,
"navigationStyle": "custom",
"app-plus": {
"animationDuration": 300,
"animationType": "zoom-fade-out",
"pullToRefresh": {
"support": true,
"color": "#d3832a", //
"style": "circle" //
}
}
}
},
{
"path": "pages/SelfPickupScan/SelfPickupScan",
@ -1367,12 +1386,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",

302
pages/index/index.vue

@ -34,157 +34,157 @@
import { inject, reactive, toRefs, watchEffect, ref } from "vue";
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/codePlateBracket/codePlateBracket',
},
{
icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
name: '入库扫描',
router: '/pagesHome/pages/orderInquiry/orderInquiry',
},
{
icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
name: '到车入库',
router: '/pagesHome/pages/ArrivalList/ArrivalList',
},
]
},
{
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',
},
{
icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
name: '配载装车',
router: '/pagesHome/pages/StowageList/StowageList',
},
{
icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
name: '中转装车',
router: '/pagesHome/pages/RelayScanList/RelayScanList',
},
]
},
{
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: [] });
// 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/codePlateBracket/codePlateBracket',
// },
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '',
// router: '/pagesHome/pages/orderInquiry/orderInquiry',
// },
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '',
// router: '/pagesHome/pages/ArrivalList/ArrivalList',
// },
// ]
// },
// {
// 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',
// },
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '',
// router: '/pagesHome/pages/StowageList/StowageList',
// },
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '',
// router: '/pagesHome/pages/RelayScanList/RelayScanList',
// },
// ]
// },
// {
// 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({

65
pagesHome/pages/ArrivalList/ArrivalList.vue

@ -12,7 +12,7 @@
size="40"></u-icon>
</view>
</view>
<view @click="scandata">查询</view>
<view @click="initpage">查询</view>
</view>
</template>
@ -28,49 +28,45 @@
<view class="items">
<view class="items_row">
<view>
车次号: {{1231231231}}
车次号: {{item.carsNo}}
</view>
<view>
车牌号: {{123123}}
车牌号: {{item.carNumber}}
</view>
</view>
<view class="items_row">
<view>
实际装车/计划装车: {{'12/57'}}
实际装车/计划装车: {{item.realLoadingNumber/item.planLoadingNumber}}
</view>
<view>
车型: {{123123}}
车型: {{''}}
</view>
</view>
<view class="items_row">
<view>
z主驾司机: {{'12/57'}}
主驾司机: {{item.driverName}}
</view>
<view>
电话: {{123123}}
电话: {{item.driverMobile}}
</view>
</view>
<view class="items_row">
类型: 自由
线路: {{item.carsLineName}}
</view>
<view class="items_row">
线路: 双流基地仓->龙泉仓->达州仓
</view>
<view class="items_row">
发车时间: 123123123
发车时间: {{item.startTime}}
</view>
<view class="button-container">
<view class="button">
入库
<view class="button" @click="handleDetailsByOrder(item)">
入库
</view>
<view class="button">
@ -111,7 +107,7 @@
<script lang="ts" setup>
import {
warehouseTrayTypeorderPageList,
postArriveUnloadPageList,
warehouseTrayTypeorderScanTrayCode,
} from '@/api/user.js'
import {
@ -223,14 +219,15 @@
datalist: [],
scancode: '',
})
onLoad((op) => {
details.pageType = op.type
onLoad(() => {
date.value[0] = (uni as any).$u.timeFormat((new Date().valueOf() - 1000 * 60 * 60 * 24 * 3), 'yyyy-mm-dd')
date.value[1] = (uni as any).$u.timeFormat((new Date().valueOf()), 'yyyy-mm-dd')
// #ifdef APP
utils.ttsspke('请扫描或输入托盘码')
utils.ttsspke('请选择配载计划')
// #endif
})
onShow(() => {
// #ifdef APP
//
@ -280,12 +277,13 @@
async function initpage() {
try {
let submitData = {
type: '1',
pageNum: details.pageNum,
pageSize: details.pageSize,
createDateStart: date.value[0] || '',
createDateEnd: date.value[1] || '',
}
const res = await warehouseTrayTypeorderPageList(submitData)
const res = await postArriveUnloadPageList(submitData)
if (res.code !== 200) return
const { code, data } = res
if (code === 200 && data) details.datalist = [...details.datalist, ...data.records]
@ -298,21 +296,6 @@
}
}
function goorderdetail(item : any) {
//
uni.navigateTo({
url: '/pagesHome/pages/OrderSortingDetail/OrderSortingDetail?trayCode='
+ item.trayCode + '&trayType='
+ item.trayType
})
if (Number(details.pageType) == 2) {
uni.navigateTo({
url: '/pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail?trayCode='
+ item.trayCode + '&trayType='
+ item.trayType
})
}
}
function showCalendar() {
details.show = !details.show
}
@ -321,8 +304,6 @@
date.value[0] = e.startDate
date.value[1] = e.endDate
details.datatime = date.value[0] + ' 至 ' + date.value[1]
// details.datatime=(uni as any).$u.timeFormat(date.value[0], 'yyyy-mm-dd')+' '+(uni as any).$u.timeFormat(date.value[1], 'yyyy-mm-dd')
}
watchEffect(() => {
if ((date.value as []).length != 0) {
@ -331,12 +312,18 @@
initpage()
})
function cleartime() {
// console.log(1231211);
details.datatime = ''
date.value = []
init()
}
/** 按件入库 */
const handleDetailsByOrder = (item) => {
uni.navigateTo({
url: '/pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails?id=' + item.id + '&type=' + '1'
})
}
const {
show,
datatime,

23
pagesHome/pages/StowageList/StowageList.vue

@ -1,5 +1,4 @@
<template>
<!-- <u-navbar title="拣货扫描" placeholder border=true :autoBack="true" leftIconSize='35'></u-navbar> -->
<BasicContainer ref="basicContainer" :option="option" :leftClick="backPreviousPage">
<template #head>
<view class="schbox">
@ -88,7 +87,6 @@
<tips ref="tip"></tips>
<l-calendar v-model:value="show" :initStartDate='date[0]' :initEndDate='date[1]' @hide='showCalendar'
@change="onConfirm"></l-calendar>
<!-- <hd-calendar mode="range" color='#D3832A' minDate='2023-01-01' @confirm="onConfirm" /> -->
</template>
<script lang="ts" setup>
@ -159,7 +157,9 @@
onLoad(() => {
date.value[0] = (uni as any).$u.timeFormat((new Date().valueOf() - 1000 * 60 * 60 * 24 * 3), 'yyyy-mm-dd')
date.value[1] = (uni as any).$u.timeFormat((new Date().valueOf()), 'yyyy-mm-dd')
utils.ttsspke('请选择拣货任务')
// #ifdef APP
utils.ttsspke('请选择配载计划')
// #endif
})
async function init() {
details.pageNum = 1
@ -171,6 +171,13 @@
initpage()
}
async function initpage() {
if (date.value.length === 0) {
return uni.showToast({
title: '请选择拣货日期',
icon: 'none'
})
}
try {
uni.showLoading({
title: '数据加载中',
@ -407,8 +414,8 @@
}
>view:nth-of-type(2) {
border-color: #D3832A;
color: #D3832A;
border-color: var(--subjectColor);
color: var(--subjectColor);
margin-left: 100upx;
}
}
@ -441,8 +448,8 @@
}
.xz {
color: #D3832A;
border-bottom: 8upx solid #D3832A;
color: var(--subjectColor);
border-bottom: 8upx solid var(--subjectColor);
// border-radius: 5upx;
}
}
@ -470,7 +477,7 @@
>view:nth-of-type(3) {
width: 128upx;
height: 64upx;
background: #D3832A;
background: var(--subjectColor);
border-radius: 8upx;
display: flex;
align-items: center;

432
pagesHome/pages/StowageListDetails/StowageListDetails.vue

@ -40,155 +40,149 @@
</view>
</view>
<template v-if="Number(details.pageType) === 1">
<view class="tabtip">
<view @click="setorderStatus(1)">
<view :class="orderStatus==1?'xz':''">定制品</view>
</view>
<view @click="setorderStatus(2)">
<view :class="orderStatus==2?'xz':''">零担</view>
</view>
<view @click="setorderStatus(3)">
<view :class="orderStatus==3?'xz':''">异常</view>
</view>
<view class="tabtip">
<view @click="setorderStatus(1)">
<view :class="orderStatus==1?'xz':''">定制品</view>
</view>
</template>
<view @click="setorderStatus(2)">
<view :class="orderStatus==2?'xz':''">零担</view>
</view>
<view @click="setorderStatus(3)">
<view :class="orderStatus==3?'xz':''">异常</view>
</view>
</view>
</template>
<template #body>
<scroll-view class="scve" scroll-y="true" @refresherpulling="" @scrolltolower="()=>{}">
<!-- 按件装车 -->
<template v-if='Number(details.pageType) === 1'>
<view class="mabx">
<block v-for="(item,index) in datalist" :key="item">
<!-- 定制品 -->
<template v-if="orderStatus== 1">
<view class="itec" @click="handleDetails(item,index,1)">
<view class="contenbx1">
<view><text style="color: #90A0AF;"
@click.stop="goorderdetail(item)">订单编号</text>{{item.orderCode}}
</view>
<view class="mabx">
<block v-for="(item,index) in datalist" :key="item">
<!-- 定制品 -->
<template v-if="orderStatus== 1">
<view class="itec" @click="handleDetails(item,index,1)">
<view class="contenbx1">
<view><text style="color: #90A0AF;"
@click.stop="goorderdetail(item)">订单编号</text>{{item.orderCode}}
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;"
@click.stop="goorderdetail(item)">运单号</text>{{item.waybillNo}}
</view>
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;"
@click.stop="goorderdetail(item)">运单号</text>{{item.waybillNo}}
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;">订单总数</text>{{item.totalNum}}</view>
<view><text style="color: #90A0AF;">
计划数/已扫数</text>{{item.planNum + '/' + item.realNum}}
</view>
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;">订单总数</text>{{item.totalNum}}</view>
<view><text style="color: #90A0AF;">
计划数/已扫数</text>{{item.planNum + '/' + item.realNum}}
</view>
<view class="xialaxz" v-if="listcheckindex==index">
<block v-for="ite in item.distributionAppParcelListVOS" :key="ite">
<view class="box">
<view>包条码{{ite.scanCode}}</view>
<view>数量{{ite.num}}</view>
<view>托盘名称{{ite.trayName}}</view>
<view>托盘码{{ite.trayCode}}
</view>
<view class="w100">
<view class="">
</view>
<view class="xialaxz" v-if="listcheckindex==index">
<block v-for="ite in item.distributionAppParcelListVOS" :key="ite">
<view class="box">
<view>包条码{{ite.scanCode}}</view>
<view>数量{{ite.num}}</view>
<view>托盘名称{{ite.trayName}}</view>
<view>托盘码{{ite.trayCode}}
</view>
<view class="w100">
<view class="">
</view>
<view @click.stop="handleDelete(ite, 1)" class="button abnormalBtn">删除</view>
</view>
<view @click.stop="handleDelete(ite, 1)" class="button abnormalBtn">删除</view>
</view>
</block>
</view>
<view v-if="item.complete"
:class="item.completecode==3?'tip tp1':item.completecode==1?'tip tp2':'tip tp3'">
{{item.complete}}
</view>
</view>
</template>
<!-- 零担 -->
<template v-else-if="orderStatus == 2">
<view class="itec" @click="handleDetails(item,index,2)">
<view class="contenbx1">
<view><text style="color: #90A0AF;"
@click.stop="goorderdetail(item)">订单编号</text>{{item.orderCode}}
</view>
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;"
@click.stop="goorderdetail(item)">运单号</text>{{item.waybillNo}}
</view>
</block>
</view>
<view v-if="item.complete"
:class="item.completecode==3?'tip tp1':item.completecode==1?'tip tp2':'tip tp3'">
{{item.complete}}
</view>
</view>
</template>
<!-- 零担 -->
<template v-else-if="orderStatus == 2">
<view class="itec" @click="handleDetails(item,index,2)">
<view class="contenbx1">
<view><text style="color: #90A0AF;"
@click.stop="goorderdetail(item)">订单编号</text>{{item.orderCode}}
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;">计划数量</text>{{item.planNum || 0}}</view>
<view><text style="color: #90A0AF;">装车数量</text>{{item.loadingNum || 0}}</view>
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;"
@click.stop="goorderdetail(item)">运单号</text>{{item.waybillNo}}
</view>
<view class="flex-c-sb">
<view class="button" @click.stop="handleShowZeroStowage(item)">
零担装车
</view>
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;">计划数量</text>{{item.planNum || 0}}</view>
<view><text style="color: #90A0AF;">装车数量</text>{{item.loadingNum || 0}}</view>
</view>
<view class="flex-c-sb">
<view class="button" @click.stop="handleShowZeroStowage(item)">
零担装车
</view>
<view class="xialaxz" v-if="listcheckindex==index">
<block v-for="ite in item.distributionAppParcelListVOS" :key="ite">
<view class="box">
<view>物料名称{{ite.scanCode}}</view>
<view>数量{{ite.num}}</view>
<view>托盘名称{{ite.trayName}}</view>
<view>托盘码{{ite.trayCode}}
</view>
<view class="w100 flex-c-sb">
<view class="">
</view>
<view class="xialaxz" v-if="listcheckindex==index">
<block v-for="ite in item.distributionAppParcelListVOS" :key="ite">
<view class="box">
<view>物料名称{{ite.scanCode}}</view>
<view>数量{{ite.num}}</view>
<view>托盘名称{{ite.trayName || '暂无数据'}}</view>
<view>托盘码{{ite.trayCode || '暂无数据'}}
</view>
<view class="w100 flex-c-sb">
<view class="">
</view>
<view class="button abnormalBtn" @click.stop="handleDelete(ite, 1)">删除</view>
</view>
<view class="button abnormalBtn" @click.stop="handleDelete(ite, 1)">删除</view>
</view>
</block>
</view>
</view>
</block>
</view>
<view v-if="item.complete"
:class="item.completecode==3?'tip tp1':item.completecode==1?'tip tp2':'tip tp3'">
{{item.complete}}
</view>
<view v-if="item.complete"
:class="item.completecode==3?'tip tp1':item.completecode==1?'tip tp2':'tip tp3'">
{{item.complete}}
</view>
</template>
<!-- 异常 -->
<template v-else-if="orderStatus == 3">
<view class="itec" @click="checkphon(item,index)">
<view class="contenbx1">
<view><text style="color: #90A0AF;"
@click.stop="goorderdetail(item)">订单编号</text>{{item.orderCode}}
</view>
</view>
</template>
<!-- 异常 -->
<template v-else-if="orderStatus == 3">
<view class="itec" @click="checkphon(item,index)">
<view class="contenbx1">
<view><text style="color: #90A0AF;"
@click.stop="goorderdetail(item)">订单编号</text>{{item.orderCode}}
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;"
@click.stop="goorderdetail(item)">运单号</text>{{item.waybillNo}}
</view>
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;">码值</text>{{item.scanCode || 0}}</view>
<view><text style="color: #90A0AF;">装车数量</text>{{item.loadingNum || 0}}</view>
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;"
@click.stop="goorderdetail(item)">运单号</text>{{item.waybillNo}}
</view>
<view class="flex-c-sb">
<view class="">
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;">码值</text>{{item.scanCode || 0}}</view>
<view><text style="color: #90A0AF;">装车数量</text>{{item.loadingNum || 0}}</view>
</view>
<view class="flex-c-sb">
<view class="">
</view>
<view class="button" @click.stop="handleDelete(item,3)">
删除
</view>
</view>
<view v-if="item.complete"
:class="item.completecode==3?'tip tp1':item.completecode==1?'tip tp2':'tip tp3'">
{{item.complete}}
<view class="button" @click.stop="handleDelete(item,3)">
删除
</view>
</view>
</template>
</block>
</view>
</template>
<!-- 整托装车 -->
<view v-if="item.complete"
:class="item.completecode==3?'tip tp1':item.completecode==1?'tip tp2':'tip tp3'">
{{item.complete}}
</view>
</view>
</template>
</block>
</view>
</scroll-view>
</template>
</BasicContainer>
@ -197,51 +191,75 @@
<!-- 零担装车 -->
<PopUp ref='ZeroStowage'>
<scroll-view style="height: 30vh;" scroll-y="true">
<block v-for="item in details.zeroList" :key="item">
<view class="">
<view class="flex-c-sb">
<view class="">
产品名称: {{item.productName}}
</view>
<view class="">
在库数: {{item.totalNum}}
</view>
</view>
<input class="input" v-model="item.enterNum" type="number" />
<scroll-view scroll-y="true">
<view class="contenbx1">
<view><text style="color: #90A0AF;">订单编号</text>{{details.zeroInfo.orderCode}}
</view>
</block>
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;">运单号</text>{{details.zeroInfo.waybillNo}}
</view>
</view>
<view class="flex-c-sb">
<view><text style="color: #90A0AF;">计划数量</text>{{details.zeroInfo.planNum || 0}}</view>
<view><text style="color: #90A0AF;">装车数量</text>{{details.zeroInfo.loadingNum || 0}}</view>
</view>
<inputNum :minNum="0" :maxNum="details.zeroInfo.planNum" v-model="details.zeroInfo.enterNum" />
</scroll-view>
</PopUp>
<!-- 整托装车 -->
<PopUp ref='TrayStowage'>
<scroll-view style="height: 30vh;" scroll-y="true">
<scroll-view style="height: 50vh;" scroll-y="true">
<view class="">
零担:
</view>
<block v-for="item in details.trayInfo.zeroList" :key="item">
<view class="">
<block v-for="item in details.trayInfo.zeroList" :key="item.associationValue">
<view class="pop_row">
<view class="flex-c-sb">
<view class="">
订单号: {{item.associationValue}}
</view>
<view class="">
在库数: {{item.num}}
</view>
<view>订单号{{item.associationValue}}</view>
<view>数量{{item.num}}</view>
</view>
<u--input type="number" class="input" placeholder="请输入内容" border="surround" v-model="item.enterNum"
clearable></u--input>
</view>
</block>
<!-- <u-collapse>
<block v-for="item in details.trayInfo.zeroList" :key="item">
<u-collapse-item name="Docs guide">
<template #title>
<view class="flex-c-sb">
<view class="">
订单号: {{item.associationValue}}
</view>
<view class="">
在托数量: {{item.num}}
</view>
</view>
</template>
<block v-for="value in item.details" :key="value">
<view class="flex-c-sb" style="margin: 5px 0;">
<view class="">
产品名称: {{value.productName}}
</view>
<view class="">
在托可用: {{value.stockNum}}
</view>
<view class="">
在库数: {{value.stockNum}}
</view>
</view>
<inputNum v-model="value.enterNum" :minNum="0" :maxNum="value.stockNum" />
</block>
</u-collapse-item>
</block>
</u-collapse> -->
<view class="">
定制品:
</view>
<block v-for="item in details.trayInfo.packageList" :key="item">
<view class="">
<view class="pop_row">
<view class="flex-c-sb">
<view>包条码{{item.associationValue}}</view>
<view>数量{{item.num}}</view>
@ -263,7 +281,8 @@
postLoadingScan,
postRemoveCarsLoadScan,
postLoadingZero,
postLoadingTrayInfo
postLoadingTrayInfo,
postLoadingTray
} from '@/api/user.js'
import {
onLoad,
@ -317,7 +336,7 @@
zero: [],
pageInfo: {},
//
zeroList: [],
zeroInfo: [],
/** 页面类型 1: 按件装车 2: 整托装车 */
pageType: 1,
/** 整托渲染列表 */
@ -463,6 +482,11 @@
loadId: details.loadId
}
const res = await postLoadingScan(submitData)
if (res.msg) {
// #ifdef APP
utils.ttsspke(res.msg)
// #endif
}
return res
}
@ -481,11 +505,43 @@
TrayStowage.value.setDetails({
title: '整托装车',
showPopUp: true,
success() {
async success() {
try {
uni.showLoading({
mask: true
})
const submitInfo = {
...submitData,
zeroList: details.trayInfo.zeroList.map(val => {
return {
orderCode: val.associationValue,
waybillNo: val.waybillNo,
enterNum: val.num
}
}),
packageList:
details.trayInfo.packageList.map(val => {
return {
orderPackageCode: val.associationValue
}
})
}
// Promise
resolve(null)
const res = await postLoadingTray(submitInfo)
if (res.code !== 200) return
uni.showToast({
title: '装车成功',
icon: 'none'
})
TrayStowage.value.details.showPopUp = false
} catch (e) {
//TODO handle the exception
} finally {
uni.hideLoading()
// Promise
resolve(null)
}
},
close() {
// Promise,
@ -501,12 +557,14 @@
* */
async function scandata() {
try {
if (Number(details.pageType === 1)) await scanOrder()
uni.showLoading()
if (Number(details.pageType) === 1) await scanOrder()
else await scanTray()
} catch (err) {
console.log('err :>> ', err);
//TODO handle the exception
} finally {
uni.hideLoading()
//
basicContainer.value.startPullDownRefresh()
}
@ -514,42 +572,30 @@
/** 显示零担弹窗 -- 设置零担装车数量 */
const handleShowZeroStowage = async (_item : any) => {
console.log('item :>> ', _item);
details.zeroList = []
const submitData = {
loadId: details.loadId,
orderCode: _item.orderCode
}
const res = await postFindLoadScanWaybillDetailList(submitData)
console.log('ZeroStowage :>> ', ZeroStowage);
if (res.code !== 200) return
details.zeroInfo = _item
details.zeroList = res.data
for (let item of details.zeroList) {
item.enterNum = 0
}
details.zeroInfo.enterNum = details.zeroInfo.loadingNum || 0
ZeroStowage.value.setDetails({
title: '零担装车',
showPopUp: true,
async success() {
try {
if (!_item.enterNum) {
return uni.showToast({
title: '请输入大于零的数字',
icon: 'none'
})
}
uni.showLoading({
mask: true
})
const submitData = {
orderCode: _item.orderCode,
waybillNo: _item.waybillNo,
loadId: details.loadId,
productInfoList: []
enterNum: _item.enterNum
}
details.zeroList.forEach(val => {
if (val.enterNum > 0) {
submitData.productInfoList.push(val)
}
})
// submitData
const res = await postLoadingZero(submitData)
console.log('res :>> ', res);
@ -557,11 +603,13 @@
//TODO handle the exception
} finally {
uni.hideLoading()
ZeroStowage.value.details.showPopUp = false
//
basicContainer.value.startPullDownRefresh()
}
}
})
console.log(' res :>> ', res);
}
/**
@ -597,14 +645,29 @@
/** 删除 */
const handleDelete = async (_item : any, type : number) => {
try {
uni.showLoading({
mask: true
})
console.log('_item :>> ', _item);
const submitData = {
orderCode: _item.orderCode,
carsLoadScanId: _item.id,
}
//
if (type === 1) submitData.carsLoadScanId = _item.loadScanId
await postRemoveCarsLoadScan(submitData)
const res = await postRemoveCarsLoadScan(submitData)
if (res.code !== 200) return
// #ifdef APP
utils.ttsspke('删除成功')
// #endif
uni.showToast({
title: '删除成功',
icon: 'none'
})
} catch (e) {
//TODO handle the exception
} finally {
uni.hideLoading()
basicContainer.value.startPullDownRefresh()
}
@ -648,7 +711,7 @@
.butlur {
width: 200upx !important;
height: 64upx !important;
background: #D3832A;
background: var(--subjectColor);
border-radius: 8upx;
display: flex;
align-items: center;
@ -683,8 +746,8 @@
}
.xz {
color: #D3832A;
border-bottom: 8upx solid #D3832A;
color: var(--subjectColor);
border-bottom: 8upx solid var(--subjectColor);
// border-radius: 5upx;
}
}
@ -828,7 +891,7 @@
.btscan {
width: 128upx;
height: 64upx;
background: #D3832A;
background: var(--subjectColor);
border-radius: 8upx;
display: flex;
align-items: center;
@ -949,4 +1012,9 @@
border-radius: 10upx;
margin: 5upx 0 20upx;
}
.pop_row {
padding: 10upx 0;
border-bottom: 1upx solid #aaa;
}
</style>

826
pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue

@ -0,0 +1,826 @@
<template>
<BasicContainer ref="basicContainer" :option="option" :leftClick="leftClick">
<template #head>
<view class="hdtp">
<view>
<view>
配载批次{{details.pageInfo.carsNo}}
</view>
<view class="butlur" @click="showsdqs">
录入包条码
</view>
</view>
<view>
<view>司机名称{{details.pageInfo.driverName}}</view>
<view>司机电话{{details.pageInfo.driverMobile}}</view>
</view>
<view>
<view>车牌号{{details.pageInfo.carNumber}}</view>
</view>
<view>
<view>路线{{details.pageInfo.carsLineName}}</view>
</view>
<!-- <view>
<view>备货是否完成{{items.isstock}}</view>
<view>装车是否完成{{items.isload}}</view>
</view> -->
</view>
<view class="hdtpnum">
<view>
<view>订单总数</view>
<view>{{items.orderNum || 0}}</view>
</view>
<view>
<view>计划件数</view>
<view>{{details.pageInfo.planLoadingNumber || 0}}</view>
</view>
<view>
<view>装车件数</view>
<view>{{details.pageInfo.realLoadingNumber || 0}}</view>
</view>
<view>
<view>卸车数</view>
<view>{{details.pageInfo.realLoadingNumber || 0}}</view>
</view>
</view>
<view class="tabtip">
<view @click="setorderStatus(1)" :class="orderStatus==1?'active':''">
<view>定制品</view>
</view>
<view @click="setorderStatus(2)" :class="orderStatus==2?'active':''">
<view>零担</view>
</view>
<view @click="setorderStatus(3)" :class="orderStatus==3?'active':''">
<view>异常</view>
</view>
</view>
</template>
<template #body>
<jp-virtual-list code="id" class="h100" :refresher="false" :data="datalist" ref="search">
<template v-slot="{ list }">
<view v-for="item in list" :key="item.id" :id="item.id" :ref="item.id">
<PullDownBox>
<template #title>
<view class="contenbx1">
<view style="flex: 1;">
<view @click.stop="goorderdetail(item)">订单号</view>
<view class="">
{{item.orderCode}}
</view>
</view>
<view style="flex: 1;">
<view>运单号</view>
<view class="">
{{item.waybillNo}}
</view>
</view>
</view>
<view class="contenbx1">
<view>
<text>订单总数</text>
{{item.totalNum}}
</view>
<view>
<text>
装车数/卸车数
</text>
{{item.loadingNum + '/' + item.unloadNum}}
</view>
</view>
</template>
<template #content>
<u-divider text="详情"></u-divider>
<block v-for="value in item.unloadPackageList" :key="value.name">
<view class="details_container">
<!-- 定制品 -->
<template v-if="Number(orderStatus) === 1">
<view class="flex-c-sb">
<view class="">
包条码: {{value.orderPackageCode}}
</view>
<view class="flex1" style="display: flex; align-items: center; margin-left:5px;">
卸车状态:
<view class="tip">
{{Number(value.scanStatus) === 1? '已装车': Number(value.scanStatus) === 2? '已卸车': '已签收'}}
</view>
</view>
</view>
<view class="flex-c-sb mt10">
<view class="flex1">
托盘名称: {{value.trayName || '暂无数据'}}
</view>
<view class="flex1">
托盘码: {{value.trayCode || '暂无数据'}}
</view>
</view>
</template>
<!-- 零担 -->
<template v-if="Number(orderStatus) === 2">
<view class="flex-c-sb" @click="handleZeroStowage(item, value)">
<view class="flex1">
产品名称: {{value.orderPackageCode}}
</view>
<view class="flex1">
装车数/卸车数: {{value.num + '/' + (value.unloadNum || 0)}}
</view>
</view>
<view class="flex-c-sb mt10">
<view class="flex1">
托盘名称: {{value.trayName || '暂无数据'}}
</view>
<view class="flex1">
托盘码: {{value.trayCode || '暂无数据'}}
</view>
</view>
</template>
</view>
</block>
</template>
</PullDownBox>
</view>
</template>
</jp-virtual-list>
<!-- <ScrollList :allList="datalist" :containerHeight='300'>
<template #default="user">
<PullDownBox>
<template #title>
<view class="contenbx1">
<view style="flex: 1;">
<view @click.stop="goorderdetail(user.item)">订单号</view>
<view class="">
{{user.item.orderCode}}
</view>
</view>
<view style="flex: 1;">
<view>运单号</view>
<view class="">
{{user.item.waybillNo}}
</view>
</view>
</view>
<view class="contenbx1">
<view>
<text>订单总数</text>
{{user.item.totalNum}}
</view>
<view>
<text>
装车数/卸车数
</text>
{{user.item.loadingNum + '/' + user.item.unloadNum}}
</view>
</view>
</template>
<template #content>
<u-divider text="详情"></u-divider>
<block v-for="value in user.item.unloadPackageList" :key="value.name">
<view class="details_container">
<template v-if="Number(orderStatus) === 1">
<view class="flex-c-sb">
<view class="">
包条码: {{value.orderPackageCode}}
</view>
<view class="flex1" style="margin-left: 5px;">
装车数/卸车数: {{value.num + '/' + (value.unloadNum || 0)}}
</view>
</view>
<view class="flex-c-sb mt10">
<view class="flex1">
托盘名称: {{value.trayName || '暂无数据'}}
</view>
<view class="flex1">
托盘码: {{value.trayCode || '暂无数据'}}
</view>
</view>
</template>
<template v-if="Number(orderStatus) === 2">
<view class="flex-c-sb">
<view class="flex1">
产品名称: {{value.orderPackageCode}}
</view>
<view class="flex1">
装车数/卸车数: {{value.num + '/' + (value.unloadNum || 0)}}
</view>
</view>
<view class="flex-c-sb mt10">
<view class="flex1">
托盘名称: {{value.trayName || '暂无数据'}}
</view>
<view class="flex1">
托盘码: {{value.trayCode || '暂无数据'}}
</view>
</view>
</template>
</view>
</block>
</template>
</PullDownBox>
</template>
</ScrollList> -->
</template>
</BasicContainer>
<tiplist ref="tiplists">
</tiplist>
<!-- 零担装车 -->
<PopUp ref='ZeroStowage'>
<scroll-view scroll-y="true">
<view class="contenbx1">
<view><text style="color: #90A0AF;">订单编号</text>{{details.zeroInfo.orderCode}}
</view>
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;">运单号</text>{{details.zeroInfo.waybillNo}}
</view>
</view>
<view class="contenbx1">
<view><text style="color: #90A0AF;">物料名称</text>{{details.zeroInfo.orderPackageCode}}
</view>
</view>
<view class="flex-c-sb">
<view><text style="color: #90A0AF;">装车数</text>{{details.zeroInfo.num || 0}}</view>
<view><text style="color: #90A0AF;">卸车数</text>{{details.zeroInfo.unloadNum || 0}}</view>
</view>
<inputNum :minNum="0" :maxNum="details.zeroInfo.num" v-model="details.zeroInfo.unloadNum" />
</scroll-view>
</PopUp>
<!-- 整托装车 -->
<PopUp ref='TrayStowage'>
</PopUp>
<!-- #ifdef APP -->
<saomiao2 :ishidestop="scanState !== 0"></saomiao2>
<!-- #endif -->
</template>
<script lang="ts" setup>
import {
postCarsLoadUnloadPackage,
postArriveUnloadCarsDetail,
postCarsLoadUnloadZero
} from '@/api/user.js'
import {
onLoad,
onShow,
} from '@dcloudio/uni-app'
import { computed, inject, nextTick, onMounted, reactive, ref, toRefs, } from "vue";
import useSystemSettingsStore from '@/store/useSystemSettingsStore';
import { storeToRefs } from 'pinia';
const { scanState } = storeToRefs(useSystemSettingsStore())
const utils = inject('utils') as any
const option = reactive({
title: '配载按件卸车',
haveData: true,
async pullDownRefreshInitPage() {
return await initpage()
},
})
let details = reactive({
schanvalue: '',
typearr: [
{
value: 3,
label: '齐套'
},
{
value: 2,
label: '部分扫'
},
{
value: 1,
label: '未扫'
}
],
items: {} as any,
datalist: [],
scancode: '',
orderStatus: 1,
loadId: '',
orderType: 0,
inputtxt: '',
listcheckindex: -1,
isscan: false,
order: [],
zero: [],
pageInfo: {},
//
zeroList: [],
/** 页面类型 1: 按件装车 2: 整托装车 */
pageType: 1,
/** 整托渲染列表 */
trayInfo: {
zeroList: [],
packageList: []
},
/** 卸车的零担信息 */
zeroInfo: {}
})
//
const tiplists = ref(null)
const basicContainer = ref(null)
/** 零担装车 */
const ZeroStowage = ref()
/** 整托装车 */
const TrayStowage = ref()
onLoad((op) => {
details.loadId = op.id
details.pageType = op.type
option.title = Number(op.type) === 2 ? '配载整托卸车' : '配载按件卸车'
})
function goorderdetail(item) {
uni.navigateTo({
url: '/pagesHome/pages/orderDetails/orderDetails?orderCode=' + item.orderCode
})
}
onShow(async () => {
// #ifdef APP
uni.$off('scancodedate')
uni.$on('scancodedate', function (code) {
if (code) {
console.log('code', code);
details.scancode = code
details.isscan = true
scandata()
}
})
// #endif
await nextTick()
//
// const timer = setTimeout(() => {
basicContainer.value.startPullDownRefresh()
// clearTimeout(timer)
// }, 10)
})
function showsdqs() {
tiplists.value.setdetails({
isshow: true,
tipstate: 1,
title: '请输入扫描的码',
placeholder: '请输入扫描的码',
inputtext: '',
success: (detail) => {
details.scancode = detail.inputtext
scandata()
tiplists.value.setdetails({ isshow: false })
},
cancel: () => {
tiplists.value.setdetails({ isshow: false })
},
close: () => {
tiplists.value.setdetails({ isshow: false })
}
})
}
/** 请求页面 -- 按件装车 */
const initPageByOrder = async () => {
try {
const response = await postArriveUnloadCarsDetail({
loadId: details.loadId
})
const { code, data } = response
console.log('response :>> ', response);
if (code === 200) {
details.pageInfo = data
details.datalist = details.orderStatus === 1 ?
details.pageInfo.unloadScanOrderList :
details.orderStatus === 2 ?
details.pageInfo.unloadZeroList :
details.pageInfo.exceptionList
}
} catch (e) {
//TODO handle the exception
} finally {
return null
}
}
/** 请求页面数据 */
async function initpage() {
try {
//
const res = await initPageByOrder()
} catch (err) {
console.log('err :>> ', err);
//TODO handle the exception
} finally {
return null
}
}
function checktype(e) {
if (e == '') {
details.schanvalue = ''
details.orderType = 0
}
details.typearr.map(item => {
if (item.value == e) {
details.schanvalue = item.label
details.orderType = item.value
}
})
}
/**
* 切换tabBer状态
* @param {type} state 选中的状态
*/
function setorderStatus(state : number) {
if (details.orderStatus === state) return
details.orderStatus = state
details.datalist = details.orderStatus === 1 ?
details.pageInfo.unloadScanOrderList :
details.orderStatus === 2 ?
details.pageInfo.unloadZeroList :
details.pageInfo.exceptionList
console.log('details.datalist :>> ', details.datalist);
}
/** 扫描包件 */
const scanOrder = async () => {
let _scanCode = details.scancode
//
let isHave = false
//
let returnContent = ''
for (let item of details.pageInfo.unloadScanOrderList) {
let isBreak = false
for (let val of item.unloadPackageList) {
if (_scanCode === val.orderPackageCode) {
isHave = true
isBreak = true
if (Number(val.scanStatus) === 2) {
returnContent = '该包件已卸车'
} else if (Number(val.scanStatus) === 3) {
returnContent = '该包件已签收'
}
}
}
if (isBreak) break
}
if (returnContent) {
// #ifdef APP
utils.ttsspke(returnContent)
// #endif
uni.showToast({
title: returnContent,
icon: 'none'
})
return
}
try {
const submitData = {
orderPackageCode: _scanCode,
loadId: details.loadId
}
const res = await postCarsLoadUnloadPackage(submitData)
return res
} catch (err) {
console.log('err :>> ', err);
//TODO handle the exception
} finally {
//
basicContainer.value.startPullDownRefresh()
}
}
/**
* */
function scandata() {
//
if (Number(details.pageType) === 1) scanOrder()
}
/** 返回上一页 */
const leftClick = () => {
uni.navigateBack()
}
/** 零担卸车 */
const handleZeroStowage = (_item, _value) => {
details.zeroInfo = { waybillNo: _item.waybillNo, orderCode: _item.orderCode, ..._value }
ZeroStowage.value.setDetails({
title: '零担卸车',
showPopUp: true,
success() {
console.log('details.zeroInfo :>> ', details.zeroInfo);
const submitData = {
loadId: details.loadId,
waybillNo: details.zeroInfo.waybillNo,
orderCode: details.zeroInfo.orderCode,
productName: details.zeroInfo.orderPackageCode,
enterNum: details.zeroInfo.unloadNum
}
postCarsLoadUnloadZero(submitData)
}
})
}
const { orderStatus, items, datalist } = toRefs(details)
</script>
<style lang="scss" scoped>
.xialaxz {
display: flex;
flex-direction: column;
.box {
display: flex;
align-items: flex-start;
justify-content: space-between;
border-top: 1upx solid #00000010;
padding: 20upx 0;
box-sizing: border-box;
font-size: 28upx;
color: #092C4D;
flex-wrap: wrap;
>view {
min-width: 50%;
word-wrap: break-word;
word-break: break-all;
&:nth-last-child(1) {
margin-right: 0upx;
}
}
}
}
.butlur {
width: 200upx !important;
height: 64upx !important;
background: var(--subjectColor);
border-radius: 8upx;
display: flex;
align-items: center;
justify-content: center;
font-size: 32upx;
font-weight: 400;
color: #FFFFFF;
}
.tabtip {
display: flex;
background-color: #fff;
>view {
padding: 20upx 0;
flex: 1;
position: relative;
text-align: center;
&::after {
content: '';
display: block;
position: absolute;
width: 0%;
height: 6upx;
background: var(--subjectColor);
bottom: 3upx;
left: 50%;
transform: translateX(-50%);
transition: all .3s;
}
&.active {
&::after {
content: '';
display: block;
width: 100%;
}
}
}
}
.hdtp {
padding: 34upx 32upx 0;
box-sizing: border-box;
background-color: #ffffff;
display: flex;
flex-direction: column;
align-items: center;
>view {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 28upx;
font-weight: 400;
color: #092C4D;
margin-bottom: 24upx;
&:nth-last-child(1) {
margin-bottom: 0;
}
>view {
width: 50%;
// flex: 1;
}
}
}
.scve {
width: 100%;
height: 50vh;
margin-top: 20upx;
.mabx {
background: #fff;
display: flex;
flex-direction: column;
align-items: center;
background: #FFFFFF;
}
}
.contenbx1 {
display: flex;
justify-content: space-between;
font-size: 28upx;
color: #092C4D;
margin-bottom: 20upx;
&:nth-last-child(1) {
margin-bottom: 0;
}
// >view {
// flex: 1;
// }
}
.hdtpnum {
display: flex;
align-items: center;
justify-content: space-around;
background-color: #ffffff;
padding: 20upx 0;
border-bottom: 3upx solid #EEEEEE;
>view {
display: flex;
align-items: center;
flex-direction: column;
font-size: 28upx;
font-weight: 400;
color: #092C4D;
&:nth-of-type(1) {
>view:nth-of-type(2) {
color: #092C4D;
}
}
&:nth-of-type(2) {
>view:nth-of-type(2) {
color: #0086F1;
}
}
&:nth-of-type(3) {
>view:nth-of-type(2) {
color: #3AD8BC;
}
}
&:nth-of-type(4) {
>view:nth-of-type(2) {
color: #FA8C16;
}
}
>view:nth-of-type(2) {
font-size: 36upx;
font-weight: 400;
color: #092C4D;
}
}
}
.flex-c-sb {
display: flex;
align-items: center;
justify-content: space-between;
}
//
.button {
padding: 10upx 15upx;
background: var(--subjectColor);
color: #fff;
border-radius: 5upx;
width: auto;
display: inline-block;
font-size: 28upx;
&.abnormalBtn {
background: #f8544b;
}
}
//
.abnormal {
background: linear-gradient(0% #000000 50% #0086F1);
}
.w100 {
width: 100%;
}
.input {
padding: 10upx 20upx;
border: 1upx solid #aaa;
border-radius: 10upx;
margin: 5upx 0 20upx;
}
.pop_row {
padding: 10upx 0;
border-bottom: 1upx solid #aaa;
}
// 线
:deep(.u-divider) {
margin: 10upx 0;
}
:deep(.u-divider__text) {
font-size: 28upx !important;
}
//
.details_container {
font-size: 28upx;
zoom: 0.9;
border-bottom: 1upx solid #FA8C16;
padding: 15upx 0;
&:last-child {
border-bottom: 0upx;
}
}
.mt10 {
margin-top: 10upx;
}
.flex1 {
flex: 1;
}
//
.tip {
padding: 10upx 15upx;
background: var(--subjectColor);
color: #fff;
border-radius: 5upx;
margin-left: 10upx;
}
</style>

66
pagesHome/pages/orderInquiry/orderInquiry.vue

@ -116,6 +116,7 @@
<view class="batchOperationBtn" @click="handleCheckAll">全选</view>
<view class="batchOperationBtn" @click="handleInvertSelection">反选</view>
<view class="batchOperationBtn" @click="batchPrint">打印</view>
<view class="batchOperationBtn" @click="handleMaterialReplenishment">物料补充</view>
</view>
<u-checkbox-group v-model="checkboxValue" placement="column">
<view :class="{'packagesList__item':true, 'active': item.orderPackageCode === scancode }"
@ -146,6 +147,22 @@
</view>
</view>
<tiplist ref="tiplists"></tiplist>
<PopUp ref="MaterialReplenishment">
<u--form labelPosition="left" label-width="80px" :model="form" ref="uForm">
<u-form-item label="物料名称" borderBottom ref="item1">
<u--input v-model="form.name" border="bottom"></u--input>
</u-form-item>
<u-form-item label="物料名称" borderBottom ref="item1">
<u--input v-model="form.name" border="bottom"></u--input>
</u-form-item>
<u-form-item label="物料名称" borderBottom ref="item1">
<u--input v-model="form.name" border="bottom"></u--input>
</u-form-item>
<u-form-item label="物料名称" borderBottom ref="item1">
<u--input v-model="form.name" border="bottom"></u--input>
</u-form-item>
</u--form>
</PopUp>
<!-- #ifdef APP -->
<saomiao2 :ishidestop="scanState !== 0"></saomiao2>
<!-- #endif -->
@ -153,7 +170,7 @@
</template>
<script lang="ts" setup>
import { ref, reactive, shallowRef, watch } from 'vue';
import { ref, reactive, shallowRef, watch, nextTick } from 'vue';
import {
onShow,
onHide,
@ -232,7 +249,13 @@
type: 1,
})
/** 修改物料表单 */
const form = ref({})
//
const tiplists = ref(null)
/** 物料补录 */
const MaterialReplenishment = ref()
onLoad(() => {
// #ifdef APP
@ -241,7 +264,7 @@
})
//
onShow(() => {
onShow(async () => {
// #ifdef APP
uni.$off('scancodedate')
uni.$on('scancodedate', function (code) {
@ -252,6 +275,14 @@
}
})
// #endif
// await nextTick()
// console.log('MaterialReplenishment :>> ', MaterialReplenishment);
// MaterialReplenishment.value.setDetails
// ({
// title: '',
// showPopUp: true
// })
})
//
@ -421,28 +452,15 @@
})
}
//
/* 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)
}) */
/**
* 物料补录
*/
const handleMaterialReplenishment = () => {
const idsArr = []
packageList.value.forEach(item => {
if (item.isChecked) idsArr.push(item.id)
})
}
</script>
<style lang="scss" scoped>

95
pagesUser/pages/about/about.vue

@ -1,15 +1,96 @@
<template>
<u-navbar title="关于我们" bgColor='#D3832A' leftIconColor='#ffffff' titleStyle='color:#ffffff' placeholder
:autoBack="true" leftIconSize='35'></u-navbar>
<view>
<view class="h100">
<view style="line-height: 40px;display: flex;justify-content: space-between;">
<view @click="toAssign">滚动到Item999</view>
<view @click="toAssign1">滚动到Item100</view>
<view @click="toAssign2">滚动到Item0</view>
</view>
<jp-virtual-list code="id" class="h100" :refresher="true" isBackTop @scrolltoupper="scrolltoupper"
@refresher="refresher" :data="listx" ref="search">
<template v-slot="{ list }">
<view v-for="item in list" :key="item.id" :id="item.id" :ref="item.id">
<view class="list_item" :style="'height:' + item.height +'rpx'">
{{item.id}}随机高度{{item.height}}
</view>
</view>
</template>
</jp-virtual-list>
</view>
</template>
<script lang="ts" setup>
<script>
export default {
data() {
return {
listx: [],
key: ''
}
},
mounted() {
const data = []
for (let i = 0; i < 10000; i++) {
data.push({
name: `Item ${i}`,
index: i,
id: `Item${i}`,
height: (Math.floor(Math.random() * 100) + 100)
})
}
this.listx = data
},
methods: {
toAssign() {
this.$refs.search.toAssign('Item999', this)
},
toAssign1() {
this.$refs.search.toAssign('Item100', this)
},
toAssign2() {
this.$refs.search.toAssign('Item0', this)
},
scrolltoupper() {
const data = []
for (let i = 0; i < 30; i++) {
data.push({
name: `Itemc ${i}`,
index: i,
id: `Itemc${i}${(Math.floor(Math.random() * 100)+100)}`,
height: (Math.floor(Math.random() * 100) + 100)
})
}
setTimeout(() => {
//
this.$refs.search.addPage(data)
}, 1000)
},
refresher() {
const data = []
for (let i = 0; i < 10000; i++) {
data.push({
name: `Item ${i}`,
index: i,
id: `Item${i}`,
height: (Math.floor(Math.random() * 100) + 100)
})
}
setTimeout(() => {
this.listx = data
//
this.$refs.search.refreshers()
}, 2000)
},
}
}
</script>
<style lang="scss">
.h100 {
height: calc(100vh - 80px);
}
.list_item {
display: flex;
justify-content: center;
align-items: center;
border: 1px solid #f5f5f5;
}
</style>

4
unpackage/dist/dev/app-plus/app-config-service.js vendored

File diff suppressed because one or more lines are too long

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

File diff suppressed because it is too large Load Diff

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

@ -907,8 +907,8 @@ body {
}
.inputNum[data-v-92b65ffd] {
border: 0.03125rem solid #000;
padding-left: 0.3125rem;
border: 0.03125rem solid #999;
padding: 0.15625rem 0.625rem;
border-radius: 0.15625rem;
}
@ -1184,13 +1184,13 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
.container .buttonContainer > uni-view[data-v-385736e8] {
padding: 0.46875rem 1.5625rem;
border-radius: 0.3125rem;
background: #D3832A;
background: var(--subjectColor);
color: #fff;
}
.container .buttonContainer .closeButton[data-v-385736e8] {
color: #D3832A;
color: var(--subjectColor);
background: #fff;
border: 0.03125rem solid #D3832A;
border: 0.03125rem solid var(--subjectColor);
}
/**
* 这里是uni-app内置的常用样式变量
@ -1285,3 +1285,50 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
width: 1rem;
height: 1rem;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.PullDownBox[data-v-0b4fec55] {
background: #fff;
margin-bottom: 0.3125rem;
padding: 0.3125rem;
}
.Pulldown-title-container[data-v-0b4fec55] {
display: flex;
}
.Pulldown-title[data-v-0b4fec55] {
flex: 1;
}
.icon[data-v-0b4fec55] {
padding: 0 0.3125rem;
flex: none;
transition: all 0.2s;
}
.normal[data-v-0b4fec55] {
transform: rotate(0deg);
}
.active[data-v-0b4fec55] {
transform: rotate(180deg);
}

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

@ -220,12 +220,6 @@
"selectedIconPath": "/static/TabberIcon/icon2check.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",

38
unpackage/dist/dev/mp-weixin/api/user.js vendored

@ -1002,23 +1002,23 @@ function postFindCarsLoadingDetail(data) {
data
});
}
function postFindLoadScanWaybillDetailList(data) {
function postFindCarsLoadingOrderDetail(data) {
return utils_request.service({
url: `logpm-trunkline/api/carsLoad/findLoadScanWaybillDetailList`,
url: `logpm-trunkline/api/carsLoad/findCarsLoadingOrderDetail`,
method: "post",
data
});
}
function postFindCarsLoadingOrderDetail(data) {
function postLoadingScan(data) {
return utils_request.service({
url: `logpm-trunkline/api/carsLoad/findCarsLoadingOrderDetail`,
url: `logpm-trunkline/api/carsLoad/loadingScan`,
method: "post",
data
});
}
function postLoadingScan(data) {
function postLoadingTrayInfo(data) {
return utils_request.service({
url: `logpm-trunkline/api/carsLoad/loadingScan`,
url: `logpm-trunkline/api/carsLoad/loadingTrayInfo`,
method: "post",
data
});
@ -1037,6 +1037,27 @@ function postLoadingZero(data) {
data
});
}
function postLoadingTray(data) {
return utils_request.service({
url: `logpm-trunkline/api/carsLoad/loadingTray`,
method: "post",
data
});
}
function postArriveUnloadPageList(data) {
return utils_request.service({
url: `logpm-trunkline/api/carsLoad/arriveUnloadPageList`,
method: "post",
data
});
}
function postArriveUnloadCarsDetail(data) {
return utils_request.service({
url: `logpm-trunkline/api/carsLoad/unloadCarsDetail`,
method: "post",
data
});
}
exports.$_initRetentionList = $_initRetentionList;
exports.$_retentionScan = $_retentionScan;
exports.$_retentionTrayScan = $_retentionTrayScan;
@ -1103,11 +1124,14 @@ exports.pcontractQuestDetailList = pcontractQuestDetailList;
exports.pgetContractList = pgetContractList;
exports.pgetgetMaterialName = pgetgetMaterialName;
exports.postAbnormalTruckLoading = postAbnormalTruckLoading;
exports.postArriveUnloadCarsDetail = postArriveUnloadCarsDetail;
exports.postArriveUnloadPageList = postArriveUnloadPageList;
exports.postCarsLoadPageList = postCarsLoadPageList;
exports.postFindCarsLoadingDetail = postFindCarsLoadingDetail;
exports.postFindCarsLoadingOrderDetail = postFindCarsLoadingOrderDetail;
exports.postFindLoadScanWaybillDetailList = postFindLoadScanWaybillDetailList;
exports.postLoadingScan = postLoadingScan;
exports.postLoadingTray = postLoadingTray;
exports.postLoadingTrayInfo = postLoadingTrayInfo;
exports.postLoadingZero = postLoadingZero;
exports.postRemoveCarsLoadScan = postRemoveCarsLoadScan;
exports.postWarehouseTaskAddDataInfo = postWarehouseTaskAddDataInfo;

5
unpackage/dist/dev/mp-weixin/app.js vendored

@ -21,6 +21,7 @@ if (!Math) {
"./pagesHome/pages/RelayScanList/RelayScanList.js";
"./pagesHome/pages/codePlateBracket/codePlateBracket.js";
"./pagesHome/pages/ArrivalList/ArrivalList.js";
"./pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.js";
"./pagesHome/pages/SelfPickupScan/SelfPickupScan.js";
"./pagesHome/pages/LoadingScan/LoadingScan.js";
"./pagesHome/pages/loadingRetention/loadingRetention.js";
@ -102,6 +103,8 @@ const InputNum = () => "./compoment/InputNum/InputNum.js";
const BasicContainer = () => "./compoment/BasicContainer/BasicContainer.js";
const PopUp = () => "./compoment/PopUp/PopUp.js";
const BluetoothList = () => "./compoment/BluetoothList/BluetoothList.js";
const ScrollList = () => "./compoment/ScrollList/ScrollList.js";
const PullDownBox = () => "./compoment/PullDownBox/PullDownBox.js";
const saomiao1 = () => "./compoment/saomiao1.js";
const saomiao2 = () => "./compoment/saomiao2.js";
const saomiao3 = () => "./compoment/saomiao3.js";
@ -115,7 +118,7 @@ function createApp() {
app.use(store_index.store);
app.use(common_vendor.createPinia());
app.use(uni_modules_fantMiniPlus_index.fantMini);
app.component("saomiao", saomiao).component("tips", tips).component("tiplist", tiplist).component("saomiao1", saomiao1).component("saomiao2", saomiao2).component("saomiao3", saomiao3).component("saomiao4", saomiao4).component("InputNum", InputNum).component("BasicContainer", BasicContainer).component("PopUp", PopUp).component("BluetoothList", BluetoothList);
app.component("saomiao", saomiao).component("tips", tips).component("tiplist", tiplist).component("saomiao1", saomiao1).component("saomiao2", saomiao2).component("saomiao3", saomiao3).component("saomiao4", saomiao4).component("InputNum", InputNum).component("BasicContainer", BasicContainer).component("PopUp", PopUp).component("BluetoothList", BluetoothList).component("ScrollList", ScrollList).component("PullDownBox", PullDownBox);
common_vendor.index.$u.config.unit = "rpx";
return {
app,

9
unpackage/dist/dev/mp-weixin/app.json vendored

@ -17,6 +17,7 @@
"pages/RelayScanList/RelayScanList",
"pages/codePlateBracket/codePlateBracket",
"pages/ArrivalList/ArrivalList",
"pages/VehicleArrivalDetails/VehicleArrivalDetails",
"pages/SelfPickupScan/SelfPickupScan",
"pages/LoadingScan/LoadingScan",
"pages/loadingRetention/loadingRetention",
@ -114,6 +115,12 @@
"selectedIconPath": "/static/TabberIcon/icon2check.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",
@ -141,6 +148,8 @@
"basic-container": "/compoment/BasicContainer/BasicContainer",
"pop-up": "/compoment/PopUp/PopUp",
"bluetooth-list": "/compoment/BluetoothList/BluetoothList",
"scroll-list": "/compoment/ScrollList/ScrollList",
"pull-down-box": "/compoment/PullDownBox/PullDownBox",
"saomiao1": "/compoment/saomiao1",
"saomiao2": "/compoment/saomiao2",
"saomiao3": "/compoment/saomiao3",

14
unpackage/dist/dev/mp-weixin/common/assets.js vendored

@ -1,11 +1,13 @@
"use strict";
const _imports_0$2 = "/static/ck.png";
const _imports_0$3 = "/static/ck.png";
const _imports_1$1 = "/static/nock.png";
const _imports_1 = "/static/check.png";
const _imports_0$1 = "/static/nocheck.png";
const _imports_0 = "/assets/cha.b7e7843e.png";
exports._imports_0 = _imports_0;
exports._imports_0$1 = _imports_0$1;
exports._imports_0$2 = _imports_0$2;
const _imports_0$2 = "/static/nocheck.png";
const _imports_0$1 = "/assets/cha.b7e7843e.png";
const _imports_0 = "/assets/top.8e031a5d.png";
exports._imports_0 = _imports_0$1;
exports._imports_0$1 = _imports_0$2;
exports._imports_0$2 = _imports_0$3;
exports._imports_0$3 = _imports_0;
exports._imports_1 = _imports_1;
exports._imports_1$1 = _imports_1$1;

108
unpackage/dist/dev/mp-weixin/common/vendor.js vendored

@ -2492,8 +2492,8 @@ function triggerRefValue(ref2, newVal) {
}
}
}
function isRef(r) {
return !!(r && r.__v_isRef === true);
function isRef(r2) {
return !!(r2 && r2.__v_isRef === true);
}
function ref(value) {
return createRef(value, false);
@ -4160,7 +4160,7 @@ function createWatcher(raw, ctx, publicThis, key) {
watch(getter, raw.bind(publicThis));
} else if (isObject$2(raw)) {
if (isArray$1(raw)) {
raw.forEach((r) => createWatcher(r, ctx, publicThis, key));
raw.forEach((r2) => createWatcher(r2, ctx, publicThis, key));
} else {
const handler = isFunction(raw.handler) ? raw.handler.bind(publicThis) : ctx[raw.handler];
if (isFunction(handler)) {
@ -5431,21 +5431,21 @@ function findComponentPublicInstance(mpComponents, id) {
}
return null;
}
function setTemplateRef({ r, f: f2 }, refValue, setupState) {
if (isFunction(r)) {
r(refValue, {});
function setTemplateRef({ r: r2, f: f2 }, refValue, setupState) {
if (isFunction(r2)) {
r2(refValue, {});
} else {
const _isString = isString(r);
const _isRef = isRef(r);
const _isString = isString(r2);
const _isRef = isRef(r2);
if (_isString || _isRef) {
if (f2) {
if (!_isRef) {
return;
}
if (!isArray$1(r.value)) {
r.value = [];
if (!isArray$1(r2.value)) {
r2.value = [];
}
const existing = r.value;
const existing = r2.value;
if (existing.indexOf(refValue) === -1) {
existing.push(refValue);
if (!refValue) {
@ -5454,16 +5454,16 @@ function setTemplateRef({ r, f: f2 }, refValue, setupState) {
onBeforeUnmount(() => remove(existing, refValue), refValue.$);
}
} else if (_isString) {
if (hasOwn(setupState, r)) {
setupState[r] = refValue;
if (hasOwn(setupState, r2)) {
setupState[r2] = refValue;
}
} else if (isRef(r)) {
r.value = refValue;
} else if (isRef(r2)) {
r2.value = refValue;
} else {
warnRef(r);
warnRef(r2);
}
} else {
warnRef(r);
warnRef(r2);
}
}
}
@ -6044,6 +6044,70 @@ function vFor(source, renderItem) {
}
return ret;
}
function renderSlot(name, props2 = {}, key) {
const instance = getCurrentInstance();
const { parent, isMounted, ctx: { $scope } } = instance;
const vueIds = ($scope.properties || $scope.props).uI;
if (!vueIds) {
return;
}
if (!parent && !isMounted) {
onMounted(() => {
renderSlot(name, props2, key);
}, instance);
return;
}
const invoker = findScopedSlotInvoker(vueIds, instance);
if (invoker) {
invoker(name, props2, key);
}
}
function findScopedSlotInvoker(vueId, instance) {
let parent = instance.parent;
while (parent) {
const invokers = parent.$ssi;
if (invokers && invokers[vueId]) {
return invokers[vueId];
}
parent = parent.parent;
}
}
function withScopedSlot(fn, { name, path, vueId }) {
const instance = getCurrentInstance();
fn.path = path;
const scopedSlots = instance.$ssi || (instance.$ssi = {});
const invoker = scopedSlots[vueId] || (scopedSlots[vueId] = createScopedSlotInvoker(instance));
if (!invoker.slots[name]) {
invoker.slots[name] = {
fn
};
} else {
invoker.slots[name].fn = fn;
}
return getValueByDataPath(instance.ctx.$scope.data, path);
}
function createScopedSlotInvoker(instance) {
const invoker = (slotName, args, index2) => {
const slot = invoker.slots[slotName];
if (!slot) {
return;
}
const hasIndex = typeof index2 !== "undefined";
index2 = index2 || 0;
const prevInstance = setCurrentRenderingInstance(instance);
const data = slot.fn(args, slotName + (hasIndex ? "-" + index2 : ""), index2);
const path = slot.fn.path;
setCurrentRenderingInstance(prevInstance);
(instance.$scopedSlotsData || (instance.$scopedSlotsData = [])).push({
path,
index: index2,
data
});
instance.$updateScopedSlots();
};
invoker.slots = {};
return invoker;
}
function stringifyStyle(value) {
if (isString(value)) {
return value;
@ -6066,6 +6130,8 @@ function setRef(ref2, id, opts = {}) {
}
const o = (value, key) => vOn(value, key);
const f = (source, renderItem) => vFor(source, renderItem);
const r = (name, props2, key) => renderSlot(name, props2, key);
const w = (fn, options) => withScopedSlot(fn, options);
const s = (value) => stringifyStyle(value);
const e = (target, ...sources) => extend(target, ...sources);
const n = (value) => normalizeClass(value);
@ -8139,13 +8205,13 @@ function guid(len = 32, firstU = true, radix = null) {
for (let i = 0; i < len; i++)
uuid[i] = chars[0 | Math.random() * radix];
} else {
let r;
let r2;
uuid[8] = uuid[13] = uuid[18] = uuid[23] = "-";
uuid[14] = "4";
for (let i = 0; i < 36; i++) {
if (!uuid[i]) {
r = 0 | Math.random() * 16;
uuid[i] = chars[i == 19 ? r & 3 | 8 : r];
r2 = 0 | Math.random() * 16;
uuid[i] = chars[i == 19 ? r2 & 3 | 8 : r2];
}
}
}
@ -11634,6 +11700,7 @@ exports.onReachBottom = onReachBottom;
exports.onShow = onShow;
exports.onUnload = onUnload;
exports.p = p;
exports.r = r;
exports.reactive = reactive;
exports.ref = ref;
exports.resolveComponent = resolveComponent;
@ -11645,5 +11712,6 @@ exports.t = t;
exports.toRefs = toRefs;
exports.unref = unref;
exports.uviewPlus = uviewPlus;
exports.w = w;
exports.watch = watch;
exports.watchEffect = watchEffect;

Loading…
Cancel
Save