Commit a1f2017e authored by 李苏's avatar 李苏 💬

库存汇总查询

parent 300e1fdb
......@@ -1180,6 +1180,19 @@ export const powerRoutes = [
},
name: 'cxlkrw',
path: "cxlkrw",
},
{
component: 'ccgl/cxfx/kchzcx/index',
hidden: false,
meta: {
"title": "库存汇总查询",
"icon": "",
"noCache": false,
"link": null,
"mkid": 920190900,
},
name: 'kchzcx',
path: "kchzcx",
}
]
},
......
<template>
<BasePage ref="basePage" :power='power' class="min_full" :config="config">
<template #dialog="ctx">
<!-- 嵌入默认页面额外弹框的插槽 ctx.pagePage来操作默认页面 -->
</template>
<template #toolbar="ctx">
<!-- 嵌入默认页面工具栏的插槽 ctx.pagePage来操作默认页面 -->
<!-- <el-button @click="demo(ctx.basePage)" size='mini' type="primary">示例按钮</el-button> -->
</template>
</BasePage>
</template>
<script>
import wlsx from 'common/src/mixin/wlsx.js'
import wlphsx from 'common/src/mixin/wlphsx.js'
export default {
mixins: [wlsx, wlphsx],
data() {
return {
power: {
add: false,
copy: false,
/* 手动控制删除 */
delButton: false,
/* 手动控制编辑按钮权限 */
editButton: false,
/* 是否渲染右侧操作按钮 */
operateButtons: false,
/* 是否开启工作流按钮 */
workFlow: false,
/* 表格开启选择,以及记住选择 */
showSelection: false,
saveSelected: false
},
config: {
/* 基本配置*/
url: 'lxyl/cxfx/kchzcx',
tableTitle: [{
title: "仓库",
field: "ckName",
width: 140
},
{
title: "SAP仓库",
field: "sapckName",
width: 140
},
{
title: "物料编码",
field: "wlxxCode",
width: 140
},
{
title: "物料名称",
field: "wlxxName",
width: 140
},
{
title: "物料批号",
field: "wlph",
width: 180
},
{
title: "制令号",
field: "zlh",
width: 180
},
{
title: "库存数量",
field: "kcsl",
width: 140
}
],
queryParams: [
[{
"label": "仓库",
"prop": "ckid",
"span": 6,
"type": "RelSelect",
"value": "",
"typeConfig": {
"src": "lxyl/jcsj/uck/ck/queryCjckid",
"match": {
"value": "id",
"label": "name"
}
}
},
{
"label": "SAP仓库",
"prop": "sapCkid",
"span": 6,
"type": "RelSelect",
"value": "",
"typeConfig": {
"src": "lxyl/jcsj/uck/ck/querySapCjckid",
"match": {
"value": "id",
"label": "name"
}
}
},
{
label: '物料',
prop: 'wlxxInfo',
span: 6,
type: 'input',
value: ''
},
{
label: '批号',
prop: 'wlph',
span: 6,
type: 'input',
value: ''
}
],
[{
label: '制令号',
prop: 'zlhInfo',
span: 6,
type: 'input',
value: ''
}]
],
/* 默认启停用 */
showqt: false,
}
}
},
methods: {
/* 示例*/
// demo(basePage){
// }
},
components: {
}
}
</script>
<style>
</style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment