uniapp全局引入js

Posted Jason_WangYing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uniapp全局引入js相关的知识,希望对你有一定的参考价值。

在根目录创建common文件夹,再创建公共的js文件

 util.js

import Vue from 'vue'	
# 如果需要访问this,需要引入Vue实例,如果需要路由则需要引入路由,(需要使用到什么就引入什么)

function showLoading(message)
	if (message)
		message = '加载中';
	
		
	uni.showLoading(
	    title: message
	);
	
	setTimeout(function () 
	    uni.hideLoading();
	, 2000);


function hideLoading()
	uni.hideLoading();



function showCommontModal(message)
	if (message)
		message = "参数错误!!!";
	
	uni.showModal(
	    title: '温馨提示',
	    content: message,
		showCancel:false,
	    success: function (res) 
	        console.log('用户点击确定');    
	    
	);


module.exports = 
    showLoading: showLoading,
	hideLoading:hideLoading,
	showCommontModal:showCommontModal,

在main.js文件中引入js文件

 在vue页面中直接使用 

 

以上是关于uniapp全局引入js的主要内容,如果未能解决你的问题,请参考以下文章

uniapp中全局页面挂载组件(小程序)

uniapp全局组件全局使用(不在每个页面template使用,仅支持H5),函数式调用全局组件方法

uniapp全局组件全局使用(不在每个页面template使用,仅支持H5),函数式调用全局组件方法

uniapp全局组件全局使用(不在每个页面template使用,仅支持H5),函数式调用全局组件方法

解决“0.1 + 0.2 = 0.30000000000000004” - uniapp中JS浮点运算精度问题 - uniapp引入decimal.jsmath.js等数学库

解决“0.1 + 0.2 = 0.30000000000000004” - uniapp中JS浮点运算精度问题 - uniapp引入decimal.jsmath.js等数学库