You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
632 B
22 lines
632 B
/*
|
|
* @Description: 全局配置信息
|
|
* @Author: 无痕
|
|
* @Email: 350801869@qq.com
|
|
* @Date: 2021-04-28 15:54:34
|
|
* @LastEditTime: 2022-03-09 17:00:18
|
|
* @LastEditors: 无痕
|
|
*/
|
|
const config = {
|
|
// 是否给页面page全局混入一个onEmitPage钩子,使用this.$emitPage(pagePath,...args)触发
|
|
useEmitPageMixin: false,
|
|
// 是否替换uni默认的showLoading,hideLoading
|
|
replaceUniLoading: false,
|
|
// 是否替换uni默认的showToast,hideToast
|
|
replaceUniToast: false,
|
|
// 是否替换uni默认的showModal
|
|
replaceUniModal: false,
|
|
// 返回首页
|
|
homePath: '/pages/index/index',
|
|
};
|
|
|
|
export default config;
|
|
|