update
This commit is contained in:
parent
583646d0a8
commit
2867719930
|
@ -4,8 +4,11 @@
|
||||||
ref="TableBodyRef">
|
ref="TableBodyRef">
|
||||||
|
|
||||||
<!-- 表格插槽使用 -->
|
<!-- 表格插槽使用 -->
|
||||||
<template #state="{ currentCol, currentData }">
|
<template #isRequired="{ currentCol, currentData }">
|
||||||
<span>{{ currentData == '0' ? "未配置" : "已配置" }}</span>
|
<span>{{ currentData == '0' ? "否" : "是" }}</span>
|
||||||
|
</template>
|
||||||
|
<template #isPk="{ currentCol, currentData }">
|
||||||
|
<span>{{ currentData == '0' ? "否" : "是" }}</span>
|
||||||
</template>
|
</template>
|
||||||
</TableBody>
|
</TableBody>
|
||||||
|
|
||||||
|
@ -86,23 +89,19 @@ const data = reactive({
|
||||||
// width: 100,
|
// width: 100,
|
||||||
// },
|
// },
|
||||||
{
|
{
|
||||||
name: "deptId",
|
name: "sortNo",
|
||||||
label: "所属部门",
|
label: "排序",
|
||||||
show: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "projectId",
|
|
||||||
label: "所属项目",
|
|
||||||
show: true,
|
show: true,
|
||||||
|
sortable: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "name",
|
name: "name",
|
||||||
label: "中文表名",
|
label: "中文字段名",
|
||||||
show: true,
|
show: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "ename",
|
name: "ename",
|
||||||
label: "英文表名",
|
label: "英文字段名",
|
||||||
show: true,
|
show: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -111,17 +110,22 @@ const data = reactive({
|
||||||
show: true,
|
show: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "slot", // 设置为 slot 即可使用插槽
|
name: "type",
|
||||||
name: "state", // name 是作用域插槽的名字
|
label: "字段类型",
|
||||||
label: "配置状态",
|
show: true,
|
||||||
show: true, // 是否显示
|
|
||||||
// sortable: true, // 排序方式 Boolean | 'custom' (设置为 'custom' 可以选中后端排序,组件需要绑定 handleTableSort 事件)
|
|
||||||
// width: 100,
|
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
name: "dataNum",
|
type: "slot", // 设置为 slot 即可使用插槽
|
||||||
label: "数据量(只读)",
|
name: "isPk", // name 是作用域插槽的名字
|
||||||
|
label: "是否主键",
|
||||||
|
show: true, // 是否显示
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
type: "slot",
|
||||||
|
name: "isRequired",
|
||||||
|
label: "是否必填",
|
||||||
show: true,
|
show: true,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
@ -190,7 +194,7 @@ const handleEdit = (val) => {
|
||||||
formDialogStatus.value = 'edit'
|
formDialogStatus.value = 'edit'
|
||||||
const id = val[0].id
|
const id = val[0].id
|
||||||
FormDialogData.title = '编辑'
|
FormDialogData.title = '编辑'
|
||||||
http.get(`/api/system/metadata/${id}`).then(response => {
|
http.get(`/api/metadataColumn/${id}`).then(response => {
|
||||||
FormDialogData.formJsonData = response.data
|
FormDialogData.formJsonData = response.data
|
||||||
formDialog.value = true
|
formDialog.value = true
|
||||||
})
|
})
|
||||||
|
@ -217,7 +221,7 @@ const handleDetail = (val) => {
|
||||||
formDialogStatus.value = 'detail'
|
formDialogStatus.value = 'detail'
|
||||||
const id = val[0].id
|
const id = val[0].id
|
||||||
FormDialogData.title = '详情'
|
FormDialogData.title = '详情'
|
||||||
http.get(`/api/metadataColumn`, { id }).then(response => {
|
http.get(`/api/metadataColumn/${id}`).then(response => {
|
||||||
FormDialogData.formJsonData = response.data
|
FormDialogData.formJsonData = response.data
|
||||||
formDialog.value = true
|
formDialog.value = true
|
||||||
FormDialogData.formJosnDisabled = true
|
FormDialogData.formJosnDisabled = true
|
||||||
|
|
Loading…
Reference in New Issue