Files
hht-fujia-uni/pages/manage/ckqr.vue
2025-07-16 11:19:36 +08:00

121 lines
3.0 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-5">
<span class="filter_label">RFID</span>
</view>
<view class="zd-col-14 filter_select">
<input type="text" class="filter_input" v-model="val1">
</view>
<view class="zd-col-5 zd-row jcflexend">
<button type="primary" size="mini" style="margin-right:0;text-align: right;" @tap="writeData">读取</button>
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-5">
<span class="filter_label">托盘</span>
</view>
<view class="zd-col-19 filter_select">
<input type="text" class="filter_input" v-model="val2">
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-5">
<span class="filter_label">站点</span>
</view>
<view class="zd-col-14 filter_select">
<input type="text" class="filter_input" v-model="val3">
</view>
<view class="zd-col-5 zd-row jcflexend">
<button type="primary" size="mini" style="margin-right:0;text-align: right;">查询</button>
</view>
</view>
</view>
<view class="zd_wrapper grid-wraper">
<view class="slide_new">
<table>
<thead>
<tr>
<th>物料编码</th>
<th>物料名称</th>
<th>批次</th>
<th>数量</th>
<th>重量</th>
<th>单据号</th>
</tr>
</thead>
<tbody>
<tr v-for="(e, i) in dataList" :key="i" :class="{'checked': e.checked}">
<td>{{e.material_code}}</td>
<td>{{e.material_name}}</td>
<td>{{e.pcsn}}</td>
<td>{{e.num}}</td>
<td>{{e.qty}}</td>
<td>{{e.code}}</td>
</tr>
</tbody>
</table>
</view>
</view>
</view>
<view class="zd-row submit-bar">
<button class="zd-col-6 button-default" @tap="clearUp">清空</button>
<button class="zd-col-15 button-primary" :class="{'button-info': !val1 || !val2 || !val3}" :disabled="disabled" @tap="_mlTask">确认出库</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {mlTask} from '@/utils/getData.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
val1: '',
val2: '',
val3: '',
dataList: [],
disabled: false
};
},
onLoad (options) {
this.title = options.title
},
methods: {
writeData () {
},
clearUp () {
this.val1 = ''
this.val2 = ''
this.val3 = ''
},
async _mlTask () {
this.disabled = true
if (!this.val1 || !this.val2 || !this.val3) {
this.disabled = false
return
}
try {
let res = await mlTask(this.val1, this.val2, this.val3)
this.disabled = false
uni.showToast({
title: res.message,
icon: 'none'
})
} catch (e) {
this.disabled = false
}
}
}
}
</script>