import dateFormat from "@npm/dai-mp/tools/dateFormat.js"; // 顶部tab切换组件 Component({ properties: { format: { type: String, value: "yyyy-MM-dd", }, timestamp: { type: String, value: "", }, }, data: { showText: "", }, observers: { timestamp(val) { this.computeShowText(); }, }, lifetimes: { ready() { this.init(); }, }, methods: { init() { // console.log("日期显示组件初始化完成"); }, computeShowText() { const { timestamp, format } = this.data; const showText = dateFormat(new Date(timestamp * 1000), format); // console.log("日期显示组件", showText); this.setData({ showText }); }, }, });