This commit is contained in:
2026-03-19 10:38:40 +08:00
parent 91ce022c61
commit 1a254b38b4
5 changed files with 126 additions and 2 deletions

View File

@@ -0,0 +1,104 @@
<template>
<view class="zd_container">
<!-- 物料维护 -->
<nav-bar :title="title" :inner="true"></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
},
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>

View File

@@ -138,8 +138,8 @@
},
methods: {
async _authority () {
// let res = await authority()
let res = await allAuthority()
let res = await authority()
// let res = await allAuthority()
if (res.code === '1') {
this.menuList = [...res.result.rf_menu1.sonTree]
} else {