app-form-view 0.0.9 → 0.1.1
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/dist/css/style.css +15 -3
- package/dist/index.js +86 -103
- package/package.json +1 -1
- package/src/api/app-form.js +37 -60
- package/src/api/dict/app-data.js +2 -2
- package/src/app-index.js +3 -0
- package/src/assets/scss/app-form.scss +15 -3
- package/src/components/appForm/Checkbox.vue +1 -1
- package/src/components/appForm/Form.vue +2 -3
- package/src/components/appForm/Radio.vue +1 -1
- package/src/components/appForm/apiPopup.vue +1 -1
- package/src/components/appForm/select.vue +2 -2
- package/src/views/build/viewAppForm.vue +11 -28
package/dist/css/style.css
CHANGED
|
@@ -215,6 +215,9 @@ button[disabled] {
|
|
|
215
215
|
height: 100%;
|
|
216
216
|
overflow: hidden;
|
|
217
217
|
}
|
|
218
|
+
.app-page .app-page-wrap {
|
|
219
|
+
padding: 15px;
|
|
220
|
+
}
|
|
218
221
|
.app-page .bottom-btns {
|
|
219
222
|
gap: 15px;
|
|
220
223
|
padding-left: 10px;
|
|
@@ -279,7 +282,7 @@ button[disabled] {
|
|
|
279
282
|
border-bottom: none;
|
|
280
283
|
}
|
|
281
284
|
.app-page .sub-item-title .title {
|
|
282
|
-
font-size:
|
|
285
|
+
font-size: 1rem;
|
|
283
286
|
font-weight: 600;
|
|
284
287
|
color: var(--title-text-color);
|
|
285
288
|
}
|
|
@@ -292,7 +295,7 @@ button[disabled] {
|
|
|
292
295
|
.last-cell-child {
|
|
293
296
|
border-bottom-left-radius: 10px;
|
|
294
297
|
border-bottom-right-radius: 10px;
|
|
295
|
-
margin-bottom:
|
|
298
|
+
margin-bottom: 15px;
|
|
296
299
|
}
|
|
297
300
|
.last-cell-child.van-cell {
|
|
298
301
|
padding-bottom: 10px;
|
|
@@ -304,12 +307,21 @@ button[disabled] {
|
|
|
304
307
|
.first-cell-child {
|
|
305
308
|
border-top-left-radius: 10px;
|
|
306
309
|
border-top-right-radius: 10px;
|
|
307
|
-
margin-top:
|
|
310
|
+
margin-top: 15px;
|
|
308
311
|
}
|
|
309
312
|
|
|
310
313
|
.van-nav-bar .van-icon {
|
|
311
314
|
color: var(--nav-bar-icon-color);
|
|
312
315
|
}
|
|
316
|
+
|
|
317
|
+
.sub-item-title {
|
|
318
|
+
padding: 15px 5px;
|
|
319
|
+
}
|
|
320
|
+
.sub-item-title .title {
|
|
321
|
+
font-size: 1rem;
|
|
322
|
+
font-weight: 600;
|
|
323
|
+
color: var(--title-text-color);
|
|
324
|
+
}
|
|
313
325
|
.gray-bg {
|
|
314
326
|
height: 100%;
|
|
315
327
|
overflow: hidden;
|