12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /**
- * 显示消息提示框
- * @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 = ''
- // FIXME 拼接参数
- return result
- }
- export function getStaticUrl(url) {
- let result = '';
- // #ifdef H5
- result = `/mdist/${url}`
- // #endif
-
- // #ifdef APP-PLUS
- result = url
- // #endif
-
- return result;
- }
-
|