agilebuilder-ui 1.0.85 → 1.0.87-temp1

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.
Files changed (38) hide show
  1. package/lib/super-ui.css +1 -1
  2. package/lib/super-ui.js +24626 -23708
  3. package/lib/super-ui.umd.cjs +76 -76
  4. package/package.json +2 -2
  5. package/packages/dynamic-source-select/src/dynamic-source-select.vue +3 -0
  6. package/packages/fs-upload-list/src/fs-upload-list.vue +2 -1
  7. package/packages/index.js +5 -2
  8. package/packages/rich-editor/index.vue +1 -1
  9. package/packages/row-form/index.js +7 -0
  10. package/packages/row-form/index.vue +211 -0
  11. package/packages/super-grid/src/apis.js +26 -0
  12. package/packages/super-grid/src/components/grid-icon.vue +7 -14
  13. package/packages/super-grid/src/components/hyperlinks.vue +24 -8
  14. package/packages/super-grid/src/custom-formatter.js +312 -386
  15. package/packages/super-grid/src/dynamic-input.vue +8 -1
  16. package/packages/super-grid/src/normal-column-content.vue +1079 -0
  17. package/packages/super-grid/src/normal-column.vue +41 -752
  18. package/packages/super-grid/src/row-detail.vue +50 -0
  19. package/packages/super-grid/src/search-form-advancedQuery.vue +6 -1
  20. package/packages/super-grid/src/search-form-item.vue +6 -1
  21. package/packages/super-grid/src/super-grid-service.js +41 -1
  22. package/packages/super-grid/src/super-grid.vue +123 -49
  23. package/packages/super-grid/src/utils.js +80 -56
  24. package/src/i18n/langs/cn.js +4 -1
  25. package/src/i18n/langs/en.js +3 -0
  26. package/src/permission.js +7 -1
  27. package/src/store/modules/user.js +4 -1
  28. package/src/styles/theme/dark-blue/button.scss +2 -2
  29. package/src/styles/theme/dark-blue/index.scss +1 -1
  30. package/src/styles/theme/green/button.scss +2 -2
  31. package/src/styles/theme/green/index.scss +1 -1
  32. package/src/styles/theme/ocean-blue/button.scss +2 -2
  33. package/src/styles/theme/ocean-blue/index.scss +1 -1
  34. package/src/utils/jump-page-utils.js +199 -321
  35. package/src/utils/permissionAuth.js +1 -1
  36. package/src/views/layout/components/Menubar/Item.vue +27 -4
  37. package/src/views/layout/components/Menubar/SidebarItem.vue +6 -2
  38. package/src/views/layout/components/Menubar/index.vue +14 -2
@@ -300,6 +300,7 @@
300
300
  dynamicDataSourceCode: dynamicDataSourceCode,
301
301
  valueSetOptions: valueSetOptions,
302
302
  isSql: isSql,
303
+ backendUrl: baseURL,
303
304
  additionalParameter: additionalParamMap ? JSON.stringify(additionalParamMap) : null
304
305
  }"
305
306
  :parent="parentFormData"
@@ -571,6 +572,11 @@ export default {
571
572
  console.log('superGrid----window.location.protocol---', window.location.protocol)
572
573
  const isShowScanIcon = isMobile && window.location.protocol === 'https:' ? true: false
573
574
  const isApk = isMobile && userAgent && userAgent === 'app' ? true: false
575
+
576
+ let baseURL = gridParams.options.backendUrl
577
+ if (!baseURL) {
578
+ baseURL = window.$vueApp.config.globalProperties.baseURL
579
+ }
574
580
  return {
575
581
  deptManTree: false, // 是否是部门人员树
576
582
  isMultiTree: false, // 是否是多选树
@@ -631,7 +637,8 @@ export default {
631
637
  userAgent,
632
638
  isApk,
633
639
  isShowBrowserScan: false,
634
- isShowScanIcon
640
+ isShowScanIcon,
641
+ baseURL
635
642
  }
636
643
  },
637
644
  computed: {},