Pu Zhibing
2025-04-22 7feb722a12e26f5572c7df9ccc1ce8c1e26b9f94
ManagementOKTravel/guns-admin/src/main/webapp/static/modular/system/sysCouponRecord/sysCouponRecord.js
@@ -43,6 +43,18 @@
                        return "";
                    }
                }
            },
            {title: '适用城市', field: 'citys', visible: true, align: 'center', valign: 'middle',
                formatter: function (value, row) {
                    if(null != value && '' != value){
                        let cityList = JSON.parse(value);
                        var names = "";
                        for (let i = 0; i < cityList.length; i++) {
                            names += cityList[i].name + ",";
                        }
                        return '' == names ? names : names.substring(0, names.length - 1);
                    }
                }
            }
    ];
};