add 点对点任务

This commit is contained in:
2025-10-15 14:18:45 +08:00
parent 9311e8ebee
commit 4a40f26e2c
7 changed files with 146 additions and 1 deletions

View File

@@ -482,4 +482,15 @@ uni-button[size=mini] {
width 70%
height 4rpx
background-color #fff
}
//
uni-switch .uni-switch-input {
width: 60px !important;
height: 32px !important;
}
uni-switch .uni-switch-input:before {
width: 58px !important;
}
uni-switch .uni-switch-input.uni-switch-input-checked:after {
transform: translateX(30px) !important;
}

View File

@@ -104,6 +104,14 @@
}
}
,{
"path" : "pages/task/ddrw",
"style" :
{
"navigationStyle": "custom"
}
}
],
"globalStyle": {
// "pageOrientation": "landscape",

View File

@@ -41,7 +41,8 @@
{title: '任务管理', icon: 'RF6', path: '/pages/task/rwgl'},
{title: '手工组盘', icon: 'RF8', path: '/pages/task/sgzp'},
{title: '空托盘入库', icon: 'RF9', path: '/pages/task/ktprk'},
{title: '空托盘出库', icon: 'RF10', path: '/pages/task/ktpck'}
{title: '空托盘出库', icon: 'RF10', path: '/pages/task/ktpck'},
{title: '点对点任务', icon: 'RF11', path: '/pages/task/ddrw'}
],
show: false,
secM: []

120
pages/task/ddrw.vue Normal file
View File

@@ -0,0 +1,120 @@
<template>
<view class="zd_container">
<nav-bar :title="title"></nav-bar>
<!-- 点对点任务 -->
<view class="zd_content">
<view class="zd_wrapper">
<view class="zd-row border-bottom">
<view class="zd-col-8">
<span class="filter_label">起点编码</span>
</view>
<view class="zd-col-16 filter_select">
<input type="text" class="filter_input" v-model="val1">
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-8">
<span class="filter_label">终点编码</span>
</view>
<view class="zd-col-16 filter_select">
<input type="text" class="filter_input" v-model="val2">
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-8">
<span class="filter_label">载具编码</span>
</view>
<view class="zd-col-16 filter_select">
<search-box
v-model="val3"
/>
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-8">
<span class="filter_label">任务类型</span>
</view>
<view class="zd-col-16 filter_select">
<uni-data-select v-model="index" :localdata="options"></uni-data-select>
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-8">
<span class="filter_label">是否空载具</span>
</view>
<view class="relative zd-col-16">
<switch :checked="isChecked" color="#6798ef"/>
<text @tap="setWStatus" style="position: absolute;display: inline-block;width: 60px; height: 32px;left: 0;"></text>
</view>
</view>
</view>
</view>
<view class="zd-row submit-bar">
<button class="zd-col-6 button-default" @tap="clearUp">清空</button>
<button class="zd-col-15 button-primary" :class="{'button-info': !val1 || !val2 || !val3 || !index}" :disabled="disabled" @tap="_pointToPoint">确认</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {pointToPoint} from '@/utils/getData.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
val1: '',
val2: '',
val3: '',
index: '',
options: [{value: '1', text: '入库'}, {value: '2', text: '出库'}],
isChecked: false,
disabled: false
};
},
onLoad (options) {
this.title = options.title
},
methods: {
setWStatus () {
this.isChecked = !this.isChecked
},
clearUp () {
this.val1 = ''
this.val2 = ''
this.val3 = ''
this.index = ''
this.isChecked = false
this.disabled = false
},
async _pointToPoint () {
this.disabled = true
if (!this.val1 || !this.val2 || !this.val3 || !this.index) {
this.disabled = false
return
}
try {
const checked = this.isChecked ? '1' : '2'
let res = await pointToPoint(this.val1, this.val2, this.val3, this.index, checked)
this.disabled = false
uni.showToast({
title: res.message,
icon: 'none'
})
this.clearUp()
} catch (e) {
this.disabled = false
}
}
}
}
</script>
<style lang="stylus">
</style>

BIN
static/image/menu/RF11.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -152,3 +152,8 @@ export const empVehicleOut = (code, type) => request({
url:'api/pda/empVehicle/out',
data: {point_code: code, storagevehicle_type: type}
})
// 点对点任务
export const pointToPoint = (code1, code2, vcode, type, is) => request({
url:'api/pda/schPoint/pointToPoint',
data: {point_code1: code1, point_code2: code2, vehicle_code: vcode, task_type: type, is_vehicle: is}
})