@indfnd/common-mobile 1.0.12 → 1.0.14
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 +49 -7
- package/dist/ind-common-mobile.umd.cjs +3 -3
- package/package.json +1 -1
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.14](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v1.0.13...v1.0.14) (2026-01-15)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* 修改input-select展示列逻辑 ([c715868](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/commit/c71586884881c85c512a3cda115286d22f2169ea))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* tabber增加默认 ([1a4bf65](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/commit/1a4bf65aad8f617d1b81ea10fd5b797322738efa))
|
|
16
|
+
* tabber增加默认 ([b623d78](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/commit/b623d78c75e3e152513b44d73d9cb90d8cd8ea7e))
|
|
17
|
+
|
|
18
|
+
### [1.0.13](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v1.0.12...v1.0.13) (2026-01-09)
|
|
19
|
+
|
|
5
20
|
### [1.0.12](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v1.0.11...v1.0.12) (2026-01-08)
|
|
6
21
|
|
|
7
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.13";
|
|
7
7
|
const author$1 = "huxuetong";
|
|
8
8
|
const publishConfig = {
|
|
9
9
|
registry: "https://registry.npmjs.org/"
|
|
@@ -3216,7 +3216,7 @@ var render$n = function() {
|
|
|
3216
3216
|
var _vm = this;
|
|
3217
3217
|
var _h = _vm.$createElement;
|
|
3218
3218
|
var _c = _vm._self._c || _h;
|
|
3219
|
-
return _c("div", { staticClass: "ind-page-view ind-flex-column" }, [_c("div", { staticClass: "height100 ind-flex-column ind-detail-view-panel", class: [_vm.hasList ? "" : "ind-page"], style: { overflow: _vm.hasList ? "hidden" : "auto" } }, [_vm._l(_vm.normalTables, function(table, idx) {
|
|
3219
|
+
return _c("div", { staticClass: "ind-page-view ind-flex-column", style: { paddingBottom: _vm.bottomHeight } }, [_c("div", { staticClass: "height100 ind-flex-column ind-detail-view-panel", class: [_vm.hasList ? "" : "ind-page"], style: { overflow: _vm.hasList ? "hidden" : "auto" } }, [_vm._l(_vm.normalTables, function(table, idx) {
|
|
3220
3220
|
return [table.type == "form" ? [_vm._t(table.id, function() {
|
|
3221
3221
|
return [_c("IndMForm", { key: "table" + idx, class: [_vm.hasList ? "ind-border-none" : ""], attrs: { "formType": table.formType, "fieldList": table.formFieldList, "value": table.dataField ? _vm.form[table.dataField] : _vm.form }, on: { "input": function($event) {
|
|
3222
3222
|
return _vm.setForm(table, $event);
|
|
@@ -3306,6 +3306,7 @@ const __vue2_script$n = {
|
|
|
3306
3306
|
},
|
|
3307
3307
|
data() {
|
|
3308
3308
|
return {
|
|
3309
|
+
bottomHeight: "0px",
|
|
3309
3310
|
loadingComp: false,
|
|
3310
3311
|
form: {},
|
|
3311
3312
|
subTable: [],
|
|
@@ -3318,6 +3319,10 @@ const __vue2_script$n = {
|
|
|
3318
3319
|
this.setPageData(this.formValue);
|
|
3319
3320
|
this.initData();
|
|
3320
3321
|
},
|
|
3322
|
+
mounted() {
|
|
3323
|
+
var _a, _b, _c, _d;
|
|
3324
|
+
this.bottomHeight = (((_d = (_c = (_b = (_a = this.$slots) == null ? void 0 : _a.bottom) == null ? void 0 : _b[0]) == null ? void 0 : _c.elm) == null ? void 0 : _d.clientHeight) || 0) + "px";
|
|
3325
|
+
},
|
|
3321
3326
|
watch: {
|
|
3322
3327
|
pageUnit: function() {
|
|
3323
3328
|
this.setPageData(this.formValue);
|
|
@@ -22902,10 +22907,9 @@ const __vue2_script$d = {
|
|
|
22902
22907
|
}
|
|
22903
22908
|
},
|
|
22904
22909
|
columnsComp: function() {
|
|
22905
|
-
var _a;
|
|
22906
22910
|
if (this.columns) {
|
|
22907
22911
|
return this.columns;
|
|
22908
|
-
} else
|
|
22912
|
+
} else {
|
|
22909
22913
|
return [
|
|
22910
22914
|
{
|
|
22911
22915
|
headerName: "\u9009\u62E9",
|
|
@@ -22923,8 +22927,6 @@ const __vue2_script$d = {
|
|
|
22923
22927
|
showDisabledCheckboxes: true
|
|
22924
22928
|
}
|
|
22925
22929
|
];
|
|
22926
|
-
} else {
|
|
22927
|
-
return null;
|
|
22928
22930
|
}
|
|
22929
22931
|
},
|
|
22930
22932
|
rowKeyComp: function() {
|
|
@@ -23105,7 +23107,47 @@ const __vue2_script$b = {
|
|
|
23105
23107
|
components: { Tabbar, TabbarItem },
|
|
23106
23108
|
data() {
|
|
23107
23109
|
return {
|
|
23108
|
-
tab_menus: [
|
|
23110
|
+
tab_menus: [
|
|
23111
|
+
{
|
|
23112
|
+
type: 1,
|
|
23113
|
+
name: "appsNew",
|
|
23114
|
+
pid: "0",
|
|
23115
|
+
path: "",
|
|
23116
|
+
uri: "",
|
|
23117
|
+
component: "EmptyLayout",
|
|
23118
|
+
meta: {
|
|
23119
|
+
title: "\u5E94\u7528\u5E7F\u573A\uFF08\u65B0)",
|
|
23120
|
+
icon: "apps-o"
|
|
23121
|
+
},
|
|
23122
|
+
extendProps: ""
|
|
23123
|
+
},
|
|
23124
|
+
{
|
|
23125
|
+
type: 1,
|
|
23126
|
+
name: "workBench",
|
|
23127
|
+
pid: "0",
|
|
23128
|
+
path: "",
|
|
23129
|
+
uri: "",
|
|
23130
|
+
component: "EmptyLayout",
|
|
23131
|
+
meta: {
|
|
23132
|
+
title: "\u5DE5\u4F5C\u53F0",
|
|
23133
|
+
icon: "home-o"
|
|
23134
|
+
},
|
|
23135
|
+
extendProps: ""
|
|
23136
|
+
},
|
|
23137
|
+
{
|
|
23138
|
+
type: 1,
|
|
23139
|
+
name: "user",
|
|
23140
|
+
pid: "0",
|
|
23141
|
+
path: "/",
|
|
23142
|
+
uri: "/",
|
|
23143
|
+
component: "EmptyLayout",
|
|
23144
|
+
meta: {
|
|
23145
|
+
title: "\u6211\u7684",
|
|
23146
|
+
icon: "user-o"
|
|
23147
|
+
},
|
|
23148
|
+
extendProps: ""
|
|
23149
|
+
}
|
|
23150
|
+
]
|
|
23109
23151
|
};
|
|
23110
23152
|
},
|
|
23111
23153
|
mounted() {
|