空载具出入库
This commit is contained in:
@@ -30,7 +30,13 @@
|
||||
{
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
|
||||
}
|
||||
,{
|
||||
"path" : "pages/SecondPhase/EmptyVehicleOutStore",
|
||||
"style" :
|
||||
{
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
}
|
||||
,{
|
||||
"path" : "pages/SecondPhase/EmptyBoxInStore",
|
||||
|
||||
101
pages/SecondPhase/EmptyVehicleOutStore.vue
Normal file
101
pages/SecondPhase/EmptyVehicleOutStore.vue
Normal file
@@ -0,0 +1,101 @@
|
||||
<template>
|
||||
<view class="zd_container">
|
||||
<!-- <nav-bar title="空载具出库"></nav-bar> -->
|
||||
<nav-bar :title="title"></nav-bar>
|
||||
<view class="zd_content">
|
||||
<view class="zd_wrapper">
|
||||
<view class="filter_item is-required">
|
||||
<view class="filter_label_wraper">
|
||||
<span class="filter_label">{{$t('grid.point-code')}}</span>
|
||||
</view>
|
||||
<view class="filter_input_wraper">
|
||||
<search-box v-model="val1" />
|
||||
</view>
|
||||
</view>
|
||||
<view class="filter_item is-required">
|
||||
<view class="filter_label">{{$t('filter.vehicle-type')}}</view>
|
||||
<view class="filter_input_wraper">
|
||||
<uni-data-select v-model="index" :placeholder="$t('uni.dataSelect.placeholder')" :emptyTips="$t('uni.dataSelect.emptyTips')" :localdata="options" @change="selectChange"></uni-data-select>
|
||||
</view>
|
||||
</view>
|
||||
<view class="filter_item is-required">
|
||||
<view class="filter_label">{{$t('filter.quantity')}}</view>
|
||||
<view class="filter_input_wraper">
|
||||
<NumberInput
|
||||
v-model="val2"
|
||||
input-class="filter_input"
|
||||
mode="integer"
|
||||
/>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="zd-row submitbar">
|
||||
<button class="zd-col-6 btn-submit btn-default" @tap="clearUp">{{$t('button.clear')}}</button>
|
||||
<button class="zd-col-15 btn-submit btn-success" :class="{'btn-info': !val1 || !val2 || !index}" :disabled="disabled" @tap="handleConfirm">{{$t('button.outstore-confirm')}}</button>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import NavBar from '@/components/NavBar.vue'
|
||||
import SearchBox from '@/components/SearchBox.vue'
|
||||
import NumberInput from '@/components/NumberInput.vue'
|
||||
import { confirmAction } from '@/utils/utils.js'
|
||||
import {twoPdaVehicleOut} from '@/utils/getData3.js'
|
||||
export default {
|
||||
components: {
|
||||
NavBar,
|
||||
SearchBox,
|
||||
NumberInput
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
title: '',
|
||||
val1: '',
|
||||
options: [{value: '1', text: this.$t('select.coaster')}, {value: '2', text: this.$t('select.large-tray')}],
|
||||
index: '',
|
||||
val2: '',
|
||||
disabled: false
|
||||
};
|
||||
},
|
||||
onLoad (options) {
|
||||
this.title = options.title
|
||||
},
|
||||
created () {
|
||||
},
|
||||
methods: {
|
||||
selectChange (e) {
|
||||
this.index = e
|
||||
},
|
||||
async handleConfirm() {
|
||||
if (!this.val1 || !this.val2 || !this.index) {
|
||||
return
|
||||
}
|
||||
const isConfirmed = await confirmAction(this.$t('toast.prompt'), this.$t('toast.sure-perform-operation'))
|
||||
if (isConfirmed) {
|
||||
this._twoPdaVehicleOut()
|
||||
}
|
||||
},
|
||||
async _twoPdaVehicleOut () {
|
||||
this.disabled = true
|
||||
try {
|
||||
let res = await twoPdaVehicleOut(this.val1, this.index, this.val2)
|
||||
uni.showToast({
|
||||
title: res.message,
|
||||
icon: 'none'
|
||||
})
|
||||
this.clearUp()
|
||||
this.disabled = false
|
||||
} catch (e) {
|
||||
this.disabled = false
|
||||
}
|
||||
},
|
||||
clearUp () {
|
||||
this.val1 = ''
|
||||
this.index = ''
|
||||
this.val2 = ''
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
@@ -17,6 +17,15 @@ export const twoPdaVehicleIn = (code, type, pcode, layer) => request({
|
||||
layer: layer
|
||||
}
|
||||
})
|
||||
// 1.1空载具出库-【出库按钮】
|
||||
export const twoPdaVehicleOut = (pcode, type, num) => request({
|
||||
url:'api/twoPda/vehicle/vehicleOut',
|
||||
data: {
|
||||
point_code: pcode,
|
||||
vehicle_type: type,
|
||||
num: num
|
||||
}
|
||||
})
|
||||
// 字典获取
|
||||
export const dictDetailpdaPost = (no, code) => request({
|
||||
url:'api/dict/dictDetail/pdaPost',
|
||||
|
||||
@@ -5,8 +5,9 @@ export const allAuthority = () => {
|
||||
rf_menu0: {},
|
||||
rf_menu1: {
|
||||
sonTree: [
|
||||
{menu_id: '1', path: 'RF08', zh_title: '载具入库', sonTree: [
|
||||
{menu_id: '1', zh_title: '空载具入库', path: '/pages/SecondPhase/EmptyVehicleInStore'}
|
||||
{menu_id: '1', path: 'RF08', zh_title: '载具出入库', sonTree: [
|
||||
{menu_id: '1', zh_title: '空载具入库', path: '/pages/SecondPhase/EmptyVehicleInStore'},
|
||||
{menu_id: '2', zh_title: '空载具出库', path: '/pages/SecondPhase/EmptyVehicleOutStore'}
|
||||
]},
|
||||
{menu_id: '2', path: 'RF11', zh_title: '空木箱入库', sonTree: [
|
||||
{menu_id: '1', zh_title: '空木箱入库', path: '/pages/SecondPhase/EmptyBoxInStore'}
|
||||
|
||||
Reference in New Issue
Block a user