Commit 032584a3 authored by 李苏's avatar 李苏 💬

昨日调整

parent 9b2a2440
<template>
<BasePage @getRow='getRow' ref="basePage" :power='power' :toolButton='false' class="min_full"
style="height: 100%;" :autoQuery='false' :config="config">
<BasePage @getRow='getRow' ref="basePage" :power='power' :toolButton='false' class="min_full" style="height: 100%;"
:autoQuery='false' :config="config">
<template #dialog="ctx">
<!-- 嵌入默认页面额外弹框的插槽 ctx.pagePage来操作默认页面 -->
</template>
......@@ -35,6 +35,16 @@
url: 'lxyl/zlgl/kccj/query/detail',
queryUrl: 'lxyl/zlgl/kccj/query/detail',
tableTitle: [{
title: "状态",
field: "zt",
"transform": {
"url": "lxyl/zlgl/kccj/init/zt",
"label": "name",
"value": "id"
},
width: 80
},
{
title: "物料编码",
field: "wlxxCode",
width: 140
......@@ -111,8 +121,7 @@
"value": "id"
},
width: 140
},
}
],
queryParams: [],
......
......@@ -60,9 +60,16 @@
fieldType: 'ftDate'
},
{
title: "创建检验单",
title: "创建检验单",
field: "issuedJyd",
width: 140
width: 140,
formatter(a, b, v) {
let map = {
Y: '✔',
N: 'X'
}
return map[v];
}
},
{
title: "维护人",
......
......@@ -175,5 +175,6 @@
}
</script>
<style scoped>
</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