doway-coms 1.4.86 → 1.4.88

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": "doway-coms",
3
- "version": "1.4.86",
3
+ "version": "1.4.88",
4
4
  "description": "doway组件库",
5
5
  "author": "dowaysoft",
6
6
  "main": "packages/index.js",
@@ -471,7 +471,7 @@
471
471
  show-zoom
472
472
  transfer
473
473
  resize
474
- :zIndex="2000"
474
+ :zIndex="15"
475
475
  show-footer
476
476
  destroy-on-close
477
477
  >
@@ -229,8 +229,8 @@ export default {
229
229
  if (item.field === 'operation') {
230
230
  return
231
231
  }
232
- item.params.show=item.show
233
- this.adjustGridOptions.columns.push({
232
+
233
+ const column = {
234
234
  field: item.field,
235
235
  title: item.title,
236
236
  slots: {
@@ -241,7 +241,9 @@ export default {
241
241
  width: item.width,
242
242
  filters: item.filters,
243
243
  sortable: true,
244
- })
244
+ }
245
+ this.$set(column.params,'show',item.show)
246
+ this.adjustGridOptions.columns.push(column)
245
247
  })
246
248
  },
247
249
  mounted() {