eoss-mobiles 0.2.82 → 0.2.84
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 +13 -11
- package/lib/form.js +5 -3
- package/lib/index.js +1 -1
- package/lib/table.js +2 -2
- package/lib/theme-chalk/form.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/package.json +1 -1
- package/packages/form/src/main.vue +1 -1
- package/packages/table/src/main.vue +2 -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/package.json
CHANGED
|
@@ -281,8 +281,7 @@ export default {
|
|
|
281
281
|
if (where) {
|
|
282
282
|
reqData = util.extend({}, reqData, where);
|
|
283
283
|
}
|
|
284
|
-
|
|
285
|
-
.ajax({
|
|
284
|
+
request({
|
|
286
285
|
url: this.url,
|
|
287
286
|
method: this.method,
|
|
288
287
|
format: this.format,
|
|
@@ -331,8 +330,7 @@ export default {
|
|
|
331
330
|
}
|
|
332
331
|
},
|
|
333
332
|
getTheads() {
|
|
334
|
-
|
|
335
|
-
.ajax({
|
|
333
|
+
request({
|
|
336
334
|
url: this.thead,
|
|
337
335
|
method: this.method,
|
|
338
336
|
format: this.format,
|
|
@@ -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)}
|