126 lines
3.5 KiB
Vue
126 lines
3.5 KiB
Vue
<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('filter.point')}}</span>
|
|
</view>
|
|
<view class="filter_input_wraper">
|
|
<search-box v-model="val1" />
|
|
</view>
|
|
</view>
|
|
<view class="filter_item is-required">
|
|
<view class="filter_label_wraper">
|
|
<span class="filter_label">{{$t('filter.pallet-number')}}</span>
|
|
</view>
|
|
<view class="filter_input_wraper">
|
|
<search-box v-model="val2" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row submitbar">
|
|
<button class="zd-col-5 btn-submit btn-success" :class="{'btn-info': !val1 || !val2}" :disabled="disabled" @tap="handleConfirm2">{{$t('button.bind')}}</button>
|
|
<button class="zd-col-5 btn-submit btn-success" :class="{'btn-info': !val1}" :disabled="disabled" @tap="handleConfirm3">{{$t('button.unbind')}}</button>
|
|
<button class="zd-col-5 btn-submit btn-success" :class="{'btn-info': !val1 || !val2}" :disabled="disabled" @tap="handleConfirm1('1')">{{$t('button.tubeinstore')}}</button>
|
|
<button class="zd-col-5 btn-submit btn-success" :class="{'btn-info': !val1 || !val2}" :disabled="disabled" @tap="handleConfirm1('0')">{{$t('button.emptydiskrecycle')}}</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
import SearchBox from '@/components/SearchBox.vue'
|
|
import { confirmAction } from '@/utils/utils.js'
|
|
import {doStockAreaBinding, doStockAreaUnbinding, instorStock} from '@/utils/getData3.js'
|
|
export default {
|
|
components: {
|
|
NavBar,
|
|
SearchBox
|
|
},
|
|
data() {
|
|
return {
|
|
title: '',
|
|
val1: '',
|
|
val2: '',
|
|
disabled: false
|
|
};
|
|
},
|
|
onLoad (options) {
|
|
this.title = options.title
|
|
},
|
|
methods: {
|
|
async handleConfirm2() {
|
|
if (!this.val1 || !this.val2) {
|
|
return
|
|
}
|
|
const isConfirmed = await confirmAction(this.$t('toast.prompt'), this.$t('toast.sure-perform-operation'))
|
|
if (isConfirmed) {
|
|
this._doStockAreaBinding()
|
|
}
|
|
},
|
|
async _doStockAreaBinding () {
|
|
this.disabled = true
|
|
try {
|
|
let res = await doStockAreaBinding(this.val1, this.val2)
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
this.clearUp()
|
|
this.disabled = false
|
|
} catch (e) {
|
|
this.disabled = false
|
|
}
|
|
},
|
|
async handleConfirm3() {
|
|
if (!this.val1) {
|
|
return
|
|
}
|
|
const isConfirmed = await confirmAction(this.$t('toast.prompt'), this.$t('toast.sure-perform-operation'))
|
|
if (isConfirmed) {
|
|
this._doStockAreaUnbinding()
|
|
}
|
|
},
|
|
async _doStockAreaUnbinding () {
|
|
this.disabled = true
|
|
try {
|
|
let res = await doStockAreaUnbinding(this.val1)
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
this.clearUp()
|
|
this.disabled = false
|
|
} catch (e) {
|
|
this.disabled = false
|
|
}
|
|
},
|
|
async handleConfirm1(type) {
|
|
if (!this.val1 || !this.val2) {
|
|
return
|
|
}
|
|
const isConfirmed = await confirmAction(this.$t('toast.prompt'), this.$t('toast.sure-perform-operation'))
|
|
if (isConfirmed) {
|
|
this._instorStock(type)
|
|
}
|
|
},
|
|
async _instorStock (type) {
|
|
this.disabled = true
|
|
try {
|
|
let res = await instorStock(this.val1, this.val2, type)
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
this.disabled = false
|
|
} catch (e) {
|
|
this.disabled = false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script> |