<template>
|
<default-header-page-layout ref="page" title="读写RFID">
|
<view class="page-frame with-action-user-row" :style="{height:pageBodyHeight+'px'}" v-if="pageBodyHeight">
|
<action-user-row />
|
<view class="with-action-user-row-page-content">
|
<!-- step 1 start -->
|
<view>
|
rfid 读取内容为:{{form.containterCode}}
|
</view>
|
|
<scan-input-form-item class="forma-item" label="物料二维码" v-model="form.materialNo" :msg="msg.material"
|
:msg-type="msgType.material" @search="onSearchMaterial" @clear="onClearMaterial" />
|
|
<scan-input-form-item placeholder="请选择" :clearable="false" :hasScan="false" :hasSearch="false"
|
@click.native="visible=true" class="forma-item" label="选择库位" v-model="form.site" />
|
<EasyPicker :visible.sync="visible" :list="placeNoList"
|
labelField="placeNo" valueField="placeNo" @select="getSiteVal" />
|
|
<scan-input-form-item
|
placeholder="请选择"
|
:clearable="false"
|
:hasScan="false"
|
:hasSearch="false"
|
@click.native="ctVisible = true"
|
class="forma-item"
|
label="托盘类型"
|
v-model="form.containerType"
|
/>
|
<EasyPicker :visible.sync="ctVisible" :list="ContainerType" labelField="value" valueField="code" @select="getTypeVal" />
|
|
<scan-input-form-item
|
placeholder="请选择"
|
:clearable="false"
|
:hasScan="false"
|
:hasSearch="false"
|
@click.native="jxVisible = true"
|
class="forma-item"
|
label="机型"
|
v-model="form.materialModelDesc"
|
/>
|
<EasyPicker :visible.sync="jxVisible" :list="materialModelList" labelField="value" valueField="code" @select="getModelVal" />
|
|
<materialList :materialData="materialData" @delMaterialData="delMaterialData" />
|
|
<!-- <NFCReader @update:uid="handleUIDUpdate"></NFCReader> -->
|
</view>
|
</view>
|
<template v-slot:footer>
|
<view class="bottom-btns-row">
|
<!-- v-if="materialData.length>0" -->
|
<template >
|
<div class="btn-frame">
|
<u-button type="primary" text="自动口写入RFID" @click="onSubmit(1)":disabled="!abled"></u-button>
|
</div>
|
<div class="btn-frame">
|
<u-button type="primary" text="外协口写入RFID" @click="onSubmit(2)":disabled="!abled"></u-button>
|
</div>
|
</template>
|
</view>
|
</template>
|
</default-header-page-layout>
|
</template>
|
|
<script>
|
import DefaultHeaderPageLayout from '@/components/DefaultHeaderPageLayout.vue'
|
import ActionUserRow from '@/components/ActionUserRow.vue'
|
import ScanInputFormItem from '@/components/ScanInputFormItem.vue'
|
import EasySelectFormItem from '@/components/EasySelectFormItem.vue'
|
import EasyPicker from '@/components/EasyPicker.vue'
|
import materialList from './modules/materialList.vue'
|
import { NFCReader } from '@/components/ReadRfid.vue'
|
import {
|
parseDic,
|
$alert,
|
$successInfo,
|
getDicList
|
} from '@/static/js/utils/index.js'
|
import {
|
palceList
|
} from '@/service/mixins/mixins.js'
|
import {
|
getForContainerCode,
|
getForMaterialNo,
|
bindMaterialContainer,
|
addInBound,
|
addInVirtualPlace,
|
addAGVTask,
|
writeRfid
|
} from '@/api/bind.js'
|
import {NFCInit,NFCReadUID } from '@/service/util/RfidMethod.js'
|
let initInterVal = null;
|
|
export default {
|
name: 'receiveInPage',
|
components: {
|
DefaultHeaderPageLayout,
|
ActionUserRow,
|
ScanInputFormItem,
|
EasySelectFormItem,
|
materialList,
|
EasyPicker,
|
NFCReader
|
},
|
data() {
|
return {
|
pageBodyHeight: 0,
|
containter: null,
|
form: {
|
containterCode: '',
|
materialNo: '',
|
site: '108',
|
containerTypeCode: 0,
|
containerType: ''
|
},
|
msg: {
|
containter: '',
|
material: '',
|
site: '',
|
},
|
msgType: {
|
containter: 'info',
|
material: 'error',
|
site: 'error'
|
},
|
containerInfo: {},
|
materialData: [],
|
ContainerType: [],
|
materialModelList: [],
|
visible: false,
|
ctVisible: false,
|
jxVisible: false,
|
placeNoList:['101','108','109','110','111','113','114','115'], // 此处固定只有RFID读码器库位
|
title: 'redNFC',
|
UID: '',
|
msg: '',
|
tip: '',
|
readyWriteData: false
|
}
|
},
|
computed: {
|
abled() {
|
let {
|
containerStatus
|
} = this.containerInfo
|
return containerStatus != 0 && containerStatus != 3 && this.materialData.length > 0
|
}
|
},
|
onLoad() {
|
console.log('onLoad');
|
},
|
onShow() {
|
console.log('onShow');
|
var nfc = NFCInit();
|
console.log(8888888888888888);
|
console.log(nfc);
|
},
|
onHide() {
|
console.log('onHide');
|
var rfid = NFCReadUID();
|
if(rfid!=null){
|
this.form.containterCode = rfid.UID
|
}
|
console.log(rfid);
|
},
|
methods: { // 测试PLC触发生成入库任务
|
|
// 选择站点返回值
|
getSiteVal(val, valObj, index) {
|
this.form.site = val
|
},
|
// 选择托盘类型返回值
|
getTypeVal(val, valObj, index) {
|
this.form.containerTypeCode = valObj.code
|
this.form.containerType = valObj.value
|
},
|
getModelVal(val, valObj, index){
|
this.form.materialModelDesc = valObj.value
|
this.form.materialModel = valObj.code
|
},
|
/* 物料编码搜索 */
|
async onSearchMaterial() {
|
if (!this.form.materialNo) {
|
this.msg.material = '请输入物料编号!';
|
return false;
|
}
|
try {
|
const isExist = this.materialData.some(item => item == this.form.materialNo)
|
if (!isExist) {
|
// this.materialData.push(result)
|
this.materialData.push(this.form.materialNo)
|
}else{
|
$alert(`物料唯一码已存在,请删除后再输入!`);
|
}
|
console.log(this.materialData)
|
} catch (e) {
|
//TODO handle the exception
|
console.log(e);
|
}
|
},
|
/* 物料编码清除 */
|
onClearMaterial() {
|
this.form.materialNo = ''
|
this.materialData = []
|
},
|
//删除物料
|
delMaterialData(materialNo) {
|
this.materialData = this.materialData.filter(item => item != materialNo)
|
},
|
// 写入RFID
|
async onSubmit(type) {
|
const data = {
|
stationCode: this.form.site,
|
rfids: this.materialData,
|
containerType: this.form.containerTypeCode,
|
materialModel: this.form.materialModel,
|
type: type
|
}
|
try {
|
await writeRfid(data)
|
this.$modal('写入成功')
|
this.onClearMaterial()
|
} catch (e) {
|
//TODO handle the exception
|
console.log(e);
|
}
|
},
|
/* 页面初始化获取页面body高度的定时器 */
|
startInitInterval(callback) {
|
initInterVal = setInterval(() => {
|
if (this.pageBodyHeight) {
|
this.clearInitInterval()
|
callback && callback()
|
} else {
|
this.pageBodyHeight = this.$refs.page.getBodyHeight()
|
}
|
}, 200)
|
},
|
/* 清除定时器 */
|
clearInitInterval() {
|
try {
|
clearInterval(initInterVal)
|
initInterVal = null
|
} catch (e) {
|
//TODO handle the exception
|
}
|
},
|
},
|
mixins: [palceList],
|
onReady() {
|
this.startInitInterval(async () => {
|
/* 页面初始化后需要执行的代码在这边调用 */
|
this.getPalceList({
|
areaCode: 'SDCR'
|
});
|
|
this.ContainerType = getDicList(this.$store, 'container_type').sysDictDatas;
|
this.materialModelList = getDicList(this.$store, 'material_modal').sysDictDatas;
|
});
|
},
|
onUnload() {
|
this.clearInitInterval()
|
}
|
}
|
</script>
|
|
<style scoped lang="scss">
|
.bottom-btns-row {
|
display: flex;
|
justify-content: center;
|
padding: 10rpx 10rpx;
|
background-color: #fff;
|
|
.btn-frame {
|
flex: 1;
|
box-sizing: border-box;
|
}
|
|
.btn-frame:nth-child(1) {
|
margin-right: 10rpx;
|
}
|
|
.left-btn-frame {
|
padding-left: 20rpx;
|
padding-right: 8rpx;
|
}
|
|
.right-btn-frame {
|
padding-right: 20rpx;
|
padding-left: 8rpx;
|
}
|
}
|
|
.forma-item {
|
margin-bottom: 24rpx;
|
}
|
|
.material-item-group {
|
background-color: $uni-bg-color;
|
padding-top: 10rpx;
|
|
.material-list-item {
|
border-bottom: 2rpx solid $uni-border-color;
|
padding-bottom: 10rpx;
|
padding-left: 60rpx;
|
margin-bottom: 10rpx;
|
position: relative;
|
|
&:last-child {
|
border-bottom: 0;
|
}
|
|
.item-row {
|
display: flex;
|
|
&>.label {
|
flex-shrink: 0;
|
color: $u-tips-color;
|
width: 144rpx;
|
}
|
|
&>.content {
|
flex-grow: 1;
|
color: $u-content-color;
|
|
uni-input {
|
font: inherit;
|
color: $u-primary;
|
text-decoration: underline;
|
}
|
}
|
}
|
|
.badge-box {
|
position: absolute;
|
top: 8rpx;
|
left: 8rpx;
|
z-index: 1;
|
}
|
|
.close-btn {
|
$closeBtnSize: 70rpx;
|
width: $closeBtnSize;
|
height: $closeBtnSize;
|
z-index: 1;
|
position: absolute;
|
top: 0rpx;
|
right: 8rpx;
|
background-color: $u-error;
|
opacity: 0.6;
|
border-radius: 25rpx;
|
|
.icon-layer {
|
position: absolute;
|
width: 100%;
|
height: 100%;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
z-index: 2;
|
}
|
}
|
}
|
}
|
</style>
|