Commit 84e0df65 authored by “yiyousong”'s avatar “yiyousong”

perf:优化应用新增数据弹窗

parent ecd30cde
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
:class="{ :class="{
content: v.fieldType == 'text', content: v.fieldType == 'text',
'upload-item': v.fieldType == 'upload', 'upload-item': v.fieldType == 'upload',
'table-item': v.fieldType == 'table',
}" }"
:prop="`appInfoFieldList.${i}.fieldValue`" :prop="`appInfoFieldList.${i}.fieldValue`"
:rules="{ :rules="{
...@@ -532,7 +533,7 @@ export default { ...@@ -532,7 +533,7 @@ export default {
<style lang="less" scoped> <style lang="less" scoped>
/deep/.ant-form-item { /deep/.ant-form-item {
display: flex; display: flex;
align-items: flex-start; align-items: center;
} }
/deep/.ant-drawer-body { /deep/.ant-drawer-body {
height: calc(100vh - 55px); height: calc(100vh - 55px);
...@@ -554,8 +555,12 @@ export default { ...@@ -554,8 +555,12 @@ export default {
} }
} }
.upload-item { .upload-item {
align-items: flex-start !important;
display: block !important; display: block !important;
} }
.table-item {
align-items: flex-start !important;
}
.search-box { .search-box {
margin-bottom: 10px; margin-bottom: 10px;
text-align: right; text-align: right;
......
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