fix (接口自动化): csv encoding 增加 GB2312 (#5933)
Co-authored-by: fit2-zhao <yong.zhao@fit2cloud.com>
This commit is contained in:
parent
7f98018783
commit
86bd5f5de4
|
@ -151,7 +151,7 @@
|
|||
},
|
||||
|
||||
querySearch(queryString, cb) {
|
||||
let restaurants = [{value: "UTF-8"}, {value: "UTF-16"}, {value: "ISO-8859-15"}, {value: "US-ASCll"}];
|
||||
let restaurants = [{value: "UTF-8"}, {value: "UTF-16"},{value: "GB2312"}, {value: "ISO-8859-15"}, {value: "US-ASCll"}];
|
||||
let results = queryString ? restaurants.filter(this.createFilter(queryString)) : restaurants;
|
||||
// 调用 callback 返回建议列表的数据
|
||||
cb(results);
|
||||
|
|
Loading…
Reference in New Issue