摘要: ``` /** * 将时间转换为几秒前、几分钟前、几小时前、几天前 * @param $in_time 需要转换的时间字符串 * @return string */ public static function timeTran($in_time) { $now_time = time(); $in_time = strtotime($in_time); $dur = $now_time - $i 阅读全文
posted @ 2020-05-15 18:48 TBHacker 阅读(303) 评论(0) 推荐(0) 编辑
摘要: 组件介绍 Component像页面一样由wxml、wxss、js和json4个文件组成,且需要把这4个文件放在同一个目录中。与页面不一样的是,Component中的构造函数(也可以称构造器)是Component({}),而页面中的构造函数是Page({})。要编写一个自定义组件,首先需要在json文 阅读全文
posted @ 2020-05-15 10:07 TBHacker 阅读(358) 评论(0) 推荐(0) 编辑
摘要: 新建通用common.scss 引入 这样,就不用重复的写SCSS了。 阅读全文
posted @ 2020-05-15 09:48 TBHacker 阅读(4910) 评论(0) 推荐(0) 编辑