diff --git a/src/api/phone-traffic-config/index.js b/src/api/phone-traffic-config/index.js
new file mode 100644
index 0000000..9c53096
--- /dev/null
+++ b/src/api/phone-traffic-config/index.js
@@ -0,0 +1,36 @@
+import request from '@/utils/request.js'
+
+// 获取参数配置表详情
+export const getConfigDetails = (configId,extraConfigType) => {
+ return request({
+ url: `/extra/config/${configId}/${extraConfigType}`,
+ method: 'get'
+ })
+}
+
+// 新增参数配置表
+export const addConfig = (data) => {
+ return request({
+ url: '/extra/config',
+ method: 'post',
+ data
+ })
+}
+
+// 修改参数配置表
+export const editConfig = (data) => {
+ return request({
+ url: '/extra/config',
+ method: 'put',
+ data
+ })
+}
+
+// 删除参数配置表
+export const delConfig =(configIdList,extraConfigType) => {
+ return request({
+ url: `/extra/config/${configIdList}/${extraConfigType}`,
+ method: 'delete'
+ })
+}
+
diff --git a/src/views/phone-traffic-management/phone-traffic-config/index.vue b/src/views/phone-traffic-management/phone-traffic-config/index.vue
index 0180f05..a3aad88 100644
--- a/src/views/phone-traffic-management/phone-traffic-config/index.vue
+++ b/src/views/phone-traffic-management/phone-traffic-config/index.vue
@@ -1,72 +1,142 @@
-
-
-
+
+
+