Browse Source

新增功能新增配载计划

dev
qb 8 months ago
parent
commit
87f2660f76
  1. 72
      api/user.js
  2. 2
      compoment/BasicContainer/BasicContainer.vue
  3. 33
      compoment/CheckBox/CheckBox.vue
  4. 15
      compoment/InputNum/InputNum.vue
  5. 245
      compoment/MyDrawer/MyDrawer.vue
  6. 8
      compoment/MyInput/MyInput.vue
  7. 76
      compoment/RadioBox/RadioBox.vue
  8. 8
      config/host.js
  9. 6
      main.js
  10. 2
      manifest.json
  11. 18
      pages.json
  12. 454
      pages/index/index.vue
  13. 1003
      pagesHome/pages/AddStowage/AddStowage.vue
  14. 114
      pagesHome/pages/ArrivalList/ArrivalList.vue
  15. 8
      pagesHome/pages/RelayScanList/RelayScanList.vue
  16. 92
      pagesHome/pages/SetPrice/SetPrice.vue
  17. 2
      pagesHome/pages/StockUpListZero/StockUpListZero.vue
  18. 175
      pagesHome/pages/StowageList/StowageList.vue
  19. 9
      pagesHome/pages/StowageListDetails/StowageListDetails.vue
  20. 4
      pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue
  21. 37
      pagesHome/pages/VehicleArrivalDetailsByTray/VehicleArrivalDetailsByTray.vue
  22. 2
      pagesHome/pages/signOrderScan/signOrderScan.vue
  23. 4
      unpackage/dist/build/app-plus/__uniappview.html
  24. 2
      unpackage/dist/build/app-plus/pagesHome/pages/PickingScanList/PickingScanList.css
  25. 2
      unpackage/dist/build/app-plus/pagesHome/pages/setbarcode/setbarcode.css
  26. 2
      unpackage/dist/dev/app-plus/app-config-service.js
  27. 2243
      unpackage/dist/dev/app-plus/app-service.js
  28. 231
      unpackage/dist/dev/app-plus/app.css
  29. 23
      unpackage/dist/dev/app-plus/pagesHome/pages/SetPrice/SetPrice.css
  30. 5
      unpackage/dist/dev/mp-weixin/project.config.json

72
api/user.js

@ -3353,4 +3353,76 @@ export function postDownPackageCodes(data, loadingObj = {}, canCancel = false) {
loadingObj,
canCancel
);
}
/** 增值服务 -- 详情 */
export function postADdvalueAppList(data, loadingObj = {}, canCancel = false) {
return request({
url: `logpm-distribution/app/addvalue/appList`,
method: "get",
data
},
loadingObj,
canCancel
);
}
/** 查询车辆 */
export function postFindCarListByName(data, loadingObj = {}, canCancel = false) {
return request({
url: `logpm-trunkline/billlading/findCarListByName`,
method: "post",
data
},
loadingObj,
canCancel
);
}
/** 查询司机 */
export function postFindDriverListByName(data, loadingObj = {}, canCancel = false) {
return request({
url: `logpm-trunkline/billlading/findDriverListByName`,
method: "post",
data
},
loadingObj,
canCancel
);
}
/** 查询仓库 */
export function postFindWarehouseListByName(data, loadingObj = {}, canCancel = false) {
return request({
url: `logpm-trunkline/carsLoad/findWarehouseListByName`,
method: "post",
data
},
loadingObj,
canCancel
);
}
/** 查询仓库 */
export function postFindLoadInitData(data, loadingObj = {}, canCancel = false) {
return request({
url: `logpm-trunkline/carsLoad/findLoadInitData`,
method: "post",
data
},
loadingObj,
canCancel
);
}
/** 新增配载计划 */
export function postSaveNew(data, loadingObj = {}, canCancel = false) {
return request({
url: `logpm-trunkline/carsLoad/saveNew`,
method: "post",
data
},
loadingObj,
canCancel
);
}

2
compoment/BasicContainer/BasicContainer.vue

@ -82,6 +82,8 @@
let antiShake : any = null
//
onReachBottom(() => {
if (props.option.haveReachBottom === false) return
// ,
if (props.option.isEnd) {
return uni.showToast({

33
compoment/CheckBox/CheckBox.vue

@ -1,8 +1,12 @@
<template>
<view @click.stop="handleClick" :class="{'checkbox':true, 'active':props.modelValue}">
<view class="fwb" v-show="props.modelValue">
<!-- <view class="fwb" v-show="props.modelValue">
L
</view>
</view> -->
<!-- <view class="">
</view> -->
</view>
</template>
@ -46,19 +50,34 @@
width: 40upx;
height: 40upx;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
color: #8d97a3;
border-radius: 5upx;
position: relative;
transition: all 0.3s;
>view {
transform: rotateY(180deg) rotate(-45deg);
&::after {
opacity: 0;
content: '';
border-bottom: 2px solid;
border-left: 2px solid;
position: absolute;
width: 0;
height: 0;
left: 50%;
transform: translateX(-50%) rotateY(180deg) rotate(-45deg);
width: 30%;
height: 70%;
transition: all 0.3s;
}
}
.active {
border-color: var(--subjectColor);
color: var(--subjectColor);
&::after {
opacity: 1;
border-color: var(--subjectColor);
}
}
</style>

15
compoment/InputNum/InputNum.vue

@ -1,5 +1,6 @@
<template>
<input class="inputNum" type="number" @blur="blurInput" v-model="number" />
<input :class="{inputNum: true, disabled: props.disabled}" type="number" :disabled="props.disabled" @blur="blurInput"
v-model="number" />
</template>
<script setup lang="ts">
@ -22,6 +23,10 @@
type: Number,
default: 0
},
disabled: {
type: Boolean,
default: false
}
})
@ -64,10 +69,14 @@
}
</script>
<style>
<style scoped lang="scss">
.inputNum {
border: 2upx solid #999;
padding: 5upx 20upx;
border-radius: 5upx;
border-radius: 10upx;
&.disabled {
background-color: #e8e8e8;
}
}
</style>

245
compoment/MyDrawer/MyDrawer.vue

@ -0,0 +1,245 @@
<template>
<!-- 弹窗组件 -->
<view :class="{'popUpMask':true, 'show' : details.showPopUp === true, 'done' : details.showPopUp === false}"
@touchmove.stop.prevent @click="()=> {
if (details.cancel) return details.cancel()
details.close()
} ">
<view :class="{'container':true, 'show' : details.showPopUp === true, 'done' : details.showPopUp === false}"
@click.stop>
<view class="buttonContainer" v-if="details.isShowButton !== false && details.location === 'top'">
<view class="closeButton" v-if="details.isShowClose !== false" @click="details.close">
取消
</view>
<view class="confirmButton" @click="details.success">
{{confirmText||'确认'}}
</view>
</view>
<view class="title">
{{details.title}}
</view>
<!-- 插槽 -->
<slot name="head"></slot>
<scroll-view :style="{height:details.height}" class="scoolv" scroll-y="true">
<!-- 插槽 -->
<slot name="content"></slot>
</scroll-view>
<view class="buttonContainer" v-if="details.isShowButton !== false && details.location === 'bottom'">
<view class="closeButton" v-if="details.isShowClose !== false" @click="details.close">
{{ details.cancelText || '取消'}}
</view>
<view class="confirmButton" @click="details.success">
{{ details.confirmText||'确认'}}
</view>
</view>
</view>
</view>
</template>
<script setup>
import {
reactive,
toRefs,
defineExpose
} from 'vue';
import {
onShow,
} from '@dcloudio/uni-app'
const details = reactive({
/**
* 确认键内容
*/
confirmText: '',
/**
* 取消键内容
*/
cancelText: '',
/**
* 是否显示弹框
*/
showPopUp: undefined,
isShowClose: true,
isShowButton: true,
/**
* 内容高度
*/
height: 'auto',
/**
* 标题
*/
title: '',
/**
* 取消按钮事件
*/
close() {
details.showPopUp = false
},
/**
* 弹窗关闭事件
*/
cancel() {
details.showPopUp = false
},
/**
* 确认按钮事件
*/
success() {
details.showPopUp = false
},
/**
* 确认按钮显示位置
* top -- 顶部
* bottom -- 底部
*/
location: 'bottom'
})
const setDetails = (detail) => {
for (let key in detail) {
details[key] = detail[key]
}
}
onShow(() => {
if (!details.showPopUp) details.showPopUp = undefined
})
defineExpose({
setDetails,
details
})
const {
showPopUp
} = toRefs(details)
</script>
<style lang="scss" scoped>
//
@keyframes showMask {
0% {
left: -100%;
}
100% {
left: 0;
}
}
@keyframes showContent {
0% {
bottom: -100%;
}
// 50% {
// bottom: -100%;
// }
100% {
bottom: 0;
}
}
//
@keyframes doneMask {
0% {
left: 0;
}
// 50% {
// left: -50%;
// }
100% {
left: -100%;
}
}
@keyframes doneContent {
0% {
bottom: 0;
}
100% {
bottom: -100%;
}
}
//
$animationTime: 0.3s;
//
.popUpMask {
position: fixed;
top: 0;
left: -100%;
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.5);
z-index: 9999;
&.show {
animation: $animationTime forwards showMask;
}
&.done {
animation: calc($animationTime * 1.5) forwards doneMask;
}
}
.container {
width: 100%;
background: #fff;
position: absolute;
bottom: -100%;
left: 0;
&.show {
animation: calc($animationTime * 1.5) forwards showContent;
}
&.done {
animation: $animationTime forwards doneContent;
}
.title {
text-align: center;
margin: 20upx 0;
}
.scoolv {
max-height: 70vh;
padding: 20upx;
box-sizing: border-box;
}
.buttonContainer {
width: 100%;
padding: 20upx 0 60upx;
flex: 1;
display: flex;
justify-content: space-around;
align-items: center;
zoom: 0.9;
>view {
padding: 25upx 100upx;
border-radius: 10upx;
background: var(--subjectColor);
color: #fff;
}
.closeButton {
color: #000;
background: #F5F5F6;
}
}
}
</style>

