cloud-web-corejs 1.0.54-dev.186 → 1.0.54-dev.187

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.186",
4
+ "version": "1.0.54-dev.187",
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
7
7
  "lint": "eslint --ext .js,.vue src",
@@ -597,12 +597,13 @@ export default {
597
597
  disabled={disabled}
598
598
  onchange={() => {
599
599
  this.gridSaleOrgDataMap[row.companyCode].forEach((item, index) => {
600
- if (index == rowIndex) {
601
- item.defaults = true;
602
- } else {
600
+ if (index !== rowIndex) {
603
601
  item.defaults = false;
604
602
  }
605
603
  });
604
+ this.$nextTick(()=>{
605
+ row.defaults = true;
606
+ })
606
607
  }}
607
608
  />
608
609
  ];