人工组盘

This commit is contained in:
2023-09-26 17:28:46 +08:00
parent fd12d3871a
commit e78c7dcf04
3 changed files with 41 additions and 22 deletions

View File

@@ -49,7 +49,7 @@
// ], // ],
menuList: [ menuList: [
{menu_id: '1', icon: 'RF01', name: '设备点检', path: '/pages/modules/equip-inspection', sonTree: []}, {menu_id: '1', icon: 'RF01', name: '设备点检', path: '/pages/modules/equip-inspection', sonTree: []},
{menu_id: '2', icon: 'RF05', name: '人工组盘', path: '', sonTree: []}, {menu_id: '2', icon: 'RF05', name: '人工组盘', path: '/pages/modules/man-group', sonTree: []},
{menu_id: '3', icon: 'RF07', name: '强制静置', path: '/pages/modules/forced-rest', sonTree: []} {menu_id: '3', icon: 'RF07', name: '强制静置', path: '/pages/modules/forced-rest', sonTree: []}
], ],
show: false, show: false,

View File

@@ -12,14 +12,14 @@
</view> </view>
</view> </view>
<view class="filter_item"> <view class="filter_item">
<view class="filter_label">点位编码</view> <view class="filter_label">载具类型</view>
<view class="filter_input_wraper"> <view class="filter_input_wraper">
<uni-data-select v-model="index1" :localdata="options1" @change="selectChange1"></uni-data-select> <uni-data-select v-model="index1" :localdata="options1" @change="selectChange1"></uni-data-select>
</view> </view>
</view> </view>
<view class="filter_item"> <view class="filter_item">
<view class="filter_label_wraper"> <view class="filter_label_wraper">
<span class="filter_label">所属工单</span> <span class="filter_label">点位编码</span>
</view> </view>
<view class="filter_input_wraper"> <view class="filter_input_wraper">
<uni-data-select v-model="index2" :localdata="options2" @change="selectChange2"></uni-data-select> <uni-data-select v-model="index2" :localdata="options2" @change="selectChange2"></uni-data-select>
@@ -45,7 +45,7 @@
<script> <script>
import NavBar from '@/components/NavBar.vue' import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue' import SearchBox from '@/components/SearchBox.vue'
import {deviceInfo, deviceStatus, deviceCheckVerify} from '@/utils/getData2.js' import {getPressCode, getVehicleType, groupmanual} from '@/utils/getData1.js'
export default { export default {
components: { components: {
NavBar, NavBar,
@@ -63,8 +63,8 @@
}; };
}, },
created () { created () {
this._deviceInfo() this._getPressCode()
this._deviceStatus() this._getVehicleType()
}, },
methods: { methods: {
/** 选择器 */ /** 选择器 */
@@ -74,39 +74,32 @@
selectChange2(e) { selectChange2(e) {
this.index2 = e this.index2 = e
}, },
/** 获取设备下拉框 */ /** 获取载具类型下拉框 */
async _deviceInfo () { async _getVehicleType () {
let res = await deviceInfo() let res = await getVehicleType()
this.options1 = [...res] this.options1 = [...res]
}, },
/** 获取设备状态下拉框 */ /** 获取点位编码下拉框 */
async _deviceStatus () { async _getPressCode () {
let res = await deviceStatus() let res = await getPressCode()
this.options2 = [...res] this.options2 = [...res]
}, },
/** 确定 */ /** 确定 */
async toSure () { async toSure () {
this.disabled1 = true this.disabled1 = true
if (!this.index1) { if (!this.index1) {
uni.showToast({
title: '混碾位置不能为空',
icon: 'none'
})
this.disabled1 = false this.disabled1 = false
return return
} }
if (!this.index2) { if (!this.index2) {
uni.showToast({
title: '目的压机不能为空',
icon: 'none'
})
this.disabled1 = false this.disabled1 = false
return return
} }
try { try {
let userName = this.$store.getters.userInfo !== '' ? JSON.parse(this.$store.getters.userInfo).username : '' let res = await groupmanual(this.val1, this.index1, this.index2, this.val2)
let res = await deviceCheckVerify(this.index1, userName, this.index2)
this.disabled1 = false this.disabled1 = false
this.val1 = ''
this.val2 = ''
this.index1 = '' this.index1 = ''
this.index2 = '' this.index2 = ''
uni.showToast({ uni.showToast({
@@ -119,6 +112,8 @@
}, },
toCancle () { toCancle () {
this.disabled1 = false this.disabled1 = false
this.val1 = ''
this.val2 = ''
this.index1 = '' this.index1 = ''
this.index2 = '' this.index2 = ''
} }

View File

@@ -1 +1,25 @@
import request from './request.js' import request from './request.js'
/**
* 人工组盘
*/
// 点位编码
export const getPressCode = () => request({
url:'api/pda/group/getPressCode',
data: {}
})
// 获取载具类型
export const getVehicleType = () => request({
url:'api/pda/group/getVehicleType',
data: {}
})
// 人工组盘-确认
export const groupmanual = (vcode, vtype, pcode, weight) => request({
url:'api/pda/group/manual',
data: {
vehicle_code: vcode,
vehicle_type: vtype,
point_code: pcode,
material_weight: weight
}
})