人工退料
This commit is contained in:
@@ -53,7 +53,7 @@
|
|||||||
title: '',
|
title: '',
|
||||||
val1: '',
|
val1: '',
|
||||||
val2: '',
|
val2: '',
|
||||||
options: [{text:'空点位', value:'1'}, {text:'空托盘', value: '2'}, {text:'托盘绑定', value: '3'}],
|
options: [{text:'空位', value:'1'}, {text:'空载具', value: '2'}, {text:'托盘绑定', value: '3'}],
|
||||||
index: '',
|
index: '',
|
||||||
disabled: false
|
disabled: false
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -140,6 +140,11 @@
|
|||||||
this.title = options.title
|
this.title = options.title
|
||||||
this.id = options.id
|
this.id = options.id
|
||||||
},
|
},
|
||||||
|
onShow() {
|
||||||
|
if (this.$store.getters.dataList !== []) {
|
||||||
|
this.dataList = this.$store.getters.publicArr
|
||||||
|
}
|
||||||
|
},
|
||||||
created () {
|
created () {
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@@ -155,6 +160,7 @@
|
|||||||
this.dataList.map(el => {
|
this.dataList.map(el => {
|
||||||
this.$set(el, 'checked', false)
|
this.$set(el, 'checked', false)
|
||||||
})
|
})
|
||||||
|
this.$store.dispatch('setPublicArr', this.dataList)
|
||||||
},
|
},
|
||||||
// async _getPlate () {
|
// async _getPlate () {
|
||||||
// try {
|
// try {
|
||||||
|
|||||||
@@ -81,6 +81,14 @@
|
|||||||
</view>
|
</view>
|
||||||
</view> -->
|
</view> -->
|
||||||
<view class="zd-row border-bottom">
|
<view class="zd-row border-bottom">
|
||||||
|
<view class="zd-col-7">
|
||||||
|
<span class="filter_label">供应商</span>
|
||||||
|
</view>
|
||||||
|
<view class="zd-col-17 filter_select">
|
||||||
|
<uni-data-select v-model="index5" :localdata="options5" @change="selectChange5"></uni-data-select>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<!-- <view class="zd-row border-bottom">
|
||||||
<view class="zd-col-7">
|
<view class="zd-col-7">
|
||||||
<span class="filter_label filter_input_disabled">供应商编码</span>
|
<span class="filter_label filter_input_disabled">供应商编码</span>
|
||||||
</view>
|
</view>
|
||||||
@@ -95,7 +103,7 @@
|
|||||||
<view class="zd-col-17">
|
<view class="zd-col-17">
|
||||||
<input type="text" class="filter_input filter_input_disabled" v-model="currentData.supp_name" disabled>
|
<input type="text" class="filter_input filter_input_disabled" v-model="currentData.supp_name" disabled>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view> -->
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@@ -111,7 +119,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 NumberInput from '@/components/NumberInput.vue'
|
import NumberInput from '@/components/NumberInput.vue'
|
||||||
import {suppList, getMaterialSuppByVehicleCode, checkoutbillBackMaterial} from '@/utils/getData4.js'
|
import {supplierdroplist, getMaterialSuppByVehicleCode, checkoutbillBackMaterial} from '@/utils/getData4.js'
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
NavBar,
|
NavBar,
|
||||||
@@ -138,12 +146,12 @@
|
|||||||
onShow() {
|
onShow() {
|
||||||
},
|
},
|
||||||
created () {
|
created () {
|
||||||
this._suppList()
|
this._supplierdroplist()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
async _suppList () {
|
async _supplierdroplist () {
|
||||||
try {
|
try {
|
||||||
let res = await suppList()
|
let res = await supplierdroplist()
|
||||||
if (res) {
|
if (res) {
|
||||||
this.options5 = res.data
|
this.options5 = res.data
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user