|
@@ -23,13 +23,13 @@
|
|
|
<script setup>
|
|
|
import { ref, getCurrentInstance } from "vue";
|
|
|
import { useCrud } from "@/hooks/userCrud";
|
|
|
-import { useCommonStoreHook, useDictionaryStoreHook } from "@/store";
|
|
|
+import { useCommonStoreHook, useDictionaryStore } from "@/store";
|
|
|
import dictDataUtil from "@/common/configs/dictDataUtil";
|
|
|
import editSkill from "@/views/base/skill/components/edit-skill.vue";
|
|
|
import { getEchartData } from "@/api/report";
|
|
|
import * as echarts from "echarts";
|
|
|
// 数据字典相关
|
|
|
-const { dicts } = useDictionaryStoreHook();
|
|
|
+const { dicts } = useDictionaryStore();
|
|
|
const editDialog = ref({ visible: false, title: "订单详情" });
|
|
|
// const { form, data, option, search, page, toDeleteIds, Methords, Utils } =
|
|
|
// useCrud({
|