1,创建后缀为wxs的文件:stringUtils.wxs
2,在文件中定义函数:
var substrDate = function (date,type) {
var dt = "";
if(type == 1){
dt = date.substring(0,10);
}else{
dt = date.substring(11, 16);
}
return dt;
}
module.exports = { substrDate: substrDate };
3,在wxml文件中引入:<wxs src="../../utils/stringUtils.wxs" module="tools" />
4,在需要使用的地方进行执行:
<text>{{tools.substrDate(item.starDt,2)}}-{{tools.substrDate(item.endDt,2)}} {{tools.substrDate(item.starDt,1)}}至{{tools.substrDate(item.endDt,1)}}</text>
</view>