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 @@ + + +