68 lines
1.7 KiB
JavaScript
68 lines
1.7 KiB
JavaScript
|
/**
|
|||
|
* 显示消息提示框
|
|||
|
* @param content 提示的标题
|
|||
|
*/
|
|||
|
export function toast(content) {
|
|||
|
uni.showToast({
|
|||
|
icon: 'none',
|
|||
|
title: content
|
|||
|
})
|
|||
|
}
|
|||
|
|
|||
|
/**
|
|||
|
* 显示模态弹窗
|
|||
|
* @param content 提示的标题
|
|||
|
*/
|
|||
|
export function showConfirm(content) {
|
|||
|
return new Promise((resolve, reject) => {
|
|||
|
uni.showModal({
|
|||
|
title: '提示',
|
|||
|
content: content,
|
|||
|
cancelText: '取消',
|
|||
|
confirmText: '确定',
|
|||
|
success: function(res) {
|
|||
|
resolve(res)
|
|||
|
}
|
|||
|
})
|
|||
|
})
|
|||
|
}
|
|||
|
|
|||
|
/**
|
|||
|
* 参数处理
|
|||
|
* @param params 参数
|
|||
|
*/
|
|||
|
export function tansParams(params) {
|
|||
|
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
|
|||
|
}
|
|||
|
|
|||
|
/**
|
|||
|
* 格式化时间
|
|||
|
*/
|
|||
|
export function getNowFormatDate(item) {
|
|||
|
let date = item ? new Date(item) : new Date(),
|
|||
|
year = date.getFullYear(), //获取完整的年份(4位)
|
|||
|
month = date.getMonth() + 1, //获取当前月份(0-11,0代表1月)
|
|||
|
strDate = date.getDate() // 获取当前日(1-31)
|
|||
|
if (month < 10) month = `0${month}` // 如果月份是个位数,在前面补0
|
|||
|
if (strDate < 10) strDate = `0${strDate}` // 如果日是个位数,在前面补0
|
|||
|
|
|||
|
return `${year}-${month}-${strDate}`
|
|||
|
}
|