|
@@ -1,4 +1,5 @@
|
|
|
<script setup>
|
|
|
+import { useStore } from "vuex";
|
|
|
import { ref, reactive, onMounted } from 'vue'
|
|
|
import { useRouter } from "vue-router";
|
|
|
import { ElMessage,ElMessageBox } from 'element-plus'
|
|
@@ -7,6 +8,7 @@ import BaseCalendar from './components/BaseCalendar.vue'
|
|
|
import {apiGetPermissionList,apiGetCalendarEventList,apiGetDailyEventList,apiGetPermissionNewestDate} from '@/api/forexCalendar.js'
|
|
|
|
|
|
//权限控制
|
|
|
+const store = useStore();
|
|
|
let hasAuth = ref(true)
|
|
|
let noAuth = ref({
|
|
|
type:'',
|