13 lines
322 B
Plaintext
13 lines
322 B
Plaintext
|
|
// 支持es4语法
|
||
|
|
var filter = {
|
||
|
|
ccityname: function(value){
|
||
|
|
if(value){
|
||
|
|
value=value.replace("市","").replace("自治州","").replace("同治州","").replace("地区","");
|
||
|
|
}
|
||
|
|
return value
|
||
|
|
}
|
||
|
|
}
|
||
|
|
// 导出对外暴露的属性
|
||
|
|
module.exports = {
|
||
|
|
ccityname: filter.ccityname
|
||
|
|
}
|