@ajaxjs/ui 1.6.4 → 1.6.6
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/ajaxjs-ui.cjs.js +3 -3
- package/dist/ajaxjs-ui.es.js +126 -128
- package/dist/ajaxjs-ui.umd.js +3 -3
- package/dist/types/components/configurable-widget/form/list.vue.d.ts +0 -11
- package/dist/types/index.d.ts +300 -2
- package/dist/types/pages/system/ArticleEdit.vue.d.ts +0 -9
- package/dist/ui.css +1 -1
- package/package.json +1 -1
|
@@ -1,14 +1,3 @@
|
|
|
1
|
-
import { default as FormLoader } from './form-loader.vue';
|
|
2
|
-
interface FormLoaderType {
|
|
3
|
-
formId: number;
|
|
4
|
-
load(): void;
|
|
5
|
-
}
|
|
6
|
-
interface ComponentInstance extends InstanceType<typeof FormLoader> {
|
|
7
|
-
previewloader: FormLoaderType;
|
|
8
|
-
perview: {
|
|
9
|
-
isShow: boolean;
|
|
10
|
-
};
|
|
11
|
-
}
|
|
12
1
|
/**
|
|
13
2
|
* FORM 管理界面列表
|
|
14
3
|
*/
|
package/dist/types/index.d.ts
CHANGED
|
@@ -15,7 +15,6 @@ export declare const admin: {
|
|
|
15
15
|
forgetPsw(): void;
|
|
16
16
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
17
17
|
};
|
|
18
|
-
export { default as ArticleEdit } from './pages/system/ArticleEdit.vue';
|
|
19
18
|
export declare const system: {
|
|
20
19
|
Article: import('vue').DefineComponent<{}, {}, any>;
|
|
21
20
|
DataDict: import('vue').DefineComponent<{}, {}, any>;
|
|
@@ -259,6 +258,61 @@ export declare const system: {
|
|
|
259
258
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
260
259
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
261
260
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
261
|
+
ArticleEdit: import('vue').DefineComponent<{}, {
|
|
262
|
+
htmlEditor: import('vue').Ref<any, any>;
|
|
263
|
+
formCustom: import('vue').Ref<any, any>;
|
|
264
|
+
}, {
|
|
265
|
+
article: ArticleEntity;
|
|
266
|
+
isCreate: boolean;
|
|
267
|
+
ruleValidate: {
|
|
268
|
+
name: {
|
|
269
|
+
required: boolean;
|
|
270
|
+
message: string;
|
|
271
|
+
trigger: string;
|
|
272
|
+
}[];
|
|
273
|
+
intro: ({
|
|
274
|
+
required: boolean;
|
|
275
|
+
message: string;
|
|
276
|
+
trigger: string;
|
|
277
|
+
max?: undefined;
|
|
278
|
+
} | {
|
|
279
|
+
max: number;
|
|
280
|
+
message: string;
|
|
281
|
+
trigger: string;
|
|
282
|
+
required?: undefined;
|
|
283
|
+
})[];
|
|
284
|
+
};
|
|
285
|
+
}, {}, {
|
|
286
|
+
handleSubmit(): void;
|
|
287
|
+
formatDate(date: string): string;
|
|
288
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
289
|
+
HtmlEditor: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
290
|
+
modelValue: StringConstructor;
|
|
291
|
+
uploadImageActionUrl: StringConstructor;
|
|
292
|
+
isIonicons: BooleanConstructor;
|
|
293
|
+
}>, {}, any, {}, {
|
|
294
|
+
setIframeBody(html: string): void;
|
|
295
|
+
getValue(cleanWord: boolean, encode: boolean): string;
|
|
296
|
+
createLink(): void;
|
|
297
|
+
insertImage(): void;
|
|
298
|
+
cleanHTML(): void;
|
|
299
|
+
saveRemoteImage2Local(): void;
|
|
300
|
+
onCmdClk(ev: Event): void;
|
|
301
|
+
format(type: string, para?: string): void;
|
|
302
|
+
onFontsizeChoserClk(ev: Event): void;
|
|
303
|
+
onFontfamilyChoserClk(ev: Event): void;
|
|
304
|
+
createColorPickerHTML(): string;
|
|
305
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("update:modelValue" | "onchange")[], "update:modelValue" | "onchange", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
306
|
+
modelValue: StringConstructor;
|
|
307
|
+
uploadImageActionUrl: StringConstructor;
|
|
308
|
+
isIonicons: BooleanConstructor;
|
|
309
|
+
}>> & Readonly<{
|
|
310
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
311
|
+
onOnchange?: ((...args: any[]) => any) | undefined;
|
|
312
|
+
}>, {
|
|
313
|
+
isIonicons: boolean;
|
|
314
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
315
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
262
316
|
};
|
|
263
317
|
export declare const shop: {
|
|
264
318
|
Transaction: import('vue').DefineComponent<{}, {}, any>;
|
|
@@ -1358,6 +1412,251 @@ export declare const ConfigWdiget: {
|
|
|
1358
1412
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1359
1413
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1360
1414
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1415
|
+
FormMgr: import('vue').DefineComponent<{}, {
|
|
1416
|
+
previewloader: import('vue').Ref<null, null>;
|
|
1417
|
+
}, {
|
|
1418
|
+
perview: {
|
|
1419
|
+
isShow: boolean;
|
|
1420
|
+
title: string;
|
|
1421
|
+
data: {};
|
|
1422
|
+
};
|
|
1423
|
+
list: {
|
|
1424
|
+
columns: ({
|
|
1425
|
+
title: string;
|
|
1426
|
+
width: number;
|
|
1427
|
+
key: string;
|
|
1428
|
+
align: string;
|
|
1429
|
+
} | {
|
|
1430
|
+
title: string;
|
|
1431
|
+
width: number;
|
|
1432
|
+
render(h: Function, params: any): any;
|
|
1433
|
+
} | {
|
|
1434
|
+
title: string;
|
|
1435
|
+
key: string;
|
|
1436
|
+
minWidth: number;
|
|
1437
|
+
ellipsis: boolean;
|
|
1438
|
+
tooltip: boolean;
|
|
1439
|
+
render?: undefined;
|
|
1440
|
+
width?: undefined;
|
|
1441
|
+
slot?: undefined;
|
|
1442
|
+
align?: undefined;
|
|
1443
|
+
} | {
|
|
1444
|
+
title: string;
|
|
1445
|
+
render(h: Function, params: any): any;
|
|
1446
|
+
width: number;
|
|
1447
|
+
ellipsis: boolean;
|
|
1448
|
+
key?: undefined;
|
|
1449
|
+
minWidth?: undefined;
|
|
1450
|
+
tooltip?: undefined;
|
|
1451
|
+
slot?: undefined;
|
|
1452
|
+
align?: undefined;
|
|
1453
|
+
} | {
|
|
1454
|
+
title: string;
|
|
1455
|
+
slot: string;
|
|
1456
|
+
align: string;
|
|
1457
|
+
width: number;
|
|
1458
|
+
key?: undefined;
|
|
1459
|
+
minWidth?: undefined;
|
|
1460
|
+
ellipsis?: undefined;
|
|
1461
|
+
tooltip?: undefined;
|
|
1462
|
+
render?: undefined;
|
|
1463
|
+
})[];
|
|
1464
|
+
};
|
|
1465
|
+
}, {}, {
|
|
1466
|
+
getApiUrl(): string;
|
|
1467
|
+
openDemo(this: ComponentInstance, item: any): void;
|
|
1468
|
+
onCreate(): void;
|
|
1469
|
+
onEdit(id: number): void;
|
|
1470
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
1471
|
+
FastiViewTable: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1472
|
+
widgetName: {
|
|
1473
|
+
type: StringConstructor;
|
|
1474
|
+
required: false;
|
|
1475
|
+
};
|
|
1476
|
+
columnsDef: {
|
|
1477
|
+
type: ArrayConstructor;
|
|
1478
|
+
required: false;
|
|
1479
|
+
};
|
|
1480
|
+
apiUrl: {
|
|
1481
|
+
type: StringConstructor;
|
|
1482
|
+
required: false;
|
|
1483
|
+
};
|
|
1484
|
+
listApiUrl: {
|
|
1485
|
+
type: StringConstructor;
|
|
1486
|
+
required: true;
|
|
1487
|
+
};
|
|
1488
|
+
createRoute: {
|
|
1489
|
+
type: StringConstructor;
|
|
1490
|
+
required: false;
|
|
1491
|
+
};
|
|
1492
|
+
editRoute: {
|
|
1493
|
+
type: StringConstructor;
|
|
1494
|
+
required: false;
|
|
1495
|
+
};
|
|
1496
|
+
pickup: {
|
|
1497
|
+
type: BooleanConstructor;
|
|
1498
|
+
required: false;
|
|
1499
|
+
};
|
|
1500
|
+
}>, {}, {
|
|
1501
|
+
widgetName_: string | undefined;
|
|
1502
|
+
colDefId: number;
|
|
1503
|
+
list: TableListConfig;
|
|
1504
|
+
}, {}, {
|
|
1505
|
+
getData(): void;
|
|
1506
|
+
onPageNoChange(pageNo: number): void;
|
|
1507
|
+
handleChangePageSize(pageSize: number): void;
|
|
1508
|
+
reset(): void;
|
|
1509
|
+
onCreate(): void;
|
|
1510
|
+
onEdit(id: number): void;
|
|
1511
|
+
doPickup(data: any): void;
|
|
1512
|
+
deleteInfo(id: number, index: number): void;
|
|
1513
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1514
|
+
widgetName: {
|
|
1515
|
+
type: StringConstructor;
|
|
1516
|
+
required: false;
|
|
1517
|
+
};
|
|
1518
|
+
columnsDef: {
|
|
1519
|
+
type: ArrayConstructor;
|
|
1520
|
+
required: false;
|
|
1521
|
+
};
|
|
1522
|
+
apiUrl: {
|
|
1523
|
+
type: StringConstructor;
|
|
1524
|
+
required: false;
|
|
1525
|
+
};
|
|
1526
|
+
listApiUrl: {
|
|
1527
|
+
type: StringConstructor;
|
|
1528
|
+
required: true;
|
|
1529
|
+
};
|
|
1530
|
+
createRoute: {
|
|
1531
|
+
type: StringConstructor;
|
|
1532
|
+
required: false;
|
|
1533
|
+
};
|
|
1534
|
+
editRoute: {
|
|
1535
|
+
type: StringConstructor;
|
|
1536
|
+
required: false;
|
|
1537
|
+
};
|
|
1538
|
+
pickup: {
|
|
1539
|
+
type: BooleanConstructor;
|
|
1540
|
+
required: false;
|
|
1541
|
+
};
|
|
1542
|
+
}>> & Readonly<{}>, {
|
|
1543
|
+
pickup: boolean;
|
|
1544
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1545
|
+
FormLoader: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1546
|
+
id: {
|
|
1547
|
+
type: NumberConstructor;
|
|
1548
|
+
required: false;
|
|
1549
|
+
};
|
|
1550
|
+
isShowInfoBtn: {
|
|
1551
|
+
type: BooleanConstructor;
|
|
1552
|
+
required: false;
|
|
1553
|
+
default: boolean;
|
|
1554
|
+
};
|
|
1555
|
+
isShowBtns: {
|
|
1556
|
+
type: BooleanConstructor;
|
|
1557
|
+
required: false;
|
|
1558
|
+
default: boolean;
|
|
1559
|
+
};
|
|
1560
|
+
}>, {
|
|
1561
|
+
FromRenderer: import('vue').Ref<any, any>;
|
|
1562
|
+
}, {
|
|
1563
|
+
formId: number;
|
|
1564
|
+
entityId: number;
|
|
1565
|
+
cfg: {
|
|
1566
|
+
fields: never[];
|
|
1567
|
+
};
|
|
1568
|
+
status: number;
|
|
1569
|
+
oldJson: null;
|
|
1570
|
+
}, {}, {
|
|
1571
|
+
load(): void;
|
|
1572
|
+
resetFields(): void;
|
|
1573
|
+
create(): void;
|
|
1574
|
+
update(): void;
|
|
1575
|
+
_getSaveData(): any;
|
|
1576
|
+
loadInfo(): void;
|
|
1577
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1578
|
+
id: {
|
|
1579
|
+
type: NumberConstructor;
|
|
1580
|
+
required: false;
|
|
1581
|
+
};
|
|
1582
|
+
isShowInfoBtn: {
|
|
1583
|
+
type: BooleanConstructor;
|
|
1584
|
+
required: false;
|
|
1585
|
+
default: boolean;
|
|
1586
|
+
};
|
|
1587
|
+
isShowBtns: {
|
|
1588
|
+
type: BooleanConstructor;
|
|
1589
|
+
required: false;
|
|
1590
|
+
default: boolean;
|
|
1591
|
+
};
|
|
1592
|
+
}>> & Readonly<{}>, {
|
|
1593
|
+
isShowInfoBtn: boolean;
|
|
1594
|
+
isShowBtns: boolean;
|
|
1595
|
+
}, {}, {
|
|
1596
|
+
FromRenderer: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1597
|
+
cfg: {
|
|
1598
|
+
type: ObjectConstructor;
|
|
1599
|
+
required: true;
|
|
1600
|
+
};
|
|
1601
|
+
}>, {}, {
|
|
1602
|
+
index: number;
|
|
1603
|
+
formDynamic: {
|
|
1604
|
+
fields: any;
|
|
1605
|
+
};
|
|
1606
|
+
data: {};
|
|
1607
|
+
status: number;
|
|
1608
|
+
}, {}, {
|
|
1609
|
+
handleAdd(): void;
|
|
1610
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1611
|
+
cfg: {
|
|
1612
|
+
type: ObjectConstructor;
|
|
1613
|
+
required: true;
|
|
1614
|
+
};
|
|
1615
|
+
}>> & Readonly<{}>, {}, {}, {
|
|
1616
|
+
ItemRender: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1617
|
+
item: {
|
|
1618
|
+
type: ObjectConstructor;
|
|
1619
|
+
};
|
|
1620
|
+
data: ObjectConstructor;
|
|
1621
|
+
status: NumberConstructor;
|
|
1622
|
+
}>, {}, {}, {}, {
|
|
1623
|
+
showDataDict(fieldName: string): void;
|
|
1624
|
+
handleModelUpdate(e: string, name: string): void;
|
|
1625
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1626
|
+
item: {
|
|
1627
|
+
type: ObjectConstructor;
|
|
1628
|
+
};
|
|
1629
|
+
data: ObjectConstructor;
|
|
1630
|
+
status: NumberConstructor;
|
|
1631
|
+
}>> & Readonly<{}>, {}, {}, {
|
|
1632
|
+
FileUpload: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1633
|
+
value: {
|
|
1634
|
+
required: true;
|
|
1635
|
+
};
|
|
1636
|
+
uploadUrl: {
|
|
1637
|
+
type: StringConstructor;
|
|
1638
|
+
required: true;
|
|
1639
|
+
};
|
|
1640
|
+
}>, {}, {
|
|
1641
|
+
_v: unknown;
|
|
1642
|
+
}, {}, {
|
|
1643
|
+
downloadFile(): void;
|
|
1644
|
+
showFile(file: any): void;
|
|
1645
|
+
onSuccess(response: any, file: any): void;
|
|
1646
|
+
fireData(): void;
|
|
1647
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1648
|
+
value: {
|
|
1649
|
+
required: true;
|
|
1650
|
+
};
|
|
1651
|
+
uploadUrl: {
|
|
1652
|
+
type: StringConstructor;
|
|
1653
|
+
required: true;
|
|
1654
|
+
};
|
|
1655
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1656
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1657
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1658
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1659
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1361
1660
|
FormInfo: {
|
|
1362
1661
|
components: {
|
|
1363
1662
|
ConfigTable: import('vue').DefineComponent<{}, {}, any>;
|
|
@@ -1731,5 +2030,4 @@ export declare const ConfigWdiget: {
|
|
|
1731
2030
|
};
|
|
1732
2031
|
};
|
|
1733
2032
|
};
|
|
1734
|
-
export { default as ConfigWdigetFormMgr } from './components/configurable-widget/form/list.vue';
|
|
1735
2033
|
export { getQueryParam } from './utils/utils';
|
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
interface ArticleEntity {
|
|
2
|
-
id: number;
|
|
3
|
-
name: string;
|
|
4
|
-
intro: string;
|
|
5
|
-
content: string;
|
|
6
|
-
stat: number;
|
|
7
|
-
createDate: string;
|
|
8
|
-
updateDate: string;
|
|
9
|
-
}
|
|
10
1
|
declare const _default: import('vue').DefineComponent<{}, {
|
|
11
2
|
htmlEditor: import('vue').Ref<any, any>;
|
|
12
3
|
formCustom: import('vue').Ref<any, any>;
|
package/dist/ui.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.aj-form-html-editor ul.toolbar{border:1px solid #C5C5C5;border-radius:4px 4px 0 0;border-bottom:0;background-color:#e8e7e4;width:100%;min-height:30px;margin:0;box-sizing:border-box;padding:3px 4px}.aj-form-html-editor ul.toolbar>li{list-style:none;float:left;cursor:pointer}.aj-form-html-editor ul.toolbar>li>i{border:1px solid transparent;min-width:25px;height:20px;line-height:20px;text-align:center;display:block}.aj-form-html-editor ul.toolbar>li>i.text-icon{font-family:Times New Roman;font-weight:700;font-style:normal}.aj-form-html-editor ul.toolbar>li>i.fontAwesome{padding-top:2px;font: 18px/1 FontAwesome}.aj-form-html-editor ul.toolbar>li>i:hover{border-right-color:#aaa;border-bottom-color:#aaa;border-top-color:#fff;border-left-color:#fff}.aj-form-html-editor ul.toolbar>li>i:active{border-right-color:#f3f8fc;border-bottom-color:#f3f8fc;border-top-color:#ccc;border-left-color:#ccc}.aj-form-html-editor ul.toolbar>li ul li{padding:3px;cursor:pointer}.aj-form-html-editor ul.toolbar>li ul li:hover{background-color:#d3d3d3}.aj-form-html-editor ul.toolbar>li .cleanHTML{background-size:16px 16px}.aj-form-html-editor ul.toolbar>li .noBg{background-image:none}.aj-form-html-editor .editorBody iframe,.aj-form-html-editor .editorBody textarea{border:1px solid #C5C5C5;border-radius:0 0 4px 4px;border-top-width:0;box-sizing:border-box;background-color:#fff;min-height:300px;width:100%}.aj-form-html-editor .editorBody iframe.hide{display:none}.aj-form-html-editor .editorBody textarea{resize:none;display:none}.aj-form-html-editor .editorBody textarea.show{display:block}.aj-form-html-editor .colorPicker{width:210px;border:1px solid #D3D3D3;position:absolute}.aj-form-html-editor .colorPicker table{border-collapse:collapse}.aj-form-html-editor .colorPicker .colorhead{height:23px;line-height:23px;font-weight:700;width:100%}.aj-form-html-editor .colorPicker .colortitle{margin-left:6px;font-size:12px}.aj-form-html-editor .colorPicker .colorpanel td{border:1px solid #000;height:10px;width:10px;overflow:hidden;font-size:1px;cursor:pointer}.aj-form-html-editor .fontfamilyChoser a,.aj-form-html-editor .fontsizeChoser a{display:block;padding:2px;color:#000;line-height:120%;text-decoration:none}.aj-form-html-editor .fontfamilyChoser a:hover,.aj-form-html-editor .fontsizeChoser a:hover{background:#e5e5e5}.aj-form-html-editor .dorpdown{position:relative}.aj-form-html-editor .dorpdown:hover .fontfamilyChoser,.aj-form-html-editor .dorpdown .fontfamilyChoser:hover,.aj-form-html-editor .dorpdown:hover .fontsizeChoser,.aj-form-html-editor .dorpdown .fontsizeChoser:hover,.aj-form-html-editor .dorpdown:hover .colorPicker,.aj-form-html-editor .dorpdown .colorPicker:hover{display:block}.aj-form-html-editor .dorpdown>div{display:none;position:absolute;top:22px;left:0;background-color:#f5f5f5;border:1px solid lightgray;border-top:0;padding:5px;width:230px}.aj-form-html-editor .dorpdown .fontsizeChoser{top:inherit;right:0}.mask[data-v-2149b790]{position:fixed;top:0;left:0;width:100%;height:100%;z-index:9999;-webkit-backdrop-filter:blur(2px) opacity(.7);backdrop-filter:blur(2px) opacity(.7);background:#000000b3}.login[data-v-2149b790]{width:400px;margin:10% auto 0;background-color:#fff;padding:3%;border-radius:5px;box-shadow:2px 4px 5px #0006}.login h1[data-v-2149b790]{font-size:20px;letter-spacing:2px;margin-bottom:20px}.login .auto-login[data-v-2149b790]{margin-bottom:14px;text-align:left}.login .auto-login span[data-v-2149b790]{color:red}.login a[data-v-2149b790]{float:right}.html-content img{max-width:60%}.btns[data-v-6ef96497]{text-align:center;padding:20px 0}.btns Button[data-v-6ef96497]{width:130px;letter-spacing:3px;margin-right:30px}.toolbar[data-v-ed548002]{margin-bottom:20px;overflow:hidden;float:right}.toolbar .ivu-ml[data-v-ed548002]{float:right;padding-top:10px}.ivu-mt.ivu-text-right[data-v-ed548002]{text-align:right;margin-top:20px}.common-search-panel[data-v-ed548002]{width:380px;float:left}.common-search-panel .ivu-input-type-text[data-v-ed548002]{width:200px;margin:0 10px 16px 0}Button[data-v-80f72d55]{margin-right:10px}h1[data-v-f55070e0]{margin:0% 1%}Form[data-v-f55070e0]{max-width:1500px;margin:3% 0%}.toolbar[data-v-99c09796]{margin-bottom:20px;overflow:hidden}.toolbar .ivu-ml[data-v-99c09796]{float:right;padding-top:10px}.ivu-mt.ivu-text-right[data-v-99c09796]{text-align:right;margin-top:20px}.common-search-panel .ivu-input-type-text[data-v-99c09796]{width:280px;margin:0 10px 16px 0}.searchFieldInput[data-v-f55d5850]{width:240px;margin:10px 10px 0 0}.more-attrib.input[data-v-b491a8d2]{width:260px}.more-attrib.input.small[data-v-b491a8d2]{width:100px}ul[data-v-b491a8d2]{width:350px;max-height:400px;border:1px solid lightgray;overflow-x:auto}li[data-v-b491a8d2]{list-style:none}li[data-v-b491a8d2]:hover{color:#000}li:hover .isChecked a[data-v-b491a8d2]{display:inline}li[data-v-b491a8d2]:nth-child(odd){background-color:#f0f0f0}li>div[data-v-b491a8d2]{display:inline-block;width:33%;text-align:center}li>div div[data-v-b491a8d2]{width:20px;display:inline-block}li>div input[data-v-b491a8d2]{border:none;text-align:center;width:90%;background-color:transparent;outline:none}li .isChecked a[data-v-b491a8d2]{color:red}.box[data-v-b491a8d2]{position:relative}.box .plus[data-v-b491a8d2]{color:green;position:absolute;right:0;bottom:0;cursor:pointer}.box.disabled[data-v-b491a8d2]{filter:grayscale(1) opacity(.4)}.notTooLong[data-v-280d1c62]{display:inline-block;color:gray;overflow:hidden;text-overflow:ellipsis;max-width:190px;white-space:nowrap;vertical-align:middle}.box[data-v-280d1c62]{width:400px;height:400px;border:1px solid lightgray;overflow-x:auto}.box li[data-v-280d1c62]{list-style:none;padding:5px 15px}.box li[data-v-280d1c62]:hover{color:#000}.box li span.right[data-v-280d1c62]{float:right}.box li label[data-v-280d1c62]{cursor:pointer}.box.even li[data-v-280d1c62]:nth-child(2n){background-color:#f0f0f0}.box.odd li[data-v-280d1c62]:nth-child(odd){background-color:#f0f0f0}.rightMargin{margin-right:10px}ul.table{width:100%;margin:30px 0 0;overflow-x:auto}ul.table li{list-style:none;white-space:nowrap;border-bottom:1px solid #e8eaec;transition:background-color .2s ease-in-out}ul.table li .checkbox-width{width:50px;text-align:center}ul.table li .field,ul.table li .uiLabel,ul.table li .input-width{width:150px}ul.table li .input-width-small{width:110px}ul.table li .number-width{width:100px}ul.table li .action{width:160px;float:right;height:20px}ul.table li:hover{background-color:#ebf7ff}ul.table header{background-color:#f8f8f9;color:#3b4251;white-space:nowrap;font-weight:700}ul.table section{max-height:500px;overflow-y:auto;overflow-x:hidden}ul.table>header>li>div,ul.table>section>li>div{text-align:center;padding:10px 5px;display:inline-block}.list-factory ul.table header,.list-factory ul.table section{width:100%}.config-table{overflow:hidden;padding:10px}.config-table .main{float:left;width:100%}.config-table .main.small{width:60%}.config-table .live-perview{float:right;width:39%;overflow:auto;min-height:500px;max-height:600px}.config-table .live-perview.hide{display:none}.config-table .below-perview{float:initial;width:100%}fieldset.hr[data-v-133b4ba5]{border:none;width:90%;margin:0 auto;border-top:1px solid lightgray}fieldset.hr legend[data-v-133b4ba5]{text-align:center;padding:10px}fieldset.panel[data-v-133b4ba5]{margin-top:20px;border:1px solid lightgray;padding:10px 20px}fieldset.panel legend[data-v-133b4ba5]{text-align:center;letter-spacing:5px}.list-factory[data-v-133b4ba5]{margin:10px auto}.list-factory .center input[data-v-133b4ba5]{text-align:center}li .render[data-v-133b4ba5]{width:120px}li .align[data-v-133b4ba5]{width:90px}ul.custom[data-v-133b4ba5]{width:380px;max-height:400px;border:1px solid lightgray;overflow-x:auto}ul.custom li[data-v-133b4ba5]{list-style:none;padding:3px}ul.custom li[data-v-133b4ba5]:hover{color:#000}ul.custom li:hover .isChecked a[data-v-133b4ba5]{display:inline}ul.custom li>div[data-v-133b4ba5]{display:inline-block;width:33%;text-align:center}ul.custom li>div input[data-v-133b4ba5]{border:none;text-align:center;width:90%;background-color:transparent;outline:none}ul.custom li[data-v-133b4ba5]:nth-child(odd){background-color:#f0f0f0}ul.custom li .action a[data-v-133b4ba5]{color:red}ul.custom.disabled[data-v-133b4ba5]{filter:grayscale(1) opacity(.4)}.icons[data-v-564b2b1a] .ivu-input-group-prepend{width:40px;cursor:pointer}.modal-icons .icon-list[data-v-564b2b1a]{height:450px;margin-top:16px;overflow-y:scroll}.modal-icons .list-items[data-v-564b2b1a]{cursor:pointer}.modal-icons[data-v-564b2b1a] .ivu-modal-wrap{display:flex;align-items:center;justify-content:center}.modal-icons[data-v-564b2b1a] .ivu-modal-wrap :deep(.ivu-modal){top:0}ul[data-v-3e903f24]{width:350px;max-height:400px;border:1px solid lightgray;overflow-x:auto}li[data-v-3e903f24]{list-style:none}li[data-v-3e903f24]:hover{color:#000}li:hover .isChecked a[data-v-3e903f24]{display:inline}li[data-v-3e903f24]:nth-child(odd){background-color:#f0f0f0}li>div[data-v-3e903f24]{display:inline-block;width:33%;text-align:center}li>div div[data-v-3e903f24]{width:20px;display:inline-block}li>div input[data-v-3e903f24]{border:none;text-align:center;width:90%;background-color:transparent;outline:none}li .isChecked a[data-v-3e903f24]{color:red}.box[data-v-3e903f24]{position:relative}.box .plus[data-v-3e903f24]{color:green;position:absolute;right:0;bottom:0;cursor:pointer}.box.disabled[data-v-3e903f24]{filter:grayscale(1) opacity(.4)}.more-attrib.input[data-v-82b37fd7]{width:260px}.more-attrib.input.small[data-v-82b37fd7]{width:100px}.aj-table{border:1px lightgray solid;border-collapse:collapse;border-spacing:0}.aj-table th{background-color:#efefef;letter-spacing:3px}.aj-table td,.aj-table th{border:1px lightgray solid;line-height:160%;height:120%;padding:6px}.aj-table tr:nth-child(odd){background:#f5f5f5;box-shadow:0 1px #fffc inset}.aj-table tr:hover{background-color:#fbf8e9}.checkbox_holder{width:12px;margin:0 auto}fieldset.hr[data-v-d2273c52]{border:none;width:90%;margin:0 auto;border-top:1px solid lightgray}fieldset.hr legend[data-v-d2273c52]{text-align:center;padding:10px}fieldset.panel[data-v-d2273c52]{margin-top:20px;border:1px solid lightgray;padding:10px 20px}fieldset.panel legend[data-v-d2273c52]{text-align:center;letter-spacing:5px}.form-factory[data-v-d2273c52]{margin:10px auto;width:98%}.form-factory .center input[data-v-d2273c52]{text-align:center}.form-factory fieldset.panel[data-v-d2273c52]{margin:20px 0;border:1px solid lightgray;border-radius:5px;padding:10px 20px}.form-factory fieldset.panel legend[data-v-d2273c52]{margin-left:8px;letter-spacing:5px}.form-factory .hide[data-v-d2273c52]{display:none}.uiType[data-v-d2273c52]{width:180px}.uiLayout[data-v-d2273c52]{width:100px}a.selected[data-v-d2273c52]{font-weight:700}p[data-v-d2273c52]{margin:15px 0}
|
|
1
|
+
.aj-form-html-editor ul.toolbar{border:1px solid #C5C5C5;border-radius:4px 4px 0 0;border-bottom:0;background-color:#e8e7e4;width:100%;min-height:30px;margin:0;box-sizing:border-box;padding:3px 4px}.aj-form-html-editor ul.toolbar>li{list-style:none;float:left;cursor:pointer}.aj-form-html-editor ul.toolbar>li>i{border:1px solid transparent;min-width:25px;height:20px;line-height:20px;text-align:center;display:block}.aj-form-html-editor ul.toolbar>li>i.text-icon{font-family:Times New Roman;font-weight:700;font-style:normal}.aj-form-html-editor ul.toolbar>li>i.fontAwesome{padding-top:2px;font: 18px/1 FontAwesome}.aj-form-html-editor ul.toolbar>li>i:hover{border-right-color:#aaa;border-bottom-color:#aaa;border-top-color:#fff;border-left-color:#fff}.aj-form-html-editor ul.toolbar>li>i:active{border-right-color:#f3f8fc;border-bottom-color:#f3f8fc;border-top-color:#ccc;border-left-color:#ccc}.aj-form-html-editor ul.toolbar>li ul li{padding:3px;cursor:pointer}.aj-form-html-editor ul.toolbar>li ul li:hover{background-color:#d3d3d3}.aj-form-html-editor ul.toolbar>li .cleanHTML{background-size:16px 16px}.aj-form-html-editor ul.toolbar>li .noBg{background-image:none}.aj-form-html-editor .editorBody iframe,.aj-form-html-editor .editorBody textarea{border:1px solid #C5C5C5;border-radius:0 0 4px 4px;border-top-width:0;box-sizing:border-box;background-color:#fff;min-height:300px;width:100%}.aj-form-html-editor .editorBody iframe.hide{display:none}.aj-form-html-editor .editorBody textarea{resize:none;display:none}.aj-form-html-editor .editorBody textarea.show{display:block}.aj-form-html-editor .colorPicker{width:210px;border:1px solid #D3D3D3;position:absolute}.aj-form-html-editor .colorPicker table{border-collapse:collapse}.aj-form-html-editor .colorPicker .colorhead{height:23px;line-height:23px;font-weight:700;width:100%}.aj-form-html-editor .colorPicker .colortitle{margin-left:6px;font-size:12px}.aj-form-html-editor .colorPicker .colorpanel td{border:1px solid #000;height:10px;width:10px;overflow:hidden;font-size:1px;cursor:pointer}.aj-form-html-editor .fontfamilyChoser a,.aj-form-html-editor .fontsizeChoser a{display:block;padding:2px;color:#000;line-height:120%;text-decoration:none}.aj-form-html-editor .fontfamilyChoser a:hover,.aj-form-html-editor .fontsizeChoser a:hover{background:#e5e5e5}.aj-form-html-editor .dorpdown{position:relative}.aj-form-html-editor .dorpdown:hover .fontfamilyChoser,.aj-form-html-editor .dorpdown .fontfamilyChoser:hover,.aj-form-html-editor .dorpdown:hover .fontsizeChoser,.aj-form-html-editor .dorpdown .fontsizeChoser:hover,.aj-form-html-editor .dorpdown:hover .colorPicker,.aj-form-html-editor .dorpdown .colorPicker:hover{display:block}.aj-form-html-editor .dorpdown>div{display:none;position:absolute;top:22px;left:0;background-color:#f5f5f5;border:1px solid lightgray;border-top:0;padding:5px;width:230px}.aj-form-html-editor .dorpdown .fontsizeChoser{top:inherit;right:0}.mask[data-v-2149b790]{position:fixed;top:0;left:0;width:100%;height:100%;z-index:9999;-webkit-backdrop-filter:blur(2px) opacity(.7);backdrop-filter:blur(2px) opacity(.7);background:#000000b3}.login[data-v-2149b790]{width:400px;margin:10% auto 0;background-color:#fff;padding:3%;border-radius:5px;box-shadow:2px 4px 5px #0006}.login h1[data-v-2149b790]{font-size:20px;letter-spacing:2px;margin-bottom:20px}.login .auto-login[data-v-2149b790]{margin-bottom:14px;text-align:left}.login .auto-login span[data-v-2149b790]{color:red}.login a[data-v-2149b790]{float:right}.html-content img{max-width:60%}.btns[data-v-6ef96497]{text-align:center;padding:20px 0}.btns Button[data-v-6ef96497]{width:130px;letter-spacing:3px;margin-right:30px}.toolbar[data-v-ed548002]{margin-bottom:20px;overflow:hidden;float:right}.toolbar .ivu-ml[data-v-ed548002]{float:right;padding-top:10px}.ivu-mt.ivu-text-right[data-v-ed548002]{text-align:right;margin-top:20px}.common-search-panel[data-v-ed548002]{width:380px;float:left}.common-search-panel .ivu-input-type-text[data-v-ed548002]{width:200px;margin:0 10px 16px 0}Button[data-v-80f72d55]{margin-right:10px}h1[data-v-d890a0b4]{margin:0% 1%}Form[data-v-d890a0b4]{max-width:1500px;margin:3% 0%}.toolbar[data-v-99c09796]{margin-bottom:20px;overflow:hidden}.toolbar .ivu-ml[data-v-99c09796]{float:right;padding-top:10px}.ivu-mt.ivu-text-right[data-v-99c09796]{text-align:right;margin-top:20px}.common-search-panel .ivu-input-type-text[data-v-99c09796]{width:280px;margin:0 10px 16px 0}.searchFieldInput[data-v-f55d5850]{width:240px;margin:10px 10px 0 0}.more-attrib.input[data-v-b491a8d2]{width:260px}.more-attrib.input.small[data-v-b491a8d2]{width:100px}ul[data-v-b491a8d2]{width:350px;max-height:400px;border:1px solid lightgray;overflow-x:auto}li[data-v-b491a8d2]{list-style:none}li[data-v-b491a8d2]:hover{color:#000}li:hover .isChecked a[data-v-b491a8d2]{display:inline}li[data-v-b491a8d2]:nth-child(odd){background-color:#f0f0f0}li>div[data-v-b491a8d2]{display:inline-block;width:33%;text-align:center}li>div div[data-v-b491a8d2]{width:20px;display:inline-block}li>div input[data-v-b491a8d2]{border:none;text-align:center;width:90%;background-color:transparent;outline:none}li .isChecked a[data-v-b491a8d2]{color:red}.box[data-v-b491a8d2]{position:relative}.box .plus[data-v-b491a8d2]{color:green;position:absolute;right:0;bottom:0;cursor:pointer}.box.disabled[data-v-b491a8d2]{filter:grayscale(1) opacity(.4)}.notTooLong[data-v-280d1c62]{display:inline-block;color:gray;overflow:hidden;text-overflow:ellipsis;max-width:190px;white-space:nowrap;vertical-align:middle}.box[data-v-280d1c62]{width:400px;height:400px;border:1px solid lightgray;overflow-x:auto}.box li[data-v-280d1c62]{list-style:none;padding:5px 15px}.box li[data-v-280d1c62]:hover{color:#000}.box li span.right[data-v-280d1c62]{float:right}.box li label[data-v-280d1c62]{cursor:pointer}.box.even li[data-v-280d1c62]:nth-child(2n){background-color:#f0f0f0}.box.odd li[data-v-280d1c62]:nth-child(odd){background-color:#f0f0f0}.rightMargin{margin-right:10px}ul.table{width:100%;margin:30px 0 0;overflow-x:auto}ul.table li{list-style:none;white-space:nowrap;border-bottom:1px solid #e8eaec;transition:background-color .2s ease-in-out}ul.table li .checkbox-width{width:50px;text-align:center}ul.table li .field,ul.table li .uiLabel,ul.table li .input-width{width:150px}ul.table li .input-width-small{width:110px}ul.table li .number-width{width:100px}ul.table li .action{width:160px;float:right;height:20px}ul.table li:hover{background-color:#ebf7ff}ul.table header{background-color:#f8f8f9;color:#3b4251;white-space:nowrap;font-weight:700}ul.table section{max-height:500px;overflow-y:auto;overflow-x:hidden}ul.table>header>li>div,ul.table>section>li>div{text-align:center;padding:10px 5px;display:inline-block}.list-factory ul.table header,.list-factory ul.table section{width:100%}.config-table{overflow:hidden;padding:10px}.config-table .main{float:left;width:100%}.config-table .main.small{width:60%}.config-table .live-perview{float:right;width:39%;overflow:auto;min-height:500px;max-height:600px}.config-table .live-perview.hide{display:none}.config-table .below-perview{float:initial;width:100%}fieldset.hr[data-v-133b4ba5]{border:none;width:90%;margin:0 auto;border-top:1px solid lightgray}fieldset.hr legend[data-v-133b4ba5]{text-align:center;padding:10px}fieldset.panel[data-v-133b4ba5]{margin-top:20px;border:1px solid lightgray;padding:10px 20px}fieldset.panel legend[data-v-133b4ba5]{text-align:center;letter-spacing:5px}.list-factory[data-v-133b4ba5]{margin:10px auto}.list-factory .center input[data-v-133b4ba5]{text-align:center}li .render[data-v-133b4ba5]{width:120px}li .align[data-v-133b4ba5]{width:90px}ul.custom[data-v-133b4ba5]{width:380px;max-height:400px;border:1px solid lightgray;overflow-x:auto}ul.custom li[data-v-133b4ba5]{list-style:none;padding:3px}ul.custom li[data-v-133b4ba5]:hover{color:#000}ul.custom li:hover .isChecked a[data-v-133b4ba5]{display:inline}ul.custom li>div[data-v-133b4ba5]{display:inline-block;width:33%;text-align:center}ul.custom li>div input[data-v-133b4ba5]{border:none;text-align:center;width:90%;background-color:transparent;outline:none}ul.custom li[data-v-133b4ba5]:nth-child(odd){background-color:#f0f0f0}ul.custom li .action a[data-v-133b4ba5]{color:red}ul.custom.disabled[data-v-133b4ba5]{filter:grayscale(1) opacity(.4)}.icons[data-v-564b2b1a] .ivu-input-group-prepend{width:40px;cursor:pointer}.modal-icons .icon-list[data-v-564b2b1a]{height:450px;margin-top:16px;overflow-y:scroll}.modal-icons .list-items[data-v-564b2b1a]{cursor:pointer}.modal-icons[data-v-564b2b1a] .ivu-modal-wrap{display:flex;align-items:center;justify-content:center}.modal-icons[data-v-564b2b1a] .ivu-modal-wrap :deep(.ivu-modal){top:0}ul[data-v-3e903f24]{width:350px;max-height:400px;border:1px solid lightgray;overflow-x:auto}li[data-v-3e903f24]{list-style:none}li[data-v-3e903f24]:hover{color:#000}li:hover .isChecked a[data-v-3e903f24]{display:inline}li[data-v-3e903f24]:nth-child(odd){background-color:#f0f0f0}li>div[data-v-3e903f24]{display:inline-block;width:33%;text-align:center}li>div div[data-v-3e903f24]{width:20px;display:inline-block}li>div input[data-v-3e903f24]{border:none;text-align:center;width:90%;background-color:transparent;outline:none}li .isChecked a[data-v-3e903f24]{color:red}.box[data-v-3e903f24]{position:relative}.box .plus[data-v-3e903f24]{color:green;position:absolute;right:0;bottom:0;cursor:pointer}.box.disabled[data-v-3e903f24]{filter:grayscale(1) opacity(.4)}.more-attrib.input[data-v-82b37fd7]{width:260px}.more-attrib.input.small[data-v-82b37fd7]{width:100px}.aj-table{border:1px lightgray solid;border-collapse:collapse;border-spacing:0}.aj-table th{background-color:#efefef;letter-spacing:3px}.aj-table td,.aj-table th{border:1px lightgray solid;line-height:160%;height:120%;padding:6px}.aj-table tr:nth-child(odd){background:#f5f5f5;box-shadow:0 1px #fffc inset}.aj-table tr:hover{background-color:#fbf8e9}.checkbox_holder{width:12px;margin:0 auto}fieldset.hr[data-v-d2273c52]{border:none;width:90%;margin:0 auto;border-top:1px solid lightgray}fieldset.hr legend[data-v-d2273c52]{text-align:center;padding:10px}fieldset.panel[data-v-d2273c52]{margin-top:20px;border:1px solid lightgray;padding:10px 20px}fieldset.panel legend[data-v-d2273c52]{text-align:center;letter-spacing:5px}.form-factory[data-v-d2273c52]{margin:10px auto;width:98%}.form-factory .center input[data-v-d2273c52]{text-align:center}.form-factory fieldset.panel[data-v-d2273c52]{margin:20px 0;border:1px solid lightgray;border-radius:5px;padding:10px 20px}.form-factory fieldset.panel legend[data-v-d2273c52]{margin-left:8px;letter-spacing:5px}.form-factory .hide[data-v-d2273c52]{display:none}.uiType[data-v-d2273c52]{width:180px}.uiLayout[data-v-d2273c52]{width:100px}a.selected[data-v-d2273c52]{font-weight:700}p[data-v-d2273c52]{margin:15px 0}
|