diff --git a/api/publicAccountPay.js b/api/publicAccountPay.js index 9000fae..329356f 100644 --- a/api/publicAccountPay.js +++ b/api/publicAccountPay.js @@ -37,6 +37,16 @@ export function getPublicAccountDailyBillInfoApi(id) { }) } +/** 锁店只读:日账单 + 商品订单 xk-api GET .../daily-lock-orders */ +export function getPublicAccountDailyLockOrdersApi(data = {}) { + return req.request({ + url: dailyPrefix() + 'daily-lock-orders', + method: 'GET', + data, + header: dailyHeader(), + }) +} + /** 补出日汇总 xk-api POST .../daily-generate */ export function generatePublicAccountDailyBillApi(data) { return req.request({ diff --git a/components/d-audit/d-audit.vue b/components/d-audit/d-audit.vue index e5e7955..07706bb 100644 --- a/components/d-audit/d-audit.vue +++ b/components/d-audit/d-audit.vue @@ -1,6 +1,6 @@