mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-11-29 22:12:11 +08:00
style(form): group-list样式改成card的样式
This commit is contained in:
parent
14e4a175b4
commit
af20a3c51f
@ -2,7 +2,7 @@
|
||||
<div class="m-fields-group-list">
|
||||
<div v-if="config.extra" v-html="config.extra" style="color: rgba(0, 0, 0, 0.45)"></div>
|
||||
<div v-if="!model[name] || !model[name].length" class="el-table__empty-block">
|
||||
<span class="el-table__empty-text">暂无数据</span>
|
||||
<span class="el-table__empty-text t-table__empty">暂无数据</span>
|
||||
</div>
|
||||
|
||||
<MFieldsGroupListItem
|
||||
@ -26,16 +26,21 @@
|
||||
@addDiffCount="onAddDiffCount()"
|
||||
></MFieldsGroupListItem>
|
||||
|
||||
<TMagicButton
|
||||
v-if="addable"
|
||||
type="primary"
|
||||
:size="config.enableToggleMode ? 'small' : 'default'"
|
||||
:disabled="disabled"
|
||||
@click="addHandler"
|
||||
>新增</TMagicButton
|
||||
>
|
||||
|
||||
<TMagicButton :icon="Grid" size="small" @click="toggleMode" v-if="config.enableToggleMode">切换为表格</TMagicButton>
|
||||
<div class="m-fields-group-list-footer">
|
||||
<TMagicButton v-if="config.enableToggleMode" :icon="Grid" size="small" @click="toggleMode"
|
||||
>切换为表格</TMagicButton
|
||||
>
|
||||
<div style="display: flex; justify-content: flex-end; flex: 1">
|
||||
<TMagicButton
|
||||
v-if="addable"
|
||||
type="primary"
|
||||
:size="config.enableToggleMode ? 'small' : 'default'"
|
||||
:disabled="disabled"
|
||||
@click="addHandler"
|
||||
>新增</TMagicButton
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
@ -1,90 +1,92 @@
|
||||
<template>
|
||||
<div class="m-fields-group-list-item">
|
||||
<div>
|
||||
<TMagicButton link :disabled="disabled" @click="expandHandler">
|
||||
<TMagicIcon><CaretBottom v-if="expand" /><CaretRight v-else /></TMagicIcon>{{ title }}
|
||||
</TMagicButton>
|
||||
<TMagicCard class="m-fields-group-list-item" :body-style="{ display: expand ? 'block' : 'none' }">
|
||||
<template #header>
|
||||
<div>
|
||||
<TMagicButton link :disabled="disabled" @click="expandHandler">
|
||||
<TMagicIcon><CaretBottom v-if="expand" /><CaretRight v-else /></TMagicIcon>{{ title }}
|
||||
</TMagicButton>
|
||||
|
||||
<TMagicButton
|
||||
v-show="showDelete"
|
||||
type="danger"
|
||||
size="small"
|
||||
link
|
||||
:icon="Delete"
|
||||
:disabled="disabled"
|
||||
@click="removeHandler"
|
||||
></TMagicButton>
|
||||
|
||||
<TMagicButton
|
||||
v-if="copyable"
|
||||
link
|
||||
size="small"
|
||||
type="primary"
|
||||
:icon="DocumentCopy"
|
||||
:disabled="disabled"
|
||||
@click="copyHandler"
|
||||
>复制</TMagicButton
|
||||
>
|
||||
|
||||
<template v-if="movable">
|
||||
<TMagicButton
|
||||
v-show="index !== 0"
|
||||
v-show="showDelete"
|
||||
type="danger"
|
||||
size="small"
|
||||
link
|
||||
:icon="Delete"
|
||||
:disabled="disabled"
|
||||
@click="removeHandler"
|
||||
></TMagicButton>
|
||||
|
||||
<TMagicButton
|
||||
v-if="copyable"
|
||||
link
|
||||
size="small"
|
||||
type="primary"
|
||||
:icon="DocumentCopy"
|
||||
:disabled="disabled"
|
||||
:icon="CaretTop"
|
||||
@click="changeOrder(-1)"
|
||||
>上移</TMagicButton
|
||||
@click="copyHandler"
|
||||
>复制</TMagicButton
|
||||
>
|
||||
<TMagicButton
|
||||
v-show="index !== length - 1"
|
||||
link
|
||||
size="small"
|
||||
:disabled="disabled"
|
||||
:icon="CaretBottom"
|
||||
@click="changeOrder(1)"
|
||||
>下移</TMagicButton
|
||||
>
|
||||
</template>
|
||||
|
||||
<TMagicPopover
|
||||
v-if="config.moveSpecifyLocation"
|
||||
trigger="click"
|
||||
placement="top"
|
||||
width="200"
|
||||
:visible="moveSpecifyLocationVisible"
|
||||
>
|
||||
<template #reference>
|
||||
<template v-if="movable">
|
||||
<TMagicButton
|
||||
v-show="index !== 0"
|
||||
link
|
||||
size="small"
|
||||
type="primary"
|
||||
:icon="Position"
|
||||
:disabled="disabled"
|
||||
@click="moveSpecifyLocationVisible = true"
|
||||
>移动至</TMagicButton
|
||||
:icon="CaretTop"
|
||||
@click="changeOrder(-1)"
|
||||
>上移</TMagicButton
|
||||
>
|
||||
<TMagicButton
|
||||
v-show="index !== length - 1"
|
||||
link
|
||||
size="small"
|
||||
:disabled="disabled"
|
||||
:icon="CaretBottom"
|
||||
@click="changeOrder(1)"
|
||||
>下移</TMagicButton
|
||||
>
|
||||
</template>
|
||||
<div>
|
||||
<div>
|
||||
第<TMagicInputNumber
|
||||
style="margin: 0 5px"
|
||||
v-model="moveSpecifyLocationIndex"
|
||||
size="small"
|
||||
:min="1"
|
||||
:disabled="disabled"
|
||||
></TMagicInputNumber
|
||||
>行
|
||||
</div>
|
||||
<div style="text-align: right; margin-top: 20px">
|
||||
<TMagicButton size="small" text @click="moveSpecifyLocationVisible = false">取消</TMagicButton>
|
||||
<TMagicButton size="small" type="primary" @click="moveSpecifyLocationHandler">确认</TMagicButton>
|
||||
</div>
|
||||
</div>
|
||||
</TMagicPopover>
|
||||
|
||||
<span v-if="itemExtra" v-html="itemExtra" class="m-form-tip"></span>
|
||||
</div>
|
||||
<TMagicPopover
|
||||
v-if="config.moveSpecifyLocation"
|
||||
trigger="click"
|
||||
placement="top"
|
||||
width="200"
|
||||
:visible="moveSpecifyLocationVisible"
|
||||
>
|
||||
<template #reference>
|
||||
<TMagicButton
|
||||
link
|
||||
size="small"
|
||||
type="primary"
|
||||
:icon="Position"
|
||||
:disabled="disabled"
|
||||
@click="moveSpecifyLocationVisible = true"
|
||||
>移动至</TMagicButton
|
||||
>
|
||||
</template>
|
||||
<div>
|
||||
<div>
|
||||
第<TMagicInputNumber
|
||||
style="margin: 0 5px"
|
||||
v-model="moveSpecifyLocationIndex"
|
||||
size="small"
|
||||
:min="1"
|
||||
:disabled="disabled"
|
||||
></TMagicInputNumber
|
||||
>行
|
||||
</div>
|
||||
<div style="text-align: right; margin-top: 20px">
|
||||
<TMagicButton size="small" text @click="moveSpecifyLocationVisible = false">取消</TMagicButton>
|
||||
<TMagicButton size="small" type="primary" @click="moveSpecifyLocationHandler">确认</TMagicButton>
|
||||
</div>
|
||||
</div>
|
||||
</TMagicPopover>
|
||||
|
||||
<span v-if="itemExtra" v-html="itemExtra" class="m-form-tip"></span>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<Container
|
||||
v-if="expand"
|
||||
@ -99,14 +101,14 @@
|
||||
@change="changeHandler"
|
||||
@addDiffCount="onAddDiffCount()"
|
||||
></Container>
|
||||
</div>
|
||||
</TMagicCard>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { computed, inject, ref } from 'vue';
|
||||
import { CaretBottom, CaretRight, CaretTop, Delete, DocumentCopy, Position } from '@element-plus/icons-vue';
|
||||
|
||||
import { TMagicButton, TMagicIcon, TMagicInputNumber, TMagicPopover } from '@tmagic/design';
|
||||
import { TMagicButton, TMagicCard, TMagicIcon, TMagicInputNumber, TMagicPopover } from '@tmagic/design';
|
||||
|
||||
import type { ContainerChangeEventData, FormState, GroupListConfig } from '../schema';
|
||||
import { filterFunction } from '../utils/form';
|
||||
|
||||
@ -20,4 +20,19 @@
|
||||
border-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.tmagic-design-card {
|
||||
.el-card__header {
|
||||
padding: 5px 20px;
|
||||
}
|
||||
.t-card__header {
|
||||
padding: 5px 0;
|
||||
}
|
||||
}
|
||||
|
||||
.m-fields-group-list-footer {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user