diff --git a/src/pages/05_quotation/MainPage.vue b/src/pages/05_quotation/MainPage.vue
index 9804a4cf..e1552682 100644
--- a/src/pages/05_quotation/MainPage.vue
+++ b/src/pages/05_quotation/MainPage.vue
@@ -111,6 +111,7 @@ async function getAllService(
page: opts?.page ?? 1,
pageSize: opts?.pageSize ?? 9999,
productGroupId: groupId,
+ fullDetail: true,
});
if (ret) serviceList.value[groupId] = ret.result;
}
@@ -161,7 +162,7 @@ function convertToTree() {
@@ -171,7 +172,7 @@ function convertToTree() {
diff --git a/src/stores/product-service/index.ts b/src/stores/product-service/index.ts
index 4393582f..707bf812 100644
--- a/src/stores/product-service/index.ts
+++ b/src/stores/product-service/index.ts
@@ -290,6 +290,7 @@ const useProductServiceStore = defineStore('api-product-service', () => {
pageSize?: number;
productGroupId?: string;
status?: string;
+ fullDetail?: boolean;
}) {
const params = new URLSearchParams();