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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "resolver-egretimp-plus",
3
- "version": "0.0.65",
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)
@@ -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
- // pageConfig.value = normalPageConfigs(ret.data.result)
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
@@ -238,3 +238,7 @@ export const META_TYPE_MAP = {
238
238
  'cmi-table': 'CustomComponentTableH5',
239
239
  'cmi-datetime': 'CmiDatetimePicker',
240
240
  }
241
+
242
+ export {
243
+ commonPropsType as componentPropsType
244
+ }
File without changes