This commit is contained in:
宋楠 2020-02-15 19:44:25 +08:00
parent 7721bb623a
commit b531092fcf
3 changed files with 45 additions and 45 deletions

View File

@ -4,7 +4,7 @@
[demo](https://solui.cn/vue-h5-template/#/)建议手机端查看 [demo](https://solui.cn/vue-h5-template/#/)建议手机端查看
#### 介绍 #### 介绍
[关于项目介绍](https://segmentfault.com/a/1190000019275330) [关于项目介绍](https://juejin.im/post/5cfefc73f265da1bba58f9f7)
- Vue-cli4 - Vue-cli4
- VantUI组件按需加载 - VantUI组件按需加载

View File

@ -1,37 +1,37 @@
/** /**
*格式化时间 *格式化时间
*yyyy-MM-dd hh:mm:ss *yyyy-MM-dd hh:mm:ss
*/ */
export function formatDate(time, fmt) { export function formatDate(time, fmt) {
if (time === undefined || '') { if (time === undefined || '') {
return return
} }
const date = new Date(time) const date = new Date(time)
if (/(y+)/.test(fmt)) { if (/(y+)/.test(fmt)) {
fmt = fmt.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length)) fmt = fmt.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length))
} }
const o = { const o = {
'M+': date.getMonth() + 1, 'M+': date.getMonth() + 1,
'd+': date.getDate(), 'd+': date.getDate(),
'h+': date.getHours(), 'h+': date.getHours(),
'm+': date.getMinutes(), 'm+': date.getMinutes(),
's+': date.getSeconds() 's+': date.getSeconds()
} }
for (const k in o) { for (const k in o) {
if (new RegExp(`(${k})`).test(fmt)) { if (new RegExp(`(${k})`).test(fmt)) {
const str = o[k] + '' const str = o[k] + ''
fmt = fmt.replace(RegExp.$1, RegExp.$1.length === 1 ? str : padLeftZero(str)) fmt = fmt.replace(RegExp.$1, RegExp.$1.length === 1 ? str : padLeftZero(str))
} }
} }
return fmt return fmt
} }
function padLeftZero(str) { function padLeftZero(str) {
return ('00' + str).substr(str.length) return ('00' + str).substr(str.length)
} }
/* /*
* 隐藏用户手机号中间四位 * 隐藏用户手机号中间四位
*/ */
export function hidePhone(phone) { export function hidePhone(phone) {
return phone.replace(/(\d{3})\d{4}(\d{4})/, '$1****$2') return phone.replace(/(\d{3})\d{4}(\d{4})/, '$1****$2')
} }

View File

@ -1,7 +1,7 @@
import Vue from 'vue' import Vue from 'vue'
import * as filter from './filter' import * as filter from './filter'
Object.keys(filter).forEach(k => Vue.filter(k, filter[k])) Object.keys(filter).forEach(k => Vue.filter(k, filter[k]))
Vue.prototype.$formatDate = Vue.filter('formatDate') Vue.prototype.$formatDate = Vue.filter('formatDate')
Vue.prototype.$hidePhone = Vue.filter('hidePhone') Vue.prototype.$hidePhone = Vue.filter('hidePhone')