diff --git a/src/api/ecology/water/lake/inner.js b/src/api/ecology/water/lake/inner.js
new file mode 100644
index 0000000..6e12303
--- /dev/null
+++ b/src/api/ecology/water/lake/inner.js
@@ -0,0 +1,30 @@
+import axios from 'axios';
+const baseUri = '/lakeLibrary/lakeCityDict'
+
+
+export const list = `${baseUri}/cityDictPage`
+// 添加
+export const addCityDict = function (data) {
+ return axios.post(`${baseUri}/addCityDict`,data)
+}
+// 修改
+export const modifyCityDict = function (data) {
+ return axios.post(`${baseUri}/modifyCityDict`,data)
+}
+// 删除
+export const batchRemove = function (data) {
+ return axios.post(`${baseUri}/batchRemove`,data)
+}
+// 复制
+export const cityDictCopy = function (data) {
+ console.log('data',data)
+ return axios.post(`${baseUri}/cityDictCopy`,data)
+}
+// 详情
+export const queryById = function (column) {
+ return axios.get(`${baseUri}/queryById`,{params:{column}})
+}
+// 获取年份下拉
+export const getYear = function () {
+ return axios.get(`${baseUri}/getYear`)
+}
diff --git a/src/api/ecology/water/lake/special.js b/src/api/ecology/water/lake/special.js
new file mode 100644
index 0000000..cdb3c0b
--- /dev/null
+++ b/src/api/ecology/water/lake/special.js
@@ -0,0 +1,30 @@
+import axios from 'axios';
+const baseUri = '/lakeLibrary/lakeSpecialDict'
+
+
+export const list = `${baseUri}/specialDictPage`
+// 添加
+export const addSpecialDict = function (data) {
+ return axios.post(`${baseUri}/addSpecialDict`,data)
+}
+// 修改
+export const modifySpecialDict = function (data) {
+ return axios.post(`${baseUri}/modifySpecialDict`,data)
+}
+// 删除
+export const batchRemove = function (data) {
+ return axios.post(`${baseUri}/batchRemove`,data)
+}
+// 复制
+export const specialDictCopy = function (data) {
+ console.log('data',data)
+ return axios.post(`${baseUri}/specialDictCopy`,data)
+}
+// 详情
+export const queryById = function (column) {
+ return axios.get(`${baseUri}/queryById`,{params:{column}})
+}
+// 获取年份下拉
+export const getYear = function () {
+ return axios.get(`${baseUri}/getYear`)
+}
diff --git a/src/views/water/lake/dict/index.vue b/src/views/water/lake/dict/index.vue
new file mode 100644
index 0000000..a3b399e
--- /dev/null
+++ b/src/views/water/lake/dict/index.vue
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/water/lake/dict/inner.vue b/src/views/water/lake/dict/inner.vue
new file mode 100644
index 0000000..9c9a2ac
--- /dev/null
+++ b/src/views/water/lake/dict/inner.vue
@@ -0,0 +1,336 @@
+
+
+
+
+
+
+
+
+
+ {{ item.label }}
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ (data = d.data)">
+
+
+ 新增
+
+
+
+
+ {{ item.label }}
+
+
+
+
+ 批量复制
+
+
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+ 修改
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/water/lake/dict/special.vue b/src/views/water/lake/dict/special.vue
new file mode 100644
index 0000000..ce6c261
--- /dev/null
+++ b/src/views/water/lake/dict/special.vue
@@ -0,0 +1,441 @@
+
+
+
+
+
+
+
+
+
+ {{ item.label }}
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ (data = d.data)"
+ >
+
+
+ 新增
+
+
+
+
+ {{ item.label }}
+
+
+
+
+ 批量复制
+
+
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+ 修改
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file