diff --git a/src/api/store_extract.ts b/src/api/store_extract.ts
new file mode 100644
index 000000000..f1e38a23a
--- /dev/null
+++ b/src/api/store_extract.ts
@@ -0,0 +1,26 @@
+import request from '@/utils/request'
+
+// 门店提现表列表
+export function apiStoreExtractLists(params: any) {
+ return request.get({ url: '/store_extract/storeextract/lists', params })
+}
+
+// 添加门店提现表
+export function apiStoreExtractAdd(params: any) {
+ return request.post({ url: '/store_extract/storeextract/add', params })
+}
+
+// 编辑门店提现表
+export function apiStoreExtractEdit(params: any) {
+ return request.post({ url: '/store_extract/storeextract/edit', params })
+}
+
+// 删除门店提现表
+export function apiStoreExtractDelete(params: any) {
+ return request.post({ url: '/store_extract/storeextract/delete', params })
+}
+
+// 门店提现表详情
+export function apiStoreExtractDetail(params: any) {
+ return request.get({ url: '/store_extract/storeextract/detail', params })
+}
\ No newline at end of file
diff --git a/src/api/store_finance_flow.ts b/src/api/store_finance_flow.ts
new file mode 100644
index 000000000..dc4d0eaee
--- /dev/null
+++ b/src/api/store_finance_flow.ts
@@ -0,0 +1,26 @@
+import request from '@/utils/request'
+
+// 门店资金流水表列表
+export function apiStoreFinanceFlowLists(params: any) {
+ return request.get({ url: '/store_finance_flow/storefinanceflow/lists', params })
+}
+
+// 添加门店资金流水表
+export function apiStoreFinanceFlowAdd(params: any) {
+ return request.post({ url: '/store_finance_flow/storefinanceflow/add', params })
+}
+
+// 编辑门店资金流水表
+export function apiStoreFinanceFlowEdit(params: any) {
+ return request.post({ url: '/store_finance_flow/storefinanceflow/edit', params })
+}
+
+// 删除门店资金流水表
+export function apiStoreFinanceFlowDelete(params: any) {
+ return request.post({ url: '/store_finance_flow/storefinanceflow/delete', params })
+}
+
+// 门店资金流水表详情
+export function apiStoreFinanceFlowDetail(params: any) {
+ return request.get({ url: '/store_finance_flow/storefinanceflow/detail', params })
+}
\ No newline at end of file
diff --git a/src/views/finance/store_extract/details.vue b/src/views/finance/store_extract/details.vue
new file mode 100644
index 000000000..5109ec264
--- /dev/null
+++ b/src/views/finance/store_extract/details.vue
@@ -0,0 +1,81 @@
+
+