@jetlinks-web/components 2.0.36 → 2.0.37
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/es/FullPage/FullPage.js +1 -1
- package/es/ProTable/Content.js +5 -2
- package/es/ProTable/style/ProTable.less +134 -134
- package/es/Search/Advanced/SaveHistory.js +1 -1
- package/es/Search/Item.js +1 -1
- package/es/Search/Search.js +1 -1
- package/es/style/index.css +0 -3
- package/lib/FullPage/FullPage.js +1 -1
- package/lib/ProTable/Content.js +5 -2
- package/lib/ProTable/style/ProTable.less +134 -134
- package/lib/Search/Advanced/SaveHistory.js +1 -1
- package/lib/Search/Item.js +1 -1
- package/lib/Search/Search.js +1 -1
- package/lib/style/index.css +0 -3
- package/package.json +3 -3
package/es/FullPage/FullPage.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
} */
|
|
7
7
|
import { defineComponent as _defineComponent } from 'vue';
|
|
8
8
|
import { unref as _unref, renderSlot as _renderSlot, createElementVNode as _createElementVNode, normalizeStyle as _normalizeStyle, openBlock as _openBlock, createElementBlock as _createElementBlock, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
9
|
-
const _withScopeId = n => (_pushScopeId("data-v-
|
|
9
|
+
const _withScopeId = n => (_pushScopeId("data-v-1720601917260"), n = n(), _popScopeId(), n);
|
|
10
10
|
const _hoisted_1 = { class: "full-page-warp-content" };
|
|
11
11
|
import { ref } from 'vue';
|
|
12
12
|
import { useElementBounding } from '@vueuse/core';
|
package/es/ProTable/Content.js
CHANGED
|
@@ -104,9 +104,12 @@ const __sfc_main__ = _defineComponent({
|
|
|
104
104
|
headerCell: _withCtx(({ column, title }) => [
|
|
105
105
|
_renderSlot(_ctx.$slots, "headerCell", _normalizeProps(_guardReactiveProps({ column, title })))
|
|
106
106
|
]),
|
|
107
|
-
bodyCell: _withCtx(({ column, record }) => [
|
|
107
|
+
bodyCell: _withCtx(({ column, record, index }) => [
|
|
108
108
|
((_optionalChain([column, 'optionalAccess', _9 => _9.key]) || _optionalChain([column, 'optionalAccess', _10 => _10.dataIndex])) && _optionalChain([column, 'optionalAccess', _11 => _11.scopedSlots]) && (_optionalChain([_unref, 'call', _12 => _12(slots), 'optionalAccess', _13 => _13[_optionalChain([column, 'optionalAccess', _14 => _14.dataIndex])]]) || _optionalChain([_unref, 'call', _15 => _15(slots), 'optionalAccess', _16 => _16[_optionalChain([column, 'optionalAccess', _17 => _17.key])]])))
|
|
109
|
-
? _renderSlot(_ctx.$slots, _optionalChain([column, 'optionalAccess', _18 => _18.key]) || _optionalChain([column, 'optionalAccess', _19 => _19.dataIndex]),
|
|
109
|
+
? _renderSlot(_ctx.$slots, _optionalChain([column, 'optionalAccess', _18 => _18.key]) || _optionalChain([column, 'optionalAccess', _19 => _19.dataIndex]), _mergeProps({ key: 0 }, record, {
|
|
110
|
+
index: index,
|
|
111
|
+
column: column
|
|
112
|
+
}))
|
|
110
113
|
: (_openBlock(), _createElementBlock(_Fragment, { key: 1 }, [
|
|
111
114
|
_createTextVNode(_toDisplayString(_unref(get)(record, _optionalChain([column, 'optionalAccess', _20 => _20.dataIndex]) || _optionalChain([column, 'optionalAccess', _21 => _21.key]))), 1 /* TEXT */)
|
|
112
115
|
], 64 /* STABLE_FRAGMENT */))
|
|
@@ -1,134 +1,134 @@
|
|
|
1
|
-
@import '../../style/variable.less';
|
|
2
|
-
@import 'ant-design-vue/es/pagination/style/index.less';
|
|
3
|
-
|
|
4
|
-
.jtable-body-spin {
|
|
5
|
-
height: 100%;
|
|
6
|
-
width: 100%;
|
|
7
|
-
background-color: #fff;
|
|
8
|
-
|
|
9
|
-
.ant-spin-nested-loading {
|
|
10
|
-
height: 100%;
|
|
11
|
-
|
|
12
|
-
.ant-spin-container {
|
|
13
|
-
height: 100%;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.jtable-body {
|
|
18
|
-
width: 100%;
|
|
19
|
-
box-sizing: border-box;
|
|
20
|
-
height: 100%;
|
|
21
|
-
display: flex;
|
|
22
|
-
flex-direction: column;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.jtable-body-header {
|
|
27
|
-
display: flex;
|
|
28
|
-
justify-content: space-between;
|
|
29
|
-
align-items: center;
|
|
30
|
-
margin-bottom: 16px;
|
|
31
|
-
width: 100%;
|
|
32
|
-
gap: 8px;
|
|
33
|
-
|
|
34
|
-
.jtable-body-header-left {
|
|
35
|
-
flex: 1;
|
|
36
|
-
min-width: 0;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.jtable-body-header-right {
|
|
40
|
-
display: flex;
|
|
41
|
-
gap: 8px;
|
|
42
|
-
align-items: center;
|
|
43
|
-
|
|
44
|
-
.jtable-body-header-right-button {
|
|
45
|
-
width: 62px;
|
|
46
|
-
|
|
47
|
-
.right-button-icon {
|
|
48
|
-
font-size: 16px;
|
|
49
|
-
color: #d9d9d9;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.ant-radio-button-wrapper {
|
|
53
|
-
padding: 0 8px;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
:deep(.ant-radio-button-wrapper-checked) {
|
|
57
|
-
color: @primary-color;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.jtable-box {
|
|
64
|
-
flex: 1;
|
|
65
|
-
min-height: 0;
|
|
66
|
-
|
|
67
|
-
.jtable-card {
|
|
68
|
-
height: 100%;
|
|
69
|
-
overflow-y: auto;
|
|
70
|
-
|
|
71
|
-
.jtable-card-items {
|
|
72
|
-
display: grid;
|
|
73
|
-
grid-gap: 26px;
|
|
74
|
-
|
|
75
|
-
.jtable-card-item {
|
|
76
|
-
display: flex;
|
|
77
|
-
min-width: 0;
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.j-table-empty {
|
|
82
|
-
margin-top: 100px;
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
.ant-table-wrapper {
|
|
87
|
-
height: 100%;
|
|
88
|
-
.ant-table {
|
|
89
|
-
height: 100%;
|
|
90
|
-
|
|
91
|
-
.ant-table-container {
|
|
92
|
-
height: 100%;
|
|
93
|
-
|
|
94
|
-
.ant-table-content {
|
|
95
|
-
height: 100%;
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
.j-table-scroll {
|
|
102
|
-
|
|
103
|
-
.ant-table-container {
|
|
104
|
-
display: flex;
|
|
105
|
-
flex-direction: column;
|
|
106
|
-
|
|
107
|
-
.ant-table-body {
|
|
108
|
-
flex: 1;
|
|
109
|
-
min-height: 0;
|
|
110
|
-
overflow-y: auto;
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
.jtable-alert {
|
|
117
|
-
margin-bottom: 16px;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
.jtable-pagination {
|
|
121
|
-
width: 100%;
|
|
122
|
-
display: flex;
|
|
123
|
-
justify-content: flex-end;
|
|
124
|
-
margin-top: 16px;
|
|
125
|
-
|
|
126
|
-
.show-content {
|
|
127
|
-
.@{ant-prefix}-pagination-item,
|
|
128
|
-
& .@{ant-prefix}-pagination-jump-prev,
|
|
129
|
-
& .@{ant-prefix}-pagination-jump-next {
|
|
130
|
-
display: none;
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
|
|
1
|
+
@import '../../style/variable.less';
|
|
2
|
+
@import 'ant-design-vue/es/pagination/style/index.less';
|
|
3
|
+
|
|
4
|
+
.jtable-body-spin {
|
|
5
|
+
height: 100%;
|
|
6
|
+
width: 100%;
|
|
7
|
+
background-color: #fff;
|
|
8
|
+
|
|
9
|
+
.ant-spin-nested-loading {
|
|
10
|
+
height: 100%;
|
|
11
|
+
|
|
12
|
+
.ant-spin-container {
|
|
13
|
+
height: 100%;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.jtable-body {
|
|
18
|
+
width: 100%;
|
|
19
|
+
box-sizing: border-box;
|
|
20
|
+
height: 100%;
|
|
21
|
+
display: flex;
|
|
22
|
+
flex-direction: column;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.jtable-body-header {
|
|
27
|
+
display: flex;
|
|
28
|
+
justify-content: space-between;
|
|
29
|
+
align-items: center;
|
|
30
|
+
margin-bottom: 16px;
|
|
31
|
+
width: 100%;
|
|
32
|
+
gap: 8px;
|
|
33
|
+
|
|
34
|
+
.jtable-body-header-left {
|
|
35
|
+
flex: 1;
|
|
36
|
+
min-width: 0;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.jtable-body-header-right {
|
|
40
|
+
display: flex;
|
|
41
|
+
gap: 8px;
|
|
42
|
+
align-items: center;
|
|
43
|
+
|
|
44
|
+
.jtable-body-header-right-button {
|
|
45
|
+
width: 62px;
|
|
46
|
+
|
|
47
|
+
.right-button-icon {
|
|
48
|
+
font-size: 16px;
|
|
49
|
+
color: #d9d9d9;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.ant-radio-button-wrapper {
|
|
53
|
+
padding: 0 8px;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
:deep(.ant-radio-button-wrapper-checked) {
|
|
57
|
+
color: @primary-color;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.jtable-box {
|
|
64
|
+
flex: 1;
|
|
65
|
+
min-height: 0;
|
|
66
|
+
|
|
67
|
+
.jtable-card {
|
|
68
|
+
height: 100%;
|
|
69
|
+
overflow-y: auto;
|
|
70
|
+
|
|
71
|
+
.jtable-card-items {
|
|
72
|
+
display: grid;
|
|
73
|
+
grid-gap: 26px;
|
|
74
|
+
|
|
75
|
+
.jtable-card-item {
|
|
76
|
+
display: flex;
|
|
77
|
+
min-width: 0;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.j-table-empty {
|
|
82
|
+
margin-top: 100px;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.ant-table-wrapper {
|
|
87
|
+
height: 100%;
|
|
88
|
+
.ant-table {
|
|
89
|
+
height: 100%;
|
|
90
|
+
|
|
91
|
+
.ant-table-container {
|
|
92
|
+
height: 100%;
|
|
93
|
+
|
|
94
|
+
.ant-table-content {
|
|
95
|
+
height: 100%;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.j-table-scroll {
|
|
102
|
+
|
|
103
|
+
.ant-table-container {
|
|
104
|
+
display: flex;
|
|
105
|
+
flex-direction: column;
|
|
106
|
+
|
|
107
|
+
.ant-table-body {
|
|
108
|
+
flex: 1;
|
|
109
|
+
min-height: 0;
|
|
110
|
+
overflow-y: auto;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.jtable-alert {
|
|
117
|
+
margin-bottom: 16px;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.jtable-pagination {
|
|
121
|
+
width: 100%;
|
|
122
|
+
display: flex;
|
|
123
|
+
justify-content: flex-end;
|
|
124
|
+
margin-top: 16px;
|
|
125
|
+
|
|
126
|
+
.show-content {
|
|
127
|
+
.@{ant-prefix}-pagination-item,
|
|
128
|
+
& .@{ant-prefix}-pagination-jump-prev,
|
|
129
|
+
& .@{ant-prefix}-pagination-jump-next {
|
|
130
|
+
display: none;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
} */
|
|
22
22
|
import { defineComponent as _defineComponent } from 'vue';
|
|
23
23
|
import { unref as _unref, createVNode as _createVNode, withCtx as _withCtx, createTextVNode as _createTextVNode, openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, createBlock as _createBlock, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
24
|
-
const _withScopeId = n => (_pushScopeId("data-v-
|
|
24
|
+
const _withScopeId = n => (_pushScopeId("data-v-1720601920280"), n = n(), _popScopeId(), n);
|
|
25
25
|
const _hoisted_1 = {
|
|
26
26
|
key: 0,
|
|
27
27
|
style: { "width": "240px" }
|
package/es/Search/Item.js
CHANGED
|
@@ -78,7 +78,7 @@ function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]
|
|
|
78
78
|
} */
|
|
79
79
|
import { defineComponent as _defineComponent } from 'vue';
|
|
80
80
|
import { unref as _unref, openBlock as _openBlock, createBlock as _createBlock, createCommentVNode as _createCommentVNode, toDisplayString as _toDisplayString, createElementBlock as _createElementBlock, createVNode as _createVNode, Fragment as _Fragment, normalizeStyle as _normalizeStyle, mergeProps as _mergeProps, resolveDynamicComponent as _resolveDynamicComponent, withCtx as _withCtx, createElementVNode as _createElementVNode, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
81
|
-
const _withScopeId = n => (_pushScopeId("data-v-
|
|
81
|
+
const _withScopeId = n => (_pushScopeId("data-v-1720601919690"), n = n(), _popScopeId(), n);
|
|
82
82
|
const _hoisted_1 = { class: "JSearch-item" };
|
|
83
83
|
const _hoisted_2 = {
|
|
84
84
|
key: 0,
|
package/es/Search/Search.js
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
} */
|
|
37
37
|
import { defineComponent as _defineComponent } from 'vue';
|
|
38
38
|
import { renderList as _renderList, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock, createVNode as _createVNode, unref as _unref, withCtx as _withCtx, createBlock as _createBlock, renderSlot as _renderSlot, toDisplayString as _toDisplayString, createTextVNode as _createTextVNode, normalizeStyle as _normalizeStyle, createElementVNode as _createElementVNode, normalizeClass as _normalizeClass, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
39
|
-
const _withScopeId = n => (_pushScopeId("data-v-
|
|
39
|
+
const _withScopeId = n => (_pushScopeId("data-v-1720601919810"), n = n(), _popScopeId(), n);
|
|
40
40
|
const _hoisted_1 = { class: "JSearch-content simple" };
|
|
41
41
|
const _hoisted_2 = { class: "JSearch-items" };
|
|
42
42
|
import { Button, Row, Col, Form, FormItemRest, } from 'ant-design-vue';
|
package/es/style/index.css
CHANGED
|
@@ -1108,9 +1108,6 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
1108
1108
|
.jtable-box .ant-table-wrapper .ant-table .ant-table-container .ant-table-content {
|
|
1109
1109
|
height: 100%;
|
|
1110
1110
|
}
|
|
1111
|
-
.jtable-box .j-table-scroll {
|
|
1112
|
-
background-color: red;
|
|
1113
|
-
}
|
|
1114
1111
|
.jtable-box .j-table-scroll .ant-table-container {
|
|
1115
1112
|
display: flex;
|
|
1116
1113
|
flex-direction: column;
|
package/lib/FullPage/FullPage.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
} */
|
|
7
7
|
import { defineComponent as _defineComponent } from 'vue';
|
|
8
8
|
import { unref as _unref, renderSlot as _renderSlot, createElementVNode as _createElementVNode, normalizeStyle as _normalizeStyle, openBlock as _openBlock, createElementBlock as _createElementBlock, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
9
|
-
const _withScopeId = n => (_pushScopeId("data-v-
|
|
9
|
+
const _withScopeId = n => (_pushScopeId("data-v-1720601917237"), n = n(), _popScopeId(), n);
|
|
10
10
|
const _hoisted_1 = { class: "full-page-warp-content" };
|
|
11
11
|
import { ref } from 'vue';
|
|
12
12
|
import { useElementBounding } from '@vueuse/core';
|
package/lib/ProTable/Content.js
CHANGED
|
@@ -104,9 +104,12 @@ const __sfc_main__ = _defineComponent({
|
|
|
104
104
|
headerCell: _withCtx(({ column, title }) => [
|
|
105
105
|
_renderSlot(_ctx.$slots, "headerCell", _normalizeProps(_guardReactiveProps({ column, title })))
|
|
106
106
|
]),
|
|
107
|
-
bodyCell: _withCtx(({ column, record }) => [
|
|
107
|
+
bodyCell: _withCtx(({ column, record, index }) => [
|
|
108
108
|
((_optionalChain([column, 'optionalAccess', _9 => _9.key]) || _optionalChain([column, 'optionalAccess', _10 => _10.dataIndex])) && _optionalChain([column, 'optionalAccess', _11 => _11.scopedSlots]) && (_optionalChain([_unref, 'call', _12 => _12(slots), 'optionalAccess', _13 => _13[_optionalChain([column, 'optionalAccess', _14 => _14.dataIndex])]]) || _optionalChain([_unref, 'call', _15 => _15(slots), 'optionalAccess', _16 => _16[_optionalChain([column, 'optionalAccess', _17 => _17.key])]])))
|
|
109
|
-
? _renderSlot(_ctx.$slots, _optionalChain([column, 'optionalAccess', _18 => _18.key]) || _optionalChain([column, 'optionalAccess', _19 => _19.dataIndex]),
|
|
109
|
+
? _renderSlot(_ctx.$slots, _optionalChain([column, 'optionalAccess', _18 => _18.key]) || _optionalChain([column, 'optionalAccess', _19 => _19.dataIndex]), _mergeProps({ key: 0 }, record, {
|
|
110
|
+
index: index,
|
|
111
|
+
column: column
|
|
112
|
+
}))
|
|
110
113
|
: (_openBlock(), _createElementBlock(_Fragment, { key: 1 }, [
|
|
111
114
|
_createTextVNode(_toDisplayString(_unref(get)(record, _optionalChain([column, 'optionalAccess', _20 => _20.dataIndex]) || _optionalChain([column, 'optionalAccess', _21 => _21.key]))), 1 /* TEXT */)
|
|
112
115
|
], 64 /* STABLE_FRAGMENT */))
|
|
@@ -1,134 +1,134 @@
|
|
|
1
|
-
@import '../../style/variable.less';
|
|
2
|
-
@import 'ant-design-vue/lib/pagination/style/index.less';
|
|
3
|
-
|
|
4
|
-
.jtable-body-spin {
|
|
5
|
-
height: 100%;
|
|
6
|
-
width: 100%;
|
|
7
|
-
background-color: #fff;
|
|
8
|
-
|
|
9
|
-
.ant-spin-nested-loading {
|
|
10
|
-
height: 100%;
|
|
11
|
-
|
|
12
|
-
.ant-spin-container {
|
|
13
|
-
height: 100%;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.jtable-body {
|
|
18
|
-
width: 100%;
|
|
19
|
-
box-sizing: border-box;
|
|
20
|
-
height: 100%;
|
|
21
|
-
display: flex;
|
|
22
|
-
flex-direction: column;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.jtable-body-header {
|
|
27
|
-
display: flex;
|
|
28
|
-
justify-content: space-between;
|
|
29
|
-
align-items: center;
|
|
30
|
-
margin-bottom: 16px;
|
|
31
|
-
width: 100%;
|
|
32
|
-
gap: 8px;
|
|
33
|
-
|
|
34
|
-
.jtable-body-header-left {
|
|
35
|
-
flex: 1;
|
|
36
|
-
min-width: 0;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.jtable-body-header-right {
|
|
40
|
-
display: flex;
|
|
41
|
-
gap: 8px;
|
|
42
|
-
align-items: center;
|
|
43
|
-
|
|
44
|
-
.jtable-body-header-right-button {
|
|
45
|
-
width: 62px;
|
|
46
|
-
|
|
47
|
-
.right-button-icon {
|
|
48
|
-
font-size: 16px;
|
|
49
|
-
color: #d9d9d9;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.ant-radio-button-wrapper {
|
|
53
|
-
padding: 0 8px;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
:deep(.ant-radio-button-wrapper-checked) {
|
|
57
|
-
color: @primary-color;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.jtable-box {
|
|
64
|
-
flex: 1;
|
|
65
|
-
min-height: 0;
|
|
66
|
-
|
|
67
|
-
.jtable-card {
|
|
68
|
-
height: 100%;
|
|
69
|
-
overflow-y: auto;
|
|
70
|
-
|
|
71
|
-
.jtable-card-items {
|
|
72
|
-
display: grid;
|
|
73
|
-
grid-gap: 26px;
|
|
74
|
-
|
|
75
|
-
.jtable-card-item {
|
|
76
|
-
display: flex;
|
|
77
|
-
min-width: 0;
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.j-table-empty {
|
|
82
|
-
margin-top: 100px;
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
.ant-table-wrapper {
|
|
87
|
-
height: 100%;
|
|
88
|
-
.ant-table {
|
|
89
|
-
height: 100%;
|
|
90
|
-
|
|
91
|
-
.ant-table-container {
|
|
92
|
-
height: 100%;
|
|
93
|
-
|
|
94
|
-
.ant-table-content {
|
|
95
|
-
height: 100%;
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
.j-table-scroll {
|
|
102
|
-
|
|
103
|
-
.ant-table-container {
|
|
104
|
-
display: flex;
|
|
105
|
-
flex-direction: column;
|
|
106
|
-
|
|
107
|
-
.ant-table-body {
|
|
108
|
-
flex: 1;
|
|
109
|
-
min-height: 0;
|
|
110
|
-
overflow-y: auto;
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
.jtable-alert {
|
|
117
|
-
margin-bottom: 16px;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
.jtable-pagination {
|
|
121
|
-
width: 100%;
|
|
122
|
-
display: flex;
|
|
123
|
-
justify-content: flex-end;
|
|
124
|
-
margin-top: 16px;
|
|
125
|
-
|
|
126
|
-
.show-content {
|
|
127
|
-
.@{ant-prefix}-pagination-item,
|
|
128
|
-
& .@{ant-prefix}-pagination-jump-prev,
|
|
129
|
-
& .@{ant-prefix}-pagination-jump-next {
|
|
130
|
-
display: none;
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
|
|
1
|
+
@import '../../style/variable.less';
|
|
2
|
+
@import 'ant-design-vue/lib/pagination/style/index.less';
|
|
3
|
+
|
|
4
|
+
.jtable-body-spin {
|
|
5
|
+
height: 100%;
|
|
6
|
+
width: 100%;
|
|
7
|
+
background-color: #fff;
|
|
8
|
+
|
|
9
|
+
.ant-spin-nested-loading {
|
|
10
|
+
height: 100%;
|
|
11
|
+
|
|
12
|
+
.ant-spin-container {
|
|
13
|
+
height: 100%;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.jtable-body {
|
|
18
|
+
width: 100%;
|
|
19
|
+
box-sizing: border-box;
|
|
20
|
+
height: 100%;
|
|
21
|
+
display: flex;
|
|
22
|
+
flex-direction: column;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.jtable-body-header {
|
|
27
|
+
display: flex;
|
|
28
|
+
justify-content: space-between;
|
|
29
|
+
align-items: center;
|
|
30
|
+
margin-bottom: 16px;
|
|
31
|
+
width: 100%;
|
|
32
|
+
gap: 8px;
|
|
33
|
+
|
|
34
|
+
.jtable-body-header-left {
|
|
35
|
+
flex: 1;
|
|
36
|
+
min-width: 0;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.jtable-body-header-right {
|
|
40
|
+
display: flex;
|
|
41
|
+
gap: 8px;
|
|
42
|
+
align-items: center;
|
|
43
|
+
|
|
44
|
+
.jtable-body-header-right-button {
|
|
45
|
+
width: 62px;
|
|
46
|
+
|
|
47
|
+
.right-button-icon {
|
|
48
|
+
font-size: 16px;
|
|
49
|
+
color: #d9d9d9;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.ant-radio-button-wrapper {
|
|
53
|
+
padding: 0 8px;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
:deep(.ant-radio-button-wrapper-checked) {
|
|
57
|
+
color: @primary-color;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.jtable-box {
|
|
64
|
+
flex: 1;
|
|
65
|
+
min-height: 0;
|
|
66
|
+
|
|
67
|
+
.jtable-card {
|
|
68
|
+
height: 100%;
|
|
69
|
+
overflow-y: auto;
|
|
70
|
+
|
|
71
|
+
.jtable-card-items {
|
|
72
|
+
display: grid;
|
|
73
|
+
grid-gap: 26px;
|
|
74
|
+
|
|
75
|
+
.jtable-card-item {
|
|
76
|
+
display: flex;
|
|
77
|
+
min-width: 0;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.j-table-empty {
|
|
82
|
+
margin-top: 100px;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.ant-table-wrapper {
|
|
87
|
+
height: 100%;
|
|
88
|
+
.ant-table {
|
|
89
|
+
height: 100%;
|
|
90
|
+
|
|
91
|
+
.ant-table-container {
|
|
92
|
+
height: 100%;
|
|
93
|
+
|
|
94
|
+
.ant-table-content {
|
|
95
|
+
height: 100%;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.j-table-scroll {
|
|
102
|
+
|
|
103
|
+
.ant-table-container {
|
|
104
|
+
display: flex;
|
|
105
|
+
flex-direction: column;
|
|
106
|
+
|
|
107
|
+
.ant-table-body {
|
|
108
|
+
flex: 1;
|
|
109
|
+
min-height: 0;
|
|
110
|
+
overflow-y: auto;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.jtable-alert {
|
|
117
|
+
margin-bottom: 16px;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.jtable-pagination {
|
|
121
|
+
width: 100%;
|
|
122
|
+
display: flex;
|
|
123
|
+
justify-content: flex-end;
|
|
124
|
+
margin-top: 16px;
|
|
125
|
+
|
|
126
|
+
.show-content {
|
|
127
|
+
.@{ant-prefix}-pagination-item,
|
|
128
|
+
& .@{ant-prefix}-pagination-jump-prev,
|
|
129
|
+
& .@{ant-prefix}-pagination-jump-next {
|
|
130
|
+
display: none;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
} */
|
|
22
22
|
import { defineComponent as _defineComponent } from 'vue';
|
|
23
23
|
import { unref as _unref, createVNode as _createVNode, withCtx as _withCtx, createTextVNode as _createTextVNode, openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, createBlock as _createBlock, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
24
|
-
const _withScopeId = n => (_pushScopeId("data-v-
|
|
24
|
+
const _withScopeId = n => (_pushScopeId("data-v-1720601920293"), n = n(), _popScopeId(), n);
|
|
25
25
|
const _hoisted_1 = {
|
|
26
26
|
key: 0,
|
|
27
27
|
style: { "width": "240px" }
|
package/lib/Search/Item.js
CHANGED
|
@@ -78,7 +78,7 @@ function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]
|
|
|
78
78
|
} */
|
|
79
79
|
import { defineComponent as _defineComponent } from 'vue';
|
|
80
80
|
import { unref as _unref, openBlock as _openBlock, createBlock as _createBlock, createCommentVNode as _createCommentVNode, toDisplayString as _toDisplayString, createElementBlock as _createElementBlock, createVNode as _createVNode, Fragment as _Fragment, normalizeStyle as _normalizeStyle, mergeProps as _mergeProps, resolveDynamicComponent as _resolveDynamicComponent, withCtx as _withCtx, createElementVNode as _createElementVNode, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
81
|
-
const _withScopeId = n => (_pushScopeId("data-v-
|
|
81
|
+
const _withScopeId = n => (_pushScopeId("data-v-1720601919613"), n = n(), _popScopeId(), n);
|
|
82
82
|
const _hoisted_1 = { class: "JSearch-item" };
|
|
83
83
|
const _hoisted_2 = {
|
|
84
84
|
key: 0,
|
package/lib/Search/Search.js
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
} */
|
|
37
37
|
import { defineComponent as _defineComponent } from 'vue';
|
|
38
38
|
import { renderList as _renderList, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock, createVNode as _createVNode, unref as _unref, withCtx as _withCtx, createBlock as _createBlock, renderSlot as _renderSlot, toDisplayString as _toDisplayString, createTextVNode as _createTextVNode, normalizeStyle as _normalizeStyle, createElementVNode as _createElementVNode, normalizeClass as _normalizeClass, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
39
|
-
const _withScopeId = n => (_pushScopeId("data-v-
|
|
39
|
+
const _withScopeId = n => (_pushScopeId("data-v-1720601919781"), n = n(), _popScopeId(), n);
|
|
40
40
|
const _hoisted_1 = { class: "JSearch-content simple" };
|
|
41
41
|
const _hoisted_2 = { class: "JSearch-items" };
|
|
42
42
|
import { Button, Row, Col, Form, FormItemRest, } from 'ant-design-vue';
|
package/lib/style/index.css
CHANGED
|
@@ -1108,9 +1108,6 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
1108
1108
|
.jtable-box .ant-table-wrapper .ant-table .ant-table-container .ant-table-content {
|
|
1109
1109
|
height: 100%;
|
|
1110
1110
|
}
|
|
1111
|
-
.jtable-box .j-table-scroll {
|
|
1112
|
-
background-color: red;
|
|
1113
|
-
}
|
|
1114
1111
|
.jtable-box .j-table-scroll .ant-table-container {
|
|
1115
1112
|
display: flex;
|
|
1116
1113
|
flex-direction: column;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jetlinks-web/components",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.37",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -135,8 +135,8 @@
|
|
|
135
135
|
"webpack-merge": "^5.0.0",
|
|
136
136
|
"webpackbar": "^5.0.2",
|
|
137
137
|
"@jetlinks-web/constants": "^1.0.2",
|
|
138
|
-
"@jetlinks-web/
|
|
139
|
-
"@jetlinks-web/
|
|
138
|
+
"@jetlinks-web/hooks": "^1.0.13",
|
|
139
|
+
"@jetlinks-web/utils": "^1.0.7"
|
|
140
140
|
},
|
|
141
141
|
"publishConfig": {
|
|
142
142
|
"registry": "https://registry.npmjs.org/",
|