@gct-paas/core-web 0.1.6-dev.7 → 0.1.6-dev.9
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/{ColorPicker-DFKXqgaG.js → ColorPicker-BDeYRWA2.js} +1 -1
- package/dist/index.min.css +1 -1
- package/dist/loader.esm.min.js +1 -1
- package/dist/{template-CXn8oAg5.js → template-Dt6RJclf.js} +1 -1
- package/es/components/label-design/modal/index.d.ts +1 -1
- package/es/components/label-design/modal/index.mjs +3 -3
- package/es/components/serial-number/serial-number-item.vue.mjs +2 -2
- package/es/components/serial-number/serial-number-item.vue_vue_type_script_setup_true_lang.mjs +1 -1
- package/es/components/serial-number/serial-number-item.vue_vue_type_style_index_0_scoped_f992d0b8_lang.css +67 -0
- package/es/locale/sys/model.d.ts +4 -0
- package/es/modules/category/hooks/useCategory.mjs +1 -1
- package/es/modules/gct-table/editor/gct-table-date/gct-table-date.mjs +1 -1
- package/es/modules/gct-table/editor/gct-table-text/gct-table-text.mjs +1 -1
- package/es/modules/print-tmpl/print-tmpl-modal.vue.mjs +2 -2
- package/es/modules/print-tmpl/print-tmpl-modal.vue_vue_type_script_setup_true_name_print-tmpl-modal_lang.mjs +1 -1
- package/es/modules/print-tmpl/{print-tmpl-modal.vue_vue_type_style_index_0_scoped_c60841b8_lang.css → print-tmpl-modal.vue_vue_type_style_index_0_scoped_d94551a9_lang.css} +36 -36
- package/es/styles/index.css +263 -0
- package/package.json +7 -7
- package/es/components/serial-number/serial-number-item.vue_vue_type_style_index_0_scoped_7baf8e25_lang.css +0 -67
- /package/es/modules/gct-table/editor/{gct-table-date/gct-table-date.css → gct-table-text/gct-table-text.css} +0 -0
|
@@ -12,14 +12,14 @@ function useModalPicker() {
|
|
|
12
12
|
instance = null;
|
|
13
13
|
}, 300);
|
|
14
14
|
} });
|
|
15
|
-
instance =
|
|
15
|
+
instance = OverlayContainer.createVueApp(vm).mount(container);
|
|
16
16
|
}
|
|
17
17
|
/**
|
|
18
18
|
* 选择人员
|
|
19
19
|
* @param param0
|
|
20
20
|
*/
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
function openPickerLabel() {
|
|
22
|
+
readyModal();
|
|
23
23
|
return instance;
|
|
24
24
|
}
|
|
25
25
|
return { openPickerLabel };
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import _plugin_vue_export_helper_default from "../../_virtual/_plugin-vue_export-helper.mjs";
|
|
2
2
|
import serial_number_item_vue_vue_type_script_setup_true_lang_default from "./serial-number-item.vue_vue_type_script_setup_true_lang.mjs";
|
|
3
|
-
import './serial-number-item.vue_vue_type_style_index_1_lang.css';import './serial-number-item.
|
|
3
|
+
import './serial-number-item.vue_vue_type_style_index_1_lang.css';import './serial-number-item.vue_vue_type_style_index_0_scoped_f992d0b8_lang.css';/* empty css */
|
|
4
4
|
/* empty css */
|
|
5
5
|
//#region src/components/serial-number/serial-number-item.vue
|
|
6
|
-
var serial_number_item_default = /* @__PURE__ */ _plugin_vue_export_helper_default(serial_number_item_vue_vue_type_script_setup_true_lang_default, [["__scopeId", "data-v-
|
|
6
|
+
var serial_number_item_default = /* @__PURE__ */ _plugin_vue_export_helper_default(serial_number_item_vue_vue_type_script_setup_true_lang_default, [["__scopeId", "data-v-f992d0b8"]]);
|
|
7
7
|
//#endregion
|
|
8
8
|
export { serial_number_item_default as default };
|
package/es/components/serial-number/serial-number-item.vue_vue_type_script_setup_true_lang.mjs
CHANGED
|
@@ -251,7 +251,7 @@ var serial_number_item_vue_vue_type_script_setup_true_lang_default = /* @__PURE_
|
|
|
251
251
|
key: item,
|
|
252
252
|
value: unref(TypeEnum)[item]
|
|
253
253
|
}, {
|
|
254
|
-
default: withCtx(() => [createTextVNode(toDisplayString(unref(t)(`sys.model.${item}`)), 1)]),
|
|
254
|
+
default: withCtx(() => [createTextVNode(toDisplayString(unref(t)(`sys.model.${unref(TypeEnum)[item]}`)), 1)]),
|
|
255
255
|
_: 2
|
|
256
256
|
}, 1032, ["value"]);
|
|
257
257
|
}), 128))]),
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
.series-item-wrapper[data-v-f992d0b8] {
|
|
2
|
+
display: flex;
|
|
3
|
+
position: relative;
|
|
4
|
+
align-items: center;
|
|
5
|
+
justify-content: space-between;
|
|
6
|
+
margin-bottom: 8px;
|
|
7
|
+
padding: 6px 8px 6px 6px;
|
|
8
|
+
border-radius: 4px;
|
|
9
|
+
background: #f2f4f7;
|
|
10
|
+
user-select: none;
|
|
11
|
+
}
|
|
12
|
+
.series-item-wrapper.series-disable[data-v-f992d0b8] {
|
|
13
|
+
pointer-events: none;
|
|
14
|
+
}
|
|
15
|
+
.series-item-wrapper .mover[data-v-f992d0b8] {
|
|
16
|
+
position: absolute;
|
|
17
|
+
bottom: 10px;
|
|
18
|
+
left: 6px;
|
|
19
|
+
color: #96a0b5;
|
|
20
|
+
font-size: 16px;
|
|
21
|
+
cursor: pointer;
|
|
22
|
+
}
|
|
23
|
+
.series-item-wrapper .field-name[data-v-f992d0b8] {
|
|
24
|
+
padding-left: 20px;
|
|
25
|
+
color: #333;
|
|
26
|
+
}
|
|
27
|
+
.series-item-wrapper .serial-item-container[data-v-f992d0b8] {
|
|
28
|
+
width: 100%;
|
|
29
|
+
padding-left: 24px;
|
|
30
|
+
}
|
|
31
|
+
.series-item-wrapper .serial-item-container .tit[data-v-f992d0b8] {
|
|
32
|
+
padding-left: 6px;
|
|
33
|
+
color: #c3c3c3;
|
|
34
|
+
font-size: 12px;
|
|
35
|
+
line-height: 18px;
|
|
36
|
+
}
|
|
37
|
+
.series-item-wrapper .serial-item-container .tip[data-v-f992d0b8] {
|
|
38
|
+
color: #c3c3c3;
|
|
39
|
+
}
|
|
40
|
+
.series-item-wrapper .action[data-v-f992d0b8] {
|
|
41
|
+
margin-right: 2px;
|
|
42
|
+
}
|
|
43
|
+
.series-item-wrapper .action[data-v-f992d0b8] .ant-btn {
|
|
44
|
+
border: none;
|
|
45
|
+
background-color: transparent;
|
|
46
|
+
color: #8b8b8b;
|
|
47
|
+
}
|
|
48
|
+
.series-item-wrapper .action[data-v-f992d0b8] .ant-btn:hover {
|
|
49
|
+
background-color: #e8eaee;
|
|
50
|
+
color: #000;
|
|
51
|
+
}
|
|
52
|
+
.series-item-wrapper[data-v-f992d0b8]:hover {
|
|
53
|
+
border-color: var(--ant-primary-color);
|
|
54
|
+
}
|
|
55
|
+
.series-item-wrapper:hover .field-name[data-v-f992d0b8],
|
|
56
|
+
.series-item-wrapper:hover .mover[data-v-f992d0b8] {
|
|
57
|
+
color: var(--ant-primary-color);
|
|
58
|
+
}
|
|
59
|
+
[data-v-f992d0b8] .ant-input-number {
|
|
60
|
+
background: #fff !important;
|
|
61
|
+
}
|
|
62
|
+
[data-v-f992d0b8] .ant-input-affix-wrapper,[data-v-f992d0b8] .ant-input {
|
|
63
|
+
background: #fff !important;
|
|
64
|
+
}
|
|
65
|
+
[data-v-f992d0b8] .ant-select .ant-select-selector {
|
|
66
|
+
background: #fff !important;
|
|
67
|
+
}
|
package/es/locale/sys/model.d.ts
CHANGED
|
@@ -60,7 +60,7 @@ function _useCategory(opts) {
|
|
|
60
60
|
* @return {*}
|
|
61
61
|
*/
|
|
62
62
|
async function load() {
|
|
63
|
-
const data = isFormDesign ? await getInterfaceApi.getCategoryList({ moduleType: opts.module }) || [] : await _api.apaas.category.getListComplete({}) || [];
|
|
63
|
+
const data = isFormDesign ? await getInterfaceApi.getCategoryList({ moduleType: opts.module }) || [] : await _api.apaas.category.getListComplete({ module: opts.module }) || [];
|
|
64
64
|
categoryTreeData.value = data;
|
|
65
65
|
categoryMap.clear();
|
|
66
66
|
recursiveIterate(data, ({ item }) => {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { useGctFormValue } from "../../../gct-form/hooks/use-gct-form-value/use-gct-form-value.mjs";
|
|
2
2
|
import "../../../gct-form/index.mjs";
|
|
3
|
-
import '
|
|
3
|
+
import '../gct-table-text/gct-table-text.css';/* empty css */
|
|
4
4
|
import { createVNode, defineComponent, mergeProps, resolveComponent } from "vue";
|
|
5
5
|
import { useNamespace } from "@gct-paas/core";
|
|
6
6
|
//#region src/modules/gct-table/editor/gct-table-date/gct-table-date.tsx
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { useGctFormValueByText } from "../../../gct-form/hooks/use-gct-form-value/use-gct-form-value.mjs";
|
|
2
2
|
import "../../../gct-form/index.mjs";
|
|
3
|
-
import '
|
|
3
|
+
import './gct-table-text.css';/* empty css */
|
|
4
4
|
import { createVNode, defineComponent, mergeProps, resolveComponent } from "vue";
|
|
5
5
|
import { useNamespace } from "@gct-paas/core";
|
|
6
6
|
//#region src/modules/gct-table/editor/gct-table-text/gct-table-text.tsx
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _plugin_vue_export_helper_default from "../../_virtual/_plugin-vue_export-helper.mjs";
|
|
2
2
|
import print_tmpl_modal_vue_vue_type_script_setup_true_name_print_tmpl_modal_lang_default from "./print-tmpl-modal.vue_vue_type_script_setup_true_name_print-tmpl-modal_lang.mjs";
|
|
3
|
-
import './print-tmpl-modal.
|
|
3
|
+
import './print-tmpl-modal.vue_vue_type_style_index_0_scoped_d94551a9_lang.css';/* empty css */
|
|
4
4
|
//#region src/modules/print-tmpl/print-tmpl-modal.vue
|
|
5
|
-
var print_tmpl_modal_default = /* @__PURE__ */ _plugin_vue_export_helper_default(print_tmpl_modal_vue_vue_type_script_setup_true_name_print_tmpl_modal_lang_default, [["__scopeId", "data-v-
|
|
5
|
+
var print_tmpl_modal_default = /* @__PURE__ */ _plugin_vue_export_helper_default(print_tmpl_modal_vue_vue_type_script_setup_true_name_print_tmpl_modal_lang_default, [["__scopeId", "data-v-d94551a9"]]);
|
|
6
6
|
//#endregion
|
|
7
7
|
export { print_tmpl_modal_default as default };
|
|
@@ -187,7 +187,7 @@ var print_tmpl_modal_vue_vue_type_script_setup_true_name_print_tmpl_modal_lang_d
|
|
|
187
187
|
useModal(() => Promise.resolve(onSave()));
|
|
188
188
|
const getDataSource = async () => {
|
|
189
189
|
formData.value.name = formData.value.name.trim();
|
|
190
|
-
const API = _api.apaas.printDesigner.
|
|
190
|
+
const API = _api.apaas.printDesigner.getRdoPageList;
|
|
191
191
|
isLoading.value = true;
|
|
192
192
|
const res = await API({
|
|
193
193
|
...formData.value,
|
|
@@ -1,129 +1,129 @@
|
|
|
1
|
-
.gct-print-tmpl-modal[data-v-
|
|
1
|
+
.gct-print-tmpl-modal[data-v-d94551a9] {
|
|
2
2
|
height: 100%;
|
|
3
3
|
overflow: hidden;
|
|
4
4
|
}
|
|
5
|
-
.gct-print-tmpl-modal[data-v-
|
|
5
|
+
.gct-print-tmpl-modal[data-v-d94551a9] .ant-tabs-nav {
|
|
6
6
|
margin-bottom: 0 !important;
|
|
7
7
|
}
|
|
8
|
-
.gct-print-tmpl-modal[data-v-
|
|
8
|
+
.gct-print-tmpl-modal[data-v-d94551a9]
|
|
9
9
|
.vxe-table--render-default .is--checked.vxe-cell--radio .vxe-radio--icon
|
|
10
10
|
{
|
|
11
11
|
color: var(--ant-primary-color);
|
|
12
12
|
}
|
|
13
|
-
.gct-print-tmpl-modal[data-v-
|
|
13
|
+
.gct-print-tmpl-modal[data-v-d94551a9] .ant-form .ant-form-item-label {
|
|
14
14
|
padding: 0;
|
|
15
15
|
}
|
|
16
|
-
.gct-print-tmpl-modal[data-v-
|
|
16
|
+
.gct-print-tmpl-modal[data-v-d94551a9] .ant-form .ant-form-item .ant-form-item-label > label::after {
|
|
17
17
|
display: block;
|
|
18
18
|
}
|
|
19
|
-
.gct-print-tmpl-modal .gct-print-tmpl-modal-wrap[data-v-
|
|
19
|
+
.gct-print-tmpl-modal .gct-print-tmpl-modal-wrap[data-v-d94551a9] {
|
|
20
20
|
display: flex;
|
|
21
21
|
height: 1px;
|
|
22
22
|
}
|
|
23
|
-
.gct-print-tmpl-modal .gct-print-tmpl-modal-left[data-v-
|
|
23
|
+
.gct-print-tmpl-modal .gct-print-tmpl-modal-left[data-v-d94551a9] {
|
|
24
24
|
width: 220px;
|
|
25
25
|
}
|
|
26
|
-
.gct-print-tmpl-modal .gct-print-tmpl-modal-left.btw-visible .gct-category-sider[data-v-
|
|
26
|
+
.gct-print-tmpl-modal .gct-print-tmpl-modal-left.btw-visible .gct-category-sider[data-v-d94551a9] {
|
|
27
27
|
border-top: none;
|
|
28
28
|
border-bottom: none;
|
|
29
29
|
border-left: none;
|
|
30
30
|
}
|
|
31
|
-
.gct-print-tmpl-modal .gct-print-tmpl-modal-left.btw-visible .gct-category-sider[data-v-
|
|
31
|
+
.gct-print-tmpl-modal .gct-print-tmpl-modal-left.btw-visible .gct-category-sider[data-v-d94551a9] .gct-category-sider__search-container {
|
|
32
32
|
padding-left: 8px !important;
|
|
33
33
|
}
|
|
34
|
-
.gct-print-tmpl-modal .gct-print-tmpl-modal-left[data-v-
|
|
34
|
+
.gct-print-tmpl-modal .gct-print-tmpl-modal-left[data-v-d94551a9] .gct-category-sider {
|
|
35
35
|
border-radius: 4px 0 0 4px;
|
|
36
36
|
}
|
|
37
|
-
.gct-print-tmpl-modal .gct-print-tmpl-modal-left[data-v-
|
|
37
|
+
.gct-print-tmpl-modal .gct-print-tmpl-modal-left[data-v-d94551a9] .gct-category-sider .gct-category-sider__search-container {
|
|
38
38
|
padding: 12px 16px !important;
|
|
39
39
|
border-top: none;
|
|
40
40
|
}
|
|
41
|
-
.gct-print-tmpl-modal .gct-print-tmpl-modal-left[data-v-
|
|
41
|
+
.gct-print-tmpl-modal .gct-print-tmpl-modal-left[data-v-d94551a9] .gct-category-sider .gct-category-sider__search-container .gct-category-sider__search-input {
|
|
42
42
|
padding-left: 10px;
|
|
43
43
|
border: 1px solid #d9d9d9 !important;
|
|
44
44
|
}
|
|
45
|
-
.gct-print-tmpl-modal .gct-print-tmpl-modal-left[data-v-
|
|
45
|
+
.gct-print-tmpl-modal .gct-print-tmpl-modal-left[data-v-d94551a9] .gct-category-sider .gct-category-sider__search-container .gct-category-sider__search-input:hover {
|
|
46
46
|
border-color: var(--ant-primary-5) !important;
|
|
47
47
|
}
|
|
48
|
-
.gct-print-tmpl-modal .gct-print-tmpl-modal-left[data-v-
|
|
48
|
+
.gct-print-tmpl-modal .gct-print-tmpl-modal-left[data-v-d94551a9] .gct-category-sider .gct-category-sider__search-container .ant-input-prefix {
|
|
49
49
|
margin-right: 8px;
|
|
50
50
|
color: #606266 !important;
|
|
51
51
|
}
|
|
52
|
-
.gct-print-tmpl-modal .gct-print-tmpl-modal-left[data-v-
|
|
52
|
+
.gct-print-tmpl-modal .gct-print-tmpl-modal-left[data-v-d94551a9] .gct-category-sider .gct-category-sider__search-container .ant-input-affix-wrapper {
|
|
53
53
|
color: #606266;
|
|
54
54
|
}
|
|
55
|
-
.gct-print-tmpl-modal .gct-print-tmpl-modal-left[data-v-
|
|
55
|
+
.gct-print-tmpl-modal .gct-print-tmpl-modal-left[data-v-d94551a9] .gct-category-sider .gct-category-sider__tree-container {
|
|
56
56
|
padding: 0;
|
|
57
57
|
}
|
|
58
|
-
.gct-print-tmpl-modal .gct-print-tmpl-modal-left[data-v-
|
|
58
|
+
.gct-print-tmpl-modal .gct-print-tmpl-modal-left[data-v-d94551a9] .gct-category-sider .gct-category-sider__tree .ant-tree-treenode {
|
|
59
59
|
margin-bottom: 0;
|
|
60
60
|
border-radius: 0;
|
|
61
61
|
}
|
|
62
|
-
.gct-print-tmpl-modal .gct-print-tmpl-modal-right[data-v-
|
|
62
|
+
.gct-print-tmpl-modal .gct-print-tmpl-modal-right[data-v-d94551a9] {
|
|
63
63
|
width: calc(100% - 220px);
|
|
64
64
|
border: 1px solid #eaedf1;
|
|
65
65
|
border-left-color: transparent;
|
|
66
66
|
border-radius: 0 4px 4px 0;
|
|
67
67
|
}
|
|
68
|
-
.gct-print-tmpl-modal .gct-print-tmpl-modal-right.btw-visible[data-v-
|
|
68
|
+
.gct-print-tmpl-modal .gct-print-tmpl-modal-right.btw-visible[data-v-d94551a9] {
|
|
69
69
|
width: 100%;
|
|
70
70
|
border: none;
|
|
71
71
|
padding-right: 8px;
|
|
72
72
|
}
|
|
73
|
-
.gct-print-tmpl-modal .gct-print-tmpl-modal-right[data-v-
|
|
73
|
+
.gct-print-tmpl-modal .gct-print-tmpl-modal-right[data-v-d94551a9] .ant-form {
|
|
74
74
|
padding-bottom: 12px;
|
|
75
75
|
}
|
|
76
|
-
.gct-print-tmpl-modal .gct-print-tmpl-modal-right[data-v-
|
|
76
|
+
.gct-print-tmpl-modal .gct-print-tmpl-modal-right[data-v-d94551a9] .ant-form .ant-form-item {
|
|
77
77
|
margin-bottom: 0;
|
|
78
78
|
padding: 0;
|
|
79
79
|
}
|
|
80
|
-
.gct-print-tmpl-modal .gct-print-tmpl-modal-right[data-v-
|
|
80
|
+
.gct-print-tmpl-modal .gct-print-tmpl-modal-right[data-v-d94551a9] .ant-form .ant-form-item .gct-print-tmpl-input {
|
|
81
81
|
border: 1px solid #d9d9d9 !important;
|
|
82
82
|
}
|
|
83
|
-
.gct-print-tmpl-modal .gct-print-tmpl-modal-right[data-v-
|
|
83
|
+
.gct-print-tmpl-modal .gct-print-tmpl-modal-right[data-v-d94551a9] .ant-form .ant-form-item .gct-print-tmpl-input:hover {
|
|
84
84
|
border-color: var(--ant-primary-5) !important;
|
|
85
85
|
}
|
|
86
|
-
.gct-print-tmpl-modal .gct-print-tmpl-modal-right[data-v-
|
|
86
|
+
.gct-print-tmpl-modal .gct-print-tmpl-modal-right[data-v-d94551a9] .ant-form .ant-form-item .ant-input-prefix {
|
|
87
87
|
margin-right: 8px;
|
|
88
88
|
color: #606266 !important;
|
|
89
89
|
}
|
|
90
|
-
.gct-print-tmpl-modal .gct-print-tmpl-modal-right[data-v-
|
|
90
|
+
.gct-print-tmpl-modal .gct-print-tmpl-modal-right[data-v-d94551a9] .ant-form .ant-form-item .ant-input-affix-wrapper {
|
|
91
91
|
color: #606266;
|
|
92
92
|
line-height: 22px;
|
|
93
93
|
}
|
|
94
|
-
.gct-print-tmpl-modal .gct-print-tmpl-modal-right[data-v-
|
|
94
|
+
.gct-print-tmpl-modal .gct-print-tmpl-modal-right[data-v-d94551a9] .ant-select .ant-select-selector {
|
|
95
95
|
border: 1px solid #d9d9d9 !important;
|
|
96
96
|
}
|
|
97
|
-
.gct-print-tmpl-modal .gct-print-tmpl-modal-right[data-v-
|
|
97
|
+
.gct-print-tmpl-modal .gct-print-tmpl-modal-right[data-v-d94551a9] .ant-select .ant-select-selector:hover {
|
|
98
98
|
border-color: var(--ant-primary-5) !important;
|
|
99
99
|
}
|
|
100
|
-
.gct-print-tmpl-modal .gct-print-tmpl-modal-right .print-tmpl-vxe-table-wrapper[data-v-
|
|
100
|
+
.gct-print-tmpl-modal .gct-print-tmpl-modal-right .print-tmpl-vxe-table-wrapper[data-v-d94551a9] {
|
|
101
101
|
display: flex;
|
|
102
102
|
flex-direction: column;
|
|
103
103
|
flex: 1;
|
|
104
104
|
overflow: hidden;
|
|
105
105
|
}
|
|
106
|
-
.gct-print-tmpl-modal .gct-print-tmpl-modal-right .print-tmpl-vxe-table-wrapper .print-tmpl-vxe-table-area[data-v-
|
|
106
|
+
.gct-print-tmpl-modal .gct-print-tmpl-modal-right .print-tmpl-vxe-table-wrapper .print-tmpl-vxe-table-area[data-v-d94551a9] {
|
|
107
107
|
flex: 1;
|
|
108
108
|
overflow: hidden;
|
|
109
109
|
}
|
|
110
|
-
.vxetable[data-v-
|
|
110
|
+
.vxetable[data-v-d94551a9] {
|
|
111
111
|
--vxe-table-row-hover-radio-checked-background-color: #e6eeff;
|
|
112
112
|
--vxe-table-row-radio-checked-background-color: #e6eeff;
|
|
113
113
|
--vxe-table-row-checkbox-checked-background-color: #e6eeff;
|
|
114
114
|
--vxe-table-row-hover-checkbox-checked-background-color: #e6eeff;
|
|
115
115
|
}
|
|
116
|
-
[data-v-
|
|
116
|
+
[data-v-d94551a9] .vxe-table--render-default.border--default .vxe-header--column {
|
|
117
117
|
padding: 11px 0;
|
|
118
118
|
}
|
|
119
|
-
[data-v-
|
|
119
|
+
[data-v-d94551a9] .vxe-table--render-default .vxe-body--column.col--ellipsis {
|
|
120
120
|
height: 44px;
|
|
121
121
|
}
|
|
122
|
-
[data-v-
|
|
122
|
+
[data-v-d94551a9] .vxe-table--render-default .vxe-cell {
|
|
123
123
|
padding-left: 16px !important;
|
|
124
124
|
padding-right: 16px !important;
|
|
125
125
|
}
|
|
126
|
-
.btw-label-tag[data-v-
|
|
126
|
+
.btw-label-tag[data-v-d94551a9] {
|
|
127
127
|
margin: 0 4px 0 5px;
|
|
128
128
|
padding: 2px 6px;
|
|
129
129
|
font-size: 12px;
|
|
@@ -131,12 +131,12 @@
|
|
|
131
131
|
border-width: 1px;
|
|
132
132
|
border-style: solid;
|
|
133
133
|
}
|
|
134
|
-
.btw-label-tag.common[data-v-
|
|
134
|
+
.btw-label-tag.common[data-v-d94551a9] {
|
|
135
135
|
color: #1990ff;
|
|
136
136
|
background: #e8f5ff;
|
|
137
137
|
border-color: #c0dbff;
|
|
138
138
|
}
|
|
139
|
-
.btw-label-tag.local[data-v-
|
|
139
|
+
.btw-label-tag.local[data-v-d94551a9] {
|
|
140
140
|
color: #5e6b7f;
|
|
141
141
|
background: #f5f7fa;
|
|
142
142
|
border-color: #e4e9f2;
|
package/es/styles/index.css
CHANGED
|
@@ -62,6 +62,269 @@
|
|
|
62
62
|
* }
|
|
63
63
|
*/
|
|
64
64
|
/* stylelint-disable scss/no-global-function-names */
|
|
65
|
+
.light {
|
|
66
|
+
--ant-primary-color: var(--gct-color-primary);
|
|
67
|
+
--ant-primary-color-hover: var(--gct-color-primary-hover);
|
|
68
|
+
--ant-primary-color-active: var(--gct-color-primary-active);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
input:-webkit-autofill {
|
|
72
|
+
box-shadow: 0 0 0 1000px white inset !important;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
:-webkit-autofill {
|
|
76
|
+
transition: background-color 5000s ease-in-out 0s !important;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
html {
|
|
80
|
+
overflow: hidden;
|
|
81
|
+
text-size-adjust: 100%;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
html,
|
|
85
|
+
body {
|
|
86
|
+
width: 100%;
|
|
87
|
+
height: 100%;
|
|
88
|
+
overflow: visible;
|
|
89
|
+
overflow-x: hidden;
|
|
90
|
+
overscroll-behavior: none;
|
|
91
|
+
}
|
|
92
|
+
html.color-weak,
|
|
93
|
+
body.color-weak {
|
|
94
|
+
filter: invert(80%);
|
|
95
|
+
}
|
|
96
|
+
html.gray-mode,
|
|
97
|
+
body.gray-mode {
|
|
98
|
+
filter: grayscale(100%);
|
|
99
|
+
filter: progid:dximagetransform.microsoft.basicimage(grayscale=1);
|
|
100
|
+
}
|
|
101
|
+
html .copy-main,
|
|
102
|
+
body .copy-main {
|
|
103
|
+
box-sizing: border-box;
|
|
104
|
+
overflow: hidden;
|
|
105
|
+
text-overflow: ellipsis;
|
|
106
|
+
word-break: break-all; /* 任意字符处都可换行(包括单词中间) */
|
|
107
|
+
overflow-wrap: break-word; /* 允许在单词内换行 */
|
|
108
|
+
outline: none;
|
|
109
|
+
background-color: #fff;
|
|
110
|
+
border: 1px dashed #e8ebf0;
|
|
111
|
+
}
|
|
112
|
+
html .copy-main .copy-rich-text,
|
|
113
|
+
body .copy-main .copy-rich-text {
|
|
114
|
+
box-sizing: border-box;
|
|
115
|
+
width: 100%;
|
|
116
|
+
height: 100%;
|
|
117
|
+
overflow: hidden;
|
|
118
|
+
word-break: break-all; /* 任意字符处都可换行(包括单词中间) */
|
|
119
|
+
overflow-wrap: break-word; /* 允许在单词内换行 */
|
|
120
|
+
}
|
|
121
|
+
html .copy-main .copy-rich-text span,
|
|
122
|
+
body .copy-main .copy-rich-text span {
|
|
123
|
+
line-height: 1;
|
|
124
|
+
}
|
|
125
|
+
html .copy-main .copy-rich-text p,
|
|
126
|
+
body .copy-main .copy-rich-text p {
|
|
127
|
+
margin-bottom: 12px;
|
|
128
|
+
font-size: 12px;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
#app {
|
|
132
|
+
overflow: auto;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
a:focus,
|
|
136
|
+
a:active,
|
|
137
|
+
button,
|
|
138
|
+
div,
|
|
139
|
+
svg,
|
|
140
|
+
span {
|
|
141
|
+
outline: none;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.primary-gct {
|
|
145
|
+
color: getCssVar(color-primary) !important;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.warning-gct {
|
|
149
|
+
color: getCssVar(color-warning) !important;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.error-gct {
|
|
153
|
+
color: getCssVar(color-error) !important;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.success-gct {
|
|
157
|
+
color: getCssVar(color-success) !important;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.primary-gct-hover:hover {
|
|
161
|
+
color: getCssVar(color-primary) !important;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.warning-gct-hover:hover {
|
|
165
|
+
color: getCssVar(color-warning) !important;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.error-gct-hover:hover {
|
|
169
|
+
color: getCssVar(color-error) !important;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.success-gct-hover:hover {
|
|
173
|
+
color: getCssVar(color-success) !important;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.box-full {
|
|
177
|
+
width: 100%;
|
|
178
|
+
height: 100%;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.gct-divider__vertical {
|
|
182
|
+
display: inline-block;
|
|
183
|
+
height: var(--size, 14px);
|
|
184
|
+
margin-right: var(--space-r, 12px);
|
|
185
|
+
margin-left: var(--space-l, 12px);
|
|
186
|
+
border-left: 1px solid var(--color, #eaeaea);
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.ant-tabs.--tl-space .ant-tabs-nav {
|
|
190
|
+
padding-left: 24px;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.drawing-chosen {
|
|
194
|
+
background-color: rgba(13, 170, 156, 0.1) !important;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.simple-upload-model.ant-modal .ant-modal-header {
|
|
198
|
+
padding-right: 50px;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.gct-text-overflow {
|
|
202
|
+
overflow: hidden;
|
|
203
|
+
text-overflow: ellipsis;
|
|
204
|
+
word-break: break-all;
|
|
205
|
+
white-space: nowrap;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
a[danger] {
|
|
209
|
+
color: var(--ant-error-color);
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
div.ant-input-textarea.ant-input-textarea-show-count {
|
|
213
|
+
position: relative;
|
|
214
|
+
}
|
|
215
|
+
div.ant-input-textarea.ant-input-textarea-show-count textarea {
|
|
216
|
+
resize: none;
|
|
217
|
+
}
|
|
218
|
+
div.ant-input-textarea.ant-input-textarea-show-count.ant-input-textarea-show-count::after {
|
|
219
|
+
position: absolute;
|
|
220
|
+
right: 12px;
|
|
221
|
+
bottom: 1px;
|
|
222
|
+
margin: 0;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
button.ant-btn,
|
|
226
|
+
span.ant-input-affix-wrapper,
|
|
227
|
+
textarea.ant-input,
|
|
228
|
+
div.ant-input-number,
|
|
229
|
+
div.ant-select:not(.ant-select-customize-input) .ant-select-selector,
|
|
230
|
+
div.ant-picker,
|
|
231
|
+
div.ant-input-number-group-addon {
|
|
232
|
+
border-radius: 4px;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
input.ant-input {
|
|
236
|
+
border-radius: 0;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.ant-input-group.ant-input-group-compact > .ant-select:first-child > div.ant-select-selector,
|
|
240
|
+
span.ant-input-group.ant-input-group-compact > :first-child,
|
|
241
|
+
span.ant-input-group-addon {
|
|
242
|
+
border-top-left-radius: 4px;
|
|
243
|
+
border-bottom-left-radius: 4px;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
span.ant-input-group.ant-input-group-compact > :last-child,
|
|
247
|
+
span.ant-input-group-addon:last-child {
|
|
248
|
+
border-top-right-radius: 4px;
|
|
249
|
+
border-bottom-right-radius: 4px;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.gct-number-input.ant-input-number {
|
|
253
|
+
border-right-width: 0;
|
|
254
|
+
}
|
|
255
|
+
.gct-number-input.ant-input-number:hover {
|
|
256
|
+
border-right-width: 1px;
|
|
257
|
+
}
|
|
258
|
+
.gct-number-input .ant-input-number-group-addon {
|
|
259
|
+
font-size: 14px;
|
|
260
|
+
background-color: #fff;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.gct-edhr-table .ant-spin-nested-loading > div > .ant-spin {
|
|
264
|
+
max-height: 100%;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.gct-edhr-auto-size-table {
|
|
268
|
+
position: relative;
|
|
269
|
+
height: 100%;
|
|
270
|
+
overflow: hidden;
|
|
271
|
+
}
|
|
272
|
+
.gct-edhr-auto-size-table .ant-spin-nested-loading {
|
|
273
|
+
position: absolute;
|
|
274
|
+
inset: 0;
|
|
275
|
+
height: 100%;
|
|
276
|
+
overflow: hidden;
|
|
277
|
+
}
|
|
278
|
+
.gct-edhr-auto-size-table .ant-spin-nested-loading .ant-spin-container {
|
|
279
|
+
display: flex;
|
|
280
|
+
flex-direction: column;
|
|
281
|
+
justify-content: space-between;
|
|
282
|
+
width: 100%;
|
|
283
|
+
height: 100%;
|
|
284
|
+
overflow: hidden;
|
|
285
|
+
}
|
|
286
|
+
.gct-edhr-auto-size-table .ant-spin-nested-loading .ant-spin-container .ant-table {
|
|
287
|
+
flex: 1;
|
|
288
|
+
overflow: hidden;
|
|
289
|
+
}
|
|
290
|
+
.gct-edhr-auto-size-table .ant-spin-nested-loading .ant-spin-container .ant-table-container {
|
|
291
|
+
display: flex;
|
|
292
|
+
flex-direction: column;
|
|
293
|
+
height: 100%;
|
|
294
|
+
overflow: hidden;
|
|
295
|
+
}
|
|
296
|
+
.gct-edhr-auto-size-table .ant-spin-nested-loading .ant-spin-container .ant-table-container .ant-table-body {
|
|
297
|
+
flex: 1;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.gct-edhr-pagination .ant-pagination.ant-table-pagination {
|
|
301
|
+
margin-bottom: 0;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
/* stylelint-disable-next-line no-descending-specificity */
|
|
305
|
+
.ant-table {
|
|
306
|
+
color: #212528;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.gct-border-dashed {
|
|
310
|
+
border: 2px dashed #dbdbdb;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.wujie-sub-app {
|
|
314
|
+
/* stylelint-disable-next-line selector-id-pattern */
|
|
315
|
+
}
|
|
316
|
+
.wujie-sub-app #__vue-devtools-container__ {
|
|
317
|
+
display: none !important;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.ant-radio .ant-radio-inner {
|
|
321
|
+
border-color: var(--gct-color-border);
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.is-hidden {
|
|
325
|
+
display: none !important;
|
|
326
|
+
}
|
|
327
|
+
|
|
65
328
|
.vxe-table--render-default.vxe-editable .vxe-body--column {
|
|
66
329
|
height: 44px;
|
|
67
330
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gct-paas/core-web",
|
|
3
|
-
"version": "0.1.6-dev.
|
|
3
|
+
"version": "0.1.6-dev.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "paas 平台网页端核心包",
|
|
6
6
|
"loader": "dist/loader.esm.min.js",
|
|
@@ -64,18 +64,18 @@
|
|
|
64
64
|
"vxe-table": "npm:@gct-paas/vxe-table@4.6.19",
|
|
65
65
|
"wujie": "^1.0.29",
|
|
66
66
|
"wujie-vue3": "^1.0.29",
|
|
67
|
-
"@gct-paas/core": "0.1.6-dev.
|
|
68
|
-
"@gct-paas/
|
|
69
|
-
"@gct-paas/
|
|
67
|
+
"@gct-paas/core": "0.1.6-dev.9",
|
|
68
|
+
"@gct-paas/core-components": "0.1.6-dev.9",
|
|
69
|
+
"@gct-paas/scss": "0.1.6-dev.9"
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|
|
72
72
|
"@gct-paas/api": "^0.1.6-dev.5",
|
|
73
73
|
"@types/sortablejs": "^1.15.1",
|
|
74
74
|
"vant": ">=4",
|
|
75
75
|
"vue": ">=3",
|
|
76
|
-
"@gct-paas/core": "0.1.6-dev.
|
|
77
|
-
"@gct-paas/
|
|
78
|
-
"@gct-paas/
|
|
76
|
+
"@gct-paas/core": "0.1.6-dev.9",
|
|
77
|
+
"@gct-paas/scss": "0.1.6-dev.9",
|
|
78
|
+
"@gct-paas/core-components": "0.1.6-dev.9"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
81
|
"@types/bwip-js": "^3.2.3"
|