Files
hht-hengsen-uni/pages/outbound/out-store-confirm.vue

83 lines
1.6 KiB
Vue
Raw Normal View History

2024-07-22 17:32:37 +08:00
<template>
2024-08-02 17:26:50 +08:00
<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">
<search-box
v-model="code"
/>
</view>
</view>
</view>
</view>
<view class="zd-row submit-bar">
<button class="zd-col-6 button-default" @tap="clearUp">清空</button>
2024-11-15 17:42:20 +08:00
<button class="zd-col-16 button-primary" :class="{'button-info': !code}" :disabled="disabled" @tap="_ioStorageOut">扫码出库确认</button>
2024-08-02 17:26:50 +08:00
</view>
2024-07-22 17:32:37 +08:00
</view>
</template>
<script>
2024-08-02 17:26:50 +08:00
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {ioStorageOut} from '@/utils/getData2.js'
2024-07-22 17:32:37 +08:00
export default {
2024-08-02 17:26:50 +08:00
components: {
NavBar,
SearchBox
},
2024-07-22 17:32:37 +08:00
data() {
return {
2024-08-02 17:26:50 +08:00
code: '',
disabled: false
2024-07-22 17:32:37 +08:00
};
2024-08-02 17:26:50 +08:00
},
onLoad (options) {
this.title = options.title
},
created () {
},
methods: {
clearUp () {
this.code = ''
this.disabled = false
},
async _ioStorageOut () {
this.disabled = true
if (!this.code) {
this.disabled = false
return
}
try {
let res = await ioStorageOut(this.code)
if (res.code === '200') {
uni.showToast({
title: res.msg,
icon: 'none'
})
this.clearUp()
} else {
2024-08-15 09:02:56 +08:00
uni.showToast({
title: res.msg,
icon: 'none'
})
2024-08-02 17:26:50 +08:00
this.disabled = false
}
} catch (e) {
this.disabled = false
}
}
2024-07-22 17:32:37 +08:00
}
}
</script>
<style lang="stylus">
</style>