2024-03-12 09:27:48 +08:00
|
|
|
/**
|
2024-05-07 10:50:29 +08:00
|
|
|
* 显示消息提示框
|
|
|
|
|
* @param content 提示的标题
|
|
|
|
|
*/
|
2024-03-12 09:27:48 +08:00
|
|
|
export function toast(content) {
|
2024-05-07 10:50:29 +08:00
|
|
|
uni.showToast({
|
|
|
|
|
icon: 'none',
|
|
|
|
|
title: content,
|
|
|
|
|
duration: 5000
|
|
|
|
|
})
|
2024-03-12 09:27:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2024-05-07 10:50:29 +08:00
|
|
|
* 显示模态弹窗
|
|
|
|
|
* @param content 提示的标题
|
|
|
|
|
*/
|
2024-03-12 09:27:48 +08:00
|
|
|
export function showConfirm(content) {
|
2024-05-07 10:50:29 +08:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
|
uni.showModal({
|
|
|
|
|
title: '提示',
|
|
|
|
|
content: content,
|
|
|
|
|
cancelText: '取消',
|
|
|
|
|
confirmText: '确定',
|
|
|
|
|
success: function(res) {
|
|
|
|
|
resolve(res)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
})
|
2024-03-12 09:27:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2024-05-07 10:50:29 +08:00
|
|
|
* 参数处理
|
|
|
|
|
* @param params 参数
|
|
|
|
|
*/
|
2024-03-12 09:27:48 +08:00
|
|
|
export function tansParams(params) {
|
2024-05-07 10:50:29 +08:00
|
|
|
let result = ''
|
|
|
|
|
for (const propName of Object.keys(params)) {
|
|
|
|
|
const value = params[propName]
|
|
|
|
|
var part = encodeURIComponent(propName) + "="
|
|
|
|
|
if (value !== null && value !== "" && typeof(value) !== "undefined") {
|
|
|
|
|
if (typeof value === 'object') {
|
|
|
|
|
for (const key of Object.keys(value)) {
|
|
|
|
|
if (value[key] !== null && value[key] !== "" && typeof(value[key]) !== 'undefined') {
|
|
|
|
|
let params = propName + '[' + key + ']'
|
|
|
|
|
var subPart = encodeURIComponent(params) + "="
|
|
|
|
|
result += subPart + encodeURIComponent(value[key]) + "&"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
result += part + encodeURIComponent(value) + "&"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return result
|
|
|
|
|
}
|
|
|
|
|
/*
|
|
|
|
|
打印日期 传入 date 返回string
|
|
|
|
|
*/
|
|
|
|
|
export function printDate(date) {
|
|
|
|
|
const year = date.getFullYear();
|
|
|
|
|
const month = date.getMonth() + 1; // 月份从 0 开始,所以要加 1
|
|
|
|
|
const day = date.getDate();
|
|
|
|
|
|
|
|
|
|
return `${year}-${month < 10 ? '0' + month : month}-${day < 10 ? '0' + day : day}`;
|
2024-05-17 11:28:23 +08:00
|
|
|
}
|
|
|
|
|
/*
|
|
|
|
|
防抖
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
export function debounce1(fn, delay) {
|
|
|
|
|
let timer;
|
|
|
|
|
return function (...args) {
|
|
|
|
|
clearTimeout(timer);
|
|
|
|
|
timer = setTimeout(() => {
|
|
|
|
|
fn(...args);
|
|
|
|
|
}, delay);
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function debounce(fun,wait){
|
|
|
|
|
let timer;
|
|
|
|
|
return (...args)=>{
|
|
|
|
|
if (timer){
|
|
|
|
|
clearTimeout(timer);
|
|
|
|
|
}
|
|
|
|
|
timer = setTimeout(()=>{
|
|
|
|
|
fun(...args);
|
|
|
|
|
},wait)
|
|
|
|
|
}
|
|
|
|
|
}
|