Commit 77ecc9d2 authored by 周毅's avatar 周毅

增加 库内容器调整

parent 7a59fe98
<template>
<BasePage :power='power' @getRow='getRow' class="min_full" style="height: 100%;" :config="config">
<template #dialog="ctx">
<!-- 嵌入默认页面额外弹框的插槽 ctx.pagePage来操作默认页面 -->
</template>
<template #toolbar="ctx">
</template>
</BasePage>
</template>
<script>
// import Edit from './edit.vue'
export default {
data() {
return {
power: {
add: false,
copy: false,
/* 手动控制删除 */
delButton: false,
/* 手动控制编辑按钮权限 */
editButton: false,
/* 是否渲染右侧操作按钮 */
operateButtons: false,
/* 是否开启工作流按钮 */
workFlow: false,
/* 表格开启选择,以及记住选择 */
showSelection: false,
saveSelected: false
},
config: {
queryDetail: true,
/* 基本配置*/
url: 'lxy/kcgl/rqtz',
tableTitle: [
{
title: "仓库",
field: "ckName",
width: 140
},
{
title: "容器",
field: "rqCode",
width: 80
},
{
title: "目标容器",
field: "mbrqCode",
width: 80
},
{
title: "唯一码",
field: "packCode",
width: 120
},
{
title: "物料编码",
field: "wlxxCode",
width: 120
},
{
title: "物料名称",
field: "wlxxName",
width: 220
},
{
title: "数量",
field: "sl",
fieldType:"float"
},
{
title: "批号",
field: "wlph",
width: 140
},
{
title: "制令号",
field: "zlh",
width: 140
}
],
queryParams: [
[,
{
label: '时间',
startProp: "start",
endProp: "end",
span: 7,
type: 'RelDaterangeV2',
startValue: new Date().getTime() - 1000 * 60 * 60 * 24 * 30,
endValue: new Date().getTime(),
},
{
label: '容器',
prop: 'rqCode',
span: 6,
type: 'input',
value: ''
},
{
label: '目标容器',
prop: 'mbrqCode',
span: 6,
type: 'input',
value: ''
},
{
label: '唯一码',
prop: 'packCode',
span: 6,
type: 'input',
value: ''
}
],
[
{
label: '物料',
prop: 'wlxxInfo',
span: 6,
type: 'input',
value: ''
},
{
label: '批号',
prop: 'wlph',
span: 6,
type: 'input',
value: ''
},
{
label: '制令号',
prop: 'zlh',
span: 6,
type: 'input',
value: ''
}
]
],
/* 默认启停用 */
}
}
},
methods: {
getRow(val) {
this.$emit('getRow', val)
}
},
components: {
// Edit
}
}
</script>
<style>
</style>
......@@ -95,13 +95,11 @@
],
queryParams: [
[{
label: '检验日期',
startProp: "begin",
endProp: "end",
span: 8,
type: 'RelDaterangeV2',
startValue:'',
endValue: '',
label: "检验日期",
prop: "start",
span: 6,
type: "date",
value: "",
},
{
label: '物料批号',
......
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