From d1c39cf710cf577f92eec693bab6a8629417539a Mon Sep 17 00:00:00 2001 From: wangfukang <15630117759@163.com> Date: Thu, 16 Jul 2026 10:39:13 +0800 Subject: [PATCH] 1 --- src/api/ie.js | 2 + .../problemFeedback/problemFeedback.vue | 37 +++- .../app/data-statistics/data-statistics.vue | 201 +++++++++++++++++- 3 files changed, 230 insertions(+), 10 deletions(-) diff --git a/src/api/ie.js b/src/api/ie.js index a6a97aa..bfe1604 100644 --- a/src/api/ie.js +++ b/src/api/ie.js @@ -5,3 +5,5 @@ const PREFIX = '/app/ie/admin'; export const ieReportPage = (params) => getRequest(`${PREFIX}/reports/page`, params); export const ieReportHandle = (params) => postRequest(`${PREFIX}/reports/handle`, params); export const ieReportDelete = (reportId) => postRequest(`${PREFIX}/reports/delete`, { reportId }); +export const ieRoomMessagePage = (params) => getRequest(`${PREFIX}/rooms/messages/page`, params); +export const ieAuditLogPage = (params) => getRequest(`${PREFIX}/audit-logs/page`, params); diff --git a/src/views/app/business/problemFeedback/problemFeedback.vue b/src/views/app/business/problemFeedback/problemFeedback.vue index a556125..f414f5b 100644 --- a/src/views/app/business/problemFeedback/problemFeedback.vue +++ b/src/views/app/business/problemFeedback/problemFeedback.vue @@ -26,12 +26,20 @@ + + + + + +
- @@ -55,6 +63,9 @@ import { getOrderDetail } from "@/api/index"; + import { + shortcuts + } from "@/libs/shortcuts"; import logisticsAddress from "@/views/sys/order-manage/logisticsAddress"; export default { name: "logiticsCompany", @@ -74,7 +85,13 @@ regionId:JSON.parse(this.getStore("user")).departmentId, pageNum: 1, pageSize: 10, - dealingsWay:'免单奖励' + dealingsWay:'免单奖励', + startDate: "", + endDate: "" + }, + selectDate: null, + options: { + shortcuts: shortcuts, }, columns: [{ type: "index", @@ -212,6 +229,22 @@ } }); }, + handleSearch() { + this.searchForm.pageNum = 1; + this.getJiangLiList(); + }, + handleReset() { + this.searchForm.pageNum = 1; + this.searchForm.pageSize = 10; + this.searchForm.startDate = ""; + this.searchForm.endDate = ""; + this.selectDate = null; + this.getJiangLiList(); + }, + selectDateRange(v) { + this.searchForm.startDate = v && v[0] ? v[0] : ""; + this.searchForm.endDate = v && v[1] ? v[1] : ""; + }, changePage(v) { this.searchForm.pageNum = v; this.getJiangLiList(); diff --git a/src/views/app/data-statistics/data-statistics.vue b/src/views/app/data-statistics/data-statistics.vue index 4fa3264..4bd3f83 100644 --- a/src/views/app/data-statistics/data-statistics.vue +++ b/src/views/app/data-statistics/data-statistics.vue @@ -9,8 +9,9 @@ + - +
@@ -31,7 +32,7 @@
- +