change
This commit is contained in:
@@ -552,6 +552,13 @@
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
}
|
||||
,{
|
||||
"path" : "pages/hdyy/wrcdj/xhkz-query",
|
||||
"style" :
|
||||
{
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
}
|
||||
],
|
||||
"globalStyle": {
|
||||
// "pageOrientation": "landscape",
|
||||
|
||||
104
pages/hdyy/wrcdj/xhkz-query.vue
Normal file
104
pages/hdyy/wrcdj/xhkz-query.vue
Normal 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>
|
||||
@@ -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 {
|
||||
|
||||
@@ -510,3 +510,15 @@ export const sendTask = (rows) => request({
|
||||
url:'api/notCar/sendTask',
|
||||
data: {rows: rows}
|
||||
})
|
||||
|
||||
// 卸货库存查询(无人车对接)共 (2) 个
|
||||
// 查询区域下拉框
|
||||
export const queryIvtRegion = () => request({
|
||||
url:'api/notCar/queryIvtRegion',
|
||||
data: {}
|
||||
})
|
||||
// 查询数据
|
||||
export const notCarqueryIvt = (rcode) => request({
|
||||
url:'api/notCar/queryIvt',
|
||||
data: {region_code: rcode}
|
||||
})
|
||||
|
||||
@@ -8,6 +8,7 @@ export const allAuthority = () => {
|
||||
{menu_id: '1', title: '无人车卸货', path: '/pages/hdyy/wrcdj/wrc-unload'},
|
||||
{menu_id: '2', title: '无人车装货', path: '/pages/hdyy/wrcdj/wrc-load'},
|
||||
{menu_id: '3', title: '仓库送料', path: '/pages/hdyy/wrcdj/cksl'},
|
||||
{menu_id: '4', title: '卸货库存查询', path: '/pages/hdyy/wrcdj/xhkz-query'}
|
||||
]},
|
||||
{menu_id: '2', path: 'RF02', title: '空载具管理', sonTree: [
|
||||
{menu_id: '1', title: '空载具入库', path: '/pages/hdyy/kzj/kzj-instore'},
|
||||
|
||||
Reference in New Issue
Block a user