93 lines
2.1 KiB
Vue
93 lines
2.1 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-8">
|
|
<span class="filter_label">扫码点位</span>
|
|
</view>
|
|
<view class="zd-col-16">
|
|
<search-box
|
|
v-model="val1"
|
|
/>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row border-bottom">
|
|
<view class="zd-col-8">
|
|
<span class="filter_label">操作命令</span>
|
|
</view>
|
|
<view class="zd-col-16 filter_select">
|
|
<uni-data-select v-model="index" :localdata="options" @change="selectChange"></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}" :disabled="disabled" @tap="_switchInOut">切换出入库模式</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
import SearchBox from '@/components/SearchBox.vue'
|
|
import {switchInOut} from '@/utils/getData2.js'
|
|
export default {
|
|
components: {
|
|
NavBar,
|
|
SearchBox
|
|
},
|
|
data() {
|
|
return {
|
|
title: '',
|
|
val1: '',
|
|
options: [{value: '0', text: '入库模式'}, {value: '1', text: '出库模式'}],
|
|
index: '',
|
|
disabled: false
|
|
};
|
|
},
|
|
onLoad (options) {
|
|
this.title = options.title
|
|
},
|
|
methods: {
|
|
selectChange (e) {
|
|
this.index = e
|
|
},
|
|
async _switchInOut () {
|
|
this.disabled = true
|
|
if (!this.val1 || !this.index) {
|
|
this.disabled = false
|
|
return
|
|
}
|
|
try {
|
|
let res = await switchInOut(this.val1, this.index)
|
|
this.disabled = false
|
|
uni.showToast({
|
|
title: res.msg,
|
|
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>
|