util.js 文件内容
export const yearMonthDate = function(time){
if (time) {
var a = [];
a = time.split('-')
var year = a[0];
var month = a[1];
var date = a[2];
if (month.indexOf("0") == 0) {
month = month.slice(1);
}
if (date.indexOf("0") == 0) {
date = date.slice(1);
}
var monthDateText = month + '月' + date + '日';
return monthDateText
}
}
一、 全局引入 ,先在 main.js 文件 引入,main.js入口文件内容
import * as Util from ‘@/common/util.js’
let newDate = this.$util.yearMonthDate('2023-08-01')
console.log(newDate) // 8月1日
二、 局部引入,在页面中引入使用
import { yearMonthDate } from '@/plugins/utils'
export default {
data {
return {
yearMonthDate: yearMonthDate
}
}
}
<view class="title">预约时间:{{yearMonthDate(clickslotitem.schedulingDate)}}}</view>