diff --git a/src/api/business/appVersion.js b/src/api/business/appVersion.js
new file mode 100644
index 0000000..3813697
--- /dev/null
+++ b/src/api/business/appVersion.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询应用程序版本控制列表
+export function listAppVersion(query) {
+ return request({
+ url: '/business/appVersion/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询应用程序版本控制详细
+export function getAppVersion(id) {
+ return request({
+ url: '/business/appVersion/' + id,
+ method: 'get'
+ })
+}
+
+// 新增应用程序版本控制
+export function addAppVersion(data) {
+ return request({
+ url: '/business/appVersion',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改应用程序版本控制
+export function updateAppVersion(data) {
+ return request({
+ url: '/business/appVersion',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除应用程序版本控制
+export function delAppVersion(id) {
+ return request({
+ url: '/business/appVersion/' + id,
+ method: 'delete'
+ })
+}
diff --git a/src/api/business/behaviorModelInfo.js b/src/api/business/behaviorModelInfo.js
new file mode 100644
index 0000000..d413762
--- /dev/null
+++ b/src/api/business/behaviorModelInfo.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询模型管理信息列表
+export function listBehaviorModelInfo(query) {
+ return request({
+ url: '/business/behaviorModelInfo/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询模型管理信息详细
+export function getBehaviorModelInfo(id) {
+ return request({
+ url: '/business/behaviorModelInfo/' + id,
+ method: 'get'
+ })
+}
+
+// 新增模型管理信息
+export function addBehaviorModelInfo(data) {
+ return request({
+ url: '/business/behaviorModelInfo',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改模型管理信息
+export function updateBehaviorModelInfo(data) {
+ return request({
+ url: '/business/behaviorModelInfo',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除模型管理信息
+export function delBehaviorModelInfo(id) {
+ return request({
+ url: '/business/behaviorModelInfo/' + id,
+ method: 'delete'
+ })
+}
diff --git a/src/api/business/customerServiceChat.js b/src/api/business/customerServiceChat.js
new file mode 100644
index 0000000..f6e22fb
--- /dev/null
+++ b/src/api/business/customerServiceChat.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询客服与用户的聊天记录列表
+export function listCustomerServiceChat(query) {
+ return request({
+ url: '/business/customerServiceChat/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询客服与用户的聊天记录详细
+export function getCustomerServiceChat(id) {
+ return request({
+ url: '/business/customerServiceChat/' + id,
+ method: 'get'
+ })
+}
+
+// 新增客服与用户的聊天记录
+export function addCustomerServiceChat(data) {
+ return request({
+ url: '/business/customerServiceChat',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改客服与用户的聊天记录
+export function updateCustomerServiceChat(data) {
+ return request({
+ url: '/business/customerServiceChat',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除客服与用户的聊天记录
+export function delCustomerServiceChat(id) {
+ return request({
+ url: '/business/customerServiceChat/' + id,
+ method: 'delete'
+ })
+}
diff --git a/src/api/business/faq.js b/src/api/business/faq.js
new file mode 100644
index 0000000..58e39a9
--- /dev/null
+++ b/src/api/business/faq.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询常见问题及答案列表
+export function listFaq(query) {
+ return request({
+ url: '/business/faq/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询常见问题及答案详细
+export function getFaq(id) {
+ return request({
+ url: '/business/faq/' + id,
+ method: 'get'
+ })
+}
+
+// 新增常见问题及答案
+export function addFaq(data) {
+ return request({
+ url: '/business/faq',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改常见问题及答案
+export function updateFaq(data) {
+ return request({
+ url: '/business/faq',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除常见问题及答案
+export function delFaq(id) {
+ return request({
+ url: '/business/faq/' + id,
+ method: 'delete'
+ })
+}
diff --git a/src/api/business/financialRecord.js b/src/api/business/financialRecord.js
new file mode 100644
index 0000000..bd2d928
--- /dev/null
+++ b/src/api/business/financialRecord.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询财务记录列表
+export function listFinancialRecord(query) {
+ return request({
+ url: '/business/financialRecord/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询财务记录详细
+export function getFinancialRecord(id) {
+ return request({
+ url: '/business/financialRecord/' + id,
+ method: 'get'
+ })
+}
+
+// 新增财务记录
+export function addFinancialRecord(data) {
+ return request({
+ url: '/business/financialRecord',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改财务记录
+export function updateFinancialRecord(data) {
+ return request({
+ url: '/business/financialRecord',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除财务记录
+export function delFinancialRecord(id) {
+ return request({
+ url: '/business/financialRecord/' + id,
+ method: 'delete'
+ })
+}
diff --git a/src/api/business/tradingChannel.js b/src/api/business/tradingChannel.js
new file mode 100644
index 0000000..74da5f1
--- /dev/null
+++ b/src/api/business/tradingChannel.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询交易通道/渠道列表
+export function listTradingChannel(query) {
+ return request({
+ url: '/business/tradingChannel/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询交易通道/渠道详细
+export function getTradingChannel(id) {
+ return request({
+ url: '/business/tradingChannel/' + id,
+ method: 'get'
+ })
+}
+
+// 新增交易通道/渠道
+export function addTradingChannel(data) {
+ return request({
+ url: '/business/tradingChannel',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改交易通道/渠道
+export function updateTradingChannel(data) {
+ return request({
+ url: '/business/tradingChannel',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除交易通道/渠道
+export function delTradingChannel(id) {
+ return request({
+ url: '/business/tradingChannel/' + id,
+ method: 'delete'
+ })
+}
diff --git a/src/api/business/tradingChannelRecord.js b/src/api/business/tradingChannelRecord.js
new file mode 100644
index 0000000..09bbb51
--- /dev/null
+++ b/src/api/business/tradingChannelRecord.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询交易通道记录列表
+export function listTradingChannelRecord(query) {
+ return request({
+ url: '/business/tradingChannelRecord/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询交易通道记录详细
+export function getTradingChannelRecord(id) {
+ return request({
+ url: '/business/tradingChannelRecord/' + id,
+ method: 'get'
+ })
+}
+
+// 新增交易通道记录
+export function addTradingChannelRecord(data) {
+ return request({
+ url: '/business/tradingChannelRecord',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改交易通道记录
+export function updateTradingChannelRecord(data) {
+ return request({
+ url: '/business/tradingChannelRecord',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除交易通道记录
+export function delTradingChannelRecord(id) {
+ return request({
+ url: '/business/tradingChannelRecord/' + id,
+ method: 'delete'
+ })
+}
diff --git a/src/views/business/appVersion/index.vue b/src/views/business/appVersion/index.vue
new file mode 100644
index 0000000..1370a61
--- /dev/null
+++ b/src/views/business/appVersion/index.vue
@@ -0,0 +1,415 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+
+ 修改
+
+
+
+ 删除
+
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.releaseDate, '{y}-{m}-{d}') }}
+
+
+
+
+
+
+
+
+ 详情
+
+ 修改
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ form.versionCode }}
+
+
+ {{ form.versionName }}
+
+
+
+
+
+
+ {{ form.downloadUrl }}
+
+
+ {{ form.updateLog }}
+
+
+
+ {{ form.isForceUpdate }}
+
+
+
+
+
+
+
+
diff --git a/src/views/business/behaviorModelInfo/index.vue b/src/views/business/behaviorModelInfo/index.vue
new file mode 100644
index 0000000..ca8f46b
--- /dev/null
+++ b/src/views/business/behaviorModelInfo/index.vue
@@ -0,0 +1,331 @@
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 详情
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{form.name}}
+
+
+ {{form.description}}
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/commonFeedback/index.vue b/src/views/business/commonFeedback/index.vue
index 272cae5..c55b307 100755
--- a/src/views/business/commonFeedback/index.vue
+++ b/src/views/business/commonFeedback/index.vue
@@ -47,7 +47,7 @@
-
+
正常
diff --git a/src/views/business/commonNotify/index.vue b/src/views/business/commonNotify/index.vue
index 61106ac..d75ca6e 100755
--- a/src/views/business/commonNotify/index.vue
+++ b/src/views/business/commonNotify/index.vue
@@ -1,18 +1,23 @@
-
-
+
+
+
+
+
-
+
-
+
-
+
搜索
@@ -23,32 +28,36 @@
新增
+ v-hasPermi="['business:commonNotify:add']">新增
+
修改
+ v-hasPermi="['business:commonNotify:edit']">修改
+
删除
+ v-hasPermi="['business:commonNotify:remove']">删除
+
导出
+ v-hasPermi="['business:commonNotify:export']">导出
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
@@ -61,39 +70,41 @@
详情
修改
+ v-hasPermi="['business:commonNotify:edit']">修改
+
删除
+ v-hasPermi="['business:commonNotify:remove']">删除
+
+ @pagination="getList"/>
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+