mirror of
https://github.com/kuaifan/dootask.git
synced 2026-01-12 08:58:11 +00:00
build
This commit is contained in:
parent
54ebb327bd
commit
2e7f2bc316
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "DooTask",
|
||||
"version": "0.16.45",
|
||||
"version": "0.16.53",
|
||||
"description": "DooTask is task management system.",
|
||||
"scripts": {
|
||||
"start": "./cmd dev",
|
||||
|
||||
2
public/css/app.css
vendored
2
public/css/app.css
vendored
File diff suppressed because one or more lines are too long
2
public/js/app.js
vendored
2
public/js/app.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
public/js/build/168.js
vendored
Normal file
1
public/js/build/168.js
vendored
Normal file
File diff suppressed because one or more lines are too long
2
public/js/build/185.js
vendored
2
public/js/build/185.js
vendored
File diff suppressed because one or more lines are too long
1
public/js/build/204.js
vendored
1
public/js/build/204.js
vendored
File diff suppressed because one or more lines are too long
2
public/js/build/374.js
vendored
2
public/js/build/374.js
vendored
File diff suppressed because one or more lines are too long
2
public/js/build/459.js
vendored
2
public/js/build/459.js
vendored
File diff suppressed because one or more lines are too long
1
public/js/build/47.js
vendored
Normal file
1
public/js/build/47.js
vendored
Normal file
File diff suppressed because one or more lines are too long
2
public/js/build/482.js
vendored
2
public/js/build/482.js
vendored
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@
|
||||
/*! @license DOMPurify 2.3.6 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/2.3.6/LICENSE */
|
||||
File diff suppressed because one or more lines are too long
2
public/js/build/610.js
vendored
Normal file
2
public/js/build/610.js
vendored
Normal file
File diff suppressed because one or more lines are too long
15
public/js/build/610.js.LICENSE.txt
Normal file
15
public/js/build/610.js.LICENSE.txt
Normal file
@ -0,0 +1,15 @@
|
||||
/*!
|
||||
* Quill Editor v1.3.7
|
||||
* https://quilljs.com/
|
||||
* Copyright (c) 2014, Jason Chen
|
||||
* Copyright (c) 2013, salesforce.com
|
||||
*/
|
||||
|
||||
/*!
|
||||
* The buffer module from node.js, for the browser.
|
||||
*
|
||||
* @author Feross Aboukhadijeh <http://feross.org>
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
||||
2
public/js/build/615.js
vendored
2
public/js/build/615.js
vendored
File diff suppressed because one or more lines are too long
2
public/js/build/626.js
vendored
2
public/js/build/626.js
vendored
File diff suppressed because one or more lines are too long
1
public/js/build/649.js
vendored
1
public/js/build/649.js
vendored
File diff suppressed because one or more lines are too long
2
public/js/build/856.js
vendored
2
public/js/build/856.js
vendored
File diff suppressed because one or more lines are too long
@ -1,15 +1 @@
|
||||
/*!
|
||||
* Quill Editor v1.3.7
|
||||
* https://quilljs.com/
|
||||
* Copyright (c) 2014, Jason Chen
|
||||
* Copyright (c) 2013, salesforce.com
|
||||
*/
|
||||
|
||||
/*!
|
||||
* The buffer module from node.js, for the browser.
|
||||
*
|
||||
* @author Feross Aboukhadijeh <http://feross.org>
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
||||
/*! @license DOMPurify 2.3.6 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/2.3.6/LICENSE */
|
||||
|
||||
2
public/js/build/912.js
vendored
2
public/js/build/912.js
vendored
File diff suppressed because one or more lines are too long
2
public/js/build/996.js
vendored
2
public/js/build/996.js
vendored
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
75209f385ec2160c
|
||||
e58c94d2c2855f53
|
||||
|
||||
@ -319,7 +319,7 @@ export default {
|
||||
url = url + ($A.rightExists(url, "/") ? "api/" : "/api/");
|
||||
}
|
||||
if (!/^https*:\/\//i.test(url)) {
|
||||
url = `http://${url}`;
|
||||
url = `https://${url}`;
|
||||
}
|
||||
this.$store.dispatch("call", {
|
||||
url: `${url}system/setting`,
|
||||
@ -330,7 +330,7 @@ export default {
|
||||
}).catch(({ret, msg}) => {
|
||||
if (ret === -1001) {
|
||||
if (!/^https*:\/\//i.test(value)) {
|
||||
this.inputServerChack(`https://${value}`).then(resolve);
|
||||
this.inputServerChack(`http://${value}`).then(resolve);
|
||||
return;
|
||||
}
|
||||
msg = "服务器地址无效";
|
||||
|
||||
@ -306,10 +306,13 @@ export default {
|
||||
},
|
||||
|
||||
watch: {
|
||||
'$route' ({params}) {
|
||||
if (['dialog', 'contacts'].includes(params.dialogAction)) {
|
||||
this.tabActive = params.dialogAction
|
||||
}
|
||||
'$route': {
|
||||
handler({params}) {
|
||||
if (['dialog', 'contacts'].includes(params.dialogAction)) {
|
||||
this.tabActive = params.dialogAction
|
||||
}
|
||||
},
|
||||
immediate: true
|
||||
},
|
||||
|
||||
dialogKey(val) {
|
||||
|
||||
@ -138,6 +138,9 @@
|
||||
margin-left: 12px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
.task-menu-icon {
|
||||
margin-right: 0;
|
||||
}
|
||||
.ivu-icon {
|
||||
font-size: 22px;
|
||||
color: $primary-text-color;
|
||||
@ -496,7 +499,7 @@
|
||||
.head {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 40px;
|
||||
height: 42px;
|
||||
padding-bottom: 10px;
|
||||
color: #888888;
|
||||
position: relative;
|
||||
|
||||
@ -1 +1 @@
|
||||
Subproject commit 1d8581cd4cf2403c13918883e29d8390afc6628e
|
||||
Subproject commit f73eab8a377ddf95ab8a808546f27868b3433785
|
||||
Loading…
x
Reference in New Issue
Block a user