cloud-web-corejs 1.0.54-dev.421 → 1.0.54-dev.423

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.421",
4
+ "version": "1.0.54-dev.423",
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
7
7
  "lint": "eslint --ext .js,.vue src",
@@ -486,6 +486,7 @@ tmixins = {
486
486
  };
487
487
  },
488
488
  changeFile(param) {
489
+ debugger
489
490
  if (!param.file || param.file.status == "fail") return;
490
491
  let target = this.$refs.upload;
491
492
  if (!target) return;
@@ -154,6 +154,7 @@
154
154
  @keydown.enter.prevent
155
155
  @click="openUploadDialog()"
156
156
  @mouseenter="uploadEnterOver()"
157
+ @mouseleave="uploadEnterLeave()"
157
158
  >
158
159
  <i class="el-icon-plus avatar-uploader-icon"></i>
159
160
  </button>
@@ -964,7 +964,13 @@ modules = {
964
964
  let rows = res.objx
965
965
  ? res.objx.records || res.objx || []
966
966
  : [];
967
-
967
+ that.initExportFieldSchemaData(rows);
968
+ /* rows.forEach((row, index) => {
969
+ if (!row._X_ROW_KEY) {
970
+ row._X_ROW_KEY = "row_" + generateId();
971
+ }
972
+ }); */
973
+ // debugger
968
974
  let hasChildField = $grid.treeConfig.hasChild;
969
975
  if (row[hasChildField] && !rows.length) {
970
976
  row[hasChildField] = false;