eoss-mobiles 0.2.83 → 0.2.85
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/eoss-mobile.common.js +11 -3
- package/lib/index.js +1 -1
- package/lib/table.js +10 -2
- package/lib/theme-chalk/form.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/package.json +1 -1
- package/packages/table/src/main.vue +10 -4
- package/packages/theme-chalk/lib/form.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/src/form.scss +3 -3
- package/src/index.js +1 -1
package/lib/table.js
CHANGED
|
@@ -2085,6 +2085,14 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
2085
2085
|
this.tableHeight = val;
|
|
2086
2086
|
}
|
|
2087
2087
|
}
|
|
2088
|
+
},
|
|
2089
|
+
param: {
|
|
2090
|
+
immediate: true,
|
|
2091
|
+
deep: true,
|
|
2092
|
+
handler: function handler(val) {
|
|
2093
|
+
|
|
2094
|
+
this.getTableData({ where: this.wheres, first: true });
|
|
2095
|
+
}
|
|
2088
2096
|
}
|
|
2089
2097
|
},
|
|
2090
2098
|
mounted: function mounted() {
|
|
@@ -2215,7 +2223,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
2215
2223
|
if (where) {
|
|
2216
2224
|
reqData = util["a" /* default */].extend({}, reqData, where);
|
|
2217
2225
|
}
|
|
2218
|
-
|
|
2226
|
+
Object(http["a" /* default */])({
|
|
2219
2227
|
url: this.url,
|
|
2220
2228
|
method: this.method,
|
|
2221
2229
|
format: this.format,
|
|
@@ -2262,7 +2270,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
2262
2270
|
getTheads: function getTheads() {
|
|
2263
2271
|
var _this8 = this;
|
|
2264
2272
|
|
|
2265
|
-
|
|
2273
|
+
Object(http["a" /* default */])({
|
|
2266
2274
|
url: this.thead,
|
|
2267
2275
|
method: this.method,
|
|
2268
2276
|
format: this.format,
|
package/lib/theme-chalk/form.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.em-form,.em-form-content{-webkit-box-direction:normal}.em-form{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;height:auto}.em-form-content{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;height:0}.em-form .van-tab__pane{height:calc(100% - 10px)}
|
|
1
|
+
.em-form,.em-form-content{-webkit-box-direction:normal}.em-form{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;height:auto}.em-form-content{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;height:0}.em-form .van-tab__pane{height:calc(100% - 10px)}
|