cloud-web-corejs 1.0.54-dev.171 → 1.0.54-dev.173
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 +1 -1
- package/src/components/baseAttachment/mixins.js +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +31 -32
- package/src/components/xform/form-designer/form-widget/field-widget/form-item-wrapper.vue +49 -25
- package/src/components/xform/form-designer/form-widget/field-widget/vabSearch-widget.vue +4 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/textFlag-editor.vue +3 -3
- package/src/components/xform/form-render/indexMixin.js +2134 -1
- package/src/store/modules/permission.js +1 -1
- package/src/views/user/home/default.vue +4 -0
@@ -467,6 +467,7 @@ export default {
|
|
467
467
|
this.$router.push({path: path, query: {url: route.url}});
|
468
468
|
} else {
|
469
469
|
let path = this.getPath(route)
|
470
|
+
if(!path)return
|
470
471
|
this.$router.push(path);
|
471
472
|
}
|
472
473
|
},
|
@@ -491,6 +492,9 @@ export default {
|
|
491
492
|
let url = route3.route || route3.url;
|
492
493
|
path = url;
|
493
494
|
}
|
495
|
+
if (path && path.startsWith("@")) {
|
496
|
+
path = null
|
497
|
+
}
|
494
498
|
return path;
|
495
499
|
},
|
496
500
|
jumpOutLink(route) {
|