diff --git a/src/api/financial_budget_doc.ts b/src/api/financial_budget_doc.ts
new file mode 100644
index 0000000..303bbee
--- /dev/null
+++ b/src/api/financial_budget_doc.ts
@@ -0,0 +1,26 @@
+import request from '@/utils/request'
+
+// 财务管理--项目预算书列表
+export function apiFinancialBudgetDocLists(params: any) {
+ return request.get({ url: '/financial.financial_budget_doc/lists', params })
+}
+
+// 添加财务管理--项目预算书
+export function apiFinancialBudgetDocAdd(params: any) {
+ return request.post({ url: '/financial.financial_budget_doc/add', params })
+}
+
+// 编辑财务管理--项目预算书
+export function apiFinancialBudgetDocEdit(params: any) {
+ return request.post({ url: '/financial.financial_budget_doc/edit', params })
+}
+
+// 删除财务管理--项目预算书
+export function apiFinancialBudgetDocDelete(params: any) {
+ return request.post({ url: '/financial.financial_budget_doc/delete', params })
+}
+
+// 财务管理--项目预算书详情
+export function apiFinancialBudgetDocDetail(params: any) {
+ return request.get({ url: '/financial.financial_budget_doc/detail', params })
+}
\ No newline at end of file
diff --git a/src/components/formTable/index.vue b/src/components/formTable/index.vue
index abf9b1b..3192d4a 100644
--- a/src/components/formTable/index.vue
+++ b/src/components/formTable/index.vue
@@ -21,7 +21,8 @@