111 lines
2.5 KiB
Vue
111 lines
2.5 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-7">
|
|
<span class="filter_label">载具编码</span>
|
|
</view>
|
|
<view class="zd-col-24 filter_select">
|
|
<search-box
|
|
v-model="val2"
|
|
/>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row border-bottom">
|
|
<view class="zd-col-7">
|
|
<span class="filter_label">起点</span>
|
|
</view>
|
|
<view class="zd-col-24">
|
|
<search-box
|
|
v-model="val1"
|
|
@handleChange="handleChange"
|
|
/>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row border-bottom">
|
|
<view class="zd-col-7">
|
|
<span class="filter_label">终点</span>
|
|
</view>
|
|
<view class="zd-col-24 filter_select">
|
|
<uni-data-select v-model="index" :localdata="options"></uni-data-select>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row submit-bar">
|
|
<button class="zd-col-6 button-default" @tap="toEmpty">清空</button>
|
|
<button class="zd-col-16 button-primary" :class="{'button-info': !val1 || !index || !val2}" :disabled="disabled" @tap="_transfConfirm">转运确认</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
import SearchBox from '@/components/SearchBox.vue'
|
|
import {deviceManageTransf, transfConfirm} from '@/utils/getData2.js'
|
|
export default {
|
|
components: {
|
|
NavBar,
|
|
SearchBox
|
|
},
|
|
data() {
|
|
return {
|
|
title: '',
|
|
val1: '',
|
|
options: [],
|
|
index: '',
|
|
val2: '',
|
|
disabled: false
|
|
};
|
|
},
|
|
onLoad (options) {
|
|
this.title = options.title
|
|
},
|
|
methods: {
|
|
handleChange (e) {
|
|
if (e) {
|
|
this._deviceManageTransf(e)
|
|
}
|
|
},
|
|
async _deviceManageTransf (e) {
|
|
let res = await deviceManageTransf(e)
|
|
this.options = [...res]
|
|
},
|
|
async _transfConfirm () {
|
|
this.disabled = true
|
|
if (!this.val1 || !this.index || !this.val2) {
|
|
this.disabled = false
|
|
return
|
|
}
|
|
try {
|
|
let res = await transfConfirm(this.val1, this.index, this.val2)
|
|
this.disabled = false
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
} catch (e) {
|
|
this.disabled = false
|
|
}
|
|
},
|
|
toEmpty () {
|
|
this.val1 = ''
|
|
this.index = ''
|
|
this.disabled = false
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
@import '../../common/style/mixin.styl';
|
|
.button-primary, .button-default
|
|
_fj(center)
|
|
font-size 26rpx
|
|
height 88rpx
|
|
line-height 30rpx
|
|
</style>
|