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

昨日调整

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