br-dionysus 0.7.3 → 0.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +51 -49
- package/dist/br-dionysus.es.js +419 -418
- package/dist/br-dionysus.umd.js +3 -3
- package/dist/index.css +1 -1
- package/dist/packages/MInline/src/index.vue.d.ts +8 -0
- package/package.json +1 -1
- package/packages/MInline/docs/README.md +1 -0
- package/packages/MInline/docs/demo.vue +50 -49
- package/packages/MInline/src/index.vue +14 -5
package/README.md
CHANGED
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
|
|
35
35
|
<template>
|
|
36
36
|
<div class="g-demo-m-inline-box">
|
|
37
|
-
<m-inline>
|
|
37
|
+
<m-inline size="small">
|
|
38
38
|
<template #inlineBtn>
|
|
39
39
|
<el-button
|
|
40
40
|
type="primary"
|
|
@@ -63,6 +63,7 @@
|
|
|
63
63
|
:model="formInline"
|
|
64
64
|
labelWidth="80px"
|
|
65
65
|
:showMessage="false"
|
|
66
|
+
size="small"
|
|
66
67
|
@submit.prevent
|
|
67
68
|
data-box
|
|
68
69
|
>
|
|
@@ -90,54 +91,54 @@
|
|
|
90
91
|
>
|
|
91
92
|
</el-input>
|
|
92
93
|
</el-form-item>
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
94
|
+
<el-form-item
|
|
95
|
+
label="时间"
|
|
96
|
+
prop="time"
|
|
97
|
+
data-item
|
|
98
|
+
>
|
|
99
|
+
<el-input
|
|
100
|
+
v-model="formInline.time"
|
|
101
|
+
clearable
|
|
102
|
+
placeholder="请输入时间"
|
|
103
|
+
>
|
|
104
|
+
</el-input>
|
|
105
|
+
</el-form-item>
|
|
106
|
+
<el-form-item
|
|
107
|
+
label="编码"
|
|
108
|
+
prop="code"
|
|
109
|
+
data-item
|
|
110
|
+
>
|
|
111
|
+
<el-input
|
|
112
|
+
v-model="formInline.code"
|
|
113
|
+
clearable
|
|
114
|
+
placeholder="请输入编码"
|
|
115
|
+
>
|
|
116
|
+
</el-input>
|
|
117
|
+
</el-form-item>
|
|
118
|
+
<el-form-item
|
|
119
|
+
label="角色名"
|
|
120
|
+
prop="name"
|
|
121
|
+
data-item
|
|
122
|
+
>
|
|
123
|
+
<el-input
|
|
124
|
+
v-model="formInline.name"
|
|
125
|
+
clearable
|
|
126
|
+
placeholder="请输入角色名"
|
|
127
|
+
>
|
|
128
|
+
</el-input>
|
|
129
|
+
</el-form-item>
|
|
130
|
+
<el-form-item
|
|
131
|
+
label="时间"
|
|
132
|
+
prop="time"
|
|
133
|
+
data-item
|
|
134
|
+
>
|
|
135
|
+
<el-input
|
|
136
|
+
v-model="formInline.time"
|
|
137
|
+
clearable
|
|
138
|
+
placeholder="请输入时间"
|
|
139
|
+
>
|
|
140
|
+
</el-input>
|
|
141
|
+
</el-form-item>
|
|
141
142
|
</el-form>
|
|
142
143
|
</template>
|
|
143
144
|
<template #submitBtn>
|
|
@@ -179,6 +180,7 @@ const formInline = reactive({
|
|
|
179
180
|
|----------|:-----:|:------:|:-------------------------:|:-------:|
|
|
180
181
|
| minWidth | 列最小宽度 | number | - | 200 |
|
|
181
182
|
| maxWidth | 列最大宽度 | number | - | 300 |
|
|
183
|
+
| size | 组件尺寸 | enum | large \| default \| small | default |
|
|
182
184
|
|
|
183
185
|
### 2) Events
|
|
184
186
|
|