105 lines
2.3 KiB
Vue
105 lines
2.3 KiB
Vue
<template>
|
|
<view class="zd_container">
|
|
<!-- 卸货库存查询 -->
|
|
<nav-bar :title="title"></nav-bar>
|
|
<view class="zd_content">
|
|
<view class="zd_wrapper">
|
|
<view class="zd-row border-bottom">
|
|
<view class="zd-col-6">
|
|
<span class="filter_label">区域查询</span>
|
|
</view>
|
|
<view class="zd-col-18 filter_select">
|
|
<uni-data-select v-model="index" :localdata="options"></uni-data-select>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="zd_wrapper grid-wraper">
|
|
<view class="slide_new">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>点位编码</th>
|
|
<th>物料编码</th>
|
|
<th>物料名称</th>
|
|
<th>批号</th>
|
|
<th>数量</th>
|
|
<th>类别</th>
|
|
<th>供应商</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="(e, i) in dataList" :key="i">
|
|
<td>{{e.point_code}}</td>
|
|
<td>{{e.material_code}}</td>
|
|
<td>{{e.material_name}}</td>
|
|
<td>{{e.pcsn}}</td>
|
|
<td>{{e.material_qty}}</td>
|
|
<td>{{e.class_name}}</td>
|
|
<td>{{e.supp_name}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row submit-bar">
|
|
<button class="zd-col-24 button-primary" @tap="_notCarqueryIvt">查询</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
import SearchBox from '@/components/SearchBox.vue'
|
|
import {queryIvtRegion, notCarqueryIvt} from '@/utils/getData3.js'
|
|
export default {
|
|
components: {
|
|
NavBar,
|
|
SearchBox
|
|
},
|
|
data() {
|
|
return {
|
|
title: '',
|
|
options: [],
|
|
index: '',
|
|
dataList: []
|
|
};
|
|
},
|
|
onLoad (options) {
|
|
this.title = options.title
|
|
this._queryIvtRegion()
|
|
},
|
|
methods: {
|
|
async _queryIvtRegion () {
|
|
try {
|
|
let res = await queryIvtRegion()
|
|
if (res) {
|
|
this.options = res.data
|
|
} else {
|
|
this.options = []
|
|
}
|
|
} catch (e) {
|
|
this.options = []
|
|
}
|
|
},
|
|
selectChange (e) {
|
|
this.index = e
|
|
if (e) {
|
|
this._notCarqueryIvt()
|
|
}
|
|
},
|
|
async _notCarqueryIvt () {
|
|
try {
|
|
let res = await notCarqueryIvt(this.index)
|
|
if (res && res.data.length > 0) {
|
|
this.dataList = [...res.data]
|
|
} else {
|
|
this.dataList = []
|
|
}
|
|
} catch (e) {
|
|
this.dataList = []
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script> |