diff --git a/.env.production b/.env.production
index 5feb40b..fcdb077 100644
--- a/.env.production
+++ b/.env.production
@@ -5,4 +5,4 @@ VUE_APP_TITLE = 管理系统
ENV = 'production'
# 管理系统/生产环境
-VUE_APP_BASE_API = '/prod-api'
+VUE_APP_BASE_API = ''
diff --git a/src/api/examine/expert.js b/src/api/examine/expert.js
new file mode 100644
index 0000000..83e070e
--- /dev/null
+++ b/src/api/examine/expert.js
@@ -0,0 +1,9 @@
+import request from '@/utils/request'
+
+// 专家审核列表
+export function getCache() {
+ return request({
+ url: '/monitor/cache',
+ method: 'get',
+ })
+}
diff --git a/src/views/examine/expert/detail.vue b/src/views/examine/expert/detail.vue
new file mode 100644
index 0000000..dcba3d6
--- /dev/null
+++ b/src/views/examine/expert/detail.vue
@@ -0,0 +1,3 @@
+
+ detail
+
\ No newline at end of file
diff --git a/src/views/examine/expert/index.vue b/src/views/examine/expert/index.vue
new file mode 100644
index 0000000..eb7c85d
--- /dev/null
+++ b/src/views/examine/expert/index.vue
@@ -0,0 +1,500 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+
+
+
+
+ 正常
+ 停用
+
+
+
+
+
+ {{ parseTime(scope.row.created_at) }}
+
+
+
+
+ 修改
+ 删除
+ 重置
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/platform/industry.vue b/src/views/platform/industry.vue
index 4947044..719a12c 100644
--- a/src/views/platform/industry.vue
+++ b/src/views/platform/industry.vue
@@ -1,3 +1,250 @@
- 八大领域
-
\ No newline at end of file
+
+
+
+
+ 新增
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+ 新增子领域
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/system/menu/index.vue b/src/views/system/menu/index.vue
index 28adda2..67b2242 100644
--- a/src/views/system/menu/index.vue
+++ b/src/views/system/menu/index.vue
@@ -453,7 +453,7 @@ export default {
/** 新增按钮操作 */
handleAdd(row) {
this.reset();
- if (row != null && row.parent_id != "" && row.id != undefined) {
+ if (row != null && row.parent_id != undefined && row.id != undefined) {
this.form.parent_id = row.id;
} else {
this.form.parent_id = "";
diff --git a/src/views/website/siteSet/footer/index.vue b/src/views/website/siteSet/footer/index.vue
index dbd1338..d6c8e81 100644
--- a/src/views/website/siteSet/footer/index.vue
+++ b/src/views/website/siteSet/footer/index.vue
@@ -152,11 +152,10 @@ import {
} from "@/api/website/siteSet";
import Treeselect from "@riophae/vue-treeselect";
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
-import IconSelect from "@/components/IconSelect";
import { tenantSelect } from "@/api/subPlatform/tenant";
export default {
- components: { Treeselect, IconSelect },
+ components: { Treeselect },
data() {
return {
is_super: this.$store.getters.is_super,