diff --git a/src/api/business/commonFeedback.js b/src/api/business/commonFeedback.js
new file mode 100755
index 0000000..8dfa11e
--- /dev/null
+++ b/src/api/business/commonFeedback.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询反馈信息列表
+export function listCommonFeedback(query) {
+ return request({
+ url: '/business/commonFeedback/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询反馈信息详细
+export function getCommonFeedback(id) {
+ return request({
+ url: '/business/commonFeedback/' + id,
+ method: 'get'
+ })
+}
+
+// 新增反馈信息
+export function addCommonFeedback(data) {
+ return request({
+ url: '/business/commonFeedback',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改反馈信息
+export function updateCommonFeedback(data) {
+ return request({
+ url: '/business/commonFeedback',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除反馈信息
+export function delCommonFeedback(id) {
+ return request({
+ url: '/business/commonFeedback/' + id,
+ method: 'delete'
+ })
+}
diff --git a/src/api/business/commonInfo.js b/src/api/business/commonInfo.js
new file mode 100755
index 0000000..e0315dd
--- /dev/null
+++ b/src/api/business/commonInfo.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询关于信息列表
+export function listCommonInfo(query) {
+ return request({
+ url: '/business/commonInfo/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询关于信息详细
+export function getCommonInfo(id) {
+ return request({
+ url: '/business/commonInfo/' + id,
+ method: 'get'
+ })
+}
+
+// 新增关于信息
+export function addCommonInfo(data) {
+ return request({
+ url: '/business/commonInfo',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改关于信息
+export function updateCommonInfo(data) {
+ return request({
+ url: '/business/commonInfo',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除关于信息
+export function delCommonInfo(id) {
+ return request({
+ url: '/business/commonInfo/' + id,
+ method: 'delete'
+ })
+}
diff --git a/src/api/business/commonNotify.js b/src/api/business/commonNotify.js
new file mode 100755
index 0000000..4c2b303
--- /dev/null
+++ b/src/api/business/commonNotify.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询消息通知列表
+export function listCommonNotify(query) {
+ return request({
+ url: '/business/commonNotify/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询消息通知详细
+export function getCommonNotify(id) {
+ return request({
+ url: '/business/commonNotify/' + id,
+ method: 'get'
+ })
+}
+
+// 新增消息通知
+export function addCommonNotify(data) {
+ return request({
+ url: '/business/commonNotify',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改消息通知
+export function updateCommonNotify(data) {
+ return request({
+ url: '/business/commonNotify',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除消息通知
+export function delCommonNotify(id) {
+ return request({
+ url: '/business/commonNotify/' + id,
+ method: 'delete'
+ })
+}
diff --git a/src/views/business/commonFeedback/index.vue b/src/views/business/commonFeedback/index.vue
new file mode 100755
index 0000000..03e74a2
--- /dev/null
+++ b/src/views/business/commonFeedback/index.vue
@@ -0,0 +1,333 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/commonInfo/index.vue b/src/views/business/commonInfo/index.vue
new file mode 100755
index 0000000..750ed6f
--- /dev/null
+++ b/src/views/business/commonInfo/index.vue
@@ -0,0 +1,453 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.releaseDate, '{y}-{m}-{d}') }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/commonNotify/index.vue b/src/views/business/commonNotify/index.vue
new file mode 100755
index 0000000..0b1de13
--- /dev/null
+++ b/src/views/business/commonNotify/index.vue
@@ -0,0 +1,332 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+