Commit 93afec2d authored by rockyl's avatar rockyl

合并版本冲突功能

parent 80b3be3e
...@@ -156,6 +156,7 @@ ...@@ -156,6 +156,7 @@
"Failed to get project": "获取项目失败", "Failed to get project": "获取项目失败",
"Failed to save project": "保存项目失败", "Failed to save project": "保存项目失败",
"Save project successfully": "保存项目成功", "Save project successfully": "保存项目成功",
"There are conflicts in the project": "项目有冲突,请先解决冲突",
"Input version remark": "输入版本备注", "Input version remark": "输入版本备注",
"Input view name": "输入视图名", "Input view name": "输入视图名",
"Invalid view name": "无效的视图名", "Invalid view name": "无效的视图名",
......
...@@ -11,8 +11,6 @@ import './themes/light/index.scss' ...@@ -11,8 +11,6 @@ import './themes/light/index.scss'
Vue.config.productionTip = false; Vue.config.productionTip = false;
import './token'
new Vue({ new Vue({
router, router,
store, store,
......
/**
* Created by rockyl on 2019-11-16.
*/
import cookie from "cookie";
let user_cookie;
user_cookie = cookie.parse(document.cookie).user_cookie;
if (!user_cookie) {
try {
user_cookie = window.__data.token;
} catch (e) {
}
}
if (!user_cookie) {
console.log('Access denied');
}
window['zeroing_token'] = user_cookie;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment