@zgfe/modules-interval 1.0.0-interval.16 → 1.0.0-interval.18
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/esm/components/common/styles/index.less +10 -6
- package/dist/esm/components/eventFilter/index.js +16 -12
- package/dist/esm/components/eventFilter/styles/index.less +0 -3
- package/dist/esm/components/eventFilter/types.d.ts +1 -0
- package/dist/esm/components/renderContent/index.js +1 -1
- package/dist/esm/components/searchPanel/index.js +1 -0
- package/dist/esm/components/searchPanel/styles/index.less +33 -27
- package/dist/esm/components/topBar/styles/index.less +1 -0
- package/dist/esm/modules/chart/index.js +1 -1
- package/dist/esm/modules/content/index.js +1 -0
- package/dist/esm/modules/content/utils.d.ts +1 -5
- package/dist/esm/modules/content/utils.js +8 -6
- package/dist/esm/modules/home/styles/index.less +5 -1
- package/dist/esm/modules/topPanel/index.js +12 -29
- package/dist/esm/modules/topPanel/styles/index.less +85 -2
- package/dist/esm/style/image/empty.png +0 -0
- package/dist/esm/types.d.ts +2 -2
- package/package.json +2 -2
|
@@ -11,17 +11,21 @@
|
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
&-none-text {
|
|
14
|
-
color:
|
|
15
|
-
font-size:
|
|
14
|
+
color: #354354;
|
|
15
|
+
font-size: 14px;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
&-none {
|
|
19
|
-
width:
|
|
20
|
-
height:
|
|
21
|
-
background: url('../../../style/image/
|
|
19
|
+
width: 88px;
|
|
20
|
+
height: 88px;
|
|
21
|
+
background-image: url('../../../style/image/empty.png');
|
|
22
|
+
background-repeat: no-repeat;
|
|
23
|
+
background-size: cover;
|
|
22
24
|
}
|
|
23
25
|
|
|
24
26
|
&-none-container {
|
|
25
|
-
|
|
27
|
+
display: flex;
|
|
28
|
+
flex-direction: column;
|
|
29
|
+
align-items: center;
|
|
26
30
|
}
|
|
27
31
|
}
|
|
@@ -10,7 +10,7 @@ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o =
|
|
|
10
10
|
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
|
11
11
|
function _iterableToArrayLimit(arr, i) { var _i = null == arr ? null : "undefined" != typeof Symbol && arr[Symbol.iterator] || arr["@@iterator"]; if (null != _i) { var _s, _e, _x, _r, _arr = [], _n = !0, _d = !1; try { if (_x = (_i = _i.call(arr)).next, 0 === i) { if (Object(_i) !== _i) return; _n = !1; } else for (; !(_n = (_s = _x.call(_i)).done) && (_arr.push(_s.value), _arr.length !== i); _n = !0); } catch (err) { _d = !0, _e = err; } finally { try { if (!_n && null != _i.return && (_r = _i.return(), Object(_r) !== _r)) return; } finally { if (_d) throw _e; } } return _arr; } }
|
|
12
12
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
13
|
-
import { Switch, Tooltip } from 'antd';
|
|
13
|
+
import { Switch, Tooltip, message } from 'antd';
|
|
14
14
|
import React, { useEffect, useRef, useState } from 'react';
|
|
15
15
|
import { BizEventSelector, IconFont, BizAttrConditionGroup } from '@zgfe/business-lib';
|
|
16
16
|
import "./styles/index.less";
|
|
@@ -82,11 +82,16 @@ var EventFilter = function EventFilter(props) {
|
|
|
82
82
|
|
|
83
83
|
// 添加筛选
|
|
84
84
|
var onAdd = function onAdd() {
|
|
85
|
+
if (!eventOverview) {
|
|
86
|
+
message.error('请先选择目标事件');
|
|
87
|
+
return;
|
|
88
|
+
}
|
|
85
89
|
if (event.id === -1) {
|
|
86
90
|
return;
|
|
87
91
|
}
|
|
88
92
|
// 最多可添加10条属性筛选
|
|
89
93
|
if (count >= 10) {
|
|
94
|
+
message.error('最多可添加 10 条属性筛选');
|
|
90
95
|
return;
|
|
91
96
|
}
|
|
92
97
|
setIsAdd(true);
|
|
@@ -97,12 +102,7 @@ var EventFilter = function EventFilter(props) {
|
|
|
97
102
|
|
|
98
103
|
// 筛选条件改变
|
|
99
104
|
var onChangeFilters = function onChangeFilters(data) {
|
|
100
|
-
|
|
101
|
-
setFilter(data);
|
|
102
|
-
} else {
|
|
103
|
-
setFilter(undefined);
|
|
104
|
-
setIsAdd(false);
|
|
105
|
-
}
|
|
105
|
+
setFilter(data);
|
|
106
106
|
};
|
|
107
107
|
var onChangeEvent = function onChangeEvent(event) {
|
|
108
108
|
if (event && event.event && event.event.id === null) {
|
|
@@ -151,25 +151,29 @@ var EventFilter = function EventFilter(props) {
|
|
|
151
151
|
},
|
|
152
152
|
onChange: onChangeEvent,
|
|
153
153
|
placeholder: "\u8BF7\u9009\u62E9\u4E8B\u4EF6"
|
|
154
|
-
}),
|
|
154
|
+
}), /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Tooltip, {
|
|
155
155
|
placement: "top",
|
|
156
|
-
title: '添加属性筛选'
|
|
156
|
+
title: !eventOverview ? '请先选择目标事件' : count < 10 ? '添加属性筛选' : '最多可添加 10 条属性筛选'
|
|
157
157
|
}, /*#__PURE__*/React.createElement(IconFont, {
|
|
158
|
-
className: "".concat(count >= 10 || event.id === -1 ? 'disable' : ''),
|
|
158
|
+
className: "".concat(count >= 10 || event.id === -1 || !eventOverview ? 'disable' : ''),
|
|
159
159
|
type: "shaixuan",
|
|
160
160
|
onClick: function onClick() {
|
|
161
161
|
return onAdd();
|
|
162
162
|
}
|
|
163
|
-
}))), props !== null && props !== void 0 && props.relevancy
|
|
163
|
+
}))), props !== null && props !== void 0 && props.relevancy ? /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Tooltip, {
|
|
164
|
+
placement: "top",
|
|
165
|
+
title: props.relevancyFl ? '请选择开始和结束事件' : ''
|
|
166
|
+
}, /*#__PURE__*/React.createElement(Switch, {
|
|
164
167
|
size: "default",
|
|
165
168
|
style: {
|
|
166
169
|
marginLeft: 24
|
|
167
170
|
},
|
|
168
171
|
checked: relevancy,
|
|
172
|
+
disabled: props.relevancyFl,
|
|
169
173
|
onChange: function onChange(checked) {
|
|
170
174
|
return setRelevancy(checked);
|
|
171
175
|
}
|
|
172
|
-
}), /*#__PURE__*/React.createElement("span", {
|
|
176
|
+
})), /*#__PURE__*/React.createElement("span", {
|
|
173
177
|
className: "switch-title"
|
|
174
178
|
}, "\u8BBE\u7F6E\u5173\u8054\u5C5E\u6027")) : ''), (filter || isAdd) && /*#__PURE__*/React.createElement("div", {
|
|
175
179
|
className: "".concat(count > 0 ? 'attr-box-show' : '', " top")
|
|
@@ -49,7 +49,7 @@ var ContentPanel = function ContentPanel(props) {
|
|
|
49
49
|
}) : /*#__PURE__*/React.createElement("div", {
|
|
50
50
|
className: "".concat(classPrefix, "-MiNone")
|
|
51
51
|
}, /*#__PURE__*/React.createElement(MiNone, {
|
|
52
|
-
label:
|
|
52
|
+
label: !eventData ? '请选择条件进行查询' : '暂无数据'
|
|
53
53
|
}))));
|
|
54
54
|
};
|
|
55
55
|
export default ContentPanel;
|
|
@@ -115,6 +115,7 @@ var SearchPanel = function SearchPanel(props) {
|
|
|
115
115
|
multiple: true,
|
|
116
116
|
disable: displaySetupList.length === 0,
|
|
117
117
|
onChange: onDimensionChange,
|
|
118
|
+
overlayClassName: "interval-select-overlay",
|
|
118
119
|
className: "".concat(classPrefix, "-select"),
|
|
119
120
|
placeholder: "\u8BF7\u9009\u62E9\u663E\u793A\u8BBE\u7F6E",
|
|
120
121
|
enableSearch: true,
|
|
@@ -5,6 +5,10 @@
|
|
|
5
5
|
height: 32px;
|
|
6
6
|
margin-bottom: 24px;
|
|
7
7
|
|
|
8
|
+
.biz-date-picker-wrap-list {
|
|
9
|
+
font-size: 14px;
|
|
10
|
+
}
|
|
11
|
+
|
|
8
12
|
&-search-right {
|
|
9
13
|
display: flex;
|
|
10
14
|
}
|
|
@@ -21,38 +25,40 @@
|
|
|
21
25
|
}
|
|
22
26
|
}
|
|
23
27
|
|
|
24
|
-
.
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
+
.interval-select-overlay {
|
|
29
|
+
.biz-select-option.biz-select-option-multiple:hover:not(.disabled) {
|
|
30
|
+
color: var(--1, #021429);
|
|
31
|
+
background: var(--io-i-1, #e8efff);
|
|
32
|
+
}
|
|
28
33
|
|
|
29
|
-
.biz-select-overlay {
|
|
30
|
-
|
|
31
|
-
}
|
|
34
|
+
.biz-select-overlay {
|
|
35
|
+
padding: 0;
|
|
36
|
+
}
|
|
32
37
|
|
|
33
|
-
.biz-select-list-panel {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}
|
|
38
|
+
.biz-select-list-panel {
|
|
39
|
+
display: grid;
|
|
40
|
+
gap: 8px;
|
|
41
|
+
}
|
|
37
42
|
|
|
38
|
-
.biz-select-option {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
}
|
|
43
|
+
.biz-select-option {
|
|
44
|
+
padding: 0 16px;
|
|
45
|
+
border-radius: 0;
|
|
46
|
+
}
|
|
42
47
|
|
|
43
|
-
.biz-select-option.biz-select-option-multiple.active:not(.disabled) {
|
|
44
|
-
|
|
45
|
-
}
|
|
48
|
+
.biz-select-option.biz-select-option-multiple.active:not(.disabled) {
|
|
49
|
+
color: var(--1, #021429);
|
|
50
|
+
}
|
|
46
51
|
|
|
47
|
-
.biz-select-option.biz-select-option-multiple:hover:not(.disabled) .biz-select-checkbox {
|
|
48
|
-
|
|
49
|
-
}
|
|
52
|
+
.biz-select-option.biz-select-option-multiple:hover:not(.disabled) .biz-select-checkbox {
|
|
53
|
+
color: #ccd0d4;
|
|
54
|
+
}
|
|
50
55
|
|
|
51
|
-
.biz-select-option.biz-select-option-multiple.active:hover:not(.disabled) .biz-select-checkbox {
|
|
52
|
-
|
|
53
|
-
}
|
|
56
|
+
.biz-select-option.biz-select-option-multiple.active:hover:not(.disabled) .biz-select-checkbox {
|
|
57
|
+
color: #165dff;
|
|
58
|
+
}
|
|
54
59
|
|
|
55
|
-
.biz-select-option.biz-select-option-multiple:active:not(.disabled) {
|
|
56
|
-
|
|
57
|
-
|
|
60
|
+
.biz-select-option.biz-select-option-multiple:active:not(.disabled) {
|
|
61
|
+
color: #165dff;
|
|
62
|
+
background: var(--io-i-1, #e8efff);
|
|
63
|
+
}
|
|
58
64
|
}
|
|
@@ -88,7 +88,7 @@ var IntervalEventChart = function IntervalEventChart(props) {
|
|
|
88
88
|
}
|
|
89
89
|
if (!dataSource || !(dataSource !== null && dataSource !== void 0 && (_dataSource$appData2 = dataSource.appData) !== null && _dataSource$appData2 !== void 0 && _dataSource$appData2.series.length)) {
|
|
90
90
|
return /*#__PURE__*/React.createElement(MiNone, {
|
|
91
|
-
label:
|
|
91
|
+
label: !dataSource ? '请选择条件进行查询' : '暂无数据'
|
|
92
92
|
});
|
|
93
93
|
}
|
|
94
94
|
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(IntervalChart, {
|
|
@@ -195,6 +195,7 @@ var EventContent = function EventContent(props) {
|
|
|
195
195
|
}), /*#__PURE__*/React.createElement(BizLayout, {
|
|
196
196
|
showTitle: false,
|
|
197
197
|
hasCollapse: true,
|
|
198
|
+
className: "interval-layout",
|
|
198
199
|
collapseRef: collapseRef,
|
|
199
200
|
topPanel: /*#__PURE__*/React.createElement(TopPanel, {
|
|
200
201
|
collapseRef: collapseRef,
|
|
@@ -26,11 +26,7 @@ export declare function searchCondition(params: any): {
|
|
|
26
26
|
condition: any;
|
|
27
27
|
};
|
|
28
28
|
export declare function searchDataParams(params: any): {
|
|
29
|
-
time:
|
|
30
|
-
dimensionDate: any;
|
|
31
|
-
beginDate: any;
|
|
32
|
-
endDate: any;
|
|
33
|
-
};
|
|
29
|
+
time: any;
|
|
34
30
|
platform: any;
|
|
35
31
|
userGroup: any;
|
|
36
32
|
start: {
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
2
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
3
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
4
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
5
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
6
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
1
7
|
/**
|
|
2
8
|
* 判断当前细分属性是否为”城市“
|
|
3
9
|
* @param name 属性名称
|
|
@@ -74,13 +80,9 @@ export function searchCondition(params) {
|
|
|
74
80
|
};
|
|
75
81
|
}
|
|
76
82
|
export function searchDataParams(params) {
|
|
77
|
-
var _params$
|
|
83
|
+
var _params$dimension, _params$dimension2, _params$dimension3, _params$dimension4, _params$dimension5, _params$dimension6, _params$dimension7, _params$dimension8, _params$dimension9, _params$dimension10, _params$dimension11, _params$dimension12, _params$associatedPre, _params$associatedNex;
|
|
78
84
|
return {
|
|
79
|
-
time: {
|
|
80
|
-
dimensionDate: params === null || params === void 0 ? void 0 : (_params$time = params.time) === null || _params$time === void 0 ? void 0 : _params$time.unit,
|
|
81
|
-
beginDate: params === null || params === void 0 ? void 0 : (_params$time2 = params.time) === null || _params$time2 === void 0 ? void 0 : _params$time2.begin,
|
|
82
|
-
endDate: params === null || params === void 0 ? void 0 : (_params$time3 = params.time) === null || _params$time3 === void 0 ? void 0 : _params$time3.end
|
|
83
|
-
},
|
|
85
|
+
time: _objectSpread({}, params === null || params === void 0 ? void 0 : params.time),
|
|
84
86
|
platform: (params === null || params === void 0 ? void 0 : params.platform) || 0,
|
|
85
87
|
userGroup: params.userGroup,
|
|
86
88
|
start: searchCondition(params === null || params === void 0 ? void 0 : params.start),
|
|
@@ -11,12 +11,10 @@ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len
|
|
|
11
11
|
function _iterableToArrayLimit(arr, i) { var _i = null == arr ? null : "undefined" != typeof Symbol && arr[Symbol.iterator] || arr["@@iterator"]; if (null != _i) { var _s, _e, _x, _r, _arr = [], _n = !0, _d = !1; try { if (_x = (_i = _i.call(arr)).next, 0 === i) { if (Object(_i) !== _i) return; _n = !1; } else for (; !(_n = (_s = _x.call(_i)).done) && (_arr.push(_s.value), _arr.length !== i); _n = !0); } catch (err) { _d = !0, _e = err; } finally { try { if (!_n && null != _i.return && (_r = _i.return(), Object(_r) !== _r)) return; } finally { if (_d) throw _e; } } return _arr; } }
|
|
12
12
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
13
13
|
import React, { useState } from 'react';
|
|
14
|
-
import { Form, Button
|
|
14
|
+
import { Form, Button } from 'antd';
|
|
15
15
|
import { BizAttributeSelector, BizUserGroupHeader } from '@zgfe/business-lib';
|
|
16
16
|
import EventFilter from "../../components/eventFilter";
|
|
17
17
|
import "./styles/index.less";
|
|
18
|
-
import _ from 'lodash';
|
|
19
|
-
import { transformData } from "../content/utils";
|
|
20
18
|
var classPrefix = 'top-panel-interval';
|
|
21
19
|
var TopPanel = function TopPanel(props) {
|
|
22
20
|
var _defaultValue$associa, _defaultValue$associa2, _defaultValue$associa3, _defaultValue$associa4, _defaultValue$associa5, _defaultValue$associa6, _defaultValue$associa7, _defaultValue$associa8, _defaultValue$dimensi, _defaultValue$dimensi2, _defaultValue$dimensi3, _defaultValue$dimensi4;
|
|
@@ -42,7 +40,7 @@ var TopPanel = function TopPanel(props) {
|
|
|
42
40
|
_useState6 = _slicedToArray(_useState5, 2),
|
|
43
41
|
relevancy = _useState6[0],
|
|
44
42
|
setRelevancy = _useState6[1];
|
|
45
|
-
var _useState7 = useState(
|
|
43
|
+
var _useState7 = useState(true),
|
|
46
44
|
_useState8 = _slicedToArray(_useState7, 2),
|
|
47
45
|
relevancyFl = _useState8[0],
|
|
48
46
|
setRelevancyFl = _useState8[1];
|
|
@@ -71,21 +69,11 @@ var TopPanel = function TopPanel(props) {
|
|
|
71
69
|
}
|
|
72
70
|
}
|
|
73
71
|
if (startId && endId) {
|
|
74
|
-
setRelevancyFl(
|
|
72
|
+
setRelevancyFl(false);
|
|
75
73
|
}
|
|
76
74
|
if (allData.userGroup) {
|
|
77
|
-
_data.userGroup =
|
|
78
|
-
if (
|
|
79
|
-
if (allData.userGroup[0].length > 20) {
|
|
80
|
-
message.warning('最多添加20个');
|
|
81
|
-
}
|
|
82
|
-
var app = [transformData(allData.userGroup)];
|
|
83
|
-
allData.userGroup = app;
|
|
84
|
-
} else {
|
|
85
|
-
allData.userGroup = allData === null || allData === void 0 ? void 0 : allData.userGroup.map(function (group) {
|
|
86
|
-
return group === null || group === void 0 ? void 0 : group.id;
|
|
87
|
-
});
|
|
88
|
-
}
|
|
75
|
+
_data.userGroup = allData.userGroup;
|
|
76
|
+
if (_data.userGroup.length <= 0) _data.userGroup = [0];
|
|
89
77
|
}
|
|
90
78
|
props.onChange(allData, (finalSearchData === null || finalSearchData === void 0 ? void 0 : finalSearchData.chartType) === 'boxplot' ? true : false);
|
|
91
79
|
};
|
|
@@ -152,10 +140,10 @@ var TopPanel = function TopPanel(props) {
|
|
|
152
140
|
form: form,
|
|
153
141
|
component: "div",
|
|
154
142
|
colon: false,
|
|
155
|
-
className: "panel-form",
|
|
143
|
+
className: "panel-form-interval",
|
|
156
144
|
layout: "vertical",
|
|
157
145
|
initialValues: {
|
|
158
|
-
userGroup:
|
|
146
|
+
userGroup: userGroup ? userGroup : [0],
|
|
159
147
|
start: defaultValue === null || defaultValue === void 0 ? void 0 : defaultValue.start,
|
|
160
148
|
end: defaultValue === null || defaultValue === void 0 ? void 0 : defaultValue.end,
|
|
161
149
|
associatedNextAttr: _objectSpread(_objectSpread({}, defaultValue === null || defaultValue === void 0 ? void 0 : defaultValue.associated_next_attr), {}, {
|
|
@@ -182,27 +170,22 @@ var TopPanel = function TopPanel(props) {
|
|
|
182
170
|
}, /*#__PURE__*/React.createElement(Form.Item, {
|
|
183
171
|
label: "",
|
|
184
172
|
name: "userGroup",
|
|
185
|
-
className: "space-item",
|
|
173
|
+
className: "space-item interval-item",
|
|
186
174
|
style: {
|
|
187
175
|
paddingLeft: 0
|
|
188
176
|
}
|
|
189
177
|
}, /*#__PURE__*/React.createElement(BizUserGroupHeader, {
|
|
190
|
-
value: [{
|
|
191
|
-
id: 0
|
|
192
|
-
}],
|
|
193
178
|
enableTags: true,
|
|
194
179
|
max: 1
|
|
195
180
|
})), /*#__PURE__*/React.createElement("div", {
|
|
196
181
|
ref: collapseRef,
|
|
197
|
-
style: {
|
|
198
|
-
paddingLeft: 24
|
|
199
|
-
},
|
|
200
182
|
className: "collapseRefs"
|
|
201
183
|
}, /*#__PURE__*/React.createElement(Form.Item, {
|
|
202
184
|
label: "\u5F00\u59CB\u4E8B\u4EF6",
|
|
203
185
|
name: "start"
|
|
204
186
|
}, /*#__PURE__*/React.createElement(EventFilter, {
|
|
205
|
-
|
|
187
|
+
relevancyFl: relevancyFl,
|
|
188
|
+
relevancy: true
|
|
206
189
|
})), relevancy ? /*#__PURE__*/React.createElement(Form.Item, {
|
|
207
190
|
style: {
|
|
208
191
|
marginBottom: 0
|
|
@@ -263,7 +246,6 @@ var TopPanel = function TopPanel(props) {
|
|
|
263
246
|
onChangeAttr(undefined, 'associatedPreAttr');
|
|
264
247
|
onChangeAttr(undefined, 'associatedNextAttr');
|
|
265
248
|
setRelevancy(false);
|
|
266
|
-
setRelevancyFl(false);
|
|
267
249
|
},
|
|
268
250
|
className: "bsicon qingchu"
|
|
269
251
|
})) : '', /*#__PURE__*/React.createElement(Form.Item, {
|
|
@@ -271,7 +253,8 @@ var TopPanel = function TopPanel(props) {
|
|
|
271
253
|
name: "end"
|
|
272
254
|
}, /*#__PURE__*/React.createElement(EventFilter, null)), /*#__PURE__*/React.createElement(Form.Item, {
|
|
273
255
|
label: "\u6309\u5C5E\u6027\u7EC6\u5206",
|
|
274
|
-
name: "dimension"
|
|
256
|
+
name: "dimension",
|
|
257
|
+
className: "dimension-interval"
|
|
275
258
|
}, /*#__PURE__*/React.createElement(BizAttributeSelector, {
|
|
276
259
|
enableEventProp: true,
|
|
277
260
|
enableUserProp: true,
|
|
@@ -17,7 +17,35 @@
|
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
.panel-form {
|
|
20
|
+
.panel-form-interval {
|
|
21
|
+
.interval-item {
|
|
22
|
+
.ant-space-vertical {
|
|
23
|
+
gap: 0px !important;
|
|
24
|
+
width: 100%;
|
|
25
|
+
|
|
26
|
+
.ant-space-item:nth-child(1) {
|
|
27
|
+
padding: 0 12px;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.ant-space-item:nth-child(2) {
|
|
31
|
+
display: flex;
|
|
32
|
+
align-items: center;
|
|
33
|
+
height: 42px;
|
|
34
|
+
margin-top: 4px;
|
|
35
|
+
padding: 0 12px;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.ant-space-item:nth-child(2):hover {
|
|
39
|
+
background-color: #e8efff;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.biz-user-group-header {
|
|
45
|
+
padding: 0;
|
|
46
|
+
background-color: #fff;
|
|
47
|
+
}
|
|
48
|
+
|
|
21
49
|
.space-item {
|
|
22
50
|
.ant-space-item {
|
|
23
51
|
.biz-user-group {
|
|
@@ -32,9 +60,65 @@
|
|
|
32
60
|
}
|
|
33
61
|
|
|
34
62
|
.collapseRefs {
|
|
63
|
+
.biz-attr-condition-group-container {
|
|
64
|
+
margin-top: 12px;
|
|
65
|
+
}
|
|
66
|
+
|
|
35
67
|
.ant-form-item {
|
|
36
68
|
margin-bottom: 12px;
|
|
37
69
|
}
|
|
70
|
+
|
|
71
|
+
.ant-form-item-control-input {
|
|
72
|
+
display: flex;
|
|
73
|
+
align-items: center;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.ant-form-item-label {
|
|
77
|
+
padding-left: 24px;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.interval-box {
|
|
81
|
+
> div:nth-child(1) {
|
|
82
|
+
padding: 4px 24px;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
> div:nth-child(1):hover {
|
|
86
|
+
background-color: #e8efff;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.biz-attr-condition-group-handle {
|
|
90
|
+
margin-right: 0;
|
|
91
|
+
margin-left: 24px;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.biz-attr-condition-group-container {
|
|
95
|
+
gap: 4px !important;
|
|
96
|
+
}
|
|
97
|
+
.ant-space-item {
|
|
98
|
+
max-width: calc(100% + 24px) !important;
|
|
99
|
+
margin-left: -24px;
|
|
100
|
+
padding: 4px 48px;
|
|
101
|
+
|
|
102
|
+
.ant-space-item {
|
|
103
|
+
width: auto;
|
|
104
|
+
max-width: auto;
|
|
105
|
+
margin-left: 0px;
|
|
106
|
+
padding: 0;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.ant-space-item:hover {
|
|
111
|
+
background-color: #e8efff;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
.dimension-interval {
|
|
115
|
+
.ant-form-item-control-input {
|
|
116
|
+
padding: 4px 24px;
|
|
117
|
+
}
|
|
118
|
+
.ant-form-item-control-input:hover {
|
|
119
|
+
background-color: #e8efff;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
38
122
|
}
|
|
39
123
|
|
|
40
124
|
.biz-event-select {
|
|
@@ -43,7 +127,6 @@
|
|
|
43
127
|
|
|
44
128
|
> .ant-form-item {
|
|
45
129
|
margin-bottom: 12px;
|
|
46
|
-
padding-left: 24px;
|
|
47
130
|
}
|
|
48
131
|
|
|
49
132
|
.associated {
|
|
Binary file
|
package/dist/esm/types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zgfe/modules-interval",
|
|
3
|
-
"version": "1.0.0-interval.
|
|
3
|
+
"version": "1.0.0-interval.18",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"start": "dumi dev",
|
|
6
6
|
"docs:build": "dumi build",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@types/uuid": "^9.0.2",
|
|
44
44
|
"@umijs/fabric": "^2.8.1",
|
|
45
45
|
"@umijs/test": "^3.0.5",
|
|
46
|
-
"@zgfe/business-lib": "1.1.81-page.
|
|
46
|
+
"@zgfe/business-lib": "1.1.81-page.9",
|
|
47
47
|
"@zgfe/modules-demo-manage": "^1.0.1",
|
|
48
48
|
"antd": "^4.22.6",
|
|
49
49
|
"dumi": "^1.1.0",
|