提交 f017ec66 作者: 毛细亚

1

上级 b5e7b085
<!doctype html><html lang=""><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" href="favicon.ico"><meta http-equiv="pragma" content="no-cache"><meta http-equiv="cache-control" content="no-cache"><meta http-equiv="expires" content="0"><meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9"/><title>company_app</title><script src="https://g.alicdn.com/dingding/dinglogin/0.0.5/ddLogin.js"></script><script defer="defer" src="static/js/chunk-vendors.b6398f5b.js"></script><script defer="defer" src="static/js/app.c06f9623.js"></script><link href="static/css/chunk-vendors.8e901099.css" rel="stylesheet"><link href="static/css/app.9595ceda.css" rel="stylesheet"></head><body><noscript><strong>We're sorry but company_app doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div></body></html> <!doctype html><html lang=""><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" href="favicon.ico"><meta http-equiv="pragma" content="no-cache"><meta http-equiv="cache-control" content="no-cache"><meta http-equiv="expires" content="0"><meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9"/><title>company_app</title><script src="https://g.alicdn.com/dingding/dinglogin/0.0.5/ddLogin.js"></script><script defer="defer" src="static/js/chunk-vendors.b6398f5b.js"></script><script defer="defer" src="static/js/app.f4282404.js"></script><link href="static/css/chunk-vendors.8e901099.css" rel="stylesheet"><link href="static/css/app.9595ceda.css" rel="stylesheet"></head><body><noscript><strong>We're sorry but company_app doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div></body></html>
\ No newline at end of file \ No newline at end of file
...@@ -52,6 +52,39 @@ Vue.prototype.$lodash = _; ...@@ -52,6 +52,39 @@ Vue.prototype.$lodash = _;
Vue.prototype.$moment = moment; Vue.prototype.$moment = moment;
Vue.prototype.$ww = ww; Vue.prototype.$ww = ww;
Vue.prototype.$clone = deepClone // vue原型挂载递归拷贝方法 Vue.prototype.$clone = deepClone // vue原型挂载递归拷贝方法
// 设置全局 Message 默认显示时间为 2 秒
Vue.prototype.$message = function(options) {
if (typeof options === 'string') {
return ElementUI.Message({
message: options,
duration: 1000
});
} else {
return ElementUI.Message({
duration: 1000,
...options
});
}
};
// 设置各种类型的 Message 默认显示时间
['success', 'warning', 'info', 'error'].forEach(type => {
Vue.prototype.$message[type] = function(options) {
if (typeof options === 'string') {
return ElementUI.Message[type]({
message: options,
duration: 1000
});
} else {
return ElementUI.Message[type]({
duration: 1000,
...options
});
}
};
});
new Vue({ new Vue({
router, router,
store, store,
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论