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.
- package/lib/super-ui.css +1 -1
- package/lib/super-ui.js +24626 -23708
- package/lib/super-ui.umd.cjs +76 -76
- package/package.json +2 -2
- package/packages/dynamic-source-select/src/dynamic-source-select.vue +3 -0
- package/packages/fs-upload-list/src/fs-upload-list.vue +2 -1
- package/packages/index.js +5 -2
- package/packages/rich-editor/index.vue +1 -1
- package/packages/row-form/index.js +7 -0
- package/packages/row-form/index.vue +211 -0
- package/packages/super-grid/src/apis.js +26 -0
- package/packages/super-grid/src/components/grid-icon.vue +7 -14
- package/packages/super-grid/src/components/hyperlinks.vue +24 -8
- package/packages/super-grid/src/custom-formatter.js +312 -386
- package/packages/super-grid/src/dynamic-input.vue +8 -1
- package/packages/super-grid/src/normal-column-content.vue +1079 -0
- package/packages/super-grid/src/normal-column.vue +41 -752
- package/packages/super-grid/src/row-detail.vue +50 -0
- package/packages/super-grid/src/search-form-advancedQuery.vue +6 -1
- package/packages/super-grid/src/search-form-item.vue +6 -1
- package/packages/super-grid/src/super-grid-service.js +41 -1
- package/packages/super-grid/src/super-grid.vue +123 -49
- package/packages/super-grid/src/utils.js +80 -56
- package/src/i18n/langs/cn.js +4 -1
- package/src/i18n/langs/en.js +3 -0
- package/src/permission.js +7 -1
- package/src/store/modules/user.js +4 -1
- package/src/styles/theme/dark-blue/button.scss +2 -2
- package/src/styles/theme/dark-blue/index.scss +1 -1
- package/src/styles/theme/green/button.scss +2 -2
- package/src/styles/theme/green/index.scss +1 -1
- package/src/styles/theme/ocean-blue/button.scss +2 -2
- package/src/styles/theme/ocean-blue/index.scss +1 -1
- package/src/utils/jump-page-utils.js +199 -321
- package/src/utils/permissionAuth.js +1 -1
- package/src/views/layout/components/Menubar/Item.vue +27 -4
- package/src/views/layout/components/Menubar/SidebarItem.vue +6 -2
- 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: {},
|