@@ -559,7 +559,9 @@ export default {
},
computed: {
imgList() {
- return this.activeRow?.repairImg?.split(",") || [];
+ let activeRow = this.activeRow
+ let arr = activeRow?.repairImg ? activeRow.repairImg.split(",") : []
+ return arr;
};