Files
hht-beian-uni/pages/task/ddrw.vue
2025-10-15 14:18:45 +08:00

121 lines
3.1 KiB
Vue

<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>