98 lines
3.4 KiB
JavaScript
98 lines
3.4 KiB
JavaScript
import request from "./request";
|
||
import {
|
||
setStorageWithExpiry,
|
||
getStorageWithExpiry
|
||
} from './auth'
|
||
|
||
export async function getDictDataByType(type) {
|
||
let data = getStorageWithExpiry(type);
|
||
if (data === null || data === undefined) {
|
||
try {
|
||
const response = await request({
|
||
url: '/app-api/system/dict-data/type',
|
||
method: 'get',
|
||
params: {type}
|
||
});
|
||
data = response.data;
|
||
setStorageWithExpiry(type, data, 3600); // 存储数据并设置过期时间
|
||
} catch (error) {
|
||
console.error("请求字典数据时出现了异常:", error);
|
||
throw error; // 确保错误能够被外部捕获
|
||
}
|
||
}
|
||
return data;
|
||
}
|
||
|
||
export function formatDate(timestamp) {
|
||
// 将时间戳转换为Date对象
|
||
const date = new Date(timestamp);
|
||
// 获取年月日时分秒
|
||
const year = date.getFullYear();
|
||
const month = (date.getMonth() + 1).toString().padStart(2, '0');
|
||
const day = date.getDate().toString().padStart(2, '0');
|
||
// 组合成日期时间字符串
|
||
return `${year}-${month}-${day}`;
|
||
}
|
||
export function formatDateChinese(timestamp) {
|
||
// 将时间戳转换为Date对象
|
||
const date = new Date(timestamp);
|
||
// 获取年月日时分秒
|
||
const year = date.getFullYear();
|
||
const month = (date.getMonth() + 1).toString().padStart(2, '0');
|
||
const day = date.getDate().toString().padStart(2, '0');
|
||
// 组合成日期时间字符串
|
||
return `${year}年${month}月${day}日`;
|
||
}
|
||
|
||
export function formatDateTimeToMinute(timestamp) {
|
||
// 将时间戳转换为 Date 对象
|
||
const date = new Date(timestamp);
|
||
// 获取年月日时分
|
||
const year = date.getFullYear();
|
||
const month = (date.getMonth() + 1).toString().padStart(2, '0');
|
||
const day = date.getDate().toString().padStart(2, '0');
|
||
const hours = date.getHours().toString().padStart(2, '0');
|
||
const minutes = date.getMinutes().toString().padStart(2, '0');
|
||
// 组合成日期时间字符串(格式:yyyy-MM-dd hh:mm)
|
||
return `${year}-${month}-${day} ${hours}:${minutes}`;
|
||
}
|
||
|
||
export function formatTimestamp(timestamp) {
|
||
// 将时间戳转换为Date对象
|
||
const date = new Date(timestamp);
|
||
// 获取年月日时分秒
|
||
const year = date.getFullYear();
|
||
const month = (date.getMonth() + 1).toString().padStart(2, '0');
|
||
const day = date.getDate().toString().padStart(2, '0');
|
||
const hours = date.getHours().toString().padStart(2, '0');
|
||
const minutes = date.getMinutes().toString().padStart(2, '0');
|
||
const seconds = date.getSeconds().toString().padStart(2, '0');
|
||
// 组合成日期时间字符串
|
||
return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
|
||
}
|
||
|
||
export function getWXStatusHeight() {
|
||
// #ifdef MP-WEIXIN
|
||
// 获取距上
|
||
const barTop = wx.getSystemInfoSync().statusBarHeight
|
||
// 获取胶囊按钮位置信息
|
||
const menuButtonInfo = wx.getMenuButtonBoundingClientRect()
|
||
// 获取导航栏高度
|
||
const barHeight = menuButtonInfo.height + (menuButtonInfo.top - barTop) * 2
|
||
let barWidth = menuButtonInfo.width
|
||
console.log('menuButtonInfo', menuButtonInfo)
|
||
let barLeftPosition = 375 - menuButtonInfo.right + menuButtonInfo.width
|
||
let menuButtonLeft = menuButtonInfo.left
|
||
let menuButtonRight = menuButtonInfo.right
|
||
return {
|
||
barHeight,
|
||
barTop,
|
||
barWidth,
|
||
barLeftPosition,
|
||
menuButtonLeft,
|
||
menuButtonRight
|
||
}
|
||
// #endif
|
||
}
|
||
|