空载具入库层修改
This commit is contained in:
@@ -26,11 +26,17 @@
|
|||||||
<search-box v-model="val2" />
|
<search-box v-model="val2" />
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
<view class="filter_item is-required">
|
||||||
|
<view class="filter_label">{{$t('filter.layers')}}</view>
|
||||||
|
<view class="filter_input_wraper">
|
||||||
|
<uni-data-select v-model="index2" :placeholder="$t('uni.dataSelect.placeholder')" :emptyTips="$t('uni.dataSelect.emptyTips')" :localdata="options2" @change="selectChange2"></uni-data-select>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="zd-row submitbar">
|
<view class="zd-row submitbar">
|
||||||
<button class="zd-col-6 btn-submit btn-default" @tap="clearUp">{{$t('button.clear')}}</button>
|
<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.storage-confirm')}}</button>
|
<button class="zd-col-15 btn-submit btn-success" :class="{'btn-info': !val1 || !val2 || !index || !index2}" :disabled="disabled" @tap="handleConfirm">{{$t('button.storage-confirm')}}</button>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
@@ -39,7 +45,7 @@
|
|||||||
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 { confirmAction } from '@/utils/utils.js'
|
import { confirmAction } from '@/utils/utils.js'
|
||||||
import {twoPdaVehicleIn} from '@/utils/getData3.js'
|
import {dictDetailpdaPost, twoPdaVehicleIn} from '@/utils/getData3.js'
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
NavBar,
|
NavBar,
|
||||||
@@ -51,6 +57,8 @@
|
|||||||
val1: '',
|
val1: '',
|
||||||
options: [{value: '1', text: this.$t('select.coaster')}, {value: '2', text: this.$t('select.large-tray')}],
|
options: [{value: '1', text: this.$t('select.coaster')}, {value: '2', text: this.$t('select.large-tray')}],
|
||||||
index: '',
|
index: '',
|
||||||
|
options2: [],
|
||||||
|
index2: '',
|
||||||
val2: '',
|
val2: '',
|
||||||
disabled: false
|
disabled: false
|
||||||
};
|
};
|
||||||
@@ -58,12 +66,23 @@
|
|||||||
onLoad (options) {
|
onLoad (options) {
|
||||||
this.title = options.title
|
this.title = options.title
|
||||||
},
|
},
|
||||||
|
created () {
|
||||||
|
this._dictDetailpdaPost()
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
/** 生产区域下拉框查询 */
|
||||||
|
async _dictDetailpdaPost () {
|
||||||
|
let res = await dictDetailpdaPost()
|
||||||
|
this.options2 = [...res.data]
|
||||||
|
},
|
||||||
selectChange (e) {
|
selectChange (e) {
|
||||||
this.index = e
|
this.index = e
|
||||||
},
|
},
|
||||||
|
selectChange2 (e) {
|
||||||
|
this.index2 = e
|
||||||
|
},
|
||||||
async handleConfirm() {
|
async handleConfirm() {
|
||||||
if (!this.val1 || !this.val2 || !this.index) {
|
if (!this.val1 || !this.val2 || !this.index || !this.index2) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
const isConfirmed = await confirmAction(this.$t('toast.prompt'), this.$t('toast.sure-perform-operation'))
|
const isConfirmed = await confirmAction(this.$t('toast.prompt'), this.$t('toast.sure-perform-operation'))
|
||||||
@@ -74,7 +93,7 @@
|
|||||||
async _twoPdaVehicleIn () {
|
async _twoPdaVehicleIn () {
|
||||||
this.disabled = true
|
this.disabled = true
|
||||||
try {
|
try {
|
||||||
let res = await twoPdaVehicleIn(this.val1, this.index, this.val2)
|
let res = await twoPdaVehicleIn(this.val1, this.index, this.val2, this.index2)
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: res.message,
|
title: res.message,
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
@@ -88,6 +107,7 @@
|
|||||||
clearUp () {
|
clearUp () {
|
||||||
this.val1 = ''
|
this.val1 = ''
|
||||||
this.index = ''
|
this.index = ''
|
||||||
|
this.index2 = ''
|
||||||
this.val2 = ''
|
this.val2 = ''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,14 +8,21 @@ import request from './request.js'
|
|||||||
* 二期空载具入库
|
* 二期空载具入库
|
||||||
*/
|
*/
|
||||||
// 1.1空载具入库-【入库按钮】
|
// 1.1空载具入库-【入库按钮】
|
||||||
export const twoPdaVehicleIn = (code, type, pcode) => request({
|
export const twoPdaVehicleIn = (code, type, pcode, layer) => request({
|
||||||
url:'api/twoPda/vehicle/vehicleIn',
|
url:'api/twoPda/vehicle/vehicleIn',
|
||||||
data: {
|
data: {
|
||||||
vehicle_code: code,
|
vehicle_code: code,
|
||||||
vehicle_type: type,
|
vehicle_type: type,
|
||||||
point_code: pcode
|
point_code: pcode,
|
||||||
|
layer: layer
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
// 字典获取
|
||||||
|
export const dictDetailpdaPost = (no, code) => request({
|
||||||
|
url:'api/dict/dictDetail/pdaPost',
|
||||||
|
data: {}
|
||||||
|
})
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 二期空木箱入库
|
* 二期空木箱入库
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user