From 5aef094b3054a27d3b1bc791cb55165faedb308d Mon Sep 17 00:00:00 2001 From: monkeyhouyi Date: Thu, 25 Jul 2024 00:18:38 +0800 Subject: [PATCH] 图标,核查处置 --- src/assets/images/meun/专项行动.png | Bin 0 -> 1634 bytes src/assets/images/meun/基础信息库.png | Bin 0 -> 1322 bytes src/assets/images/meun/我的消息.png | Bin 0 -> 954 bytes src/assets/images/meun/数字大屏.png | Bin 0 -> 1042 bytes src/assets/images/meun/核查处置.png | Bin 0 -> 1276 bytes src/assets/images/meun/清单管理.png | Bin 0 -> 939 bytes src/assets/images/meun/网信执法.png | Bin 0 -> 1471 bytes src/assets/images/meun/首页.png | Bin 0 -> 1406 bytes src/components/InfoForm/index.vue | 3 +-- src/components/SelsctLoad/index.vue | 168 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ src/components/index.js | 2 ++ src/views/DisposalSuggestions/index.vue | 4 ++-- src/views/baseInspectionReport/Form.vue | 5 +++-- src/views/baseInspectionReport/index.vue | 4 ++-- src/views/baseSystemInfo/InspectForm.vue | 5 +++-- src/views/homePage/components/Menu.vue | 17 ++++++++++++++--- 16 files changed, 195 insertions(+), 13 deletions(-) create mode 100644 src/assets/images/meun/专项行动.png create mode 100644 src/assets/images/meun/基础信息库.png create mode 100644 src/assets/images/meun/我的消息.png create mode 100644 src/assets/images/meun/数字大屏.png create mode 100644 src/assets/images/meun/核查处置.png create mode 100644 src/assets/images/meun/清单管理.png create mode 100644 src/assets/images/meun/网信执法.png create mode 100644 src/assets/images/meun/首页.png create mode 100644 src/components/SelsctLoad/index.vue diff --git a/src/assets/images/meun/专项行动.png b/src/assets/images/meun/专项行动.png new file mode 100644 index 0000000..de9b200 Binary files /dev/null and b/src/assets/images/meun/专项行动.png differ diff --git a/src/assets/images/meun/基础信息库.png b/src/assets/images/meun/基础信息库.png new file mode 100644 index 0000000..b71ac9f Binary files /dev/null and b/src/assets/images/meun/基础信息库.png differ diff --git a/src/assets/images/meun/我的消息.png b/src/assets/images/meun/我的消息.png new file mode 100644 index 0000000..bbb652b Binary files /dev/null and b/src/assets/images/meun/我的消息.png differ diff --git a/src/assets/images/meun/数字大屏.png b/src/assets/images/meun/数字大屏.png new file mode 100644 index 0000000..3c8e3b0 Binary files /dev/null and b/src/assets/images/meun/数字大屏.png differ diff --git a/src/assets/images/meun/核查处置.png b/src/assets/images/meun/核查处置.png new file mode 100644 index 0000000..d03e8c1 Binary files /dev/null and b/src/assets/images/meun/核查处置.png differ diff --git a/src/assets/images/meun/清单管理.png b/src/assets/images/meun/清单管理.png new file mode 100644 index 0000000..ffb882c Binary files /dev/null and b/src/assets/images/meun/清单管理.png differ diff --git a/src/assets/images/meun/网信执法.png b/src/assets/images/meun/网信执法.png new file mode 100644 index 0000000..def8998 Binary files /dev/null and b/src/assets/images/meun/网信执法.png differ diff --git a/src/assets/images/meun/首页.png b/src/assets/images/meun/首页.png new file mode 100644 index 0000000..f975790 Binary files /dev/null and b/src/assets/images/meun/首页.png differ diff --git a/src/components/InfoForm/index.vue b/src/components/InfoForm/index.vue index 4e99c8f..3b0a758 100644 --- a/src/components/InfoForm/index.vue +++ b/src/components/InfoForm/index.vue @@ -335,7 +335,7 @@ export default { }, // 无限下拉 nextCompanyList() { - if (total_company == this.listQuery_company.length) return; + if (this.total_company == this.listQuery_company.length) return; this.listQuery_company.pageIndex++; this.initCompanyList(); }, @@ -479,4 +479,3 @@ export default { } } -@/api/baseData/area@/api/baseData/company diff --git a/src/components/SelsctLoad/index.vue b/src/components/SelsctLoad/index.vue new file mode 100644 index 0000000..2c33373 --- /dev/null +++ b/src/components/SelsctLoad/index.vue @@ -0,0 +1,168 @@ + + + + + diff --git a/src/components/index.js b/src/components/index.js index b72b9c7..40cc8fc 100644 --- a/src/components/index.js +++ b/src/components/index.js @@ -11,6 +11,7 @@ import DepSelect from '@/components/Generator/components/DepSelect' import Screenfull from '@/components/Screenfull' import NCCTreeSelect from '@/components/NCC-treeSelect' import NCCAddress from '@/components/Generator/components/Address' +import SelsctLoad from '@/components/SelsctLoad' export default { install(Vue, options) { @@ -27,6 +28,7 @@ export default { Vue.component('NCCTreeSelect', NCCTreeSelect) Vue.component('Screenfull', Screenfull) Vue.component('NCCAddress', NCCAddress) + Vue.component('SelsctLoad', SelsctLoad) } } \ No newline at end of file diff --git a/src/views/DisposalSuggestions/index.vue b/src/views/DisposalSuggestions/index.vue index a8549ae..2c0e91b 100644 --- a/src/views/DisposalSuggestions/index.vue +++ b/src/views/DisposalSuggestions/index.vue @@ -18,11 +18,11 @@ - + diff --git a/src/views/baseInspectionReport/Form.vue b/src/views/baseInspectionReport/Form.vue index 5a35cb5..16c0755 100644 --- a/src/views/baseInspectionReport/Form.vue +++ b/src/views/baseInspectionReport/Form.vue @@ -30,13 +30,14 @@ - + diff --git a/src/views/baseInspectionReport/index.vue b/src/views/baseInspectionReport/index.vue index c55835e..7caa82d 100644 --- a/src/views/baseInspectionReport/index.vue +++ b/src/views/baseInspectionReport/index.vue @@ -18,11 +18,11 @@ - + diff --git a/src/views/baseSystemInfo/InspectForm.vue b/src/views/baseSystemInfo/InspectForm.vue index 520a784..fc84ce2 100644 --- a/src/views/baseSystemInfo/InspectForm.vue +++ b/src/views/baseSystemInfo/InspectForm.vue @@ -19,14 +19,15 @@ > - + diff --git a/src/views/homePage/components/Menu.vue b/src/views/homePage/components/Menu.vue index bed6bb6..c3f2dbb 100644 --- a/src/views/homePage/components/Menu.vue +++ b/src/views/homePage/components/Menu.vue @@ -7,7 +7,7 @@ router > - + 首页 @@ -15,7 +15,9 @@