106 lines
2.5 KiB
Vue
106 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-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">
|
||
|
|
<search-box
|
||
|
|
v-model="val2"
|
||
|
|
/>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
<view class="zd-row border-bottom">
|
||
|
|
<view class="zd-col-8">
|
||
|
|
<span class="filter_label">库存校验</span>
|
||
|
|
</view>
|
||
|
|
<view class="relative zd-col-16">
|
||
|
|
<switch :checked="isChecked" color="#4e6ef2" style="transform:scale(0.8); transform-origin: left;"/>
|
||
|
|
<text @tap="setWStatus" style="position: absolute;display: inline-block;width: 52px; height: 32px;left: 0;"></text>
|
||
|
|
</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 || !val2}" :disabled="disabled" @tap="_toCommandTP">下发输送线运动命令</button>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import NavBar from '@/components/NavBar.vue'
|
||
|
|
import SearchBox from '@/components/SearchBox.vue'
|
||
|
|
import {toCommandTP} from '@/utils/getData2.js'
|
||
|
|
export default {
|
||
|
|
components: {
|
||
|
|
NavBar,
|
||
|
|
SearchBox
|
||
|
|
},
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
title: '',
|
||
|
|
val1: '',
|
||
|
|
val2: '',
|
||
|
|
disabled: false,
|
||
|
|
isChecked: true
|
||
|
|
};
|
||
|
|
},
|
||
|
|
onLoad (options) {
|
||
|
|
this.title = options.title
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
async _toCommandTP () {
|
||
|
|
this.disabled = true
|
||
|
|
if (!this.val1 || !this.val2) {
|
||
|
|
this.disabled = false
|
||
|
|
return
|
||
|
|
}
|
||
|
|
try {
|
||
|
|
let check = this.isChecked ? '1' : '0'
|
||
|
|
let res = await toCommandTP(this.val1, '1', this.val2, check)
|
||
|
|
this.disabled = false
|
||
|
|
uni.showToast({
|
||
|
|
title: res.msg,
|
||
|
|
icon: 'none'
|
||
|
|
})
|
||
|
|
} catch (e) {
|
||
|
|
this.disabled = false
|
||
|
|
}
|
||
|
|
},
|
||
|
|
toEmpty () {
|
||
|
|
this.val1 = ''
|
||
|
|
this.val2 = ''
|
||
|
|
this.disabled = false
|
||
|
|
this.isChecked = true
|
||
|
|
},
|
||
|
|
setWStatus () {
|
||
|
|
this.isChecked = !this.isChecked
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</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>
|