From 4e00bddf63a31b626c49475d3155ccdfe2868cfa Mon Sep 17 00:00:00 2001 From: zoujiandong <10130823232@qq.com> Date: Mon, 30 Oct 2023 15:40:04 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AD=BE=E7=AB=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/finance/record.js | 18 ++ src/views/doctor/doctor-list/index.vue | 6 +- src/views/finance/financialrecord/index.vue | 327 ++++++++++++++++++++ 3 files changed, 347 insertions(+), 4 deletions(-) create mode 100644 src/api/finance/record.js create mode 100644 src/views/finance/financialrecord/index.vue diff --git a/src/api/finance/record.js b/src/api/finance/record.js new file mode 100644 index 0000000..5fcd6a7 --- /dev/null +++ b/src/api/finance/record.js @@ -0,0 +1,18 @@ +import request from '../../utils/request' + +const url = '/admin/finance/withdrawal'; + + +export function getWithdrawalList(params){ + return request({ + url:'/admin/finance/withdrawal', + method: 'get', + params + }) +} +export function getWithdrawalDetail(id){ + return request({ + url:'/admin/finance/withdrawal/'+id, + method: 'get' + }) + } \ No newline at end of file diff --git a/src/views/doctor/doctor-list/index.vue b/src/views/doctor/doctor-list/index.vue index a1ee1c6..7f4ed97 100644 --- a/src/views/doctor/doctor-list/index.vue +++ b/src/views/doctor/doctor-list/index.vue @@ -1180,16 +1180,14 @@ type:2, user_id:modalForm.user_doctor_info.user_id }).then(data=>{ - let result=data.data; - if(result.code==200){ + if(data.code==200){ Message.success('签章申请成功'); } }) } const handleUpdateSign=()=>{ updateSign(modalForm.user_doctor_info.user_id).then(data=>{ - let result=data.data; - if(result.code==200){ + if(data.code==200){ Message.success('签章更新成功'); } }) diff --git a/src/views/finance/financialrecord/index.vue b/src/views/finance/financialrecord/index.vue new file mode 100644 index 0000000..8a39510 --- /dev/null +++ b/src/views/finance/financialrecord/index.vue @@ -0,0 +1,327 @@ + + + + + \ No newline at end of file