修改
This commit is contained in:
@@ -28,6 +28,14 @@
|
||||
<uni-data-select v-model="index4" :localdata="options4" @change="selectChange4"></uni-data-select>
|
||||
</view>
|
||||
</view>
|
||||
<view class="zd-row border-bottom">
|
||||
<view class="zd-col-7">
|
||||
<span class="filter_label">供应商</span>
|
||||
</view>
|
||||
<view class="zd-col-24 filter_select">
|
||||
<uni-data-select v-model="index5" :localdata="options5" @change="selectChange5"></uni-data-select>
|
||||
</view>
|
||||
</view>
|
||||
<view v-if="index4 === '1'">
|
||||
<view class="zd-row border-bottom">
|
||||
<view class="zd-col-7">
|
||||
@@ -78,8 +86,8 @@
|
||||
</view>
|
||||
<view class="zd-row submit-bar">
|
||||
<button class="zd-col-6 button-default" @tap="clearUp">清空</button>
|
||||
<button v-show="index4 === '1'" class="zd-col-16 button-primary" :class="{'button-info': !val1 || !val2 || !index4 || !val3 || !currentData.material_code}" :disabled="disabled" @tap="_checkoutbillBackMaterial">确认</button>
|
||||
<button v-show="index4 !== '1'" class="zd-col-16 button-primary" :class="{'button-info': !val1 || !val2 || !index4}" :disabled="disabled" @tap="_checkoutbillBackMaterial">确认</button>
|
||||
<button v-show="index4 === '1'" class="zd-col-16 button-primary" :class="{'button-info': !val1 || !val2 || !index4 || !index5 || !val3 || !currentData.material_code}" :disabled="disabled" @tap="_checkoutbillBackMaterial">确认</button>
|
||||
<button v-show="index4 !== '1'" class="zd-col-16 button-primary" :class="{'button-info': !val1 || !val2 || !index4 || !index5}" :disabled="disabled" @tap="_checkoutbillBackMaterial">确认</button>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
@@ -88,7 +96,7 @@
|
||||
import NavBar from '@/components/NavBar.vue'
|
||||
import SearchBox from '@/components/SearchBox.vue'
|
||||
import NumberInput from '@/components/NumberInput.vue'
|
||||
import {checkoutbillBackMaterial} from '@/utils/getData4.js'
|
||||
import {suppList, getMaterialSuppByVehicleCode, checkoutbillBackMaterial} from '@/utils/getData4.js'
|
||||
export default {
|
||||
components: {
|
||||
NavBar,
|
||||
@@ -103,6 +111,8 @@
|
||||
title: '',
|
||||
options4: [{text:'退料', value:'1'}, {text:'退空桶', value: '2'}],
|
||||
index4: '',
|
||||
options5: [],
|
||||
index5: '',
|
||||
currentData: {},
|
||||
disabled: false
|
||||
};
|
||||
@@ -111,43 +121,70 @@
|
||||
this.title = options.title
|
||||
},
|
||||
onShow() {
|
||||
if (this.$store.getters.publicObj !== '') {
|
||||
this.currentData = this.$store.getters.publicObj
|
||||
this.$store.dispatch('setPublicObj', '')
|
||||
}
|
||||
},
|
||||
created () {
|
||||
this._suppList()
|
||||
},
|
||||
methods: {
|
||||
async _suppList () {
|
||||
try {
|
||||
let res = await suppList()
|
||||
if (res) {
|
||||
this.options5 = res.data
|
||||
} else {
|
||||
this.options5 = []
|
||||
}
|
||||
} catch (e) {
|
||||
this.options5 = []
|
||||
}
|
||||
},
|
||||
toJump () {
|
||||
uni.navigateTo({
|
||||
url: '/pages/common/mater-list?title=查询物料'
|
||||
})
|
||||
this.getMaterialSuppByVehicleCode()
|
||||
},
|
||||
selectChange4 (e) {
|
||||
this.index4 = e
|
||||
},
|
||||
selectChange5 (e) {
|
||||
this.index5 = e
|
||||
},
|
||||
clearUp () {
|
||||
this.val1 = ''
|
||||
this.val2 = ''
|
||||
this.index4 = ''
|
||||
this.index5 = ''
|
||||
this.currentData = {}
|
||||
this.disabled = false
|
||||
},
|
||||
async _getMaterialSuppByVehicleCode () {
|
||||
try {
|
||||
let res = await getMaterialSuppByVehicleCode(this.index2)
|
||||
if (res.code === '200') {
|
||||
this.currentData = res.data
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: res.message,
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
} catch (e) {
|
||||
}
|
||||
},
|
||||
async _checkoutbillBackMaterial () {
|
||||
this.disabled = true
|
||||
if (this.index4 === '1') {
|
||||
if (!this.val1 || !this.val2 || !this.index4 || !this.val3 || !this.currentData.material_code) {
|
||||
if (!this.val1 || !this.val2 || !this.index4 || !this.index5 || !this.val3 || !this.currentData.material_code) {
|
||||
this.disabled = false
|
||||
return
|
||||
}
|
||||
} else {
|
||||
if (!this.val1 || !this.val2 || !this.index4) {
|
||||
if (!this.val1 || !this.val2 || !this.index4 || !this.index5) {
|
||||
this.disabled = false
|
||||
return
|
||||
}
|
||||
}
|
||||
try {
|
||||
let res = await checkoutbillBackMaterial(this.val1, this.val2, this.index4, this.val3, this.currentData.material_code)
|
||||
let selobj = this.options5.find(item => item.value === this.index5)
|
||||
let res = await checkoutbillBackMaterial(this.val1, this.val2, this.index4, this.val3, this.currentData.material_code, this.index5, selobj.text)
|
||||
if (res.code === '200') {
|
||||
uni.showToast({
|
||||
title: res.message,
|
||||
|
||||
Reference in New Issue
Block a user