cloud-web-corejs 1.0.54-dev.313 → 1.0.54-dev.315

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,7 +1,7 @@
1
1
  {
2
2
  "name": "cloud-web-corejs",
3
3
  "private": false,
4
- "version": "1.0.54-dev.313",
4
+ "version": "1.0.54-dev.315",
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
7
7
  "lint": "eslint --ext .js,.vue src",
@@ -75,7 +75,8 @@ export default {
75
75
  selectMulti: true,
76
76
  formData: {},
77
77
  vxeOption: {},
78
- tableData: []
78
+ tableData: [],
79
+ fieldKey:"userId"
79
80
  };
80
81
  },
81
82
  methods: {
@@ -199,7 +199,10 @@ export default {
199
199
  Draggable,
200
200
  ...FieldComponents
201
201
  },
202
- mixins: [dataTableMixin]
202
+ mixins: [dataTableMixin],
203
+ created() {
204
+ if(this.widget.options.isNotQueryAllPage===undefined)this.widget.options.isNotQueryAllPage = false;
205
+ }
203
206
  };
204
207
  </script>
205
208