diff --git a/src/api/modular/main/CommondbCtn.js b/src/api/modular/main/CommondbCtn.js
new file mode 100644
index 0000000..cc57ad0
--- /dev/null
+++ b/src/api/modular/main/CommondbCtn.js
@@ -0,0 +1,27 @@
+import { axios } from '@/utils/request'
+
+/**
+ * 获取箱型信息
+ *
+ * @author Myshipping
+ */
+export function CommondbList(parameter) {
+ return axios({
+ url: '/commondb/ctn',
+ method: 'get',
+ params: parameter
+ })
+}
+
+/**
+ * 新增箱型
+ *
+ * @author Myshipping
+ */
+export function CommondbAdd(parameter) {
+ return axios({
+ url: '/commondb/addctn',
+ method: 'post',
+ data: parameter
+ })
+}
diff --git a/src/api/modular/main/CommondbPackageList.js b/src/api/modular/main/CommondbPackageList.js
new file mode 100644
index 0000000..492f3b7
--- /dev/null
+++ b/src/api/modular/main/CommondbPackageList.js
@@ -0,0 +1,27 @@
+import { axios } from '@/utils/request'
+
+/**
+ * 获取包装信息
+ *
+ * @author Myshipping
+ */
+export function CommondbList(parameter) {
+ return axios({
+ url: '/commondb/package',
+ method: 'get',
+ params: parameter
+ })
+}
+
+/**
+ * 新增包装信息
+ *
+ * @author Myshipping
+ */
+export function CommondbAdd(parameter) {
+ return axios({
+ url: '/commondb/addpackage',
+ method: 'post',
+ data: parameter
+ })
+}
diff --git a/src/api/modular/main/CommondbServiceList.js b/src/api/modular/main/CommondbServiceList.js
new file mode 100644
index 0000000..48f4e02
--- /dev/null
+++ b/src/api/modular/main/CommondbServiceList.js
@@ -0,0 +1,27 @@
+import { axios } from '@/utils/request'
+
+/**
+ * 获取包装信息
+ *
+ * @author Myshipping
+ */
+export function CommondbList(parameter) {
+ return axios({
+ url: '/commondb/service',
+ method: 'get',
+ params: parameter
+ })
+}
+
+/**
+ * 新增包装信息
+ *
+ * @author Myshipping
+ */
+export function CommondbAdd(parameter) {
+ return axios({
+ url: '/commondb/addservice',
+ method: 'post',
+ data: parameter
+ })
+}
diff --git a/src/views/main/CommondbCarrierList/addForm.vue b/src/views/main/CommondbCarrierList/addForm.vue
index 9e07e72..512288a 100644
--- a/src/views/main/CommondbCarrierList/addForm.vue
+++ b/src/views/main/CommondbCarrierList/addForm.vue
@@ -36,27 +36,20 @@
-
+
-
+
-
+
diff --git a/src/views/main/CommondbCarrierList/editForm.vue b/src/views/main/CommondbCarrierList/editForm.vue
index 618f049..c9dd1dc 100644
--- a/src/views/main/CommondbCarrierList/editForm.vue
+++ b/src/views/main/CommondbCarrierList/editForm.vue
@@ -14,6 +14,7 @@
@@ -36,27 +37,20 @@
-
+
-
+
-
+
diff --git a/src/views/main/CommondbCarrierList/index.vue b/src/views/main/CommondbCarrierList/index.vue
index 6281c95..e5422b9 100644
--- a/src/views/main/CommondbCarrierList/index.vue
+++ b/src/views/main/CommondbCarrierList/index.vue
@@ -51,11 +51,11 @@
:show-overflow="true"
>
-
+
diff --git a/src/views/main/CommondbCodeCountry/editForm.vue b/src/views/main/CommondbCodeCountry/editForm.vue
index 6de0745..e80da7a 100644
--- a/src/views/main/CommondbCodeCountry/editForm.vue
+++ b/src/views/main/CommondbCodeCountry/editForm.vue
@@ -14,6 +14,7 @@
diff --git a/src/views/main/CommondbCtn/addForm.vue b/src/views/main/CommondbCtn/addForm.vue
new file mode 100644
index 0000000..e6bfbdc
--- /dev/null
+++ b/src/views/main/CommondbCtn/addForm.vue
@@ -0,0 +1,154 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 小箱
+
+
+ 大箱
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/main/CommondbCtn/editForm.vue b/src/views/main/CommondbCtn/editForm.vue
new file mode 100644
index 0000000..ce5371d
--- /dev/null
+++ b/src/views/main/CommondbCtn/editForm.vue
@@ -0,0 +1,165 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 小箱
+
+
+ 大箱
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/main/CommondbCtn/index.vue b/src/views/main/CommondbCtn/index.vue
new file mode 100644
index 0000000..2a150d2
--- /dev/null
+++ b/src/views/main/CommondbCtn/index.vue
@@ -0,0 +1,187 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+ 新增配置
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/main/CommondbForwarder/editForm.vue b/src/views/main/CommondbForwarder/editForm.vue
index e06a9b2..0fc8291 100644
--- a/src/views/main/CommondbForwarder/editForm.vue
+++ b/src/views/main/CommondbForwarder/editForm.vue
@@ -14,6 +14,7 @@
diff --git a/src/views/main/CommondbPackageList/addForm.vue b/src/views/main/CommondbPackageList/addForm.vue
new file mode 100644
index 0000000..9ac4350
--- /dev/null
+++ b/src/views/main/CommondbPackageList/addForm.vue
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/main/CommondbPackageList/editForm.vue b/src/views/main/CommondbPackageList/editForm.vue
new file mode 100644
index 0000000..c35070f
--- /dev/null
+++ b/src/views/main/CommondbPackageList/editForm.vue
@@ -0,0 +1,141 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/main/CommondbPackageList/index.vue b/src/views/main/CommondbPackageList/index.vue
new file mode 100644
index 0000000..8dad040
--- /dev/null
+++ b/src/views/main/CommondbPackageList/index.vue
@@ -0,0 +1,174 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+ 新增配置
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/main/CommondbPort/addForm.vue b/src/views/main/CommondbPort/addForm.vue
index fd8fa15..6c45055 100644
--- a/src/views/main/CommondbPort/addForm.vue
+++ b/src/views/main/CommondbPort/addForm.vue
@@ -66,14 +66,14 @@
/>
-
+
diff --git a/src/views/main/CommondbPort/editForm.vue b/src/views/main/CommondbPort/editForm.vue
index 4cdbc42..75918ef 100644
--- a/src/views/main/CommondbPort/editForm.vue
+++ b/src/views/main/CommondbPort/editForm.vue
@@ -14,6 +14,7 @@
diff --git a/src/views/main/CommondbPortload/addForm.vue b/src/views/main/CommondbPortload/addForm.vue
index e13e769..f249bdc 100644
--- a/src/views/main/CommondbPortload/addForm.vue
+++ b/src/views/main/CommondbPortload/addForm.vue
@@ -34,14 +34,14 @@
/>
-
+
diff --git a/src/views/main/CommondbPortload/editForm.vue b/src/views/main/CommondbPortload/editForm.vue
index 0ef329b..d807958 100644
--- a/src/views/main/CommondbPortload/editForm.vue
+++ b/src/views/main/CommondbPortload/editForm.vue
@@ -14,6 +14,7 @@
diff --git a/src/views/main/CommondbServiceList/addForm.vue b/src/views/main/CommondbServiceList/addForm.vue
new file mode 100644
index 0000000..f3850b9
--- /dev/null
+++ b/src/views/main/CommondbServiceList/addForm.vue
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/main/CommondbServiceList/editForm.vue b/src/views/main/CommondbServiceList/editForm.vue
new file mode 100644
index 0000000..4a76f80
--- /dev/null
+++ b/src/views/main/CommondbServiceList/editForm.vue
@@ -0,0 +1,141 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/main/CommondbServiceList/index.vue b/src/views/main/CommondbServiceList/index.vue
new file mode 100644
index 0000000..9be95b0
--- /dev/null
+++ b/src/views/main/CommondbServiceList/index.vue
@@ -0,0 +1,174 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+ 新增配置
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/main/CommondbVessel/addForm.vue b/src/views/main/CommondbVessel/addForm.vue
index 14425c0..f4d4f8c 100644
--- a/src/views/main/CommondbVessel/addForm.vue
+++ b/src/views/main/CommondbVessel/addForm.vue
@@ -26,14 +26,14 @@
/>
-
+
-
+