@bit-sun/business-component 4.0.13-alpha.36 → 4.0.13-alpha.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/dist/index.esm.js
CHANGED
|
@@ -5984,7 +5984,7 @@ var SearchSelect = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
5984
5984
|
var refreshItems = function refreshItems() {
|
|
5985
5985
|
// 查看是否存在关联值 如果有关联值 就查询 没有就不能查询
|
|
5986
5986
|
if (fieldValToParam && ctx && fixedparamsDisabled) {
|
|
5987
|
-
if (!!isHaveDValue()) {
|
|
5987
|
+
if (!!isHaveDValue() || isQuery) {
|
|
5988
5988
|
run();
|
|
5989
5989
|
} else {
|
|
5990
5990
|
clearSelectDataSource();
|
package/dist/index.js
CHANGED
|
@@ -6007,7 +6007,7 @@ var SearchSelect = /*#__PURE__*/React$1.forwardRef(function (props, ref) {
|
|
|
6007
6007
|
var refreshItems = function refreshItems() {
|
|
6008
6008
|
// 查看是否存在关联值 如果有关联值 就查询 没有就不能查询
|
|
6009
6009
|
if (fieldValToParam && ctx && fixedparamsDisabled) {
|
|
6010
|
-
if (!!isHaveDValue()) {
|
|
6010
|
+
if (!!isHaveDValue() || isQuery) {
|
|
6011
6011
|
run();
|
|
6012
6012
|
} else {
|
|
6013
6013
|
clearSelectDataSource();
|
package/package.json
CHANGED
|
@@ -458,7 +458,7 @@ const SearchSelect = forwardRef((props: any, ref: any) => {
|
|
|
458
458
|
const refreshItems = () => {
|
|
459
459
|
// 查看是否存在关联值 如果有关联值 就查询 没有就不能查询
|
|
460
460
|
if (fieldValToParam && ctx && fixedparamsDisabled) {
|
|
461
|
-
if (!!isHaveDValue()) {
|
|
461
|
+
if (!!isHaveDValue() || isQuery) {
|
|
462
462
|
run();
|
|
463
463
|
} else {
|
|
464
464
|
clearSelectDataSource();
|