resolver-egretimp-plus 0.0.70 → 0.0.71
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/const/index.js +1 -1
- package/dist/h5/index.js +1 -1
- package/dist/theme/element/index.css +1 -1
- package/dist/theme/element/src/components/common.scss +7 -2
- package/dist/web/index.js +1 -1
- package/package.json +1 -1
- package/src/components/helper/eventOrchestration.js +2 -1
- package/src/theme/element/components/common.scss +7 -2
- package/src/utils/const.js +7 -0
package/package.json
CHANGED
|
@@ -25,9 +25,10 @@ export async function dispatchClickEvent(service, { dynamicMapComp, requestTrace
|
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
const url = service.serviceCode
|
|
28
|
+
const httpMethod = service.httpMethod
|
|
28
29
|
const ret = await (axiosInstance && axiosInstance({
|
|
29
30
|
url,
|
|
30
|
-
method: "post",
|
|
31
|
+
method: httpMethod || "post",
|
|
31
32
|
data: {
|
|
32
33
|
requestTraceId,
|
|
33
34
|
pmHandleBusinessIdentity: {
|
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
@mixin nestMargin {
|
|
2
2
|
& > div {
|
|
3
|
+
& > .CustomComponentCollapse {
|
|
4
|
+
& > div {
|
|
5
|
+
margin-right: 16px;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
|
|
3
9
|
& > .CustomComponentTable,
|
|
4
|
-
& > .CustomComponentCollapse,
|
|
5
10
|
& > .CustomComponentRow {
|
|
6
11
|
& > div {
|
|
7
12
|
margin-right: 16px;
|
|
8
|
-
|
|
13
|
+
margin-bottom: 16px;
|
|
9
14
|
}
|
|
10
15
|
}
|
|
11
16
|
}
|
package/src/utils/const.js
CHANGED
|
@@ -153,6 +153,7 @@ export const commonPropsType = {
|
|
|
153
153
|
columnValue: item.value,
|
|
154
154
|
columnDesc_zh: item.label,
|
|
155
155
|
columnDesc: item.label_en || item.label,
|
|
156
|
+
columnStatus: item.columnStatus
|
|
156
157
|
}
|
|
157
158
|
})
|
|
158
159
|
} catch (error) {
|
|
@@ -160,6 +161,12 @@ export const commonPropsType = {
|
|
|
160
161
|
}
|
|
161
162
|
const options = (selects?.value && selects?.value?.[selectKey]) || (selects?.value && selects?.value?.[`${config.metaCode}ListValue`]) || (selects?.value && selects?.value?.[referenceOptions]) || optionItemsList || []
|
|
162
163
|
return options
|
|
164
|
+
// const disabled = calcDisable(config, props.mode)
|
|
165
|
+
// if (disabled) {
|
|
166
|
+
// return options
|
|
167
|
+
// } else {
|
|
168
|
+
// return options.filter(item => !(item.columnStatus == '0' || item.columnStatus == '2'))
|
|
169
|
+
// }
|
|
163
170
|
}
|
|
164
171
|
},
|
|
165
172
|
placeholder: {
|