@indfnd/common-mobile 1.0.25 → 1.0.27
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/CHANGELOG.md +15 -0
- package/dist/ind-common-mobile.es.js +8 -5
- package/dist/ind-common-mobile.umd.cjs +7 -7
- package/dist/styles/index.css +1 -1
- package/package.json +1 -1
- package/src/styles/variables/theme/emerald-green/common.less +36 -1
- package/src/styles/variables/theme/gleam-golden/common.less +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [1.0.27](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v1.0.26...v1.0.27) (2026-01-23)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* 文件上传上下文兼容湖北 ([92aecfa](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/commit/92aecfad6bfc59563ac3d4e59e55018213041f07))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* 更新 ([9f4e142](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/commit/9f4e142c192619079cc199a8c4cefc2f62ef8ba6))
|
|
16
|
+
* 更新 ([20c996b](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/commit/20c996bbdd668232f6072b6eb42c725352128f96))
|
|
17
|
+
|
|
18
|
+
### [1.0.26](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v1.0.25...v1.0.26) (2026-01-23)
|
|
19
|
+
|
|
5
20
|
### [1.0.25](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v1.0.24...v1.0.25) (2026-01-23)
|
|
6
21
|
|
|
7
22
|
### [1.0.24](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v1.0.23...v1.0.24) (2026-01-22)
|
|
@@ -3,7 +3,7 @@ import { getQuarterNum, getHalfYearNum, formatDate, useConfig, getLocalStorage,
|
|
|
3
3
|
import Vue$1 from "vue";
|
|
4
4
|
import { DropdownMenu as DropdownMenu$1, DropdownItem as DropdownItem$1, Message, LoadingBar, Spin } from "view-design";
|
|
5
5
|
const name$1 = "@indfnd/common-mobile";
|
|
6
|
-
const version$2 = "1.0.
|
|
6
|
+
const version$2 = "1.0.26";
|
|
7
7
|
const author$1 = "huxuetong";
|
|
8
8
|
const publishConfig = {
|
|
9
9
|
registry: "https://registry.npmjs.org/"
|
|
@@ -29577,9 +29577,7 @@ const __vue2_script$2 = {
|
|
|
29577
29577
|
}
|
|
29578
29578
|
},
|
|
29579
29579
|
h5Download(file) {
|
|
29580
|
-
const
|
|
29581
|
-
const prefix2 = isScyxWeb ? "/scyxgateway" : "";
|
|
29582
|
-
const downloadUrl = file.fileUrl ? prefix2 + file.fileUrl : `${this.ossServerContext}/oss/file/get/${file.fileId}`;
|
|
29580
|
+
const downloadUrl = file.fileUrl ? file.fileUrl : `${this.ossServerContext}/oss/file/get/${file.fileId}`;
|
|
29583
29581
|
console.log(`dld:`, downloadUrl);
|
|
29584
29582
|
const link = document.createElement("a");
|
|
29585
29583
|
link.href = downloadUrl;
|
|
@@ -29789,7 +29787,7 @@ const __vue2_script$1 = {
|
|
|
29789
29787
|
},
|
|
29790
29788
|
padding: {
|
|
29791
29789
|
type: String,
|
|
29792
|
-
default: "
|
|
29790
|
+
default: "10px 10px 0px 10px"
|
|
29793
29791
|
},
|
|
29794
29792
|
margin: {
|
|
29795
29793
|
type: String,
|
|
@@ -32153,6 +32151,11 @@ const install = function(Vue2, opts = { theme: "" }) {
|
|
|
32153
32151
|
}
|
|
32154
32152
|
Vue2.prototype.$config = _.merge({}, Vue2.prototype.$config || {}, ret);
|
|
32155
32153
|
console.log("\u7CFB\u7EDF\u914D\u7F6E\u5DF2\u52A0\u8F7D", Vue2.prototype.$config);
|
|
32154
|
+
setTimeout(() => {
|
|
32155
|
+
if (ret.systemDefaultConfig.changeUI == "1") {
|
|
32156
|
+
doChangeTheme(theme + " " + ret.systemDefaultConfig.theme);
|
|
32157
|
+
}
|
|
32158
|
+
}, 0);
|
|
32156
32159
|
} catch (error) {
|
|
32157
32160
|
console.error("\u89E3\u6790 settingInfo \u5931\u8D25:", error);
|
|
32158
32161
|
}
|