ztxkui 3.9.3 → 3.9.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/DemoCom/FormDemo.js +2 -2
- package/dist/components/PrintContainer/handle.js +12 -5
- package/dist/components/business/SearchContainer/hooks/useDynamic.d.ts +1 -0
- package/dist/components/business/SearchContainer/hooks/useDynamic.js +5 -1
- package/dist/components/business/SearchContainer/search-drawer.js +1 -1
- package/dist/components/business/SearchContainer/search-item.d.ts +2 -0
- package/package.json +1 -1
package/dist/DemoCom/FormDemo.js
CHANGED
|
@@ -61,7 +61,7 @@ var FormDemo = function () {
|
|
|
61
61
|
React.createElement(Form, { name: "test-list", form: form },
|
|
62
62
|
React.createElement(SearchContainer, { dark: true },
|
|
63
63
|
React.createElement(SearchLeft, { configInfo: configInfoMemo, isDynamic: true, dynamicStorageKey: "symbol-key-00001", isToggle: true, handleRef: handleRef },
|
|
64
|
-
React.createElement(SearchItem, { width: "half", name: "pwNo", configname: "pwNoCopy", label: "\u5165\u5E93\u5355\u53F7", rules: [
|
|
64
|
+
React.createElement(SearchItem, { width: "half", name: "pwNo", configname: "pwNoCopy", label: "\u5165\u5E93\u5355\u53F7", disabled: true, rules: [
|
|
65
65
|
{
|
|
66
66
|
required: true,
|
|
67
67
|
message: '采购基本数据-请选择入库单号',
|
|
@@ -70,7 +70,7 @@ var FormDemo = function () {
|
|
|
70
70
|
React.createElement(Input.TextArea, { autoSize: true, allowClear: true, disabled: true, onChange: function (e) {
|
|
71
71
|
console.log(e.target.value);
|
|
72
72
|
} })),
|
|
73
|
-
React.createElement(SearchItem, { width: "half", name: "pwNo1", label: "\u5165\u5E93\u5355\u53F71", rules: [
|
|
73
|
+
React.createElement(SearchItem, { width: "half", name: "pwNo1", label: "\u5165\u5E93\u5355\u53F71", dynamicdisabled: "1", rules: [
|
|
74
74
|
{
|
|
75
75
|
required: false,
|
|
76
76
|
message: '采购基本数据-请选择入库单号1',
|
|
@@ -283,22 +283,27 @@ export function getPositionLocal(localKey) {
|
|
|
283
283
|
* @description 设置标签位置
|
|
284
284
|
*/
|
|
285
285
|
export function setPositionDom(value) {
|
|
286
|
-
var _a;
|
|
287
286
|
var printDom = document.querySelectorAll('.html2canvas-container-page');
|
|
288
287
|
for (var i = 0; i < printDom.length; i++) {
|
|
289
288
|
var item = printDom[i];
|
|
290
289
|
item.setAttribute('style', "padding-top: " + ((value === null || value === void 0 ? void 0 : value.top) < 0 ? 0 : (value === null || value === void 0 ? void 0 : value.top) || 0) + "px; padding-left: " + ((value === null || value === void 0 ? void 0 : value.left) < 0 ? 0 : (value === null || value === void 0 ? void 0 : value.left) || 0) + "px");
|
|
291
290
|
var childResultStyle = {};
|
|
292
|
-
var childrenDom = item.querySelectorAll('.set-box');
|
|
293
291
|
if ((value === null || value === void 0 ? void 0 : value.top) < 0) {
|
|
294
|
-
var initTop = (_a = childrenDom[0]) === null || _a === void 0 ? void 0 : _a.dataset.top;
|
|
295
|
-
console.log(initTop);
|
|
296
292
|
childResultStyle.top = value === null || value === void 0 ? void 0 : value.top;
|
|
297
293
|
}
|
|
298
294
|
if ((value === null || value === void 0 ? void 0 : value.left) < 0) {
|
|
299
295
|
childResultStyle.left = value === null || value === void 0 ? void 0 : value.left;
|
|
300
296
|
}
|
|
301
|
-
|
|
297
|
+
console.log(childResultStyle);
|
|
298
|
+
if (childResultStyle.top && !childResultStyle.left) {
|
|
299
|
+
setMinusPosition(item, childResultStyle);
|
|
300
|
+
reductionMinusPostion(item, 'left');
|
|
301
|
+
}
|
|
302
|
+
else if (!childResultStyle.top && childResultStyle.left) {
|
|
303
|
+
setMinusPosition(item, childResultStyle);
|
|
304
|
+
reductionMinusPostion(item, 'top');
|
|
305
|
+
}
|
|
306
|
+
else if (childResultStyle.top && childResultStyle.left) {
|
|
302
307
|
setMinusPosition(item, childResultStyle);
|
|
303
308
|
}
|
|
304
309
|
else {
|
|
@@ -366,9 +371,11 @@ export function reductionMinusPostion(dom, type) {
|
|
|
366
371
|
var childrenDom = dom.querySelectorAll('.set-box');
|
|
367
372
|
if (childrenDom) {
|
|
368
373
|
if (type === 'top') {
|
|
374
|
+
console.log(childrenDom[0].style.top);
|
|
369
375
|
childrenDom[0].style.top = childrenDom[0].dataset.top;
|
|
370
376
|
}
|
|
371
377
|
else if (type === 'left') {
|
|
378
|
+
console.log(childrenDom[0].style.left);
|
|
372
379
|
childrenDom[0].style.left = childrenDom[0].dataset.left;
|
|
373
380
|
}
|
|
374
381
|
else {
|
|
@@ -135,13 +135,14 @@ dynamicStorageKey // 动态列配置的key值
|
|
|
135
135
|
// 遍历当前子元素
|
|
136
136
|
React.Children.forEach(children, function (item) {
|
|
137
137
|
if (item === null || item === void 0 ? void 0 : item.props) {
|
|
138
|
-
var _a = item.props, name_2 = _a.name, label_1 = _a.label, hiddenLabelName_1 = _a.hiddenLabelName, disabled = _a.disabled;
|
|
138
|
+
var _a = item.props, name_2 = _a.name, label_1 = _a.label, hiddenLabelName_1 = _a.hiddenLabelName, disabled = _a.disabled, dynamicDisabled_1 = _a.dynamicdisabled;
|
|
139
139
|
_initDynamicList_1.push({
|
|
140
140
|
name: name_2,
|
|
141
141
|
label: label_1,
|
|
142
142
|
hiddenLabelName: hiddenLabelName_1,
|
|
143
143
|
show: true,
|
|
144
144
|
disabled: disabled,
|
|
145
|
+
dynamicDisabled: dynamicDisabled_1,
|
|
145
146
|
});
|
|
146
147
|
if (!dynamicList_1 || dynamicList_1.length === 0) {
|
|
147
148
|
_currentDynamicList_1.push({
|
|
@@ -150,6 +151,7 @@ dynamicStorageKey // 动态列配置的key值
|
|
|
150
151
|
hiddenLabelName: hiddenLabelName_1,
|
|
151
152
|
show: true,
|
|
152
153
|
disabled: disabled,
|
|
154
|
+
dynamicDisabled: dynamicDisabled_1,
|
|
153
155
|
});
|
|
154
156
|
}
|
|
155
157
|
else {
|
|
@@ -160,6 +162,7 @@ dynamicStorageKey // 动态列配置的key值
|
|
|
160
162
|
currentData.forEach(function (item) {
|
|
161
163
|
item.label = label_1;
|
|
162
164
|
item.hiddenLabelName = hiddenLabelName_1;
|
|
165
|
+
item.dynamicDisabled = dynamicDisabled_1;
|
|
163
166
|
});
|
|
164
167
|
if (currentData.length > 1) {
|
|
165
168
|
var index = _currentDynamicList_1.findIndex(function (currentDynamic) { return currentDynamic.name === name_2; });
|
|
@@ -180,6 +183,7 @@ dynamicStorageKey // 动态列配置的key值
|
|
|
180
183
|
hiddenLabelName: item.hiddenLabelName,
|
|
181
184
|
show: true,
|
|
182
185
|
disabled: item.disabled,
|
|
186
|
+
dynamicDisabled: item.dynamicdisabled,
|
|
183
187
|
}); }));
|
|
184
188
|
// 将删除的数据剔除出去
|
|
185
189
|
_currentDynamicList_1 = _currentDynamicList_1.filter(function (item) {
|
|
@@ -65,6 +65,6 @@ var SearchDrawer = function (_a) {
|
|
|
65
65
|
React.createElement("span", null, "\uFF08\u62D6\u62FD\u6392\u5E8F\uFF09"))), width: 290, placement: "right", visible: visible, closable: false, maskClosable: false, footer: renderFooter() },
|
|
66
66
|
React.createElement(DndProvider, { backend: HTML5Backend, context: window },
|
|
67
67
|
React.createElement(Checkbox.Group, { value: checkedValues, onChange: onCheckboxChange }, dynamicList.map(function (item, index) { return (React.createElement(Sortable, { key: item.name, type: "search-drawer", index: index, onMoveItem: onMoveItem },
|
|
68
|
-
React.createElement(Checkbox, { value: item.name }, item.label || item.hiddenLabelName || item.name))); })))));
|
|
68
|
+
React.createElement(Checkbox, { value: item.name, disabled: item.disabled || item.dynamicDisabled }, item.label || item.hiddenLabelName || item.name))); })))));
|
|
69
69
|
};
|
|
70
70
|
export default memo(SearchDrawer);
|
|
@@ -18,6 +18,8 @@ export interface ISearchItem extends FormItemProps {
|
|
|
18
18
|
hiddenLabelName?: string;
|
|
19
19
|
/** 没有lable显示边框 */
|
|
20
20
|
noLabelShowBg?: boolean;
|
|
21
|
+
/** 动态列禁用隐藏 */
|
|
22
|
+
dynamicdisabled?: any;
|
|
21
23
|
}
|
|
22
24
|
declare const SearchItem: React.FC<ISearchItem>;
|
|
23
25
|
export default SearchItem;
|