@bit-sun/business-component 2.3.0-alpha.2 → 2.3.0-alpha.3
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
|
@@ -2673,7 +2673,9 @@ var SearchSelect = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
2673
2673
|
// 优化搜索参数 支持传多个
|
|
2674
2674
|
console.log("\uD83D\uDE80 => SearchSelect => v:", v);
|
|
2675
2675
|
var searchParams = {};
|
|
2676
|
+
console.log("\uD83D\uDE80 => SearchSelect => mappingValueField:", mappingValueField);
|
|
2676
2677
|
console.log("\uD83D\uDE80 => SearchSelect => selectParamsKey:", selectParamsKey);
|
|
2678
|
+
console.log("\uD83D\uDE80 => SearchSelect => selectParamsInitKey:", selectParamsInitKey);
|
|
2677
2679
|
if (typeof selectParamsKey === 'string' || typeof selectParamsInitKey === 'string') {
|
|
2678
2680
|
var selectParamsInitValue = initVal;
|
|
2679
2681
|
if (labelInValue) {
|
|
@@ -24730,6 +24732,9 @@ var FieldsModifyModal = function FieldsModifyModal(props) {
|
|
|
24730
24732
|
var fieldOfDefaultValue = function fieldOfDefaultValue() {
|
|
24731
24733
|
var singleOrMultiple = isShowAndType.singleOrMultiple,
|
|
24732
24734
|
type = isShowAndType.type;
|
|
24735
|
+
console.log('@singleOrMultiple', singleOrMultiple);
|
|
24736
|
+
console.log('@type', type);
|
|
24737
|
+
console.log('@inputTypes[singleOrMultiple][type]', inputTypes[singleOrMultiple][type]);
|
|
24733
24738
|
if (type === 10) {
|
|
24734
24739
|
var _Object$keys;
|
|
24735
24740
|
// 自定义
|
package/dist/index.js
CHANGED
|
@@ -2692,7 +2692,9 @@ var SearchSelect = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
|
2692
2692
|
// 优化搜索参数 支持传多个
|
|
2693
2693
|
console.log("\uD83D\uDE80 => SearchSelect => v:", v);
|
|
2694
2694
|
var searchParams = {};
|
|
2695
|
+
console.log("\uD83D\uDE80 => SearchSelect => mappingValueField:", mappingValueField);
|
|
2695
2696
|
console.log("\uD83D\uDE80 => SearchSelect => selectParamsKey:", selectParamsKey);
|
|
2697
|
+
console.log("\uD83D\uDE80 => SearchSelect => selectParamsInitKey:", selectParamsInitKey);
|
|
2696
2698
|
if (typeof selectParamsKey === 'string' || typeof selectParamsInitKey === 'string') {
|
|
2697
2699
|
var selectParamsInitValue = initVal;
|
|
2698
2700
|
if (labelInValue) {
|
|
@@ -24749,6 +24751,9 @@ var FieldsModifyModal = function FieldsModifyModal(props) {
|
|
|
24749
24751
|
var fieldOfDefaultValue = function fieldOfDefaultValue() {
|
|
24750
24752
|
var singleOrMultiple = isShowAndType.singleOrMultiple,
|
|
24751
24753
|
type = isShowAndType.type;
|
|
24754
|
+
console.log('@singleOrMultiple', singleOrMultiple);
|
|
24755
|
+
console.log('@type', type);
|
|
24756
|
+
console.log('@inputTypes[singleOrMultiple][type]', inputTypes[singleOrMultiple][type]);
|
|
24752
24757
|
if (type === 10) {
|
|
24753
24758
|
var _Object$keys;
|
|
24754
24759
|
// 自定义
|
package/package.json
CHANGED
|
@@ -79,6 +79,11 @@ const FieldsModifyModal = (props: any) => {
|
|
|
79
79
|
|
|
80
80
|
const fieldOfDefaultValue = () => {
|
|
81
81
|
const { singleOrMultiple, type } = isShowAndType;
|
|
82
|
+
|
|
83
|
+
console.log('@singleOrMultiple', singleOrMultiple)
|
|
84
|
+
console.log('@type', type)
|
|
85
|
+
console.log('@inputTypes[singleOrMultiple][type]', inputTypes[singleOrMultiple][type])
|
|
86
|
+
|
|
82
87
|
if (type === 10) {
|
|
83
88
|
// 自定义
|
|
84
89
|
return [
|
|
@@ -76,7 +76,9 @@ const SearchSelect = forwardRef((props: any, ref: any) => {
|
|
|
76
76
|
// 优化搜索参数 支持传多个
|
|
77
77
|
console.log(`🚀 => SearchSelect => v:`, v)
|
|
78
78
|
let searchParams = {};
|
|
79
|
+
console.log(`🚀 => SearchSelect => mappingValueField:`, mappingValueField)
|
|
79
80
|
console.log(`🚀 => SearchSelect => selectParamsKey:`, selectParamsKey)
|
|
81
|
+
console.log(`🚀 => SearchSelect => selectParamsInitKey:`, selectParamsInitKey)
|
|
80
82
|
if (typeof selectParamsKey === 'string' || typeof selectParamsInitKey === 'string') {
|
|
81
83
|
let selectParamsInitValue = initVal
|
|
82
84
|
if (labelInValue) {
|