resolver-egretimp-plus 0.0.65 → 0.0.66
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 +2 -2
- package/dist/web/index.js +43 -43
- package/package.json +4 -5
- package/src/analysisComponent.jsx +0 -3
- package/src/hooks/pageConfig.js +2 -2
- package/src/utils/const.js +4 -0
- package/src/hooks/testcomp.js +0 -0
- package/src/utils/vue3-sfc-loader.js +0 -1831
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "resolver-egretimp-plus",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.66",
|
|
4
4
|
"description": "交付体验渲染",
|
|
5
5
|
"main": "./dist/web/index.js",
|
|
6
6
|
"module": "./dist/web/index.js",
|
|
@@ -50,9 +50,8 @@
|
|
|
50
50
|
"vue-style-loader": "^4.1.3",
|
|
51
51
|
"vue3-quill": "^0.3.1",
|
|
52
52
|
"webpack": "^5.90.0",
|
|
53
|
-
"webpack-cli": "^5.1.4"
|
|
54
|
-
},
|
|
55
|
-
"dependencies": {
|
|
53
|
+
"webpack-cli": "^5.1.4",
|
|
56
54
|
"vue3-sfc-loader": "^0.9.5"
|
|
57
|
-
}
|
|
55
|
+
},
|
|
56
|
+
"dependencies": {}
|
|
58
57
|
}
|
|
@@ -117,9 +117,6 @@ export default {
|
|
|
117
117
|
const componentProps = ref({})
|
|
118
118
|
if (typeof props.component === 'function') {
|
|
119
119
|
props.component()?.then(res => {
|
|
120
|
-
if (props.config.isCustomComp) {
|
|
121
|
-
debugger
|
|
122
|
-
}
|
|
123
120
|
const obj = {}
|
|
124
121
|
if (res?.default?.emits) {
|
|
125
122
|
initVmodels(res?.default?.emits)
|
package/src/hooks/pageConfig.js
CHANGED
|
@@ -52,8 +52,8 @@ export function useBuildInData(messageTipInstance, loadingInstance) {
|
|
|
52
52
|
}
|
|
53
53
|
buildInRequest(QUERY_PAGE_CONFIG_DATA, reqData).then(ret => {
|
|
54
54
|
if (resultToast(ret.data, messageTipInstance, { noSuccessIip: true })) {
|
|
55
|
-
pageConfig.value = normalPageConfigs(mock)
|
|
56
|
-
|
|
55
|
+
// pageConfig.value = normalPageConfigs(mock)
|
|
56
|
+
pageConfig.value = normalPageConfigs(ret.data.result)
|
|
57
57
|
cb(pageConfig.value)
|
|
58
58
|
getSelects(ret.data.result?.pmBusinessIdentityVO?.tenantId)
|
|
59
59
|
return
|
package/src/utils/const.js
CHANGED
package/src/hooks/testcomp.js
DELETED
|
File without changes
|