Commit 30089c7c authored by 李苏's avatar 李苏 💬

检验单查询条件

parent 34c578f9
...@@ -3,6 +3,14 @@ ...@@ -3,6 +3,14 @@
<div slot="form" style="display: flex;height: 70vh;"> <div slot="form" style="display: flex;height: 70vh;">
<BasePage ref="basePage" :power='power' class="min_full" style="height: 100%;" :config="config"> ref="basePage" <BasePage ref="basePage" :power='power' class="min_full" style="height: 100%;" :config="config"> ref="basePage"
:power='power' class="min_full" :config="config"> :power='power' class="min_full" :config="config">
<template #queryParams="ctx">
<!-- <el-col :span="6" class="search-col">
<div class="search-item">
<el-checkbox true-label='Y' false-label='N' >是否合格</el-checkbox>
</div>
</el-col> -->
</template>
<template #dialog="ctx"> <template #dialog="ctx">
<!-- 嵌入默认页面额外弹框的插槽 ctx.pagePage来操作默认页面 --> <!-- 嵌入默认页面额外弹框的插槽 ctx.pagePage来操作默认页面 -->
</template> </template>
...@@ -107,12 +115,18 @@ ...@@ -107,12 +115,18 @@
field: "zlh", field: "zlh",
width: 180, width: 180,
}, },
// { {
// title: "库存数量", title: "合格标志",
// field: "kcsl", field: "hgbz",
// width: 120, width: 120,
// fieldType: 'float' formatter:(a,b,v)=>{
// }, if(v=='Y'){
return '合格'
}else{
return '不合格'
}
}
},
{ {
title: "货主", title: "货主",
field: "hzName", field: "hzName",
...@@ -140,6 +154,13 @@ ...@@ -140,6 +154,13 @@
"label": "name" "label": "name"
} }
} }
},
{
label: '合格',
prop: 'hgbz',
span: 6,
type: 'checkboxYN',
value: 'Y'
} }
] ]
......
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