diff --git a/index.html b/index.html
index 7bd2ac9..36f7095 100644
--- a/index.html
+++ b/index.html
@@ -5,7 +5,7 @@
-
秦港安全监管平台-监管端
+ 危化企业安全数据流转平台
diff --git a/src/assets/js/conversion_router_meta.js b/src/assets/js/conversion_router_meta.js
index bb2f835..49426fa 100644
--- a/src/assets/js/conversion_router_meta.js
+++ b/src/assets/js/conversion_router_meta.js
@@ -12,7 +12,7 @@ export function conversionNavMeta(navList) {
for (let i = 0; i < navList.length; i++) {
const item = {
title: navList[i].name,
- model: navList[i].bianma,
+ model: navList[i].code,
};
navTempList.push(item);
}
diff --git a/src/views/corp/info/index.vue b/src/views/corp/info/index.vue
new file mode 100644
index 0000000..e79e0c3
--- /dev/null
+++ b/src/views/corp/info/index.vue
@@ -0,0 +1,5 @@
+
+
+
+
diff --git a/src/views/corp/manager/components/app-add.vue b/src/views/corp/manager/components/app-add.vue
new file mode 100644
index 0000000..0aff2fd
--- /dev/null
+++ b/src/views/corp/manager/components/app-add.vue
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/src/views/corp/manager/index.vue b/src/views/corp/manager/index.vue
new file mode 100644
index 0000000..a15793c
--- /dev/null
+++ b/src/views/corp/manager/index.vue
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/index/index.vue b/src/views/index/index.vue
index be7674d..e39b5de 100644
--- a/src/views/index/index.vue
+++ b/src/views/index/index.vue
@@ -2,7 +2,5 @@
1
-
-
+
diff --git a/src/views/system_management/data_dictionary/components/add.vue b/src/views/system_management/data_dictionary/components/add.vue
index 0b7c010..4b9e270 100644
--- a/src/views/system_management/data_dictionary/components/add.vue
+++ b/src/views/system_management/data_dictionary/components/add.vue
@@ -11,19 +11,19 @@
-
+
-
-
+
+
-
+
-
-
-
+
+
+
编辑
@@ -38,7 +38,7 @@
type="danger"
text
link
- @click="fnDelete(row.dictionariesId)"
+ @click="fnDelete(row.dictionaryId)"
>
删除
@@ -107,7 +107,7 @@ const addOrEditDialog = ref({
rootId: "",
},
parent: {
- dictionariesId: parentIdDefault,
+ dictionaryId: parentIdDefault,
name: parentNameDefault,
bianma: "",
orderBy: "",
@@ -123,24 +123,24 @@ onBeforeRouteUpdate((to) => {
parentName.value = to.query.parentName || parentNameDefault;
resetPagination();
});
-const fnDelete = async (dictionariesId) => {
+const fnDelete = async (dictionaryId) => {
await ElMessageBox.confirm(`确定要删除吗?`, { type: "warning" });
- await setDataDictionaryDelete({ dictionariesId });
+ await setDataDictionaryDelete({ dictionaryId });
ElMessage.success("删除成功");
resetPagination();
};
-const fnAddOrEdit = async (dictionariesId, type) => {
+const fnAddOrEdit = async (dictionaryId, type) => {
addOrEditDialog.value.visible = true;
addOrEditDialog.value.type = type;
if (type === "add" && parentId.value !== "0") {
const resData = await getDataDictionaryInfo({
- dictionariesId: parentId.value,
+ dictionaryId: parentId.value,
});
addOrEditDialog.value.parent = resData.dictionaries;
}
await nextTick();
if (type === "edit") {
- const resData = await getDataDictionaryInfo({ dictionariesId });
+ const resData = await getDataDictionaryInfo({ dictionaryId });
addOrEditDialog.value.form = resData.dictionaries;
}
};
diff --git a/src/views/system_management/menu/components/menu.vue b/src/views/system_management/menu/components/menu.vue
index 1cbcddc..02c4171 100644
--- a/src/views/system_management/menu/components/menu.vue
+++ b/src/views/system_management/menu/components/menu.vue
@@ -53,9 +53,9 @@