From f54eca2346412944078d21c8c357d42c0bf1bbb4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=BC=A0=E5=90=8C=E6=B5=B7?= <963808678@qq.com>
Date: Mon, 12 Dec 2022 10:33:07 +0800
Subject: [PATCH] 12/12
---
src/api/modular/main/CommondbCodeCountry.js | 27 +++
.../main/CommondbCodeCountry/addForm.vue | 141 +++++++++++++
.../main/CommondbCodeCountry/editForm.vue | 144 +++++++++++++
src/views/main/CommondbCodeCountry/index.vue | 199 ++++++++++++++++++
4 files changed, 511 insertions(+)
create mode 100644 src/api/modular/main/CommondbCodeCountry.js
create mode 100644 src/views/main/CommondbCodeCountry/addForm.vue
create mode 100644 src/views/main/CommondbCodeCountry/editForm.vue
create mode 100644 src/views/main/CommondbCodeCountry/index.vue
diff --git a/src/api/modular/main/CommondbCodeCountry.js b/src/api/modular/main/CommondbCodeCountry.js
new file mode 100644
index 0000000..3e8e9f0
--- /dev/null
+++ b/src/api/modular/main/CommondbCodeCountry.js
@@ -0,0 +1,27 @@
+import { axios } from '@/utils/request'
+
+/**
+ * 查询国家
+ *
+ * @author Myshipping
+ */
+export function CommondbCodeCountryList(parameter) {
+ return axios({
+ url: '/commondb/code-country-list',
+ method: 'post',
+ params: parameter
+ })
+}
+
+/**
+ * 保存国家
+ *
+ * @author Myshipping
+ */
+export function CommondbSavecodecountry(parameter) {
+ return axios({
+ url: '/commondb/savecodecountry',
+ method: 'post',
+ data: parameter
+ })
+}
diff --git a/src/views/main/CommondbCodeCountry/addForm.vue b/src/views/main/CommondbCodeCountry/addForm.vue
new file mode 100644
index 0000000..0206cfe
--- /dev/null
+++ b/src/views/main/CommondbCodeCountry/addForm.vue
@@ -0,0 +1,141 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/main/CommondbCodeCountry/editForm.vue b/src/views/main/CommondbCodeCountry/editForm.vue
new file mode 100644
index 0000000..a2b5bd4
--- /dev/null
+++ b/src/views/main/CommondbCodeCountry/editForm.vue
@@ -0,0 +1,144 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/main/CommondbCodeCountry/index.vue b/src/views/main/CommondbCodeCountry/index.vue
new file mode 100644
index 0000000..7217604
--- /dev/null
+++ b/src/views/main/CommondbCodeCountry/index.vue
@@ -0,0 +1,199 @@
+
+
+
+
+