meixioacomponent 0.2.66 → 0.2.67
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meixioacomponent",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.67",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "YuRi",
|
|
6
6
|
"main": "lib/meixioacomponent.umd.min.js",
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
"@vue/cli-plugin-vuex": "~4.5.13",
|
|
30
30
|
"@vue/cli-service": "~4.5.13",
|
|
31
31
|
"babel-plugin-component": "^1.1.1",
|
|
32
|
+
"babel-plugin-transform-remove-console": "^6.9.4",
|
|
32
33
|
"less": "^3.0.4",
|
|
33
34
|
"less-loader": "^5.0.0",
|
|
34
35
|
"vue-template-compiler": "^2.6.11"
|
|
@@ -38,4 +39,4 @@
|
|
|
38
39
|
"last 2 versions",
|
|
39
40
|
"not dead"
|
|
40
41
|
]
|
|
41
|
-
}
|
|
42
|
+
}
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
</el-table-column>
|
|
123
123
|
</el-table>
|
|
124
124
|
|
|
125
|
-
<div class="table-suffix">
|
|
125
|
+
<div class="table-suffix" v-if="!isAverageWidth">
|
|
126
126
|
<oa_pro_colum_configVue
|
|
127
127
|
:config="tableConfig"
|
|
128
128
|
@setTableHeaderConfig="setTableHeaderConfig"
|
|
@@ -427,14 +427,16 @@ export default {
|
|
|
427
427
|
}
|
|
428
428
|
});
|
|
429
429
|
|
|
430
|
-
this
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
430
|
+
if (!this.isAverageWidth) {
|
|
431
|
+
this.$props.tableConfig.push({
|
|
432
|
+
label: "",
|
|
433
|
+
key: "noData",
|
|
434
|
+
lock: false,
|
|
435
|
+
width: 30,
|
|
436
|
+
show: true,
|
|
437
|
+
template: false,
|
|
438
|
+
});
|
|
439
|
+
}
|
|
438
440
|
|
|
439
441
|
this.refreshData();
|
|
440
442
|
},
|
|
@@ -679,7 +681,6 @@ export default {
|
|
|
679
681
|
// element表格的重新渲染方法
|
|
680
682
|
daLayoutTable() {
|
|
681
683
|
this.$nextTick(() => {
|
|
682
|
-
//console.log(this.$props.tableConfig);
|
|
683
684
|
this.$refs.elTable.doLayout();
|
|
684
685
|
});
|
|
685
686
|
},
|
|
@@ -762,10 +763,7 @@ export default {
|
|
|
762
763
|
},
|
|
763
764
|
},
|
|
764
765
|
watch: {
|
|
765
|
-
fixedList(newValue, oldValue) {
|
|
766
|
-
//console.log("fixedList:");
|
|
767
|
-
//console.log(newValue);
|
|
768
|
-
},
|
|
766
|
+
fixedList(newValue, oldValue) {},
|
|
769
767
|
},
|
|
770
768
|
};
|
|
771
769
|
</script>
|