2025-08-07 09:18:45 +08:00
|
|
|
<template>
|
|
|
|
|
<view class="zd_container">
|
2025-08-08 10:03:19 +08:00
|
|
|
<!-- 定点作业 -->
|
2025-08-07 09:18:45 +08:00
|
|
|
<nav-bar :title="title"></nav-bar>
|
|
|
|
|
<view class="zd_content">
|
|
|
|
|
<view class="zd_wrapper">
|
|
|
|
|
<view class="zd-row border-bottom">
|
|
|
|
|
<view class="zd-col-7">
|
2025-08-07 16:49:08 +08:00
|
|
|
<span class="filter_label">起点区域</span>
|
2025-08-07 09:18:45 +08:00
|
|
|
</view>
|
|
|
|
|
<view class="zd-col-24 filter_select">
|
|
|
|
|
<uni-data-select v-model="index" :localdata="options" @change="selectChange"></uni-data-select>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="zd-row border-bottom">
|
|
|
|
|
<view class="zd-col-7">
|
2025-08-07 16:49:08 +08:00
|
|
|
<span class="filter_label">起点</span>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="zd-col-17">
|
|
|
|
|
<input type="text" class="filter_input" v-model="val1">
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="zd-row border-bottom">
|
|
|
|
|
<view class="zd-col-7">
|
|
|
|
|
<span class="filter_label">终点区域</span>
|
2025-08-07 09:18:45 +08:00
|
|
|
</view>
|
|
|
|
|
<view class="zd-col-24 filter_select">
|
2025-08-07 16:49:08 +08:00
|
|
|
<uni-data-select v-model="index2" :localdata="options2" @change="selectChange2"></uni-data-select>
|
2025-08-07 09:18:45 +08:00
|
|
|
</view>
|
|
|
|
|
</view>
|
2025-08-07 16:49:08 +08:00
|
|
|
<view class="zd-row border-bottom">
|
|
|
|
|
<view class="zd-col-7">
|
|
|
|
|
<span class="filter_label">终点</span>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="zd-col-17">
|
|
|
|
|
<input type="text" class="filter_input" v-model="val2">
|
|
|
|
|
</view>
|
2025-08-07 09:18:45 +08:00
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="zd-row submit-bar">
|
2025-08-07 16:49:08 +08:00
|
|
|
<button class="zd-col-6 button-default" @tap="clearUp">清空</button>
|
2025-08-08 10:03:19 +08:00
|
|
|
<button class="zd-col-16 button-primary" :class="{'button-info': !val1 || !val2}" :disabled="disabled" @tap="_sendPointTask">确认</button>
|
2025-08-07 09:18:45 +08:00
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import NavBar from '@/components/NavBar.vue'
|
|
|
|
|
import SearchBox from '@/components/SearchBox.vue'
|
2025-08-08 10:03:19 +08:00
|
|
|
import {getRegions, getPointnByRegion, sendPointTask} from '@/utils/getData4.js'
|
2025-08-07 09:18:45 +08:00
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
NavBar,
|
|
|
|
|
SearchBox
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
title: '',
|
2025-08-07 16:49:08 +08:00
|
|
|
val1: '',
|
|
|
|
|
val2: '',
|
|
|
|
|
// options: [{text:'堆叠托盘', value:'11111111'},{text:'料箱',value: '22222222'},{text:'白色EPH',value: '33333333'}],
|
2025-08-07 09:18:45 +08:00
|
|
|
options: [],
|
|
|
|
|
index: '',
|
2025-08-07 16:49:08 +08:00
|
|
|
options2: [],
|
|
|
|
|
index2: '',
|
2025-08-07 09:18:45 +08:00
|
|
|
disabled: false
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
onLoad (options) {
|
|
|
|
|
this.title = options.title
|
2025-08-07 16:49:08 +08:00
|
|
|
},
|
|
|
|
|
created () {
|
2025-08-08 10:03:19 +08:00
|
|
|
this._getRegions1()
|
|
|
|
|
this._getRegions2()
|
2025-08-07 09:18:45 +08:00
|
|
|
},
|
|
|
|
|
methods: {
|
2025-08-08 10:03:19 +08:00
|
|
|
async _getRegions1 () {
|
2025-08-07 16:49:08 +08:00
|
|
|
try {
|
2025-08-08 10:03:19 +08:00
|
|
|
let res = await getRegions()
|
2025-08-07 16:49:08 +08:00
|
|
|
if (res) {
|
2025-08-28 13:24:23 +08:00
|
|
|
this.options = res.data
|
2025-08-07 16:49:08 +08:00
|
|
|
} else {
|
|
|
|
|
this.options =[]
|
|
|
|
|
}
|
|
|
|
|
} catch (e) {
|
|
|
|
|
this.options = []
|
|
|
|
|
}
|
2025-08-07 09:18:45 +08:00
|
|
|
},
|
|
|
|
|
selectChange (e) {
|
|
|
|
|
this.index = e
|
2025-08-08 10:03:19 +08:00
|
|
|
this._getPointnByRegion1()
|
2025-08-07 09:18:45 +08:00
|
|
|
},
|
2025-08-08 10:03:19 +08:00
|
|
|
async _getRegions2 () {
|
2025-08-07 16:49:08 +08:00
|
|
|
try {
|
2025-08-08 10:03:19 +08:00
|
|
|
let res = await getRegions()
|
2025-08-07 16:49:08 +08:00
|
|
|
if (res) {
|
2025-08-28 13:24:23 +08:00
|
|
|
this.options2 = res.data
|
2025-08-07 09:18:45 +08:00
|
|
|
} else {
|
2025-08-07 16:49:08 +08:00
|
|
|
this.options2 =[]
|
2025-08-07 09:18:45 +08:00
|
|
|
}
|
2025-08-07 16:49:08 +08:00
|
|
|
} catch (e) {
|
|
|
|
|
this.options2 = []
|
2025-08-07 09:18:45 +08:00
|
|
|
}
|
|
|
|
|
},
|
2025-08-07 16:49:08 +08:00
|
|
|
selectChange2 (e) {
|
|
|
|
|
this.index2 = e
|
2025-08-08 10:03:19 +08:00
|
|
|
this._getPointnByRegion2()
|
|
|
|
|
},
|
|
|
|
|
async _getPointnByRegion1 () {
|
|
|
|
|
let res = await getPointnByRegion(this.index)
|
|
|
|
|
if (res.code === '200') {
|
|
|
|
|
this.val1 = res.data[0].point_code
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
async _getPointnByRegion2 () {
|
|
|
|
|
let res = await getPointnByRegion(this.index2)
|
|
|
|
|
if (res.code === '200') {
|
|
|
|
|
this.val2 = res.data[0].point_code
|
|
|
|
|
}
|
2025-08-07 09:18:45 +08:00
|
|
|
},
|
2025-08-07 16:49:08 +08:00
|
|
|
clearUp () {
|
|
|
|
|
this.val1 = ''
|
|
|
|
|
this.val2 = ''
|
|
|
|
|
this.disabled = false
|
2025-08-07 09:18:45 +08:00
|
|
|
},
|
2025-08-08 10:03:19 +08:00
|
|
|
async _sendPointTask () {
|
2025-08-07 09:18:45 +08:00
|
|
|
this.disabled = true
|
2025-08-13 09:07:11 +08:00
|
|
|
if (!this.val1 || !this.val2) {
|
2025-08-07 09:18:45 +08:00
|
|
|
this.disabled = false
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
try {
|
2025-08-08 10:03:19 +08:00
|
|
|
let res = await sendPointTask(this.val1, this.val2)
|
2025-08-07 09:18:45 +08:00
|
|
|
if (res.code === '200') {
|
|
|
|
|
uni.showToast({
|
2025-08-07 16:49:08 +08:00
|
|
|
title: res.message,
|
2025-08-07 09:18:45 +08:00
|
|
|
icon: 'none'
|
|
|
|
|
})
|
2025-08-07 16:49:08 +08:00
|
|
|
this.clearUp()
|
2025-08-07 09:18:45 +08:00
|
|
|
} else {
|
|
|
|
|
uni.showToast({
|
2025-08-07 16:49:08 +08:00
|
|
|
title: res.message,
|
2025-08-07 09:18:45 +08:00
|
|
|
icon: 'none'
|
|
|
|
|
})
|
2025-08-07 16:49:08 +08:00
|
|
|
this.disabled = false
|
2025-08-07 09:18:45 +08:00
|
|
|
}
|
|
|
|
|
} catch (e) {
|
|
|
|
|
this.disabled = false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-08-07 16:49:08 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="stylus">
|
|
|
|
|
|
|
|
|
|
</style>
|