resolver-egretimp-plus 0.0.31 → 0.0.32
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/package.json
CHANGED
|
@@ -49,7 +49,7 @@ const value = computed({
|
|
|
49
49
|
})
|
|
50
50
|
// 是否为多选
|
|
51
51
|
const isMutiple = computed(() => {
|
|
52
|
-
return props.multiple
|
|
52
|
+
return props.multiple == '1'
|
|
53
53
|
})
|
|
54
54
|
|
|
55
55
|
const selectProps = computed(() => {
|
|
@@ -66,7 +66,7 @@ const selectProps = computed(() => {
|
|
|
66
66
|
if (typeof attrs.multiple === 'string') {
|
|
67
67
|
attrs.multiple = attrs.multiple == '1'
|
|
68
68
|
}
|
|
69
|
-
attrs.multipleLimit = parseInt(attrs.multipleLimit)
|
|
69
|
+
attrs.multipleLimit = Number(parseInt(attrs.multipleLimit || 0))
|
|
70
70
|
return attrs
|
|
71
71
|
})
|
|
72
72
|
const lang = inject('lang')
|
package/src/hooks/pageConfig.js
CHANGED
|
@@ -47,8 +47,8 @@ export function useBuildInData(messageTipInstance, loadingInstance) {
|
|
|
47
47
|
}
|
|
48
48
|
buildInRequest(QUERY_PAGE_CONFIG_DATA, reqData).then(ret => {
|
|
49
49
|
if (ret.data.success) {
|
|
50
|
-
pageConfig.value = normalPageConfigs(mock)
|
|
51
|
-
|
|
50
|
+
// pageConfig.value = normalPageConfigs(mock)
|
|
51
|
+
pageConfig.value = normalPageConfigs(ret.data.result)
|
|
52
52
|
getSelects(ret.data.result?.pmBusinessIdentityVO?.tenantId)
|
|
53
53
|
return
|
|
54
54
|
}
|
package/src/utils/render.jsx
CHANGED
|
@@ -214,7 +214,6 @@ export function normalConfig({
|
|
|
214
214
|
tabsServices.forEach((({tableConfig, service}) => {
|
|
215
215
|
tableConfig.currentChange = (val, props, page) => {
|
|
216
216
|
setTimeout(() => {
|
|
217
|
-
debugger
|
|
218
217
|
const dynamicMapComp = props.config.dynamicMapComp
|
|
219
218
|
const dynamicMapCompKeys = Object.keys(dynamicMapComp)
|
|
220
219
|
const dynamicHireRelat = props.config.dynamicHireRelat
|