120 lines
3.1 KiB
Vue
120 lines
3.1 KiB
Vue
<template>
|
|
<view class="zd_container">
|
|
<nav-bar title="原材料出库"></nav-bar>
|
|
<view class="zd_content">
|
|
<view class="zd_wrapper">
|
|
<view class="filter_item">
|
|
<view class="filter_label_wraper">
|
|
<span class="filter_label">起始点位</span>
|
|
</view>
|
|
<view class="filter_input_wraper">
|
|
<zxz-uni-data-select v-model="index1" filterable :localdata="options1" @inputChange="inputChange1" @change="selectChange1"></zxz-uni-data-select>
|
|
</view>
|
|
</view>
|
|
<!-- <view class="filter_item">
|
|
<view class="filter_label">起始点位</view>
|
|
<view class="filter_input_wraper">
|
|
<uni-data-select v-model="index1" :localdata="options1" @change="selectChange1"></uni-data-select>
|
|
</view>
|
|
</view> -->
|
|
<view class="filter_item">
|
|
<view class="filter_label">回温模式</view>
|
|
<view class="filter_input_wraper">
|
|
<uni-data-select v-model="index2" :localdata="options2" @change="selectChange2"></uni-data-select>
|
|
</view>
|
|
</view>
|
|
<view class="filter_item">
|
|
<view class="filter_label">回温时间</view>
|
|
<view class="filter_input_wraper">
|
|
<input type="number" class="filter_input" v-model="val2">
|
|
</view>
|
|
</view>
|
|
<view class="filter_item">
|
|
<view class="filter_label">工单号</view>
|
|
<view class="filter_input_wraper">
|
|
<input type="number" class="filter_input" v-model="val3">
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row submit-bar_new">
|
|
<button class="zd-col-7 submit-button_c" @tap="toClear">清空</button>
|
|
<button class="zd-col-15 submit-button_new" :class="{'btn-disabled': !index1 || !index2 || !val2 || !val3}" :disabled="disabled" @tap="_yclck">确认</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
import {pointSearch, yclck} from '@/utils/getData1.js'
|
|
export default {
|
|
components: {
|
|
NavBar
|
|
},
|
|
data() {
|
|
return {
|
|
dataList: [],
|
|
disabled: false,
|
|
options1: [],
|
|
index1: '',
|
|
options2: [{value: '0',text: '普通'}, {value: '1',text: '快速'}],
|
|
index2: '',
|
|
val2: '',
|
|
val3: ''
|
|
};
|
|
},
|
|
created () {
|
|
this._pointSearch('YL')
|
|
},
|
|
methods: {
|
|
inputChange1 (e) {
|
|
// console.log(e)
|
|
},
|
|
selectChange1(e) {
|
|
if (e) {
|
|
this.index1 = e.point_code
|
|
}
|
|
},
|
|
// selectChange1 (e) {
|
|
// this.index1 = e
|
|
// },
|
|
selectChange2 (e) {
|
|
this.index2 = e
|
|
},
|
|
/** 点位查询 下拉框显示 */
|
|
async _pointSearch (a) {
|
|
let res = await pointSearch(a)
|
|
this.options1 = [...res]
|
|
this.options1.map(el => {
|
|
this.$set(el, 'value', el.point_code)
|
|
this.$set(el, 'text', el.point_name)
|
|
})
|
|
},
|
|
toClear () {
|
|
this.index1 = ''
|
|
this.val2 = ''
|
|
},
|
|
async _yclck () {
|
|
this.disabled = true
|
|
if (!this.index1 || !this.index2 || !this.val2 || !this.val3) {
|
|
this.disabled = false
|
|
return
|
|
}
|
|
try {
|
|
let res = await yclck(this.index1, this.index2, this.val2, this.val3)
|
|
this.disabled = false
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
} catch (e) {
|
|
this.disabled = false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="stylus">
|
|
</style>
|