123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- import {
- numberToChinese,
- formatTimestamp
- } from './utils.js'
- export const deg = (value, stauts) => { //deg 转 学位过滤器
- switch (+value) {
- case 0: {
- switch (+stauts) {
- case 0:
- return "未获得学位资格";
- case 1:
- return "初中资格";
- case 2:
- return "高中资格";
- case 3:
- return "大学资格";
- case 4:
- return "大学资格";
- }
- }
- case 1:
- return "大学毕业";
- case 2:
- return "学士学位";
- case 3:
- return "硕士学位";
- case 4:
- return "博士学位";
- case 5:
- return "学霸";
- case 6:
- return "结业";
- }
- }
- export const numToZh = value => { //数字转汉字过滤器
- return value ? numberToChinese(value) : ''
- }
- export const getYear = value => { //时间戳转年份过滤器
- return formatTimestamp(+value)[0]
- }
- export const getMonth = value => { //时间戳转月份过滤器
- const month = formatTimestamp(+value)[1] + ''
- return month.length === 1 ? '0' + month : month //月份只有一位数字时补零
- }
- export const getDay = value => { //时间戳转周过滤器
- return formatTimestamp(+value)[2]
- }
- export const getDate = value => { //时间戳转 日 过滤器
- const date = formatTimestamp(+value)[3] + ''
- return date.length === 1 ? '0' + date : date //日期份只有一位数字时补零
- }
- export const getHousr = value => { //时间戳转 时 过滤器
- return formatTimestamp(+value)[4]
- }
- export const getMinute = value => { //时间戳转 分 过滤器
- return formatTimestamp(+value)[5]
- }
- export const getSecond = value => { //时间戳转 秒 过滤器
- return formatTimestamp(+value)[6]
- }
- export const willDeg = (value, max) => {
- if (value < 200) {
- return '大学毕业'
- }
- if (value >= 200 && value < 600) {
- return '学士毕业'
- } else if (value >= 600 && value < 1000) {
- return '硕士毕业'
- } else if (value >= 1000 && value < 1300) {
- return '博士毕业'
- } else if (value >= 1300 && value < max) {
- return '成为学霸'
- }
- return ''
- }
- export const lessScore = (value, max) => {
- if (value < 200) {
- return 200 - value
- } else if (value >= 200 && value < 600) {
- return 600 - value
- } else if (value >= 600 && value < 1000) {
- return 1000 - value
- } else if (value >= 1000 && value < 1300) {
- return 1300 - value
- } else if (value >= 1300 && value < max) {
- return max - value
- }
- return ''
- }
- export function userXueWei(score) {
- score = Number(score)
- let out
- switch (true) {
- case score < 200:
- out = '未获得证书'
- break
- case (score >= 200 && score < 500):
- out = '大学毕业'
- break
- case (score >= 500 && score < 1000):
- out = '学士学位'
- break
- case (score >= 1000 && score < 1500):
- out = '硕士学位'
- break
- case score >= 1500:
- out = '博士学位'
- break
- }
- return out
- }
- export function dateFormatter(timestamp, fmt) {
- fmt = fmt || "yyyy-MM-dd";
- if (typeof timestamp === "string") {
- timestamp = timestamp.replace(/-/g, '/')
- }
- const $this = new Date(timestamp);
- const o = {
- "M+": $this.getMonth() + 1,
- "d+": $this.getDate(),
- "h+": $this.getHours(),
- "m+": $this.getMinutes(),
- "s+": $this.getSeconds(),
- "q+": Math.floor(($this.getMonth() + 3) / 3),
- S: $this.getMilliseconds()
- };
- if (/(y+)/.test(fmt)) {
- fmt = fmt.replace(
- RegExp.$1,
- ($this.getFullYear() + "").substr(4 - RegExp.$1.length)
- );
- }
- for (var k in o) {
- if (new RegExp("(" + k + ")").test(fmt)) {
- fmt = fmt.replace(
- RegExp.$1,
- RegExp.$1.length === 1 ?
- o[k] :
- ("00" + o[k]).substr(("" + o[k]).length)
- );
- }
- }
- return fmt;
- }
|