Commit 3df87e6a authored by “yiyousong”'s avatar “yiyousong”

pref:修改应用字段配置

parent b69bce65
...@@ -333,4 +333,7 @@ export default { ...@@ -333,4 +333,7 @@ export default {
font-weight: 600; font-weight: 600;
} }
} }
/deep/.ant-form-item {
align-items: flex-start;
}
</style> </style>
\ No newline at end of file
...@@ -144,7 +144,6 @@ export default { ...@@ -144,7 +144,6 @@ export default {
}, },
created() { created() {
this.getDatasetList(); this.getDatasetList();
console.log(this.appTemplate);
}, },
methods: { methods: {
// 获取数据列表 // 获取数据列表
......
...@@ -55,9 +55,11 @@ ...@@ -55,9 +55,11 @@
</template> </template>
<!-- 简介 --> <!-- 简介 -->
<template slot="summary" slot-scope="text"> <template slot="summary" slot-scope="text">
{{ text.summary ? text.summary : "--" }} <span :title="text.summary">{{
text.summary ? text.summary : "--"
}}</span>
</template> </template>
<!-- 简介 --> <!-- 版本 -->
<template slot="version" slot-scope="text"> <template slot="version" slot-scope="text">
{{ text.version ? "v" + text.version : "--" }} {{ text.version ? "v" + text.version : "--" }}
</template> </template>
...@@ -135,11 +137,12 @@ const columns = [ ...@@ -135,11 +137,12 @@ const columns = [
}, },
{ {
title: "应用主题", title: "应用主题",
ellipsis: true,
dataIndex: "appThemeName", dataIndex: "appThemeName",
}, },
{ {
title: "应用简介", title: "应用简介",
width: "20%", ellipsis: true,
scopedSlots: { customRender: "summary" }, scopedSlots: { customRender: "summary" },
}, },
{ {
......
...@@ -82,14 +82,14 @@ const fieldTypeItem = [ ...@@ -82,14 +82,14 @@ const fieldTypeItem = [
value: "date", value: "date",
label: "日期选择框", label: "日期选择框",
}, },
{
value: "text",
label: "富文本",
},
{ {
value: "upload", value: "upload",
label: "文件上传", label: "文件上传",
}, },
{
value: "text",
label: "富文本",
},
]; ];
export default { export default {
props: { props: {
......
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