diff --git a/src/App.vue b/src/App.vue
index cc00004..e5a4c92 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -19,7 +19,6 @@ export default {
...mapState(['user'])
},
async mounted () {
- this.$cookies.set('token', '123', 60)
this.GET_DEPLIST()
},
methods: {
@@ -44,7 +43,7 @@ export default {
handleDingtalkLogin (val) {
apiDingtalkLogin(val).then(res => {
if (res && res.code === 0) {
- this.$cookie.set('token', res.token)
+ this.$cookies.set('token', res.token)
this.dataForm.verify = '登录成功,跳转中...'
window.open(window.location.protocol + '//' + window.location.host + '/digitization/kpi/workbench/home?code=' + this.dingCode.code)
} else {
diff --git a/src/views/kpi/workbench/index.vue b/src/views/kpi/workbench/index.vue
index cb11861..619b603 100644
--- a/src/views/kpi/workbench/index.vue
+++ b/src/views/kpi/workbench/index.vue
@@ -12,16 +12,9 @@
v-model="input"
clearable>
-