boss 2 ay önce
ebeveyn
işleme
b72846b62e

+ 53 - 0
src/api/qw/qwPushCount.js

@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询推送统计列表
+export function listQwPushCount(query) {
+  return request({
+    url: '/qw/qwPushCount/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询推送统计详细
+export function getQwPushCount(id) {
+  return request({
+    url: '/qw/qwPushCount/' + id,
+    method: 'get'
+  })
+}
+
+// 新增推送统计
+export function addQwPushCount(data) {
+  return request({
+    url: '/qw/qwPushCount',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改推送统计
+export function updateQwPushCount(data) {
+  return request({
+    url: '/qw/qwPushCount',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除推送统计
+export function delQwPushCount(ids) {
+  return request({
+    url: '/qw/qwPushCount/' + ids,
+    method: 'delete'
+  })
+}
+
+// 导出推送统计
+export function exportQwPushCount(query) {
+  return request({
+    url: '/qw/qwPushCount/export',
+    method: 'get',
+    params: query
+  })
+}

+ 53 - 0
src/api/qw/record.js

@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询投诉记录列表
+export function listRecord(query) {
+  return request({
+    url: '/qw/record/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询投诉记录详细
+export function getRecord(recordId) {
+  return request({
+    url: '/qw/record/' + recordId,
+    method: 'get'
+  })
+}
+
+// 新增投诉记录
+export function addRecord(data) {
+  return request({
+    url: '/qw/record',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改投诉记录
+export function updateRecord(data) {
+  return request({
+    url: '/qw/record',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除投诉记录
+export function delRecord(recordIds) {
+  return request({
+    url: '/qw/record/' + recordIds,
+    method: 'delete'
+  })
+}
+
+// 导出投诉记录
+export function exportRecord(query) {
+  return request({
+    url: '/qw/record/export',
+    method: 'get',
+    params: query
+  })
+}

Dosya farkı çok büyük olduğundan ihmal edildi
+ 0 - 3
src/store/modules/permission.js


Bu fark içinde çok fazla dosya değişikliği olduğu için bazı dosyalar gösterilmiyor