8
compoment/MyInput/MyInput.vue

@ -1,5 +1,7 @@
<template>
<view :class="inputClassName" ref="inputRef">
<slot></slot>
<input class="input" v-model="inputValue" @blur="handleBlur" @input="handleInput" :placeholder="props.placeholder"
:type="inputType" @confirm="handleConfirm" />
@ -28,7 +30,7 @@
<view @click="()=>{
inputValue = '';
}" :class="`removeIcon ${!!props.modelValue || props.modelValue === 0 ? 'showClearable' : 'removeClearable'}`">
<u-icon name="close-circle-fill" color="#8f8f8f" size="40"></u-icon>
<u-icon name="close-circle" color="#8f8f8f" size="40"></u-icon>
</view>
</view>
</view>
@ -174,8 +176,6 @@
if (props.rules.rulesFn) isSuccess = props.rules.rulesFn(inputValue.value)
else isSuccess = Boolean(inputValue.value || inputValue.value === 0)
console.log('isSuccess :>> ', isSuccess);
isSuccess ? inputClassName.value.success = true : inputClassName.value.error = true
if (isSuccess) {
inputClassName.value.success = true
@ -230,7 +230,6 @@
}
watch(() => props.modelValue, () => {
console.log('props.modelValue :>> ', props.modelValue);
handleChangeInputStatus()
})
</script>
@ -269,6 +268,7 @@
.input_container {
display: flex;
align-items: center;
position: relative;
// overflow: hidden;
height: 100%;

76
compoment/RadioBox/RadioBox.vue

@ -0,0 +1,76 @@
<template>
<view @click="handleClick" :class="{'checkbox':true, 'active':props.isCheck}">
</view>
</template>
<script lang="ts" setup>
import {
defineProps,
defineEmits,
} from 'vue';
// const props = defineProps(['modelValue', 'click'])
const props = defineProps({
//
modelValue: {
default: false,
},
//
click: {
type: Function,
default: null
},
isCheck: {
default: false,
}
})
const emit = defineEmits(['update:modelValue'])
const handleClick = () => {
const flag = props.isCheck
console.log('flag :>> ', flag);
props.click ? props.click() : emit('update:modelValue', !flag)
}
</script>
<style lang="scss" scoped>
.fwb {
font-weight: bold;
}
.checkbox {
border: 4upx solid #8d97a3;
width: 40upx;
height: 40upx;
box-sizing: border-box;
color: #8d97a3;
border-radius: 50%;
position: relative;
transition: all 0.3s;
&::after {
content: '';
left: 50%;
top: 50%;
background-color: #fff;
position: absolute;
transform: translate(-50%, -50%);
width: 50%;
height: 50%;
border-radius: 50%;
transition: all 0.3s;
}
&.active {
border-color: var(--subjectColor);
color: var(--subjectColor);
&::after {
// opacity: 1;
background-color: var(--subjectColor);
}
}
}
</style>

8
config/host.js

@ -4,11 +4,11 @@
* 测试域名
* */
//测试域名s
// const devhost = 'http://test.api.huo5you.com/'
const devhost = 'http://test.api.huo5you.com/'
// lmy
// const devhost = 'http://192.168.10.123:8889/'
// zhy
const devhost = 'http://192.168.3.12:13000/'
// const devhost = 'http://192.168.3.12:13000/'
// xiaohei
// const devhost = 'http://192.168.3.18:13000/'
// tjj
@ -27,9 +27,9 @@ const devhost = 'http://192.168.3.12:13000/'
/**
* 正式域名
* */
const prohost = 'http://h5uapi.huitongys.com/'
// const prohost = 'http://h5uapi.huitongys.com/'
// const prohost = 'https://h5uapi.huitongys.com/' // 小程序
// const prohost = 'http://test.api.huo5you.com/'
const prohost = 'http://test.api.huo5you.com/'
/**
* 图片域名
* */

6
main.js

@ -31,8 +31,12 @@ import PullDownBox from '@/compoment/PullDownBox/PullDownBox.vue';
import MyTree from '@/compoment/MyTree/MyTree.vue'
/** 复选框 */
import CheckBox from '@/compoment/CheckBox/CheckBox.vue'
/** 单选框 */
import RadioBox from '@/compoment/RadioBox/RadioBox.vue'
/** 输入框组件 */
import MyInput from '@/compoment/MyInput/MyInput';
/** 抽屉组件 */
import MyDrawer from '@/compoment/MyDrawer/MyDrawer';
import saomiao1 from '@/compoment/saomiao1.vue'
import saomiao2 from '@/compoment/saomiao2.vue'
import saomiao3 from '@/compoment/saomiao3.vue'
@ -65,7 +69,9 @@ export function createApp() {
.component('PullDownBox', PullDownBox)
.component('MyTree', MyTree)
.component('CheckBox', CheckBox)
.component('RadioBox', RadioBox)
.component('MyInput', MyInput)
.component('MyDrawer', MyDrawer)
uni.$u.config.unit = 'rpx'
return {

2
manifest.json

@ -1,5 +1,5 @@
{
"name" : "货无忧",
"name" : "货无忧测试版",
"appid" : "__UNI__EB22F37",
"description" : "",
"versionName" : "1.1.40",

18
pages.json

@ -1671,6 +1671,24 @@
}
}
},
{
"path": "pages/AddStowage/AddStowage",
"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/integral/integral",
"style": {

454
pages/index/index.vue

@ -40,233 +40,233 @@
const { storageArr } = storeToRefs(storageStore)
const tip = ref(null)
// let details = reactive<listtype>({ tablist: [] });
let details = reactive<listtype>({
tablist: [
{
type: 1,
name: '工作台',
minilist: [
{
icon: 'http://47.108.51.143:9000/basic/upload/20231016/440a01005f8333bcc76c1254a1d35570.png',
name: '订单查询',
router: '/pagesHome/pages/orderInquiry/orderInquiry',
},
{
icon: 'http://47.108.51.143:9000/basic/upload/20240103/81ac2b693232dd9968ec35c0fa3d21f2.png',
name: '运单查询',
router: '/pagesHome/pages/waybillInquiry/waybillInquiry',
},
{
icon: 'http://47.108.51.143:9000/basic/upload/20240103/81ac2b693232dd9968ec35c0fa3d21f2.png',
name: '库位查询',
router: '/pagesHome/pages/storageInquiry/storageInquiry',
},
{
icon: 'http://47.108.51.143:9000/basic/upload/20240103/81ac2b693232dd9968ec35c0fa3d21f2.png',
name: '托盘查询',
router: '/pagesHome/pages/trayInquiry/trayInquiry',
},
{
icon: 'http://47.108.51.143:9000/basic/upload/20240103/81ac2b693232dd9968ec35c0fa3d21f2.png',
name: '库存品查询',
router: '/pagesHome/pages/inventoryInquiry/inventoryInquiry',
},
{
icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
name: '物料维护',
router: '/pagesHome/pages/MaterialMaintenance/MaterialMaintenance',
},
{
icon: 'http://47.108.51.143:9000/basic/upload/20240320/d22bc792f9deff3f106aafc590ec14fb.png',
name: '库位列表',
router: '/pagesHome/pages/StorageLocationList/StorageLocationList',
},
{
icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
name: '发起工单',
router: '/pagesHome/pages/CreateAbnormalWorkOrder/CreateAbnormalWorkOrder',
},
]
},
{
type: 1,
name: '入库',
minilist: [
{
icon: 'http://47.108.51.143:9000/basic/upload/20240429/14451e54503266f168edf3651f2ab798.png',
name: '码板打托',
router: '/pagesHome/pages/codePlateBracket/codePlateBracket',
},
{
icon: 'http://47.108.51.143:9000/basic/upload/20240429/d4325e620aa324658da28d7cabc6f223.png',
name: '入库扫描',
router: '/pagesHome/pages/TranNumber/TranNumber',
},
{
icon: 'http://47.108.51.143:9000/basic/upload/20240429/49254333c9c5c7aed6e9c8aab89c5998.png',
name: '到车入库',
router: '/pagesHome/pages/ArrivalList/ArrivalList',
},
{
icon: 'http://47.108.51.143:9000/basic/upload/20240429/d4325e620aa324658da28d7cabc6f223.png',
name: '预入库车次',
router: '/pagesHome/pages/Preentrytrainnumber/Preentrytrainnumber',
},
]
},
{
type: 1,
name: '库内',
minilist: [
{
icon: 'http://47.108.51.143:9000/basic/upload/20231012/e2604b3c97ee6001f367df87e3d0fdd1.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://47.108.51.143:9000/basic/upload/20231012/03add918888d36ce0d566da120510840.png',
name: '扫码上架',
router: '/pagesHome/pages/ScanUpType/ScanUpType',
},
{
icon: 'http://47.108.51.143:9000/basic/upload/20231012/7b7ca70b84ebf6a2f72e74300725132c.png',
name: '手动上架',
router: '/pagesHome/pages/PeopleScanUpType/PeopleScanUpType',
},
{
icon: 'http://47.108.51.143:9000/basic/upload/20231012/7b7e477dd35483ca7628567c609657fc.png',
name: '移库',
router: '/pagesHome/pages/RelocationType/RelocationType',
},
{
icon: 'http://47.108.51.143:9000/basic/upload/20231012/b104c036fc6b6af5b635cc619731db6f.png',
name: '滞留',
router: '/pagesHome/pages/Retention/Retention',
},
{
icon: 'http://47.108.51.143:9000/basic/upload/20231012/ce45bb522069f1fd154ca964e66069c2.png',
name: '合托',
router: '/pagesHome/pages/MergeTray/MergeTray',
},
{
icon: 'http://47.108.51.143:9000/basic/upload/20231012/91403695005c2c65ea2c9d4ddadac9c3.png',
name: '下架',
router: '/pagesHome/pages/DownGoodsType/DownGoodsType',
},
{
icon: 'http://47.108.51.143:9000/basic/upload/20231017/4ae045f95dcd923e8e8a553ccb374471.png',
name: '空置托盘',
router: '/pagesHome/pages/RemoveTray/RemoveTray',
},
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '',
// router: '/pagesHome/pages/Check/Check',
// },
{
icon: 'http://47.108.51.143:9000/basic/upload/20231217/5d3a466a54b62a60cfb9dc53b0f6ded1.png',
name: '托盘数据同步',
router: '/pagesHome/pages/SearchTray/SearchTray',
},
{
icon: 'http://47.108.51.143:9000/basic/upload/20231017/4ae045f95dcd923e8e8a553ccb374471.png',
name: '包件解托',
router: '/pagesHome/pages/PackageRelieveTray/PackageRelieveTray',
},
{
icon: 'http://47.108.51.143:9000/basic/upload/20231012/b104c036fc6b6af5b635cc619731db6f.png',
name: '配送包件回库',
router: '/pagesHome/pages/PackageBackWarehouse/PackageBackWarehouse',
},
]
},
{
type: 1,
name: '出库',
minilist: [
{
icon: 'http://47.108.51.143:9000/basic/upload/20231012/b58252914de56c0e3da1bdc75ac51c07.png',
name: '拣货扫描',
router: '/pagesHome/pages/pickingScan/pickingScan',
},
{
icon: 'http://47.108.51.143:9000/basic/upload/20231012/7a9648ffdefd77f7ab8bb7861a2473e7.png',
name: '自提扫描',
router: '/pagesHome/pages/SelfPickupScan/SelfPickupScan',
},
{
icon: 'http://47.108.51.143:9000/basic/upload/20240429/e5562240ca21316b21306d17f9394abc.png',
name: '配载装车',
router: '/pagesHome/pages/StowageList/StowageList',
},
{
icon: 'http://47.108.51.143:9000/basic/upload/20240429/d58281e6ba1845f313d85a119107e260.png',
name: '中转装车',
router: '/pagesHome/pages/RelayScanList/RelayScanList',
},
]
},
{
type: 1,
name: '配送',
minilist: [
{
icon: 'http://47.108.51.143:9000/basic/upload/20231012/1a9bbc8c842b8b7ef555d6cd79d421be.png',
name: '装车扫描',
router: '/pagesHome/pages/LoadingScan/LoadingScan',
},
{
icon: 'http://47.108.51.143:9000/basic/upload/20231012/6956f6950cfc291e01c038ea5e13f984.png',
name: '签收扫描',
router: '/pagesHome/pages/signinScan/signinScan',
},
{
icon: 'http://47.108.51.143:9000/basic/upload/20240429/16a9b462df1546f2fa6159df00ade62e.png',
name: '直发商家签收',
router: '/pagesHome/pages/directGoMarket/directGoMarket',
},
]
},
{
type: 1,
name: '离线上传',
minilist: [
{
icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
name: '离线上传',
router: '/pagesHome/pages/OfflineUpload/OfflineUpload',
},
]
},
{
type: 1,
name: '考核',
minilist: [
{
icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
name: '考核指标',
router: '/pagesHome/pages/integral/integral',
},
{
icon: 'http://8.137.14.82:9000/bladex/upload/20240117/fac9c4fd6c4f0bee599417fc8fbbee62.png',
name: '我的考核',
router: '/pagesHome/pages/integralMy/integralMy',
},
]
},
]
})
let details = reactive<listtype>({ tablist: [] });
// let details = reactive<listtype>({
// tablist: [
// {
// type: 1,
// name: '',
// minilist: [
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20231016/440a01005f8333bcc76c1254a1d35570.png',
// name: '',
// router: '/pagesHome/pages/orderInquiry/orderInquiry',
// },
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20240103/81ac2b693232dd9968ec35c0fa3d21f2.png',
// name: '',
// router: '/pagesHome/pages/waybillInquiry/waybillInquiry',
// },
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20240103/81ac2b693232dd9968ec35c0fa3d21f2.png',
// name: '',
// router: '/pagesHome/pages/storageInquiry/storageInquiry',
// },
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20240103/81ac2b693232dd9968ec35c0fa3d21f2.png',
// name: '',
// router: '/pagesHome/pages/trayInquiry/trayInquiry',
// },
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20240103/81ac2b693232dd9968ec35c0fa3d21f2.png',
// name: '',
// router: '/pagesHome/pages/inventoryInquiry/inventoryInquiry',
// },
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '',
// router: '/pagesHome/pages/MaterialMaintenance/MaterialMaintenance',
// },
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20240320/d22bc792f9deff3f106aafc590ec14fb.png',
// name: '',
// router: '/pagesHome/pages/StorageLocationList/StorageLocationList',
// },
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '',
// router: '/pagesHome/pages/CreateAbnormalWorkOrder/CreateAbnormalWorkOrder',
// },
// ]
// },
// {
// type: 1,
// name: '',
// minilist: [
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20240429/14451e54503266f168edf3651f2ab798.png',
// name: '',
// router: '/pagesHome/pages/codePlateBracket/codePlateBracket',
// },
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20240429/d4325e620aa324658da28d7cabc6f223.png',
// name: '',
// router: '/pagesHome/pages/TranNumber/TranNumber',
// },
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20240429/49254333c9c5c7aed6e9c8aab89c5998.png',
// name: '',
// router: '/pagesHome/pages/ArrivalList/ArrivalList',
// },
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20240429/d4325e620aa324658da28d7cabc6f223.png',
// name: '',
// router: '/pagesHome/pages/Preentrytrainnumber/Preentrytrainnumber',
// },
// ]
// },
// {
// type: 1,
// name: '',
// minilist: [
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20231012/e2604b3c97ee6001f367df87e3d0fdd1.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://47.108.51.143:9000/basic/upload/20231012/03add918888d36ce0d566da120510840.png',
// name: '',
// router: '/pagesHome/pages/ScanUpType/ScanUpType',
// },
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20231012/7b7ca70b84ebf6a2f72e74300725132c.png',
// name: '',
// router: '/pagesHome/pages/PeopleScanUpType/PeopleScanUpType',
// },
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20231012/7b7e477dd35483ca7628567c609657fc.png',
// name: '',
// router: '/pagesHome/pages/RelocationType/RelocationType',
// },
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20231012/b104c036fc6b6af5b635cc619731db6f.png',
// name: '',
// router: '/pagesHome/pages/Retention/Retention',
// },
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20231012/ce45bb522069f1fd154ca964e66069c2.png',
// name: '',
// router: '/pagesHome/pages/MergeTray/MergeTray',
// },
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20231012/91403695005c2c65ea2c9d4ddadac9c3.png',
// name: '',
// router: '/pagesHome/pages/DownGoodsType/DownGoodsType',
// },
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20231017/4ae045f95dcd923e8e8a553ccb374471.png',
// name: '',
// router: '/pagesHome/pages/RemoveTray/RemoveTray',
// },
// // {
// // icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// // name: '',
// // router: '/pagesHome/pages/Check/Check',
// // },
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20231217/5d3a466a54b62a60cfb9dc53b0f6ded1.png',
// name: '',
// router: '/pagesHome/pages/SearchTray/SearchTray',
// },
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20231017/4ae045f95dcd923e8e8a553ccb374471.png',
// name: '',
// router: '/pagesHome/pages/PackageRelieveTray/PackageRelieveTray',
// },
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20231012/b104c036fc6b6af5b635cc619731db6f.png',
// name: '',
// router: '/pagesHome/pages/PackageBackWarehouse/PackageBackWarehouse',
// },
// ]
// },
// {
// type: 1,
// name: '',
// minilist: [
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20231012/b58252914de56c0e3da1bdc75ac51c07.png',
// name: '',
// router: '/pagesHome/pages/pickingScan/pickingScan',
// },
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20231012/7a9648ffdefd77f7ab8bb7861a2473e7.png',
// name: '',
// router: '/pagesHome/pages/SelfPickupScan/SelfPickupScan',
// },
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20240429/e5562240ca21316b21306d17f9394abc.png',
// name: '',
// router: '/pagesHome/pages/StowageList/StowageList',
// },
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20240429/d58281e6ba1845f313d85a119107e260.png',
// name: '',
// router: '/pagesHome/pages/RelayScanList/RelayScanList',
// },
// ]
// },
// {
// type: 1,
// name: '',
// minilist: [
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20231012/1a9bbc8c842b8b7ef555d6cd79d421be.png',
// name: '',
// router: '/pagesHome/pages/LoadingScan/LoadingScan',
// },
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20231012/6956f6950cfc291e01c038ea5e13f984.png',
// name: '',
// router: '/pagesHome/pages/signinScan/signinScan',
// },
// {
// icon: 'http://47.108.51.143:9000/basic/upload/20240429/16a9b462df1546f2fa6159df00ade62e.png',
// name: '',
// router: '/pagesHome/pages/directGoMarket/directGoMarket',
// },
// ]
// },
// {
// type: 1,
// name: '线',
// minilist: [
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '线',
// router: '/pagesHome/pages/OfflineUpload/OfflineUpload',
// },
// ]
// },
// {
// type: 1,
// name: '',
// minilist: [
// {
// icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
// name: '',
// router: '/pagesHome/pages/integral/integral',
// },
// {
// icon: 'http://8.137.14.82:9000/bladex/upload/20240117/fac9c4fd6c4f0bee599417fc8fbbee62.png',
// name: '',
// router: '/pagesHome/pages/integralMy/integralMy',
// },
// ]
// },
// ]
// })
function gopathpage(path : string) {
uni.navigateTo({

1003
pagesHome/pages/AddStowage/AddStowage.vue

File diff suppressed because it is too large Load Diff

114
pagesHome/pages/ArrivalList/ArrivalList.vue

@ -2,19 +2,31 @@
<BasicContainer ref='basicContainer' :option="option" :leftClick="option.leftClick">
<!-- 头部 -->
<template #head>
<view class="headtop">
<view @click='showCalendar' class="inputsr">
<view class="timeInput">
{{datatime|| '请选择时间'}}
</view>
<view @click.stop.prevent>
<u-icon @click='showCalendar' style="margin-right: 10upx;" v-if="!datatime" name="calendar"
color="#999999" size="50"></u-icon>
<u-icon @click="cleartime" style="margin-right: 10upx;" v-else name="close-circle" color="#999999"
size="40"></u-icon>
<view class="header">
<view class="headtop">
<view @click='showCalendar' class="inputsr">
<view class="timeInput">
{{datatime|| '请选择时间'}}
</view>
<view @click.stop.prevent>
<u-icon @click='showCalendar' style="margin-right: 10upx;" v-if="!datatime" name="calendar"
color="#999999" size="50"></u-icon>
<u-icon @click="cleartime" style="margin-right: 10upx;" v-else name="close-circle" color="#999999"
size="40"></u-icon>
</view>
</view>
<view @click="handleSearch">查询</view>
</view>
<view class="input mt20">
<MyInput clearable v-model="details.scancode" placeholder="请扫描或输入车次号">
<view class="pl10" @click="handleScan">
<u-icon style="margin-right: 10upx;" name="scan" color="#999999" size="50"></u-icon>
</view>
</MyInput>
</view>
<view @click="handleSearch">查询</view>
</view>
</template>
@ -78,16 +90,15 @@
线路{{item.carsLineName}}
</view>
<template v-if="item.showControl && Number(item.unloadStatus) === 0">
<view class="button-container"
v-if=" (Number(item.loadStatus) === 10 || Number(item.loadStatus) === 30)">
<template v-if="Number(item.unloadStatus) === 0">
<view class="button-container" v-if=" item.showArrivalBtn">
<view class="button" style="background-color: #86cad0; width: 60%; margin: 0 auto;"
@click="handleArriveCarByLoadId(item)">
到车
</view>
</view>
<view class="button-container" v-else>
<view class="button-container" v-else-if="item.showControl">
<view class="">
<view class="button" @click="handleDetailsByOrder(item, 1)">
按件入库
@ -255,7 +266,8 @@
datalist: [],
/** 扫描的码值 */
scancode: '',
scrollheight: '80vh'
scrollheight: '80vh',
notRefresh: false
})
const carStateDictionaries = reactive([
@ -295,7 +307,9 @@
// #endif
await nextTick()
basicContainer.value.startPullDownRefresh()
console.log('details.notRefresh :>> ', details.notRefresh);
if (!details.notRefresh) basicContainer.value.startPullDownRefresh()
details.notRefresh = false
details.scrollheight = await utils.getViewDistanceFormTop('.scvmabx')
})
// onHide(() => {
@ -305,8 +319,22 @@
const date = ref<(string | number)[]>([])
async function scandata() {
basicContainer.value.startPullDownRefresh()
}
const handleScan = () => {
details.notRefresh = true
console.log('details.notRefresh :>> ', details.notRefresh);
uni.scanCode({
success(res) {
console.log('res :>> ', res);
details.scancode = res.result
scandata()
}
})
}
async function initpage() {
try {
let submitData = {
@ -315,6 +343,7 @@
pageSize: details.pageSize,
startDate: date.value[0] || '',
endDate: date.value[1] || '',
carsNo: details.scancode
}
const res = await postArriveUnloadPageList(submitData)
if (res.code !== 200) return
@ -325,8 +354,10 @@
for (let iterator of data.records) {
const _endWarehouseIds = iterator.endWarehouseIds.split(',')
//
//
iterator.showControl = false
//
iterator.showArrivalBtn = false
//
iterator.showTruckLoading = false
@ -343,19 +374,28 @@
const value = _endWarehouseIds[i]
if (iterator.nowWarehouseId === value) _nowIndex = i
if (_wareHouseId !== value) continue
_index = i
break
if (_wareHouseId === value) _index = i
}
console.log('_nowIndex :>> ', _nowIndex);
console.log('_index :>> ', _index);
console.log('iterator :>> ', iterator);
// ,
if (_nowIndex === -1 || _nowIndex < _index || Number(iterator.loadStatus) === 100) continue
if (Number(iterator.loadStatus) === 100 || Number(iterator.loadStatus) === 0) continue
console.log('111 :>> ', 111);
//
if (_nowIndex < _index && (Number(iterator.loadStatus) === 10 || Number(iterator.loadStatus) === 30)) {
iterator.showArrivalBtn = true
continue
}
//
iterator.showControl = true
//
if (_index !== _endWarehouseIds.length - 1) iterator.showTruckLoading = true
if (_index !== _endWarehouseIds.length - 1 && _nowIndex === _index && Number(iterator.loadStatus) === 20) iterator.showTruckLoading = true
}
details.datalist = [...details.datalist, ...data.records]
}
@ -447,6 +487,8 @@
</script>
<style lang="scss" scoped>
@import url(@/utils/style/common.scss);
.inputsr {
width: 100%;
height: 64upx;
@ -508,13 +550,28 @@
}
}
.header {
background-color: #FFFFFF;
padding: 20upx 30upx;
.input {
height: 60upx;
background: #F5F5F6;
border-radius: 8upx;
opacity: 1;
border: 2upx solid #00000020;
padding: 4upx;
:deep(.input_container) {
border: none;
}
}
}
.headtop {
display: flex;
align-items: center;
justify-content: space-between;
// margin-top: 20upx;
background-color: #FFFFFF;
padding: 20upx 30upx;
box-sizing: border-box;
>view:nth-of-type(1) {
@ -523,9 +580,6 @@
padding: 10upx 20upx;
box-sizing: border-box;
// flex: 1;
// margin-right: 50upx;
// border-radius: 10upx;
>input {
flex: 1;
font-size: 28upx;

8
pagesHome/pages/RelayScanList/RelayScanList.vue

@ -2,7 +2,7 @@
<BasicContainer ref="basicContainer" :option="option" :leftClick="backPreviousPage">
<template #head>
<view class="schbox">
<view>拣货日期</view>
<view>中转日期</view>
<view @click='showCalendar' class="inputsr">
<view class="timeInput">
{{datatime|| '请选择时间'}}
@ -198,7 +198,7 @@
async function initpage() {
if (date.value.length === 0) {
return uni.showToast({
title: '请选择拣货日期',
title: '请选择中转日期',
icon: 'none'
})
}
@ -211,8 +211,8 @@
let data = {
pageNum: details.pageNum,
pageSize: details.size,
startDate: date.value[0],
endDate: date.value[1],
createTimeStartStr: date.value[0],
createTimeEndStr: date.value[1],
type: details.status,
}
let response = await getTripartiteTransfer(data)

92
pagesHome/pages/SetPrice/SetPrice.vue

@ -5,7 +5,6 @@
<view class="header_container_bg">
</view>
</template>
<template #body>
<view class="main_container">
<!-- 顶部 -->
@ -116,27 +115,27 @@
<scroll-view style="max-height: 201px;">
<view class="table" @touch.stop="()=> false">
<view class="table_row">
<view class="width1">
<view class="width1 title">
序号
</view>
<view class="">
<view class="title">
包条码
</view>
<view class="">
<view class="title">
订单号
</view>
<view class="">
<view class="title">
品类
</view>
<view class="">
<view class="title">
物料编码
</view>
<view class="width2">
<view class="width2 title">
操作
</view>
</view>
@ -354,6 +353,48 @@
</template>
</BasicContainer>
<!-- 弹窗 -- 设置超区 -->
<PopUp ref="handleSuperzone">
<view>
<!-- 是否超区 -->
<view class="align-center mb40">
<text>是否超区</text>
<view class="flex flex1">
<view class="flex flex1" @click="() => {
details.superzoneForm.isSuperzone = true
}">
<RadioBox :isCheck="details.superzoneForm.isSuperzone" :click="()=> true"></RadioBox>
<text class="ml20">
</text>
</view>
<view class="flex flex1" @click="()=>{
details.superzoneForm.isSuperzone = false
details.superzoneForm.num = 0
}">
<RadioBox :isCheck="details.superzoneForm.isSuperzone === false" :click="()=> false"></RadioBox>
<text class="ml20">
</text>
</view>
</view>
</view>
<!-- 上楼层数 -->
<view class="flex-c-sb">
<text>上楼层数</text>
<view class="flex1">
<InputNum :disabled="details.superzoneForm.isSuperzone === false" v-model="details.superzoneForm.num"
:min="0" />
</view>
</view>
</view>
</PopUp>
<!-- #ifdef APP -->
<saomiao2 :ishidestop="scanState !== 0"></saomiao2>
<!-- #endif -->
@ -361,8 +402,8 @@
<script lang="ts" setup>
import {
addvalueaddvalueInfo,
addvalueupdateAddvalueInfo
postADdvalueAppList
} from '@/api/user.js'
import {
onLoad,
@ -405,13 +446,22 @@
/** 预约id */
reservationId: '',
/** 页面传递的参数 */
items: {}
items: {},
/** 超区 */
superzoneForm: {
/** 是否超区 */
isSuperzone: false,
/** 上楼层数 */
num: 0
}
})
//
const basicContainer = ref(null)
const handleSuperzone = ref()
const isCheck = ref(false)
onLoad((op) => {
details.reservationId = op.reservationId
@ -433,6 +483,7 @@
await nextTick()
//
basicContainer.value.startPullDownRefresh()
handleSuperzone.value.details.showPopUp = true
})
onMounted(async () => {
@ -448,7 +499,7 @@
let data = {
reservationId: details.items.id
}
let res = await addvalueaddvalueInfo(data)
let res = await postADdvalueAppList(data)
if (res.code !== 200) return
// details.priceList = res.data
}
@ -587,7 +638,7 @@
border-bottom: 2upx solid #ccc;
}
$border: 2upx solid #ccc;
$border: 2upx solid #ddd;
// table
.table {
@ -602,10 +653,10 @@
&>view {
flex: none;
padding: 10upx;
padding: 5upx;
border-left: $border;
border-bottom: $border;
font-size: 0.9rem;
font-size: 0.7rem;
text-align: center;
display: flex;
justify-content: center;
@ -613,6 +664,13 @@
width: 300upx;
word-break: break-all;
&.title {
padding-top: 10upx;
padding-bottom: 10upx;
color: #000;
font-weight: bold;
}
//
&.width1 {
width: 80upx;
@ -623,7 +681,7 @@
//
&.width2 {
width: 160upx;
width: 140upx;
display: flex;
align-items: center;
justify-content: center;
@ -650,4 +708,8 @@
opacity: 0.8;
// padding: 25upx;
}
.mb40 {
margin-bottom: 40upx;
}
</style>

2
pagesHome/pages/StockUpListZero/StockUpListZero.vue

@ -87,7 +87,7 @@
import { storeToRefs } from 'pinia';
const { scanState } = storeToRefs(useSystemSettingsStore())
const util = (inject('utils') as any)
let details = reactive<detailType>({
let details = reactive({
dataList: [],
stockArticleId: '',
orderStatus: '',

175
pagesHome/pages/StowageList/StowageList.vue

@ -1,23 +1,33 @@
<template>
<BasicContainer ref="basicContainer" :option="option" :leftClick="backPreviousPage">
<template #head>
<view class="schbox">
<view>拣货日期</view>
<view @click='showCalendar' class="inputsr">
<view class="timeInput">
{{datatime|| '请选择时间'}}
</view>
<view @click.stop.prevent>
<u-icon @click='showCalendar' style="margin-right: 10rpx;" v-if="!datatime" name="calendar"
color="#999999" size="50"></u-icon>
<u-icon @click="cleartime" style="margin-right: 10rpx;" v-else name="close-circle" color="#999999"
size="40"></u-icon>
<view class="header">
<view class="headtop">
<view @click='showCalendar' class="inputsr flex1 mr20">
<view class="timeInput">
{{datatime|| '请选择时间'}}
</view>
<view @click.stop.prevent>
<u-icon @click='showCalendar' style="margin-right: 10upx;" v-if="!datatime" name="calendar"
color="#999999" size="50"></u-icon>
<u-icon @click="cleartime" style="margin-right: 10upx;" v-else name="close-circle" color="#999999"
size="40"></u-icon>
</view>
</view>
<view @click="init">查询</view>
</view>
<view @click="init">
查询
<view class="input mt20">
<MyInput clearable v-model="details.scancode" placeholder="请扫描或输入车次号">
<view class="pl10" @click="handleScan">
<u-icon style="margin-right: 10upx;" name="scan" color="#999999" size="50"></u-icon>
</view>
</MyInput>
</view>
</view>
<view class="tabtip">
<view @click="setstate(1)">
<view :class="status==1?'xz':''">未发车</view>
@ -29,7 +39,7 @@
</template>
<template #body>
<scroll-view class="sccv" scroll-y="true" @scrolltolower="jiazai">
<scroll-view class="sccv" scroll-y="true" @scrolltolower="jiazai" :style="{height: details.scrollHeight}">
<view class="mabx">
<view v-for="item in dataList" :key="item">
<view class="topbox font-color">
@ -88,7 +98,12 @@
</view>
</view>
</view>
<view class="footer_button">
<view class="button" hover-class="active" @click="handleAddStowage">新增配载</view>
</view>
</scroll-view>
</template>
</BasicContainer>
@ -112,14 +127,15 @@
import { postCarsLoadPageList, postFindFinanceList, postAddContractByLoadId } from '@/api/user.js'
import { timeType } from '@/interfaces/pagesHome/allType'
import functions from '@/utils/functions.js';
import { inject, reactive, ref, toRefs, watchEffect } from "vue";
import { inject, reactive, ref, toRefs, watchEffect, nextTick } from "vue";
import utils from '@/utils/utils';
const option = {
title: '配载装车',
haveData: true,
async pullDownRefreshInitPage() {
// details.dataList.splice(0)
return await init()
details.pageNum = 1
details.dataList.splice(0)
return await initpage()
}
}
let details = reactive({
@ -140,7 +156,10 @@
'2': '支线',
'3': '专车',
},
imgFileList: []
imgFileList: [],
scancode: '',
notRefresh: false,
scrollHeight: '60vh',
})
@ -165,32 +184,57 @@
basicContainer.value.startPullDownRefresh()
}
onShow(() => {
onShow(async () => {
// #ifdef APP
uni.$off('scancodedate')
// #endif
const timer = setTimeout(() => {
basicContainer.value.startPullDownRefresh()
clearTimeout(timer)
}, 200)
await nextTick()
if (!details.notRefresh) basicContainer.value.startPullDownRefresh()
})
onLoad(() => {
onLoad(async () => {
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')
details.datatime = date.value[0] + ' 至 ' + date.value[1]
// #ifdef APP
utils.ttsspke('请选择配载计划')
// #endif
await nextTick()
details.scrollHeight = await utils.getViewDistanceFormTop('.sccv')
})
async function init() {
details.pageNum = 1
details.dataList.splice(0)
return initpage()
}
const handleSearch = () => {
basicContainer.value.startPullDownRefresh()
}
function jiazai() {
details.pageNum++
initpage()
}
function scandata() {
basicContainer.value.startPullDownRefresh()
}
/** 扫描 */
const handleScan = () => {
details.notRefresh = true
console.log('details.notRefresh :>> ', details.notRefresh);
uni.scanCode({
success(res) {
console.log('res :>> ', res);
details.scancode = res.result
scandata()
}
})
}
async function initpage() {
if (date.value.length === 0) return utils.handleToast('请选择时间')
@ -205,6 +249,7 @@
startDate: date.value[0],
endDate: date.value[1],
type: details.status,
carsNo: details.scancode
}
let response = await postCarsLoadPageList(data)
if (response.code !== 200 || !response.data) return
@ -379,6 +424,13 @@
})
}
/** 新增配载 */
const handleAddStowage = () => {
uni.navigateTo({
url: '/pagesHome/pages/AddStowage/AddStowage'
})
}
const { datatime, dataList, show, status } = toRefs(details)
</script>
@ -411,6 +463,57 @@
}
}
.header {
background-color: #FFFFFF;
padding: 20upx 30upx;
.input {
height: 60upx;
background: #F5F5F6;
border-radius: 8upx;
opacity: 1;
border: 2upx solid #00000020;
padding: 4upx;
:deep(.input_container) {
border: none;
}
}
}
.headtop {
display: flex;
align-items: center;
justify-content: space-between;
box-sizing: border-box;
>view:nth-of-type(1) {
width: 540upx;
border: 2upx solid #00000020;
padding: 10upx 20upx;
box-sizing: border-box;
>input {
flex: 1;
font-size: 28upx;
}
}
>view:nth-of-type(2) {
width: 128upx;
height: 64upx;
background: var(--subjectColor);
border-radius: 8upx;
display: flex;
align-items: center;
justify-content: center;
font-size: 32upx;
font-weight: 400;
color: #FFFFFF;
}
}
.sccv {
width: 100%;
height: 74vh;
@ -553,6 +656,7 @@
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
>view {
width: 50%;
@ -650,4 +754,27 @@
:deep(.popUpMask) {
z-index: 99;
}
.footer_button {
height: 60px;
.button {
position: fixed;
height: 80upx;
line-height: 80upx;
padding: 0 60upx;
border-radius: 10upx;
color: #fff;
background: var(--subjectColor);
bottom: 20px;
left: 50%;
transform: translateX(-50%);
transition: all 0.3s;
zoom: 1;
&.active {
opacity: 0.7;
}
}
}
</style>

9
pagesHome/pages/StowageListDetails/StowageListDetails.vue

@ -26,10 +26,10 @@
</view> -->
</view>
<view class="hdtpnum">
<view>
<!-- <view>
<view>订单总数</view>
<view>{{details.pageInfo.orderNum || 0}}</view>
</view>
</view> -->
<view>
<view>计划件数</view>
<view>{{details.pageInfo.planLoadingNumber || 0}}</view>
@ -38,6 +38,11 @@
<view>装车件数</view>
<view>{{details.pageInfo.realLoadingNumber || 0}}</view>
</view>
<view>
<view>在车件数</view>
<view>{{details.pageInfo.stockCarsNum || 0}}</view>
</view>
<!-- stockCarsNum -->
</view>
<view class="tabtip">

4
pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue

@ -64,10 +64,6 @@
<text>
零担
</text>
<!-- <text>
({{ details.zeroNum }})
</text> -->
</view>
</view>
<view @click="setorderStatus(3)" :class="orderStatus==3?'active':''">

37
pagesHome/pages/VehicleArrivalDetailsByTray/VehicleArrivalDetailsByTray.vue

@ -43,12 +43,12 @@
</view>
<view class="tabtip">
<view @click="setorderStatus(1)" :class="orderStatus==1?'active':''">
<!-- <view @click="setorderStatus(1)" :class="orderStatus==1?'active':''">
<view>定制品</view>
</view>
<view @click="setorderStatus(2)" :class="orderStatus==2?'active':''">
<view>零担</view>
</view>
</view> -->
<!-- <view @click="setorderStatus(3)" :class="orderStatus==3?'active':''">
<view>库存品</view>
</view> -->
@ -56,6 +56,8 @@
</template>
<template #body>
<u-divider text="订 单 列 表" textPosition="left"></u-divider>
<scroll-view :scroll-y="true" class="jpScorllView" :style="{height: details.jpScorllViewHeight}" code="id">
<block v-for="(item, index) in datalist" :key="item.orderCode">
@ -804,31 +806,14 @@
</script>
<style lang="scss" scoped>
.xialaxz {
display: flex;
flex-direction: column;
.box {
display: flex;
align-items: flex-start;
justify-content: space-between;
border-top: 2upx 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;
// 线
:deep(.u-divider__text) {
font-size: 1rem !important;
color: var(--subjectColor) !important;
}
&:nth-last-child(1) {
margin-right: 0upx;
}
}
}
:deep(.u-line) {
border-color: var(--subjectColor) !important;
}
.butlur {

2
pagesHome/pages/signOrderScan/signOrderScan.vue

@ -126,7 +126,7 @@
<view class="contenbx1">
<view><text style="color: #90A0AF;">计划签收</text>{{item.reservationNum}}</view>
<view><text
style="color: #90A0AF;">实际签收</text>{{item.distributionParcelNumberVOS.reduce((cur, item)=>cur += item.signingNum || 0 ,0)}}
style="color: #90A0AF;">实际签收</text>{{(item.distributionParcelNumberVOS || []).reduce((cur, item)=>cur += item.signingNum || 0 ,0)}}
</view>
</view>

4
unpackage/dist/build/app-plus/__uniappview.html vendored

@ -16,8 +16,8 @@
<body>
<div id="app"></div>
<script src="uni-app-view.umd.js"></script>
<script src="app-wxs.js"></script>
<script src="app-renderjs.js"></script>
</body>
</html>

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

File diff suppressed because one or more lines are too long

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

@ -1 +1 @@
.scrollv{width:21.4375rem;height:60vh;background-color:#fff;margin:auto;margin-top:.625rem;padding:.625rem;box-sizing:border-box;border-radius:.3125rem}.scrollv .mabxs{display:flex;flex-direction:column;align-items:center;padding-top:.15625rem}.scrollv .mabxs .ite{width:96%;display:flex;flex-direction:column;align-items:center;padding:.625rem .46875rem .3125rem;box-sizing:border-box;border-radius:.25rem;box-shadow:0 .0625rem .3125rem #e2e2e3;margin-bottom:.625rem;font-size:.8125rem}.scrollv .mabxs .ite:nth-last-child(1){margin-bottom:.15625rem}.scrollv .mabxs .ite>uni-view{display:flex;align-items:center;justify-content:space-between;width:100%;margin-bottom:.625rem}.scrollv .mabxs .ite>uni-view:nth-last-child(1){margin-bottom:none!important}.scrollv .mabxs .ite>uni-view>uni-view{font-size:.8125rem;font-weight:400;color:#092c4d}.butsbx{display:flex;align-items:center;margin-top:.78125rem;padding:0 4%}.butsbx>uni-view{width:6.375rem;height:2rem;background:#FFFFFF;border-radius:.25rem;opacity:1;font-size:.875rem;display:flex;align-items:center;justify-content:center;border:.0625rem solid #D3832A;color:#d3832a;margin-left:.625rem}.head{display:flex;flex-direction:column;align-items:center;justify-content:space-around;padding:.625rem;box-sizing:border-box;background-color:#fff}.head>.type1{width:100%;display:flex;align-items:flex-start;justify-content:space-between;font-size:.875rem;font-weight:400;color:#90a0af;margin-bottom:.3125rem}.head>.type1>uni-view{flex:1;display:flex;align-items:flex-start}.head>.type1>uni-view>uni-view:nth-of-type(1){flex:1}.popUpInput{border:.09375rem solid #ccc;margin-top:.3125rem;border-radius:.15625rem;padding:.15625rem .3125rem}.popUp_Edit_text{font-size:.875rem;color:red}
.scrollv{width:21.4375rem;height:60vh;background-color:#fff;margin:auto;margin-top:.625rem;padding:.625rem;box-sizing:border-box;border-radius:.3125rem}.scrollv .mabxs{display:flex;flex-direction:column;align-items:center;padding-top:.15625rem}.scrollv .mabxs .ite{width:96%;display:flex;flex-direction:column;align-items:center;padding:.625rem .46875rem .3125rem;box-sizing:border-box;border-radius:.25rem;box-shadow:0 .0625rem .3125rem #e2e2e3;margin-bottom:.625rem;font-size:.8125rem}.scrollv .mabxs .ite:nth-last-child(1){margin-bottom:.15625rem}.scrollv .mabxs .ite>uni-view{display:flex;align-items:center;justify-content:space-between;width:100%;margin-bottom:.625rem}.scrollv .mabxs .ite>uni-view:nth-last-child(1){margin-bottom:none!important}.scrollv .mabxs .ite>uni-view>uni-view{font-size:.8125rem;font-weight:400;color:#092c4d}.butsbx{display:flex;align-items:center;margin-top:.78125rem;padding:0 4%}.butsbx>uni-view{width:6.375rem;height:2rem;background:#FFFFFF;border-radius:.25rem;opacity:1;font-size:.875rem;display:flex;align-items:center;justify-content:center;border:.0625rem solid #D3832A;color:#d3832a;margin-left:.625rem}.butsbx>uni-view.active{background-color:var(--subjectColor);color:#fff}.head{display:flex;flex-direction:column;align-items:center;justify-content:space-around;padding:.625rem;box-sizing:border-box;background-color:#fff}.head>.type1{width:100%;display:flex;align-items:flex-start;justify-content:space-between;font-size:.875rem;font-weight:400;color:#90a0af;margin-bottom:.3125rem}.head>.type1>uni-view{flex:1;display:flex;align-items:flex-start}.head>.type1>uni-view>uni-view:nth-of-type(1){flex:1}.popUpInput{border:.09375rem solid #ccc;margin-top:.3125rem;border-radius:.15625rem;padding:.15625rem .3125rem}.popUp_Edit_text{font-size:.875rem;color:red}

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

File diff suppressed because one or more lines are too long

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

File diff suppressed because it is too large Load Diff

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

@ -908,13 +908,39 @@ body {
border: 0.0625rem solid #afafaf;
border-radius: 0.3125rem;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.inputNum[data-v-92b65ffd] {
border: 0.0625rem solid #999;
padding: 0.15625rem 0.625rem;
border-radius: 0.15625rem;
border: 0.0625rem solid #999;
padding: 0.15625rem 0.625rem;
border-radius: 0.3125rem;
}
.inputNum.disabled[data-v-92b65ffd] {
background-color: #e8e8e8;
}
/**
* 这里是uni-app内置的常用样式变量
*
@ -1957,19 +1983,90 @@ uni-view[data-v-9c9e88a3], uni-scroll-view[data-v-9c9e88a3], uni-swiper-item[dat
width: 1.25rem;
height: 1.25rem;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
color: #8d97a3;
border-radius: 0.15625rem;
position: relative;
transition: all 0.3s;
}
.checkbox > uni-view[data-v-1a0f2470] {
transform: rotateY(180deg) rotate(-45deg);
.checkbox[data-v-1a0f2470]::after {
opacity: 0;
content: "";
border-bottom: 2px solid;
border-left: 2px solid;
position: absolute;
width: 0;
height: 0;
left: 50%;
transform: translateX(-50%) rotateY(180deg) rotate(-45deg);
width: 30%;
height: 70%;
transition: all 0.3s;
}
.active[data-v-1a0f2470] {
border-color: var(--subjectColor);
color: var(--subjectColor);
}
.active[data-v-1a0f2470]::after {
opacity: 1;
border-color: var(--subjectColor);
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.fwb[data-v-dbb1c3d9] {
font-weight: bold;
}
.checkbox[data-v-dbb1c3d9] {
border: 0.125rem solid #8d97a3;
width: 1.25rem;
height: 1.25rem;
box-sizing: border-box;
color: #8d97a3;
border-radius: 50%;
position: relative;
transition: all 0.3s;
}
.checkbox[data-v-dbb1c3d9]::after {
content: "";
left: 50%;
top: 50%;
background-color: #fff;
position: absolute;
transform: translate(-50%, -50%);
width: 50%;
height: 50%;
border-radius: 50%;
transition: all 0.3s;
}
.checkbox.active[data-v-dbb1c3d9] {
border-color: var(--subjectColor);
color: var(--subjectColor);
}
.checkbox.active[data-v-dbb1c3d9]::after {
background-color: var(--subjectColor);
}
/**
* 这里是uni-app内置的常用样式变量
*
@ -2020,6 +2117,7 @@ to {
/** 验证失败颜色 */
.input_container[data-v-2efc7f08] {
display: flex;
align-items: center;
position: relative;
height: 100%;
transition: all 0.3s;
@ -2085,4 +2183,117 @@ to {
height: 100%;
flex: 1;
padding: 0 0.625rem;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
@keyframes showMask-9e0df32a {
0% {
left: -100%;
}
100% {
left: 0;
}
}
@keyframes showContent-9e0df32a {
0% {
bottom: -100%;
}
100% {
bottom: 0;
}
}
@keyframes doneMask-9e0df32a {
0% {
left: 0;
}
100% {
left: -100%;
}
}
@keyframes doneContent-9e0df32a {
0% {
bottom: 0;
}
100% {
bottom: -100%;
}
}
.popUpMask[data-v-9e0df32a] {
position: fixed;
top: 0;
left: -100%;
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.5);
z-index: 9999;
}
.popUpMask.show[data-v-9e0df32a] {
animation: 0.3s forwards showMask-9e0df32a;
}
.popUpMask.done[data-v-9e0df32a] {
animation: 0.45s forwards doneMask-9e0df32a;
}
.container[data-v-9e0df32a] {
width: 100%;
background: #fff;
position: absolute;
bottom: -100%;
left: 0;
}
.container.show[data-v-9e0df32a] {
animation: 0.45s forwards showContent-9e0df32a;
}
.container.done[data-v-9e0df32a] {
animation: 0.3s forwards doneContent-9e0df32a;
}
.container .title[data-v-9e0df32a] {
text-align: center;
margin: 0.625rem 0;
}
.container .scoolv[data-v-9e0df32a] {
max-height: 70vh;
padding: 0.625rem;
box-sizing: border-box;
}
.container .buttonContainer[data-v-9e0df32a] {
width: 100%;
padding: 0.625rem 0 1.875rem;
flex: 1;
display: flex;
justify-content: space-around;
align-items: center;
zoom: 0.9;
}
.container .buttonContainer > uni-view[data-v-9e0df32a] {
padding: 0.78125rem 3.125rem;
border-radius: 0.3125rem;
background: var(--subjectColor);
color: #fff;
}
.container .buttonContainer .closeButton[data-v-9e0df32a] {
color: #000;
background: #F5F5F6;
}

23
unpackage/dist/dev/app-plus/pagesHome/pages/SetPrice/SetPrice.css vendored

@ -261,8 +261,8 @@
}
.table[data-v-fccdae3c] {
overflow: scroll;
border-top: 0.0625rem solid #ccc;
border-right: 0.0625rem solid #ccc;
border-top: 0.0625rem solid #ddd;
border-right: 0.0625rem solid #ddd;
max-height: 200px;
}
.table .table_row[data-v-fccdae3c] {
@ -270,10 +270,10 @@
}
.table .table_row > uni-view[data-v-fccdae3c] {
flex: none;
padding: 0.3125rem;
border-left: 0.0625rem solid #ccc;
border-bottom: 0.0625rem solid #ccc;
font-size: 0.9rem;
padding: 0.15625rem;
border-left: 0.0625rem solid #ddd;
border-bottom: 0.0625rem solid #ddd;
font-size: 0.7rem;
text-align: center;
display: flex;
justify-content: center;
@ -281,6 +281,12 @@
width: 9.375rem;
word-break: break-all;
}
.table .table_row > uni-view.title[data-v-fccdae3c] {
padding-top: 0.3125rem;
padding-bottom: 0.3125rem;
color: #000;
font-weight: bold;
}
.table .table_row > uni-view.width1[data-v-fccdae3c] {
width: 2.5rem;
display: flex;
@ -288,7 +294,7 @@
justify-content: center;
}
.table .table_row > uni-view.width2[data-v-fccdae3c] {
width: 5rem;
width: 4.375rem;
display: flex;
align-items: center;
justify-content: center;
@ -307,4 +313,7 @@
}
.clickClass[data-v-fccdae3c] {
opacity: 0.8;
}
.mb40[data-v-fccdae3c] {
margin-bottom: 1.25rem;
}

5
unpackage/dist/dev/mp-weixin/project.config.json vendored

@ -6,7 +6,7 @@
},
"setting": {
"urlCheck": false,
"es6": true,
"es6": false,
"postcss": false,
"minified": true,
"newFeature": true,
@ -17,8 +17,7 @@
"ignore": [],
"disablePlugins": [],
"outputPath": ""
},
"enhance": true
}
},
"compileType": "miniprogram",
"libVersion": "3.1.2",

Loading…
Cancel
Save