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
@@ -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
|
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
|
];
|