@indfnd/common-mobile 1.0.80 → 1.0.81
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
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
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.81](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v1.0.80...v1.0.81) (2026-04-09)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* 修复IndMForm bug ([5e0e25a](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/commit/5e0e25a6913cb69b5284c11509b89655e3332cbf))
|
|
11
|
+
|
|
5
12
|
### [1.0.80](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v1.0.79...v1.0.80) (2026-04-09)
|
|
6
13
|
|
|
7
14
|
### [1.0.79](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v1.0.78...v1.0.79) (2026-04-09)
|
|
@@ -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.80";
|
|
7
7
|
const author$1 = "huxuetong";
|
|
8
8
|
const publishConfig = {
|
|
9
9
|
registry: "https://registry.npmjs.org/"
|
|
@@ -1527,14 +1527,14 @@ var FormImpl = {
|
|
|
1527
1527
|
h(
|
|
1528
1528
|
"div",
|
|
1529
1529
|
{
|
|
1530
|
-
class: "ind-page-title" + (titleField.class || "")
|
|
1530
|
+
class: "ind-page-title" + ((titleField == null ? void 0 : titleField.class) || "")
|
|
1531
1531
|
},
|
|
1532
1532
|
[this.form[titleField == null ? void 0 : titleField.formKey]]
|
|
1533
1533
|
),
|
|
1534
1534
|
h(
|
|
1535
1535
|
"div",
|
|
1536
1536
|
{
|
|
1537
|
-
class: "ind-page-sub-title" + (subTitleField.class || "")
|
|
1537
|
+
class: "ind-page-sub-title" + ((subTitleField == null ? void 0 : subTitleField.class) || "")
|
|
1538
1538
|
},
|
|
1539
1539
|
[
|
|
1540
1540
|
(subTitleField == null ? void 0 : subTitleField.dateFormat) ? formatDate(this.form[subTitleField == null ? void 0 : subTitleField.formKey]) : this.form[subTitleField == null ? void 0 : subTitleField.formKey]
|
|
@@ -1599,14 +1599,14 @@ var FormImpl = {
|
|
|
1599
1599
|
h(
|
|
1600
1600
|
"div",
|
|
1601
1601
|
{
|
|
1602
|
-
class: "ind-page-title" + (titleField.class || "")
|
|
1602
|
+
class: "ind-page-title" + ((titleField == null ? void 0 : titleField.class) || "")
|
|
1603
1603
|
},
|
|
1604
1604
|
[this.form[titleField == null ? void 0 : titleField.formKey]]
|
|
1605
1605
|
),
|
|
1606
1606
|
h(
|
|
1607
1607
|
"div",
|
|
1608
1608
|
{
|
|
1609
|
-
class: "ind-page-sub-title" + (subTitleField.class || "")
|
|
1609
|
+
class: "ind-page-sub-title" + ((subTitleField == null ? void 0 : subTitleField.class) || "")
|
|
1610
1610
|
},
|
|
1611
1611
|
[
|
|
1612
1612
|
(subTitleField == null ? void 0 : subTitleField.formatDate) ? formatDate(this.form[subTitleField == null ? void 0 : subTitleField.formKey]) : this.form[subTitleField == null ? void 0 : subTitleField.formKey]
|