cnhis-design-vue 0.2.35-beta → 0.2.39-beta

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.
@@ -3305,8 +3305,10 @@ var variable = __webpack_require__("2871");
3305
3305
  var arr = [];
3306
3306
 
3307
3307
  var _loop = function _loop(key) {
3308
+ // v[this.primaryKey] 可能为数字
3309
+ // key 为字符串 用全等匹配不到 改为 ==
3308
3310
  var matchItem = _this12.oldtableData.find(function (v) {
3309
- return v[_this12.primaryKey] === key;
3311
+ return v[_this12.primaryKey] == key;
3310
3312
  });
3311
3313
 
3312
3314
  var obj = batchFormData[key];