fix (接口自动化): csv encoding 增加 GB2312

This commit is contained in:
fit2-zhao 2021-09-03 14:37:08 +08:00 committed by fit2-zhao
parent 43f4acfd63
commit 7172a43c82
1 changed files with 1 additions and 1 deletions

View File

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