/**
* 统一的轻提示封装。
* @param {string} title 提示文案
*/
export function showToast(title = '') {
uni.showToast({
title,
icon: 'none'
})
}