Files
hht-oulun-uni/pages/outbound/kjhj.vue

111 lines
2.5 KiB
Vue
Raw Normal View History

2025-10-27 16:54:14 +08:00
<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">
2025-10-30 14:11:06 +08:00
<span class="filter_label">仓库名称</span>
2025-10-27 16:54:14 +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-10-30 14:11:06 +08:00
<span class="filter_label">目标站点</span>
2025-10-27 16:54:14 +08:00
</view>
2025-10-30 14:11:06 +08:00
<view class="zd-col-17">
<input type="text" class="filter_input" v-model="val1">
2025-10-27 16:54:14 +08:00
</view>
</view>
</view>
</view>
<view class="zd-row submit-bar">
<button class="zd-col-6 button-default" @tap="clearUp">清空</button>
2025-10-30 14:11:06 +08:00
<button class="zd-col-16 button-primary" :class="{'button-info': !val1 || !index}" :disabled="disabled" @tap="_vehicleOutConfirm">确认</button>
2025-10-27 16:54:14 +08:00
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
2025-10-30 14:11:06 +08:00
import {getSect, vehicleOutConfirm} from '@/utils/getData3.js'
2025-10-27 16:54:14 +08:00
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
val1: '',
2025-10-30 14:11:06 +08:00
// options: [{text:'堆叠托盘', value:'11111111'},{text:'料箱',value: '22222222'},{text:'白色EPH',value: '33333333'}],
options: [],
index: '',
disabled: false
2025-10-27 16:54:14 +08:00
};
},
onLoad (options) {
this.title = options.title
},
created () {
2025-10-30 14:11:06 +08:00
this._getSect()
2025-10-27 16:54:14 +08:00
},
methods: {
2025-10-30 14:11:06 +08:00
async _getSect () {
2025-10-27 16:54:14 +08:00
try {
2025-10-30 14:11:06 +08:00
let res = await getSect()
2025-10-27 16:54:14 +08:00
if (res) {
2025-10-30 14:11:06 +08:00
this.options = res
this.index = res[0].value
2025-10-27 16:54:14 +08:00
} else {
2025-10-30 14:11:06 +08:00
this.options =[]
2025-10-27 16:54:14 +08:00
}
} catch (e) {
2025-10-30 14:11:06 +08:00
this.options = []
2025-10-27 16:54:14 +08:00
}
},
selectChange (e) {
this.index = e
},
clearUp () {
this.val1 = ''
2025-10-30 14:11:06 +08:00
this.index = ''
2025-10-27 16:54:14 +08:00
this.disabled = false
},
2025-10-30 14:11:06 +08:00
async _vehicleOutConfirm () {
2025-10-27 16:54:14 +08:00
this.disabled = true
2025-10-30 14:11:06 +08:00
if (!this.val1 || !this.index) {
2025-10-27 16:54:14 +08:00
this.disabled = false
return
}
try {
2025-10-30 14:11:06 +08:00
let res = await vehicleOutConfirm(this.index, this.val1)
2025-10-27 16:54:14 +08:00
if (res.code === '200') {
uni.showToast({
title: res.message,
icon: 'none'
})
this.clearUp()
} else {
uni.showToast({
title: res.message,
icon: 'none'
})
this.disabled = false
}
} catch (e) {
this.disabled = false
}
}
}
}
</script>
<style lang="stylus">
</style>