SmartStorage/pages/codeReceive/codeReceive.vue

242 lines
5.0 KiB
Vue
Raw Normal View History

2023-12-23 23:21:42 +08:00
<template>
<view>
<view class="form-area">
<view class="upper-ipt">
2023-12-24 16:28:36 +08:00
<uni-easyinput suffixIcon="search" v-model="codeVal" placeholder="请输入编码"
@iconClick="searchCode"></uni-easyinput>
2023-12-23 23:21:42 +08:00
</view>
2023-12-24 16:28:36 +08:00
<view class="info-area" v-for="(item, index) in infoList" :key="index" v-show="infoList.length != 0"
@click="actionSheetFn(item)">
2023-12-23 23:21:42 +08:00
<view>
2023-12-24 16:28:36 +08:00
<h4>类型名称</h4>
<span>{{ item.typeName }}</span>
2023-12-23 23:21:42 +08:00
</view>
<view>
2023-12-24 16:28:36 +08:00
<h4>规格型号</h4>
<span>{{ item.typeCode }}</span>
2023-12-23 23:21:42 +08:00
</view>
<view>
2023-12-24 16:28:36 +08:00
<h4>设备编码</h4>
<span>{{ item.maCode }}</span>
2023-12-23 23:21:42 +08:00
</view>
2023-12-24 16:28:36 +08:00
<view>
<h4>设备状态</h4>
<span>{{ item.sdStatus }}</span>
2023-12-23 23:21:42 +08:00
</view>
2023-12-24 16:28:36 +08:00
<!-- <view>
2023-12-23 23:21:42 +08:00
<h4>设备状态</h4>
<span>{{ item.maStatusName }}</span>
</view>
<view>
<h4>机具编码</h4>
<span>{{ item.maCode }}</span>
</view>
<view>
<h4>出库数量</h4>
<span>1</span>
</view> -->
</view>
2023-12-24 16:28:36 +08:00
<view class="sub-btn" v-show="infoList.length != 0" @click="outStore">
2023-12-23 23:21:42 +08:00
接收
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
codeVal: '',
typeId: '',
num: '',
parentId: '',
infoList: '',
subList: {},
2023-12-24 16:28:36 +08:00
manageType:'',
createBy:''
2023-12-23 23:21:42 +08:00
}
},
methods: {
2023-12-24 16:28:36 +08:00
searchCode() {
2023-12-23 23:21:42 +08:00
let that = this
that.infoList = []
console.log(that.codeVal);
// 根据maId获取设备详情
2023-12-24 16:28:36 +08:00
that.$api.backMaterialReceive.backReceiveCodeQuery({
2023-12-23 23:21:42 +08:00
maCode: that.codeVal
}, null).then(res => {
console.log(res);
2023-12-24 16:28:36 +08:00
if (res.data.data.length == 0) {
2023-12-23 23:21:42 +08:00
uni.showToast({
icon: 'none',
title: '未查询到设备数据!'
})
} else {
2023-12-24 16:28:36 +08:00
that.infoList = res.data.data
2023-12-23 23:21:42 +08:00
}
}).catch(err => {
console.log(err);
})
},
2023-12-24 16:28:36 +08:00
outStore() {
2023-12-23 23:21:42 +08:00
let that = this
console.log(that.infoList);
/* if (this.infoList.typeId != this.typeId) {
uni.showToast({
icon: 'none',
title: '编码与机具类型不匹配!'
})
} else { */
2023-12-24 16:28:36 +08:00
that.subList = {
parentId: that.parentId,
typeId: that.typeId,
maId: that.infoList[0].maId,
outNum: 1,
companyId: uni.getStorageSync('userInfo').sysUser.companyId
}
console.log(that.subList);
2023-12-23 23:21:42 +08:00
// }
// 提交编码出库申请
that.$api.fetchMaterialOutStore.subOutStore(that.subList, null).then(res => {
console.log(res);
if (res.data.code == 200) {
uni.showToast({
icon: 'none',
title: res.data.msg,
success: () => {
uni.navigateBack()
}
})
} else {
uni.showToast({
icon: 'none',
title: res.data.msg
})
}
}).catch(err => {
console.log(err);
})
2023-12-24 16:28:36 +08:00
},
actionSheetFn(item) {
const that = this
uni.showActionSheet({
itemList: ['合格', '待修', '待报废'],
itemColor: '#333',
success: function(res) {
// console.log('选中了第' + (res.tapIndex + 1) + '个按钮');
let type = res.tapIndex + 1
const arrList = [{
"parentId": that.parentId,
"typeId": that.typeId,
"backNum": "1",
"backStatus": type,
"manageType": that.manageType,
"createBy": that.createBy,
"maId": item.maId
}]
const params = {
taskId: that.taskId,
arr: arrList
}
// 提交编码出库申请
that.$api.backMaterialReceive.backMaterialSetCodeBack(params, null).then(res => {
console.log(res);
if (res.data.code == 200) {
uni.showToast({
icon: 'none',
title: res.data.msg,
})
that.searchCode()
} else {
uni.showToast({
icon: 'none',
title: res.data.msg
})
}
}).catch(err => {
console.log(err);
})
},
fail: function(res) {
console.log(res.errMsg);
}
});
2023-12-23 23:21:42 +08:00
}
},
onLoad(params) {
2023-12-24 16:28:36 +08:00
console.log("init",params);
2023-12-23 23:21:42 +08:00
this.typeId = params.typeId
this.num = params.num
this.parentId = params.parentId
2023-12-24 16:28:36 +08:00
this.manageType = params.manageType
this.createBy=params.userId
this.taskId = params.taskId
2023-12-23 23:21:42 +08:00
}
}
</script>
<style lang="scss">
2023-12-24 16:28:36 +08:00
.form-area {
width: 100%;
2023-12-23 23:21:42 +08:00
margin: 40rpx auto;
2023-12-24 16:28:36 +08:00
.upper-ipt {
width: 90%;
2023-12-23 23:21:42 +08:00
display: flex;
align-items: center;
margin-bottom: 30rpx;
2023-12-24 16:28:36 +08:00
margin: 0 auto;
2023-12-23 23:21:42 +08:00
}
2023-12-24 16:28:36 +08:00
.info-area {
2023-12-23 23:21:42 +08:00
display: flex;
flex-direction: column;
2023-12-24 16:28:36 +08:00
width: 90%;
margin: 0 auto;
view {
2023-12-23 23:21:42 +08:00
margin-bottom: 25rpx;
display: flex;
align-items: center;
2023-12-24 16:28:36 +08:00
h4 {
2023-12-23 23:21:42 +08:00
width: 35%;
font-weight: normal;
font-size: 14px;
color: #989898;
}
2023-12-24 16:28:36 +08:00
span {
2023-12-23 23:21:42 +08:00
font-size: 14px;
}
}
2023-12-24 16:28:36 +08:00
&::after{
display: block;
content: "";
width: 750rpx;
height: 1px;
background-color: #d2d2d2;
margin-left: -5%;
margin-bottom: 12px;
}
2023-12-23 23:21:42 +08:00
}
2023-12-24 16:28:36 +08:00
.sub-btn {
2023-12-23 23:21:42 +08:00
width: 80%;
margin: 30rpx auto;
box-sizing: border-box;
padding: 15rpx 0;
background-color: #0189FC;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
border-radius: 40rpx;
}
}
2023-12-24 16:28:36 +08:00
</style>