|
@@ -49,7 +49,7 @@ class ChannelUnit extends Component {
|
|
|
key: "province",
|
|
|
width: 250,
|
|
|
render: (text, record) => {
|
|
|
- return record.province + "-" + record.city + "-" + record.area;
|
|
|
+ return (record.province || "") + " " + (record.city || "") + " " + (record.area || "");
|
|
|
},
|
|
|
},
|
|
|
{
|
|
@@ -175,6 +175,8 @@ class ChannelUnit extends Component {
|
|
|
searchInfor: JSON.parse(JSON.stringify({})),
|
|
|
selectedRowKeys: [],
|
|
|
selectedRows: [],
|
|
|
+ cityList: [],
|
|
|
+ areaList: [],
|
|
|
auto: "",
|
|
|
},
|
|
|
() => {
|