({{ task.coin / 100 }}
-
- {{ TaskSettltment[v].discount }}
+
- {{ TaskSettltment.find(k => k.id === v)?.discount }}
= {{
task.coin / 100
-
diff --git a/src/pages/merchant/pages/task-center/look-min-task.vue b/src/pages/merchant/pages/task-center/look-min-task.vue
index 38d7ed9..89df069 100644
--- a/src/pages/merchant/pages/task-center/look-min-task.vue
+++ b/src/pages/merchant/pages/task-center/look-min-task.vue
@@ -115,7 +115,7 @@ const passTask = async (id, task_backfill_id) => {
+ :routes="[{path: '/home/task-center', label: '任务中心'}, {path: '/reward-mission', label: '悬赏任务'}, {path: '/', label: '查看子任务'}]">
diff --git a/src/router/index.js b/src/router/index.js
index 37f798a..e396a23 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -1,10 +1,10 @@
-import {createMemoryHistory, createRouter} from 'vue-router';
+import {createRouter, createWebHashHistory} from 'vue-router';
import routes from "./routes.js";
import {useUserStore} from "../pinia/UserStore/index.js";
import {useSystemStore} from "../pinia/SystemStore/index.js";
const router = createRouter({
- history: createMemoryHistory(),
+ history: createWebHashHistory(),
routes,
})