uepay-mesh 4.0.2 → 4.0.5
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/mesh/cell/view/picker/timestampDatePickerView.js +2 -2
- package/mesh/cell/view/select/standardSelectView.js +2 -2
- package/mesh/config/authOptions.js +96 -0
- package/mesh/config/serverEnums.js +48 -43
- package/mesh/data/reduxSearch.js +10 -2
- package/mesh/data/reduxTableLabel.js +159 -0
- package/mesh/excel/optionsAbleExcel.js +0 -7
- package/mesh/excel/processor.js +11 -8
- package/mesh/form/standardAddForm.js +3 -1
- package/mesh/form/standardEditForm.js +5 -3
- package/mesh/form/standardForm.js +2 -2
- package/mesh/form/support/modifyFormProcessor.js +2 -2
- package/mesh/form/tabs/relateTabs.js +2 -2
- package/mesh/table/formQueryAbleTable.js +2 -2
- package/mesh/table/optionsFormQueryAbleTable.js +2 -2
- package/mesh/table/queryAbleTable.js +2 -2
- package/mesh/table/selectQueryAbleTable.js +2 -2
- package/mesh/table/standardTable/searchExtend.js +3 -2
- package/mesh/table/standardTable/{tableOptons/labelShowOptions.js → tableLabelExtend.js} +31 -49
- package/mesh/table/standardTable/tableOptions.js +16 -32
- package/mesh/table/standardTable/thColumn/rowEditAbleCell.js +3 -3
- package/mesh/table/standardTable/thColumn.js +66 -0
- package/mesh/table/standardTable.js +52 -13
- package/mesh/util/net.js +2 -2
- package/package.json +3 -3
- package/style.css +41 -1
package/style.css
CHANGED
|
@@ -4,14 +4,38 @@
|
|
|
4
4
|
|
|
5
5
|
/*table*/
|
|
6
6
|
/*standard-table*/
|
|
7
|
+
.uepay-standard-table-contain{
|
|
8
|
+
}
|
|
9
|
+
|
|
7
10
|
.uepay-standard-table {
|
|
8
|
-
|
|
11
|
+
position: relative;
|
|
12
|
+
display: flex;
|
|
13
|
+
flex-direction: column;
|
|
14
|
+
height: 100%;
|
|
9
15
|
}
|
|
10
16
|
|
|
11
17
|
.uepay-standard-table .th-title-search{
|
|
12
18
|
color: #40a9ff;
|
|
13
19
|
}
|
|
14
20
|
|
|
21
|
+
/*獨立彈窗*/
|
|
22
|
+
.uepay-standard-table-label{
|
|
23
|
+
color: #000000;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.uepay-standard-table-label .ach{
|
|
27
|
+
display: block;
|
|
28
|
+
padding: .2rem .2rem;
|
|
29
|
+
color: #40a9ff;
|
|
30
|
+
text-decoration: underline;
|
|
31
|
+
border-radius: .1rem;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.uepay-standard-table-label .ach:hover{
|
|
35
|
+
background-color: #40a9ff;
|
|
36
|
+
color: #ffffff;
|
|
37
|
+
}
|
|
38
|
+
|
|
15
39
|
.uepay-standard-table .uepay-row{
|
|
16
40
|
cursor: pointer;
|
|
17
41
|
}
|
|
@@ -22,11 +46,27 @@
|
|
|
22
46
|
justify-content: space-between;
|
|
23
47
|
}
|
|
24
48
|
|
|
49
|
+
.uepay-standard-table .table{
|
|
50
|
+
flex-grow: 1;
|
|
51
|
+
flex-shrink: 1;
|
|
52
|
+
overflow-y: auto;
|
|
53
|
+
}
|
|
54
|
+
|
|
25
55
|
.uepay-standard-table .search-ext {
|
|
56
|
+
display: flex;
|
|
26
57
|
padding: 0;
|
|
27
58
|
width: 45%;
|
|
28
59
|
}
|
|
29
60
|
|
|
61
|
+
.uepay-standard-table .search-ext .column{
|
|
62
|
+
padding: 0 1rem;
|
|
63
|
+
line-height: 1.8rem;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.uepay-standard-table .search-ext .column .contain{
|
|
67
|
+
border-bottom: 1px solid #f0f0f0;
|
|
68
|
+
}
|
|
69
|
+
|
|
30
70
|
.uepay-standard-table .search-ext .search-ext-options {
|
|
31
71
|
margin-right: 1rem;
|
|
32
72
|
}
|