84 lines
1.9 KiB
Vue
84 lines
1.9 KiB
Vue
<template>
|
|
<view class="zd_container">
|
|
<nav-bar title="搬运任务"></nav-bar>
|
|
<view class="zd_content">
|
|
<view class="zd_wrapper">
|
|
<view class="filter_item">
|
|
<view class="filter_label">起始点位</view>
|
|
<view class="filter_input_wraper">
|
|
<input type="text" class="filter_input" v-model="val1">
|
|
</view>
|
|
</view>
|
|
<view class="filter_item">
|
|
<view class="filter_label">目标点位</view>
|
|
<view class="filter_input_wraper">
|
|
<input type="text" class="filter_input" v-model="val2">
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row submit-bar_new">
|
|
<button class="zd-col-5 submit-button_c" @tap="toClear">清空</button>
|
|
<button class="zd-col-13 submit-button_new" :class="{'btn-disabled': !val1 || !val2}" :disabled="disabled" @tap="_taskCarry">确认</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
import {pointSearch, taskCarry} from '@/utils/getData1.js'
|
|
export default {
|
|
components: {
|
|
NavBar
|
|
},
|
|
data() {
|
|
return {
|
|
dataList: [],
|
|
disabled: false,
|
|
val1: '',
|
|
val2: ''
|
|
};
|
|
},
|
|
created () {
|
|
this._pointSearch1('ssx')
|
|
this._pointSearch2('yl')
|
|
},
|
|
methods: {
|
|
/** 点位查询1 */
|
|
async _pointSearch1 (a) {
|
|
let res = await pointSearch(a)
|
|
this.val1 = res.list.point_code
|
|
},
|
|
/** 点位查询2 */
|
|
async _pointSearch2 (a) {
|
|
let res = await pointSearch(a)
|
|
this.val2 = res.list.point_code
|
|
},
|
|
toClear () {
|
|
this.val1 = ''
|
|
this.val2 = ''
|
|
},
|
|
async _taskCarry () {
|
|
this.disabled = true
|
|
if (!this.val1 || !this.val2) {
|
|
this.disabled = false
|
|
return
|
|
}
|
|
try {
|
|
let res = await taskCarry(this.val1, this.val2)
|
|
this.disabled = false
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
} catch (e) {
|
|
this.disabled = false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="stylus">
|
|
</style>
|