张卓
2022-09-20 5aead44ba1be31db948dfd8362c2bfcbedbbce29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<template>
 
<a-tabs defaultActiveKey="1" type="card" :tabBarStyle="{height:'48px'}">
    <a-tab-pane tab="字段属性" key="1">
 
<a-collapse defaultActiveKey="1" :bordered="true">
    <a-collapse-panel header="结构属性" key="1">
        <a-row :gutter=8>
            <a-col :span="12">
                <a-button size="small" type="dashed" block>标题</a-button>
            </a-col>
 
            <a-col :span="12">
                <a-button size="small" type="dashed" block>默认值</a-button>
            </a-col>
 
            <a-col :span="12">
                <a-button size="small" type="dashed" block>占位内容</a-button>
            </a-col>
 
            <a-col :span="12">
                <a-button size="small" type="dashed" block>id</a-button>
            </a-col>
        </a-row>
    </a-collapse-panel>
    <a-collapse-panel header="界面属性" key="2">
        <a-row :gutter=8>
            <a-col :span="12">
                <a-button size="small" type="dashed" block>布局</a-button>
            </a-col>
 
            <a-col :span="12">
                <a-button size="small" type="dashed" block>文件上传</a-button>
            </a-col>
        </a-row>
    </a-collapse-panel>
</a-collapse>
 
    </a-tab-pane>
    <a-tab-pane tab="表单属性" key="2">
        <a-row>
            <a-col>
                表单布局:
                <a-radio-group >
                    <a-radio-button value="horizontal">horizontal</a-radio-button>
                    <a-radio-button value="vertical">vertical</a-radio-button>
                    <a-radio-button value="inline">inline</a-radio-button>
                </a-radio-group>
            </a-col>
        </a-row>
        <a-row>
            <a-col>
                隐藏必选标记:
                <a-switch />
            </a-col>
        </a-row>
    </a-tab-pane>
</a-tabs>
</template>
 
<style lang="less">
 
</style>
 
<script  lang="ts">
import { Component, Prop, Vue, Mixins } from 'vue-property-decorator';
import { State, Mutation, namespace } from 'vuex-class';
 
@Component({
    components: {
    },
})
export default class EditorProperty extends  Vue {
 
}
</script>