@indfnd/common-mobile 1.0.13 → 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 +13 -0
- package/dist/ind-common-mobile.es.js +48 -3
- package/dist/ind-common-mobile.umd.cjs +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
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
|
+
|
|
5
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)
|
|
6
19
|
|
|
7
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)
|
|
@@ -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);
|
|
@@ -23102,7 +23107,47 @@ const __vue2_script$b = {
|
|
|
23102
23107
|
components: { Tabbar, TabbarItem },
|
|
23103
23108
|
data() {
|
|
23104
23109
|
return {
|
|
23105
|
-
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
|
+
]
|
|
23106
23151
|
};
|
|
23107
23152
|
},
|
|
23108
23153
|
mounted() {
|