imatrix-ui 0.2.42-up → 0.2.44-test
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 +14777 -14716
- package/lib/super-ui.umd.cjs +76 -76
- package/package.json +1 -1
- package/packages/IntervalSelection/src/sectionDate.vue +16 -16
- package/packages/department-tree/src/department-tree.vue +3 -0
- package/packages/super-grid/src/dynamic-input.vue +4 -3
- package/packages/super-grid/src/normal-column.vue +7 -2
- package/packages/super-grid/src/super-grid.vue +79 -2
- package/src/styles/theme/dark-blue/dialog.scss +1 -5
- package/src/utils/range-selector.js +19 -3
- package/src/utils/util.js +236 -68
- package/src/views/dsc-component/tabs/tab-content.vue +13 -1
|
@@ -111,11 +111,23 @@ export default {
|
|
|
111
111
|
let src
|
|
112
112
|
let params = ''
|
|
113
113
|
if (tag.routeQuery) {
|
|
114
|
+
const orgParams = []
|
|
115
|
+
const orgPath = tag.routeQuery['src']
|
|
116
|
+
if (orgPath && orgPath.indexOf('?') > 0) {
|
|
117
|
+
const orgParamsStr = orgPath.substring(orgPath.indexOf('?') + 1)
|
|
118
|
+
const orgParamsArr = orgParamsStr.split('&')
|
|
119
|
+
orgParamsArr.forEach(item => {
|
|
120
|
+
orgParams.push(item.substring(0, item.indexOf('=')))
|
|
121
|
+
})
|
|
122
|
+
}
|
|
114
123
|
for (const key in tag.routeQuery) {
|
|
115
124
|
if (key === 'src') {
|
|
116
125
|
src = tag.routeQuery[key]
|
|
117
126
|
} else {
|
|
118
|
-
|
|
127
|
+
if (orgParams.indexOf(key) < 0) {
|
|
128
|
+
// 表示原参数中没有该参数,则拼接该参数
|
|
129
|
+
params += key + '=' + tag.routeQuery[key] + '&'
|
|
130
|
+
}
|
|
119
131
|
}
|
|
120
132
|
}
|
|
121
133
|
}
|