super-page-designer 2.0.92 → 2.0.96
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/es/components/design/utils/assemblys-config.js +2494 -2034
- package/dist/es/components/design/utils/interfaces/page-design-types.d.ts +1 -0
- package/dist/es/components/design/views/assemblys/data/component/column-config.vue.js +0 -1
- package/dist/es/components/design/views/assemblys/data/component/configuration-value.vue.js +30 -19
- package/dist/es/components/design/views/assemblys/data/component/dynamic-column.vue.js +14 -3
- package/dist/es/components/design/views/assemblys/data/table/table-attr-advanced.vue.js +2 -3
- package/dist/es/components/design/views/assemblys/data/table/tablecolumn-attr-base.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/data/table/tablecolumn-attr-base.vue2.js +69 -534
- package/dist/es/components/design/views/assemblys/data/table/tablecolumn-dynamic-column.vue.js +731 -0
- package/dist/es/components/design/views/assemblys/data/table/tablecolumn-dynamic-column.vue2.js +4 -0
- package/dist/es/components/design/views/assemblys/form/file-upload/fileupload-design.vue2.js +1 -0
- package/dist/es/components/design/views/assemblys/object-design.vue.js +13 -2
- package/dist/es/components/design/views/assemblys/page/page-attr-advanced.vue.js +2 -2
- package/dist/es/components/design/views/assemblys/workflow/workflow-button/workflowbutton-attr-base.vue.js +7 -34
- package/dist/es/components/design/views/assemblys/workflow/workflow-node/workflownode-attr-base.vue.js +85 -0
- package/dist/es/components/design/views/assemblys/workflow/workflow-node/workflownode-attr-base.vue2.js +4 -0
- package/dist/es/components/design/views/assemblys/workflow/workflow-node/workflownode-attr-event.vue.js +30 -0
- package/dist/es/components/design/views/assemblys/workflow/workflow-node/workflownode-attr-event.vue2.js +4 -0
- package/dist/es/components/design/views/assemblys/workflow/workflow-node/workflownode-attr-style.vue.js +51 -0
- package/dist/es/components/design/views/assemblys/workflow/workflow-node/workflownode-attr-style.vue2.js +4 -0
- package/dist/es/components/design/views/assemblys/workflow/workflow-node/workflownode-attr.vue.js +5 -0
- package/dist/es/components/design/views/assemblys/workflow/workflow-node/workflownode-attr.vue2.js +42 -0
- package/dist/es/components/design/views/assemblys/workflow/workflow-node/workflownode-attr.vue3.js +1 -0
- package/dist/es/components/design/views/assemblys/workflow/workflow-node/workflownode-design.vue.js +4 -0
- package/dist/es/components/design/views/assemblys/workflow/workflow-node/workflownode-design.vue2.js +58 -0
- package/dist/es/components/design/views/design/view/components/quick-add-dialog.vue.js +1 -1
- package/dist/es/components/design/views/design/view/components/quick-add-fields.vue.js +53 -10
- package/dist/es/style.css +726 -107
- package/package.json +5 -5
package/dist/es/style.css
CHANGED
|
@@ -1913,13 +1913,624 @@ fieldset.amb-design-item-selected {
|
|
|
1913
1913
|
padding: 10px;
|
|
1914
1914
|
font-weight: bold;
|
|
1915
1915
|
}
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1916
|
+
.el-tree-node__content {
|
|
1917
|
+
height: 34px !important;
|
|
1918
|
+
}
|
|
1919
|
+
.amb-page-container-header {
|
|
1920
|
+
height: 60px;
|
|
1921
|
+
line-height: 60px;
|
|
1922
|
+
background-color: #ffffff;
|
|
1923
|
+
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
|
|
1924
|
+
text-align: center;
|
|
1925
|
+
}
|
|
1926
|
+
.amb-page-container-header-page {
|
|
1927
|
+
position: fixed;
|
|
1928
|
+
width: 450px;
|
|
1929
|
+
}
|
|
1930
|
+
.amb-page-container-header-page-item {
|
|
1931
|
+
font-size: 16px;
|
|
1932
|
+
font-weight: 600;
|
|
1933
|
+
}
|
|
1934
|
+
.amb-page-container-header-type {
|
|
1935
|
+
display: inline;
|
|
1936
|
+
border-radius: 100px 100px 100px 100px;
|
|
1937
|
+
background: #ffffff;
|
|
1938
|
+
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
|
|
1939
|
+
padding: 8px 4px 12px;
|
|
1940
|
+
}
|
|
1941
|
+
.amb-page-container-header-type > label {
|
|
1942
|
+
padding: 4px 14px 6px;
|
|
1943
|
+
cursor: pointer;
|
|
1944
|
+
font-size: 14px;
|
|
1945
|
+
}
|
|
1946
|
+
.amb-page-container-header-type > label.selected {
|
|
1947
|
+
border-radius: 100px 100px 100px 100px;
|
|
1948
|
+
background: #5893ef;
|
|
1949
|
+
color: #ffffff;
|
|
1950
|
+
}
|
|
1951
|
+
.amb-page-container-main {
|
|
1952
|
+
position: relative;
|
|
1953
|
+
overflow: auto;
|
|
1954
|
+
}
|
|
1955
|
+
.amb-container-left {
|
|
1956
|
+
padding-right: 20px;
|
|
1957
|
+
overflow-y: auto;
|
|
1958
|
+
}
|
|
1959
|
+
.amb-container-main {
|
|
1960
|
+
padding: 0px !important;
|
|
1961
|
+
user-select: none;
|
|
1962
|
+
}
|
|
1963
|
+
.amb-container-main::-webkit-scrollbar {
|
|
1964
|
+
width: 1px;
|
|
1965
|
+
}
|
|
1966
|
+
.amb-container-attr {
|
|
1967
|
+
width: 300px;
|
|
1968
|
+
padding-left: 20px;
|
|
1969
|
+
}
|
|
1970
|
+
.amb-design-attr-base-content {
|
|
1971
|
+
background: #ffffff;
|
|
1972
|
+
box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.05);
|
|
1973
|
+
height: 100%;
|
|
1974
|
+
padding-left: 10px;
|
|
1975
|
+
padding-right: 10px;
|
|
1976
|
+
overflow: auto;
|
|
1977
|
+
}
|
|
1978
|
+
.amb-assembly-header-search {
|
|
1979
|
+
position: absolute;
|
|
1980
|
+
width: 260px;
|
|
1981
|
+
top: 75px;
|
|
1982
|
+
background-color: #ffffff;
|
|
1983
|
+
z-index: 15;
|
|
1984
|
+
padding-bottom: 10px;
|
|
1985
|
+
}
|
|
1986
|
+
.amb-assembly-search-select {
|
|
1987
|
+
width: 90px;
|
|
1988
|
+
height: 36px;
|
|
1989
|
+
}
|
|
1990
|
+
.amb-assembly-collapse-header > button {
|
|
1991
|
+
background: #f5f6f8;
|
|
1992
|
+
padding-left: 10px;
|
|
1993
|
+
font-size: 14px;
|
|
1994
|
+
height: 36px;
|
|
1995
|
+
}
|
|
1996
|
+
.amb-assembly-search-select > .el-select__wrapper {
|
|
1997
|
+
height: 36px;
|
|
1998
|
+
}
|
|
1999
|
+
.amb-design-content {
|
|
2000
|
+
overflow: auto;
|
|
2001
|
+
display: block;
|
|
2002
|
+
flex: none;
|
|
2003
|
+
position: relative;
|
|
2004
|
+
width: 100%;
|
|
2005
|
+
}
|
|
2006
|
+
.amb-design-content::-webkit-scrollbar {
|
|
2007
|
+
width: 1px;
|
|
2008
|
+
}
|
|
2009
|
+
.amb-design-content-center-header {
|
|
2010
|
+
position: sticky;
|
|
2011
|
+
z-index: 2;
|
|
2012
|
+
top: 0;
|
|
2013
|
+
height: 54px;
|
|
2014
|
+
background-color: #f7f8fa;
|
|
2015
|
+
padding-top: 14px;
|
|
2016
|
+
}
|
|
2017
|
+
.amb-design-tool {
|
|
2018
|
+
position: relative;
|
|
2019
|
+
z-index: 1;
|
|
2020
|
+
width: 100%;
|
|
2021
|
+
background: #ffffff;
|
|
2022
|
+
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
|
|
2023
|
+
border-radius: 6px 6px 6px 6px;
|
|
2024
|
+
vertical-align: middle;
|
|
2025
|
+
padding: 6px;
|
|
2026
|
+
display: flex;
|
|
2027
|
+
justify-content: space-between;
|
|
2028
|
+
}
|
|
2029
|
+
.amb-design-tool-item {
|
|
2030
|
+
display: flex;
|
|
2031
|
+
align-items: center;
|
|
2032
|
+
}
|
|
2033
|
+
.amb-page-type {
|
|
2034
|
+
/* padding-top: 11px;
|
|
2035
|
+
padding-left: 6px;
|
|
2036
|
+
padding-right: 6px; */
|
|
2037
|
+
margin-left: 10px;
|
|
2038
|
+
border-radius: 4px 4px 4px 4px;
|
|
2039
|
+
cursor: pointer;
|
|
2040
|
+
line-height: normal;
|
|
2041
|
+
height: auto;
|
|
2042
|
+
padding: 6px 6px 4px 6px;
|
|
2043
|
+
position: relative;
|
|
2044
|
+
}
|
|
2045
|
+
.amb-page-type:hover {
|
|
2046
|
+
background: rgba(11, 45, 101, 0.105);
|
|
2047
|
+
}
|
|
2048
|
+
.amb-page-type.selected {
|
|
2049
|
+
background: #5893ef;
|
|
2050
|
+
color: #ffffff;
|
|
2051
|
+
}
|
|
2052
|
+
.amb-page-type > label {
|
|
2053
|
+
font-size: 14px;
|
|
2054
|
+
padding-left: 6px;
|
|
2055
|
+
padding-right: 6px;
|
|
2056
|
+
padding-bottom: 15px;
|
|
2057
|
+
top: -5px;
|
|
2058
|
+
position: relative;
|
|
2059
|
+
cursor: pointer;
|
|
2060
|
+
}
|
|
2061
|
+
.amb-design-board {
|
|
2062
|
+
margin: 0 auto;
|
|
2063
|
+
margin-top: 12px;
|
|
2064
|
+
overflow-y: hidden;
|
|
2065
|
+
overflow-x: auto;
|
|
2066
|
+
background: #ffffff;
|
|
2067
|
+
border-radius: 2px 2px 2px 2px;
|
|
2068
|
+
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
|
|
2069
|
+
padding-bottom: 100px;
|
|
2070
|
+
}
|
|
2071
|
+
.amb-item-ghost {
|
|
2072
|
+
background-color: #5893ef;
|
|
2073
|
+
height: 5px;
|
|
2074
|
+
line-height: 5px;
|
|
2075
|
+
overflow: hidden;
|
|
2076
|
+
}
|
|
2077
|
+
/* 将你的自定义样式添加到这里 */
|
|
2078
|
+
.draggable-placeholder {
|
|
2079
|
+
background-color: red;
|
|
2080
|
+
border: 1px dashed #ddd;
|
|
2081
|
+
margin: 5px;
|
|
2082
|
+
padding: 10px;
|
|
2083
|
+
}
|
|
2084
|
+
.amb-design-assembly-content {
|
|
2085
|
+
background: #ffffff;
|
|
2086
|
+
box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.05);
|
|
2087
|
+
height: 100%;
|
|
2088
|
+
padding-left: 10px;
|
|
2089
|
+
padding-right: 10px;
|
|
2090
|
+
overflow: auto;
|
|
2091
|
+
}
|
|
2092
|
+
/*控制滚动条宽度*/
|
|
2093
|
+
.amb-design-assembly-content::-webkit-scrollbar {
|
|
2094
|
+
width: 1px;
|
|
2095
|
+
}
|
|
2096
|
+
.amb-assembly-header {
|
|
2097
|
+
position: absolute;
|
|
2098
|
+
width: 260px;
|
|
2099
|
+
text-align: center;
|
|
2100
|
+
padding: 18px 0px 10px 0px;
|
|
2101
|
+
padding-bottom: 14px;
|
|
2102
|
+
background-color: #ffffff;
|
|
2103
|
+
z-index: 1;
|
|
2104
|
+
}
|
|
2105
|
+
.amb-assembly-header-type {
|
|
2106
|
+
border-radius: 100px 100px 100px 100px;
|
|
2107
|
+
background: #ffffff;
|
|
2108
|
+
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
|
|
2109
|
+
padding: 10px;
|
|
2110
|
+
padding-bottom: 12px;
|
|
2111
|
+
}
|
|
2112
|
+
.amb-assembly-header-type > label {
|
|
2113
|
+
padding: 4px 14px;
|
|
2114
|
+
cursor: pointer;
|
|
2115
|
+
font-size: 14px;
|
|
2116
|
+
}
|
|
2117
|
+
.amb-assembly-header-type > label.selected {
|
|
2118
|
+
border-radius: 100px 100px 100px 100px;
|
|
2119
|
+
background: #5893ef;
|
|
2120
|
+
color: #ffffff;
|
|
2121
|
+
}
|
|
2122
|
+
.amb-design-assembly-list {
|
|
2123
|
+
padding-top: 80px;
|
|
2124
|
+
}
|
|
2125
|
+
.el-form-item.amb-design-attr-item {
|
|
2126
|
+
margin-bottom: 8px;
|
|
2127
|
+
}
|
|
2128
|
+
.amb-design-attr-item-linefeed-two {
|
|
2129
|
+
margin-bottom: 30px;
|
|
2130
|
+
}
|
|
2131
|
+
.amb-design-attr-item-inline {
|
|
2132
|
+
display: flex;
|
|
2133
|
+
width: 100%;
|
|
2134
|
+
align-items: center;
|
|
2135
|
+
}
|
|
2136
|
+
.amb-design-attr-group-header > button {
|
|
2137
|
+
background: #f5f6f8;
|
|
2138
|
+
padding-left: 10px;
|
|
2139
|
+
font-size: 14px;
|
|
2140
|
+
height: 42px;
|
|
2141
|
+
}
|
|
2142
|
+
.amb-design-attr-content {
|
|
2143
|
+
background: #ffffff;
|
|
2144
|
+
box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.05);
|
|
2145
|
+
height: 100%;
|
|
2146
|
+
padding-left: 10px;
|
|
2147
|
+
padding-right: 10px;
|
|
2148
|
+
overflow: auto;
|
|
2149
|
+
position: relative;
|
|
2150
|
+
}
|
|
2151
|
+
/*控制滚动条宽度*/
|
|
2152
|
+
.amb-design-attr-content::-webkit-scrollbar {
|
|
2153
|
+
width: 1px;
|
|
2154
|
+
}
|
|
2155
|
+
.amb-design-attr-header-search {
|
|
2156
|
+
margin-top: 16px;
|
|
2157
|
+
}
|
|
2158
|
+
.amb-design-attr-header-select {
|
|
2159
|
+
width: 90px;
|
|
2160
|
+
height: 36px;
|
|
2161
|
+
}
|
|
2162
|
+
.amb-design-attr-header {
|
|
2163
|
+
position: sticky;
|
|
2164
|
+
position: -webkit-sticky;
|
|
2165
|
+
top: 0px;
|
|
2166
|
+
z-index: 5;
|
|
2167
|
+
text-align: center;
|
|
2168
|
+
padding: 20px 0px 10px 0px;
|
|
2169
|
+
background-color: #ffffff;
|
|
2170
|
+
}
|
|
2171
|
+
.amb-design-attr-header-type {
|
|
2172
|
+
border-radius: 100px 100px 100px 100px;
|
|
2173
|
+
background: #ffffff;
|
|
2174
|
+
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
|
|
2175
|
+
padding: 10px;
|
|
2176
|
+
padding-bottom: 10px;
|
|
2177
|
+
}
|
|
2178
|
+
.amb-design-attr-header-type > label {
|
|
2179
|
+
padding: 4px 10px;
|
|
2180
|
+
cursor: pointer;
|
|
2181
|
+
font-size: 14px;
|
|
2182
|
+
}
|
|
2183
|
+
.amb-design-attr-header-type > label.selected {
|
|
2184
|
+
border-radius: 100px 100px 100px 100px;
|
|
2185
|
+
background: #5893ef;
|
|
2186
|
+
color: #ffffff;
|
|
2187
|
+
}
|
|
2188
|
+
.amb-assembly-item {
|
|
2189
|
+
background: rgba(88, 147, 239, 0.06);
|
|
2190
|
+
border: 1px dashed rgba(88, 147, 239, 0.06);
|
|
2191
|
+
border-radius: 4px 4px 4px 4px;
|
|
2192
|
+
text-align: center;
|
|
2193
|
+
margin-top: 12px;
|
|
2194
|
+
padding: 10px;
|
|
2195
|
+
font-size: 12px;
|
|
2196
|
+
cursor: pointer;
|
|
2197
|
+
overflow: hidden;
|
|
2198
|
+
text-overflow: ellipsis;
|
|
2199
|
+
white-space: nowrap;
|
|
2200
|
+
user-select: none; /* 防止文字被选中 */
|
|
2201
|
+
-webkit-user-drag: none; /* 防止文字被拖动选中 */
|
|
2202
|
+
}
|
|
2203
|
+
.amb-assembly-item:hover {
|
|
2204
|
+
background: rgba(11, 45, 101, 0.105);
|
|
2205
|
+
border: 1px dashed rgba(11, 45, 101, 0.227);
|
|
2206
|
+
}
|
|
2207
|
+
.amb-assembly-item-drag {
|
|
2208
|
+
opacity: 1 !important;
|
|
2209
|
+
}
|
|
2210
|
+
.amb-design-page-param-row {
|
|
2211
|
+
height: 34px;
|
|
2212
|
+
}
|
|
2213
|
+
.amb-design-attr-group-header > button {
|
|
2214
|
+
background: #f5f6f8;
|
|
2215
|
+
padding-left: 10px;
|
|
2216
|
+
font-size: 14px;
|
|
2217
|
+
height: 42px;
|
|
2218
|
+
}
|
|
2219
|
+
.amb-design-page-param-row {
|
|
2220
|
+
height: 34px;
|
|
2221
|
+
}
|
|
2222
|
+
.el-table__cell > .cell {
|
|
2223
|
+
white-space: nowrap !important;
|
|
2224
|
+
}
|
|
2225
|
+
.amb-widget-container-iframe {
|
|
2226
|
+
height: 100%;
|
|
2227
|
+
width: 100%;
|
|
2228
|
+
border: 0px;
|
|
2229
|
+
}
|
|
2230
|
+
.amb-widget-container-iframe-mask {
|
|
2231
|
+
position: absolute;
|
|
2232
|
+
border: 1px dashed #c0c4cc;
|
|
2233
|
+
color: #c0c4cc;
|
|
2234
|
+
top: 0px;
|
|
2235
|
+
left: -2px;
|
|
2236
|
+
width: 100%;
|
|
2237
|
+
height: 100%;
|
|
2238
|
+
}
|
|
2239
|
+
.amb-design-attr-depttree-relevance-ul {
|
|
2240
|
+
padding: 0;
|
|
2241
|
+
}
|
|
2242
|
+
.amb-design-attr-depttree-relevance-li {
|
|
2243
|
+
list-style: none;
|
|
2244
|
+
display: flex;
|
|
2245
|
+
align-items: center;
|
|
2246
|
+
margin-bottom: 15px;
|
|
2247
|
+
}
|
|
2248
|
+
.amb-design-attr-depttree-relevance-tittle {
|
|
2249
|
+
width: 50%;
|
|
2250
|
+
text-align: center;
|
|
2251
|
+
}
|
|
2252
|
+
.amb-design-attr-datepicker-default {
|
|
2253
|
+
display: flex;
|
|
2254
|
+
justify-content: space-between;
|
|
2255
|
+
width: 100%;
|
|
2256
|
+
}
|
|
2257
|
+
.amb-design-attr-datepicker-default-select {
|
|
2258
|
+
width: 120px;
|
|
2259
|
+
margin-right: 5px;
|
|
2260
|
+
}
|
|
2261
|
+
/*占位符组件样式*/
|
|
2262
|
+
.amb-design-attr-datepicker-placeholder-subassembly {
|
|
2263
|
+
background-color: rgba(88, 147, 239, 0.8);
|
|
2264
|
+
color: #ffffff;
|
|
2265
|
+
border-radius: 10px;
|
|
2266
|
+
width: 100%;
|
|
2267
|
+
min-height: 34px;
|
|
2268
|
+
display: flex;
|
|
2269
|
+
align-items: center;
|
|
2270
|
+
justify-content: center;
|
|
2271
|
+
margin: 5px 0;
|
|
2272
|
+
}
|
|
2273
|
+
.amb-widget-container-title {
|
|
2274
|
+
line-height: 40px;
|
|
2275
|
+
height: 40px;
|
|
2276
|
+
padding: 10px;
|
|
2277
|
+
position: absolute;
|
|
2278
|
+
left: 10px;
|
|
2279
|
+
top: 0px;
|
|
2280
|
+
font-size: 14px;
|
|
2281
|
+
}
|
|
2282
|
+
/* 用于占位 */
|
|
2283
|
+
.amb-widget-tools-parent {
|
|
2284
|
+
width: 100%;
|
|
2285
|
+
height: 58px;
|
|
2286
|
+
margin-bottom: 18px;
|
|
2287
|
+
}
|
|
2288
|
+
.amb-widget-tools {
|
|
2289
|
+
display: flex;
|
|
2290
|
+
/* 垂直居中 */
|
|
2291
|
+
align-items: center;
|
|
2292
|
+
background: #fafafa;
|
|
2293
|
+
/* background:#FAFAFA; */
|
|
2294
|
+
/* background-color: var(--el-card-bg-color); */
|
|
2295
|
+
/* border:1px solid #e4e7ed; */
|
|
2296
|
+
height: 58px;
|
|
2297
|
+
border-radius: 4px;
|
|
2298
|
+
width: transparent;
|
|
2299
|
+
padding-left: 20px;
|
|
2300
|
+
padding-right: 20px;
|
|
2301
|
+
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
|
|
2302
|
+
/* --el-card-border-color: var(--el-border-color-light);
|
|
2303
|
+
--el-card-border-radius: 4px;
|
|
2304
|
+
--el-card-bg-color: var(--el-fill-color-blank);
|
|
2305
|
+
background-color: var(--el-card-bg-color);
|
|
2306
|
+
border: 1px solid var(--el-card-border-color);
|
|
2307
|
+
border-radius: var(--el-card-border-radius);
|
|
2308
|
+
color: var(--el-text-color-primary);
|
|
2309
|
+
overflow: hidden;
|
|
2310
|
+
transition: var(--el-transition-duration); */
|
|
2311
|
+
}
|
|
2312
|
+
.amb-design-item-default {
|
|
2313
|
+
border: 1px dashed #c0c4cc !important;
|
|
2314
|
+
/* border: 2px dashed transparent !important; */
|
|
2315
|
+
color: #c0c4cc;
|
|
2316
|
+
position: relative !important;
|
|
2317
|
+
}
|
|
2318
|
+
.amb-design-item-default:hover {
|
|
2319
|
+
cursor: pointer;
|
|
2320
|
+
border: 1px solid #e6a23c !important;
|
|
2321
|
+
/* background-color: rgba(205, 210, 216, 0.105); */
|
|
2322
|
+
}
|
|
2323
|
+
.amb-design-attr-group-header > button {
|
|
2324
|
+
background: #f5f6f8;
|
|
2325
|
+
padding-left: 10px;
|
|
2326
|
+
font-size: 14px;
|
|
2327
|
+
height: 36px;
|
|
2328
|
+
}
|
|
2329
|
+
.amb-design-page-param-row {
|
|
2330
|
+
height: 34px;
|
|
2331
|
+
}
|
|
2332
|
+
.el-table__cell > .cell {
|
|
2333
|
+
white-space: nowrap !important;
|
|
2334
|
+
}
|
|
2335
|
+
.amb-design-item {
|
|
2336
|
+
border: 1px solid #ffffff;
|
|
2337
|
+
/* align-items:center; */
|
|
2338
|
+
}
|
|
2339
|
+
.amb-design-item-selected {
|
|
2340
|
+
border: 1px solid #e6a23c !important;
|
|
2341
|
+
}
|
|
2342
|
+
fieldset.amb-design-item-selected {
|
|
2343
|
+
color: #e6a23c !important;
|
|
2344
|
+
}
|
|
2345
|
+
/*组件库分组图标*/
|
|
2346
|
+
.amb-assembly-group-img {
|
|
2347
|
+
width: 16px;
|
|
2348
|
+
height: 16px;
|
|
2349
|
+
}
|
|
2350
|
+
/*组件库组件项目图标*/
|
|
2351
|
+
.amb-assembly-item-img {
|
|
2352
|
+
width: 16px;
|
|
2353
|
+
height: 16px;
|
|
2354
|
+
}
|
|
2355
|
+
.amb-design-chart-series {
|
|
2356
|
+
background-color: #e6a23c;
|
|
2357
|
+
border: 1px dashed #e6a23c;
|
|
2358
|
+
padding: 0px 6px 8px 6px;
|
|
2359
|
+
color: #ffffff;
|
|
2360
|
+
cursor: pointer;
|
|
2361
|
+
border-radius: 0px 0px 4px 4px;
|
|
2362
|
+
margin-right: 4px;
|
|
2363
|
+
}
|
|
2364
|
+
.amb-design-chart-series-selected {
|
|
2365
|
+
background-color: #5893ef;
|
|
2366
|
+
}
|
|
2367
|
+
.amb-widget-item-tool {
|
|
2368
|
+
background-color: #e6a23c;
|
|
2369
|
+
color: white;
|
|
2370
|
+
position: absolute;
|
|
2371
|
+
height: 22px;
|
|
2372
|
+
right: 0;
|
|
2373
|
+
top: 0;
|
|
2374
|
+
z-index: 2;
|
|
2375
|
+
padding: 6px;
|
|
2376
|
+
padding-top: 2px;
|
|
2377
|
+
padding-left: 0px;
|
|
2378
|
+
}
|
|
2379
|
+
.amb-widget-item-tool > i {
|
|
2380
|
+
cursor: pointer;
|
|
2381
|
+
}
|
|
2382
|
+
.avatar-uploader .el-upload {
|
|
2383
|
+
border: 1px dashed var(--el-border-color);
|
|
2384
|
+
border-radius: 6px;
|
|
2385
|
+
cursor: pointer;
|
|
2386
|
+
position: relative;
|
|
2387
|
+
overflow: hidden;
|
|
2388
|
+
transition: var(--el-transition-duration-fast);
|
|
2389
|
+
}
|
|
2390
|
+
.avatar-uploader .el-upload:hover {
|
|
2391
|
+
border-color: var(--el-color-primary);
|
|
2392
|
+
}
|
|
2393
|
+
.el-icon.avatar-uploader-icon {
|
|
2394
|
+
font-size: 28px;
|
|
2395
|
+
color: #8c939d;
|
|
2396
|
+
width: 60px;
|
|
2397
|
+
height: 60px;
|
|
2398
|
+
text-align: center;
|
|
2399
|
+
}
|
|
2400
|
+
.avatar-uploader .avatar {
|
|
2401
|
+
width: 60px;
|
|
2402
|
+
height: 60px;
|
|
2403
|
+
display: block;
|
|
2404
|
+
}
|
|
2405
|
+
/*缩略图-图片源*/
|
|
2406
|
+
.amb-design-attr-image-thumbnail-search {
|
|
2407
|
+
display: flex;
|
|
2408
|
+
align-items: center;
|
|
2409
|
+
margin-bottom: 8px;
|
|
2410
|
+
}
|
|
2411
|
+
.amb-design-attr-image-thumbnail-search > .search-input {
|
|
2412
|
+
width: 80%;
|
|
2413
|
+
}
|
|
2414
|
+
.amb-design-attr-image-thumbnail-search > .search-icon {
|
|
2415
|
+
margin-left: 10px;
|
|
2416
|
+
}
|
|
2417
|
+
/* 统计图组件 */
|
|
2418
|
+
/* 设计时设置高度与父类一致 */
|
|
2419
|
+
.amb-widget-chart.amb-design-item {
|
|
2420
|
+
height: 100%;
|
|
2421
|
+
}
|
|
2422
|
+
.amb-widget-chart {
|
|
2423
|
+
--el-card-border-color: var(--el-border-color-light);
|
|
2424
|
+
--el-card-border-radius: 4px;
|
|
2425
|
+
--el-card-padding: 20px;
|
|
2426
|
+
--el-card-bg-color: var(--el-fill-color-blank);
|
|
2427
|
+
background-color: var(--el-card-bg-color);
|
|
2428
|
+
border: 1px solid var(--el-card-border-color);
|
|
2429
|
+
border-radius: var(--el-card-border-radius);
|
|
2430
|
+
color: var(--el-text-color-primary);
|
|
2431
|
+
overflow: hidden;
|
|
2432
|
+
transition: var(--el-transition-duration);
|
|
2433
|
+
box-shadow: var(--el-box-shadow-light);
|
|
2434
|
+
margin-bottom: 18px;
|
|
2435
|
+
}
|
|
2436
|
+
.amb-widget-chart-header {
|
|
2437
|
+
border-bottom: 1px solid var(--el-card-border-color);
|
|
2438
|
+
padding: 6px 10px;
|
|
2439
|
+
display: flex;
|
|
2440
|
+
min-height: 36px;
|
|
2441
|
+
}
|
|
2442
|
+
.amb-widget-chart-header-item {
|
|
2443
|
+
display: flex;
|
|
2444
|
+
align-items: center;
|
|
2445
|
+
}
|
|
2446
|
+
.amb-widget-chart-header-center {
|
|
2447
|
+
flex-grow: 1;
|
|
2448
|
+
text-align: center;
|
|
2449
|
+
vertical-align: middle;
|
|
2450
|
+
justify-content: center;
|
|
2451
|
+
}
|
|
2452
|
+
.el-card {
|
|
2453
|
+
margin-bottom: 18px;
|
|
2454
|
+
}
|
|
2455
|
+
.el-collapse {
|
|
2456
|
+
margin-bottom: 18px;
|
|
2457
|
+
}
|
|
2458
|
+
.el-tabs {
|
|
2459
|
+
margin-bottom: 18px;
|
|
2460
|
+
}
|
|
2461
|
+
.amb-widget-richtext-single {
|
|
2462
|
+
margin-bottom: 18px;
|
|
2463
|
+
}
|
|
2464
|
+
.el-button-group + .el-button {
|
|
2465
|
+
margin-left: 12px;
|
|
2466
|
+
}
|
|
2467
|
+
.el-button + .el-button-group {
|
|
2468
|
+
margin-left: 12px;
|
|
2469
|
+
}
|
|
2470
|
+
.el-button-group + .el-button-group {
|
|
2471
|
+
margin-left: 12px;
|
|
2472
|
+
}
|
|
2473
|
+
/* 按钮组中时无间距 */
|
|
2474
|
+
.el-button-group > div > .el-button {
|
|
2475
|
+
margin-right: 0px;
|
|
2476
|
+
}
|
|
2477
|
+
.el-button-group > .el-button {
|
|
2478
|
+
margin-right: 0px;
|
|
2479
|
+
}
|
|
2480
|
+
.el-form-item > .el-form-item__content {
|
|
2481
|
+
padding-right: 18px;
|
|
2482
|
+
}
|
|
2483
|
+
/* 设计时样式 */
|
|
2484
|
+
.amb-design-item > .el-dropdown > .el-button-group {
|
|
2485
|
+
display: flex;
|
|
2486
|
+
}
|
|
2487
|
+
.el-table td.el-table__cell .cell {
|
|
2488
|
+
padding: 1px;
|
|
1919
2489
|
}
|
|
1920
|
-
|
|
1921
|
-
.
|
|
1922
|
-
|
|
2490
|
+
/*去除表单组件 el-item label留白*/
|
|
2491
|
+
.remove-formLabel-formContent-blankStyle > .el-form-item__label {
|
|
2492
|
+
padding: 0;
|
|
2493
|
+
}
|
|
2494
|
+
/*去除表单组件 el-item content留白*/
|
|
2495
|
+
.remove-formLabel-formContent-blankStyle > .el-form-item__content {
|
|
2496
|
+
padding-right: 0 !important;
|
|
2497
|
+
}
|
|
2498
|
+
/* 分隔组件 */
|
|
2499
|
+
.amb-widget-separatelabel {
|
|
2500
|
+
--el-card-border-color: var(--el-border-color-light);
|
|
2501
|
+
--el-card-border-radius: 4px;
|
|
2502
|
+
--el-card-padding: 20px;
|
|
2503
|
+
--el-card-bg-color: var(--el-fill-color-blank);
|
|
2504
|
+
background-color: var(--el-card-bg-color);
|
|
2505
|
+
/* border: 1px solid var(--el-card-border-color); */
|
|
2506
|
+
border-bottom: 1px solid var(--el-card-border-color);
|
|
2507
|
+
border-radius: var(--el-card-border-radius);
|
|
2508
|
+
color: var(--el-text-color-primary);
|
|
2509
|
+
overflow: hidden;
|
|
2510
|
+
transition: var(--el-transition-duration);
|
|
2511
|
+
/* box-shadow: var(--el-box-shadow-light); */
|
|
2512
|
+
padding: 10px;
|
|
2513
|
+
padding-left: 0px;
|
|
2514
|
+
margin-bottom: 18px;
|
|
2515
|
+
}
|
|
2516
|
+
.amb-widget-separatelabel > .label {
|
|
2517
|
+
/* border-left: 4px solid #5893ef; */
|
|
2518
|
+
border-bottom: 2px solid #5893ef;
|
|
2519
|
+
color: #5893ef;
|
|
2520
|
+
display: inline-block;
|
|
2521
|
+
padding-left: 6px;
|
|
2522
|
+
padding-right: 6px;
|
|
2523
|
+
padding-bottom: 10px;
|
|
2524
|
+
/* font-size: 14px; */
|
|
2525
|
+
margin-bottom: -8px;
|
|
2526
|
+
}
|
|
2527
|
+
.amb-design-event-content {
|
|
2528
|
+
padding: 10px;
|
|
2529
|
+
}
|
|
2530
|
+
.amb-widget-form-title {
|
|
2531
|
+
font-size: 22px;
|
|
2532
|
+
padding: 10px;
|
|
2533
|
+
font-weight: bold;
|
|
1923
2534
|
}
|
|
1924
2535
|
.el-tree-node__content {
|
|
1925
2536
|
height: 34px !important;
|
|
@@ -3159,6 +3770,14 @@ fieldset.amb-design-item-selected {
|
|
|
3159
3770
|
padding: 10px;
|
|
3160
3771
|
font-weight: bold;
|
|
3161
3772
|
}
|
|
3773
|
+
|
|
3774
|
+
.el-switch.is-disabled .el-switch__core, .el-switch.is-disabled .el-switch__label{
|
|
3775
|
+
cursor: default;
|
|
3776
|
+
}
|
|
3777
|
+
|
|
3778
|
+
.el-select__wrapper.is-disabled{
|
|
3779
|
+
cursor: default;
|
|
3780
|
+
}
|
|
3162
3781
|
.el-tree-node__content {
|
|
3163
3782
|
height: 34px !important;
|
|
3164
3783
|
}
|
|
@@ -8730,6 +9349,56 @@ fieldset.amb-design-item-selected {
|
|
|
8730
9349
|
padding: 10px;
|
|
8731
9350
|
font-weight: bold;
|
|
8732
9351
|
}
|
|
9352
|
+
|
|
9353
|
+
/*不显示列样式*/
|
|
9354
|
+
.hiddenBorder {
|
|
9355
|
+
border-right: solid 1px #ebebeb !important;
|
|
9356
|
+
border-left: solid 1px #ebebeb !important;
|
|
9357
|
+
background-color: #ebebeb !important;
|
|
9358
|
+
}
|
|
9359
|
+
/*选中列样式*/
|
|
9360
|
+
.addBorder {
|
|
9361
|
+
border-right: solid 1px #5893ef !important;
|
|
9362
|
+
border-left: solid 1px #5893ef !important;
|
|
9363
|
+
background-color: #5893ef !important;
|
|
9364
|
+
color: #ffffff;
|
|
9365
|
+
}
|
|
9366
|
+
.ghost {
|
|
9367
|
+
opacity: 0.5;
|
|
9368
|
+
background: #c8ebfb;
|
|
9369
|
+
}
|
|
9370
|
+
|
|
9371
|
+
li[data-v-55bb4cd3] {
|
|
9372
|
+
color: #333;
|
|
9373
|
+
}
|
|
9374
|
+
.context-menu[data-v-55bb4cd3] {
|
|
9375
|
+
position: fixed;
|
|
9376
|
+
background: #fff;
|
|
9377
|
+
z-index: 999;
|
|
9378
|
+
padding: 5px;
|
|
9379
|
+
margin: 0;
|
|
9380
|
+
margin-top: 30px;
|
|
9381
|
+
}
|
|
9382
|
+
.context-menu li[data-v-55bb4cd3] {
|
|
9383
|
+
min-width: 75px;
|
|
9384
|
+
height: 28px;
|
|
9385
|
+
line-height: 28px;
|
|
9386
|
+
text-align: left;
|
|
9387
|
+
color: #1a1a1a;
|
|
9388
|
+
cursor: pointer;
|
|
9389
|
+
}
|
|
9390
|
+
.context-menu li[data-v-55bb4cd3]:hover {
|
|
9391
|
+
background: #5893ef;
|
|
9392
|
+
color: #fff;
|
|
9393
|
+
}
|
|
9394
|
+
.context-menu[data-v-55bb4cd3] {
|
|
9395
|
+
border: 1px solid #eee;
|
|
9396
|
+
box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
|
|
9397
|
+
border-radius: 5px;
|
|
9398
|
+
}
|
|
9399
|
+
li[data-v-55bb4cd3] {
|
|
9400
|
+
list-style-type: none;
|
|
9401
|
+
}
|
|
8733
9402
|
.el-tree-node__content {
|
|
8734
9403
|
height: 34px !important;
|
|
8735
9404
|
}
|
|
@@ -9968,56 +10637,6 @@ fieldset.amb-design-item-selected {
|
|
|
9968
10637
|
padding: 10px;
|
|
9969
10638
|
font-weight: bold;
|
|
9970
10639
|
}
|
|
9971
|
-
|
|
9972
|
-
/*不显示列样式*/
|
|
9973
|
-
.hiddenBorder {
|
|
9974
|
-
border-right: solid 1px #ebebeb !important;
|
|
9975
|
-
border-left: solid 1px #ebebeb !important;
|
|
9976
|
-
background-color: #ebebeb !important;
|
|
9977
|
-
}
|
|
9978
|
-
/*选中列样式*/
|
|
9979
|
-
.addBorder {
|
|
9980
|
-
border-right: solid 1px #5893ef !important;
|
|
9981
|
-
border-left: solid 1px #5893ef !important;
|
|
9982
|
-
background-color: #5893ef !important;
|
|
9983
|
-
color: #ffffff;
|
|
9984
|
-
}
|
|
9985
|
-
.ghost {
|
|
9986
|
-
opacity: 0.5;
|
|
9987
|
-
background: #c8ebfb;
|
|
9988
|
-
}
|
|
9989
|
-
|
|
9990
|
-
li[data-v-55bb4cd3] {
|
|
9991
|
-
color: #333;
|
|
9992
|
-
}
|
|
9993
|
-
.context-menu[data-v-55bb4cd3] {
|
|
9994
|
-
position: fixed;
|
|
9995
|
-
background: #fff;
|
|
9996
|
-
z-index: 999;
|
|
9997
|
-
padding: 5px;
|
|
9998
|
-
margin: 0;
|
|
9999
|
-
margin-top: 30px;
|
|
10000
|
-
}
|
|
10001
|
-
.context-menu li[data-v-55bb4cd3] {
|
|
10002
|
-
min-width: 75px;
|
|
10003
|
-
height: 28px;
|
|
10004
|
-
line-height: 28px;
|
|
10005
|
-
text-align: left;
|
|
10006
|
-
color: #1a1a1a;
|
|
10007
|
-
cursor: pointer;
|
|
10008
|
-
}
|
|
10009
|
-
.context-menu li[data-v-55bb4cd3]:hover {
|
|
10010
|
-
background: #5893ef;
|
|
10011
|
-
color: #fff;
|
|
10012
|
-
}
|
|
10013
|
-
.context-menu[data-v-55bb4cd3] {
|
|
10014
|
-
border: 1px solid #eee;
|
|
10015
|
-
box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
|
|
10016
|
-
border-radius: 5px;
|
|
10017
|
-
}
|
|
10018
|
-
li[data-v-55bb4cd3] {
|
|
10019
|
-
list-style-type: none;
|
|
10020
|
-
}
|
|
10021
10640
|
.el-tree-node__content {
|
|
10022
10641
|
height: 34px !important;
|
|
10023
10642
|
}
|
|
@@ -16239,16 +16858,7 @@ fieldset.amb-design-item-selected {
|
|
|
16239
16858
|
color: #ffffff;
|
|
16240
16859
|
}
|
|
16241
16860
|
|
|
16242
|
-
.seleteSort[data-v-
|
|
16243
|
-
border-radius: 5px;
|
|
16244
|
-
border: 1px solid rgba(88, 147, 239);
|
|
16245
|
-
}
|
|
16246
|
-
|
|
16247
|
-
[data-v-7fcec2fa] .el-cascader-menu {
|
|
16248
|
-
min-width: 120px !important;
|
|
16249
|
-
}
|
|
16250
|
-
|
|
16251
|
-
.seleteSort[data-v-e6c84ad9] {
|
|
16861
|
+
.seleteSort[data-v-c93dc980] {
|
|
16252
16862
|
border-radius: 5px;
|
|
16253
16863
|
border: 1px solid rgba(88, 147, 239);
|
|
16254
16864
|
}
|
|
@@ -16260,17 +16870,13 @@ fieldset.amb-design-item-selected {
|
|
|
16260
16870
|
padding-bottom: 5px;
|
|
16261
16871
|
}
|
|
16262
16872
|
|
|
16263
|
-
.
|
|
16264
|
-
|
|
16265
|
-
|
|
16266
|
-
|
|
16267
|
-
|
|
16268
|
-
|
|
16269
|
-
|
|
16270
|
-
.pppp[data-v-26f79956] {
|
|
16271
|
-
display: flex; /* 使用Flex布局 */
|
|
16272
|
-
justify-content: flex-start;
|
|
16273
|
-
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
16873
|
+
.seleteSort[data-v-e6c84ad9] {
|
|
16874
|
+
border-radius: 5px;
|
|
16875
|
+
border: 1px solid rgba(88, 147, 239);
|
|
16876
|
+
}
|
|
16877
|
+
|
|
16878
|
+
[data-v-7fcec2fa] .el-cascader-menu {
|
|
16879
|
+
min-width: 120px !important;
|
|
16274
16880
|
}
|
|
16275
16881
|
|
|
16276
16882
|
.icon-set-center-body[data-v-4aa5ce08]{
|
|
@@ -16310,6 +16916,49 @@ fieldset.amb-design-item-selected {
|
|
|
16310
16916
|
margin-bottom: 20px;
|
|
16311
16917
|
}
|
|
16312
16918
|
|
|
16919
|
+
.editorTool[data-v-26f79956] {
|
|
16920
|
+
margin-left: auto;
|
|
16921
|
+
}
|
|
16922
|
+
.editorOption[data-v-26f79956] {
|
|
16923
|
+
margin-right: 10px;
|
|
16924
|
+
cursor: pointer;
|
|
16925
|
+
}
|
|
16926
|
+
.pppp[data-v-26f79956] {
|
|
16927
|
+
display: flex; /* 使用Flex布局 */
|
|
16928
|
+
justify-content: flex-start;
|
|
16929
|
+
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
16930
|
+
}
|
|
16931
|
+
|
|
16932
|
+
.seleteSort[data-v-97438be5] {
|
|
16933
|
+
border-radius: 5px;
|
|
16934
|
+
border: 1px solid rgba(88, 147, 239);
|
|
16935
|
+
}
|
|
16936
|
+
[data-v-97438be5] .el-select__selection{
|
|
16937
|
+
display: inline-block;
|
|
16938
|
+
}
|
|
16939
|
+
|
|
16940
|
+
.row-backgroud-header-tittle[data-v-b203475d]{
|
|
16941
|
+
display: flex;
|
|
16942
|
+
justify-content: space-between;
|
|
16943
|
+
text-align: center
|
|
16944
|
+
}
|
|
16945
|
+
.row-backgroud-header-tittle > div[data-v-b203475d]{
|
|
16946
|
+
width: 100%
|
|
16947
|
+
}
|
|
16948
|
+
|
|
16949
|
+
.seleteSort[data-v-a8c75465] {
|
|
16950
|
+
border-radius: 5px;
|
|
16951
|
+
border: 1px solid rgba(88, 147, 239);
|
|
16952
|
+
}
|
|
16953
|
+
|
|
16954
|
+
.stateBtn[data-v-ae2798fb]{
|
|
16955
|
+
display: flex;
|
|
16956
|
+
}
|
|
16957
|
+
.stateText[data-v-ae2798fb]{
|
|
16958
|
+
margin-left: 10px;
|
|
16959
|
+
color: #7b7b7b;
|
|
16960
|
+
}
|
|
16961
|
+
|
|
16313
16962
|
li[data-v-b436905c] {
|
|
16314
16963
|
color: #333;
|
|
16315
16964
|
}
|
|
@@ -16347,36 +16996,6 @@ li[data-v-b436905c] {
|
|
|
16347
16996
|
list-style-type: none;
|
|
16348
16997
|
}
|
|
16349
16998
|
|
|
16350
|
-
.stateBtn[data-v-ae2798fb]{
|
|
16351
|
-
display: flex;
|
|
16352
|
-
}
|
|
16353
|
-
.stateText[data-v-ae2798fb]{
|
|
16354
|
-
margin-left: 10px;
|
|
16355
|
-
color: #7b7b7b;
|
|
16356
|
-
}
|
|
16357
|
-
|
|
16358
|
-
.seleteSort[data-v-a8c75465] {
|
|
16359
|
-
border-radius: 5px;
|
|
16360
|
-
border: 1px solid rgba(88, 147, 239);
|
|
16361
|
-
}
|
|
16362
|
-
|
|
16363
|
-
.row-backgroud-header-tittle[data-v-b203475d]{
|
|
16364
|
-
display: flex;
|
|
16365
|
-
justify-content: space-between;
|
|
16366
|
-
text-align: center
|
|
16367
|
-
}
|
|
16368
|
-
.row-backgroud-header-tittle > div[data-v-b203475d]{
|
|
16369
|
-
width: 100%
|
|
16370
|
-
}
|
|
16371
|
-
|
|
16372
|
-
.seleteSort[data-v-97438be5] {
|
|
16373
|
-
border-radius: 5px;
|
|
16374
|
-
border: 1px solid rgba(88, 147, 239);
|
|
16375
|
-
}
|
|
16376
|
-
[data-v-97438be5] .el-select__selection{
|
|
16377
|
-
display: inline-block;
|
|
16378
|
-
}
|
|
16379
|
-
|
|
16380
16999
|
.el-tag[data-v-665d3bf4]{
|
|
16381
17000
|
margin-left: 10px;
|
|
16382
17001
|
}
|