From 6e701759dc45554955917e0494a026365da3dcdc Mon Sep 17 00:00:00 2001 From: zmj <1493694146@qq.com> Date: Sat, 22 Jun 2024 09:24:23 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=B7=A5=E4=BD=9C=E5=8F=B0?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=EF=BC=8C=E4=BC=98=E5=8C=96=E4=BA=A4=E6=98=93?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=B1=95=E7=A4=BA=EF=BC=8C=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E6=A0=B8=E9=94=80=E8=AE=A2=E5=8D=95=E9=87=91=E9=A2=9D=E7=AD=89?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=B1=95=E7=A4=BA=E9=94=99=E8=AF=AF=EF=BC=8C?= =?UTF-8?q?=E5=B9=B6=E8=B0=83=E6=95=B4=E7=9B=B8=E5=85=B3API=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/store_order.ts | 13 +++ src/components/orderDetail/index.vue | 8 +- src/views/entryRecord/index.vue | 95 +++++++++++++++++++ src/views/store_finance_bill/detail.vue | 91 ++++++++++++++++++ src/views/store_finance_bill/index.vue | 121 ++++++++++++++++++++++++ src/views/workbench/earnings/index.vue | 8 ++ 6 files changed, 332 insertions(+), 4 deletions(-) create mode 100644 src/views/entryRecord/index.vue create mode 100644 src/views/store_finance_bill/detail.vue create mode 100644 src/views/store_finance_bill/index.vue diff --git a/src/api/store_order.ts b/src/api/store_order.ts index 961edd7..6fd4779 100644 --- a/src/api/store_order.ts +++ b/src/api/store_order.ts @@ -22,3 +22,16 @@ export function apiStoreRefundOrderDetail(params: any) { return request.get({ url: '/store_order/storeRefundOrder/detail', params }) } + + +export function apiStoreFinanceBillLists(params: any) { + return request.get({ url: '/store_cash_finance_flow/storecashfinanceflow/lists', params }) +} + +export function apiStoreFinanceBillEdit(params: any) { + return request.post({ url: '/store_cash_finance_flow/storecashfinanceflow/edit', params }) +} + +export function apiStoreFinanceBillDetail(params: any) { + return request.get({ url: '/store_cash_finance_flow/storecashfinanceflow/detail', params }) +} \ No newline at end of file diff --git a/src/components/orderDetail/index.vue b/src/components/orderDetail/index.vue index e5bd442..433bb1a 100644 --- a/src/components/orderDetail/index.vue +++ b/src/components/orderDetail/index.vue @@ -35,15 +35,15 @@
{{ detailData.pay_time }}
-
  • + +
    {{ detailData.pay_time }}
  • 退款时间
    - -
  • +
    {{ detailData.pay_time }}
    + --> diff --git a/src/views/entryRecord/index.vue b/src/views/entryRecord/index.vue new file mode 100644 index 0000000..94d37ce --- /dev/null +++ b/src/views/entryRecord/index.vue @@ -0,0 +1,95 @@ + + + \ No newline at end of file diff --git a/src/views/store_finance_bill/detail.vue b/src/views/store_finance_bill/detail.vue new file mode 100644 index 0000000..9241945 --- /dev/null +++ b/src/views/store_finance_bill/detail.vue @@ -0,0 +1,91 @@ + + + \ No newline at end of file diff --git a/src/views/store_finance_bill/index.vue b/src/views/store_finance_bill/index.vue new file mode 100644 index 0000000..ca1d160 --- /dev/null +++ b/src/views/store_finance_bill/index.vue @@ -0,0 +1,121 @@ + + + \ No newline at end of file diff --git a/src/views/workbench/earnings/index.vue b/src/views/workbench/earnings/index.vue index ade04bf..d50a497 100644 --- a/src/views/workbench/earnings/index.vue +++ b/src/views/workbench/earnings/index.vue @@ -9,6 +9,7 @@
    {{ item.title }}
    {{ item.value() }}
    + 入账
    @@ -42,7 +43,10 @@ import { ref, reactive, onMounted } from "vue" import { apidbusinessStatistics } from '@/api/statistics' import vCharts from 'vue-echarts' +import { useRouter } from "vue-router"; + +const router = useRouter(); const month = ref() const loading = ref(true) @@ -192,6 +196,10 @@ const monthChange = () => { getData() } +const showCollectionCode = () => { + router.push('/finance/store_finance_bill?showPop=1') + +} onMounted(() => { getData()