初次提交

This commit is contained in:
lym
2026-03-09 13:54:17 +08:00
commit 8e25ad708b
516 changed files with 41896 additions and 0 deletions

13
app.wxs Normal file
View File

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