water_xcx/pages/s-remould/utils.wxs

19 lines
366 B
Plaintext
Raw Permalink Normal View History

2025-04-15 15:44:51 +08:00
var filters = {
/**
* 参数1: 要截取的字符串
* 参数2: 开始截取的index
* 参数3: 结束截取的index
*/
substring:function(val,start,end){
if (val.length == 0 || val == undefined) {
return;
}
return val.substring(start,end);
}
}
module.exports = {
substring:filters.substring
}