[improvement] extract padZero utils

This commit is contained in:
陈嘉涵 2019-05-23 19:11:39 +08:00
parent 9e5dd3f5d7
commit d7e5ee40b5
5 changed files with 6 additions and 12 deletions

View File

@ -12,7 +12,6 @@ export default {
'style-guide.zh-CN': () => import('../markdown/style-guide.zh-CN.md'),
'theme.en-US': () => import('../markdown/theme.en-US.md'),
'theme.zh-CN': () => import('../markdown/theme.zh-CN.md'),
'v2-progress-tracking': () => import('../markdown/v2-progress-tracking.md'),
'action-sheet.en-US': () => import('../../packages/action-sheet/en-US.md'),
'action-sheet.zh-CN': () => import('../../packages/action-sheet/zh-CN.md'),
'address-edit.en-US': () => import('../../packages/address-edit/en-US.md'),

View File

@ -1,13 +1,9 @@
import { use } from '../utils';
import { use, padZero } from '../utils';
import { RED } from '../utils/color';
import Checkbox from '../checkbox';
const [sfc, bem, t] = use('coupon');
function padZero(num) {
return (num < 10 ? '0' : '') + num;
}
function getDate(timeStamp) {
const date = new Date(timeStamp * 1000);
return `${date.getFullYear()}.${padZero(date.getMonth() + 1)}.${padZero(

View File

@ -1,9 +1,8 @@
import { use, range } from '../utils';
import { use, range, padZero } from '../utils';
import Picker from '../picker';
import { pickerProps } from '../picker/shared';
import {
times,
padZero,
isValidDate,
getTrueValue,
getMonthEndDay

View File

@ -2,10 +2,6 @@ export function isValidDate(date) {
return Object.prototype.toString.call(date) === '[object Date]' && !isNaN(date.getTime());
}
export function padZero(val) {
return `00${val}`.slice(-2);
}
export function times(n, iteratee) {
let index = -1;
const result = Array(n);

View File

@ -58,3 +58,7 @@ export function suffixPx(value?: string | number): string | undefined {
value = String(value);
return isNumber(value) ? `${value}px` : value;
}
export function padZero(num: number | string): string {
return (num < 10 ? '0' : '') + num;
}