Ver código fonte

新增低价预测模块

songxy 2 dias atrás
pai
commit
276f856280

+ 0 - 1
ais_search_zj/web/components.d.ts

@@ -14,7 +14,6 @@ declare module 'vue' {
     BasicCurdPage: typeof import('./src/components/curd/BasicCurdPage.vue')['default']
     BasicCurdPageFrame: typeof import('./src/components/curd/frame/BasicCurdPageFrame.vue')['default']
     BasicQueryForm: typeof import('./src/components/query/BasicQueryForm.vue')['default']
-    copy: typeof import('./src/components/pdf/PDFViewerSearch copy.vue')['default']
     HomeCard: typeof import('./src/components/home-card/HomeCard.vue')['default']
     IframePage: typeof import('./src/components/iframe-page/IframePage.vue')['default']
     MarkdownToc: typeof import('./src/components/markdown-toc/MarkdownToc.vue')['default']

+ 6 - 0
ais_search_zj/web/src/router/routes.js

@@ -41,6 +41,12 @@ export default [
             meta: { title: '智能找图' },
             component: () => import('@/views/znzt/index.vue'),
           },
+          {
+            path: 'djyc',
+            name: 'Djyc',
+            meta: { title: '智能找图' },
+            component: () => import('@/views/djyc/index.vue'),
+          },
           {
             path: 'ztzs',
             name: 'Ztzs',

+ 19 - 0
ais_search_zj/web/src/views/djyc/index.vue

@@ -0,0 +1,19 @@
+<template>
+  <div class="znxz_box">
+    <iframe border="0" frameborder="no" src='https://ai.zrzyt.zj.gov.cn:10086/djyc/#/djyc?isnav=0' />
+  </div>
+</template>
+
+<script lang="ts">
+
+</script>
+<style lang="scss" scoped>
+.znxz_box {
+  width: 100%;
+  height: 100%;
+  >iframe {
+    width: 100%;
+    height: 100%;
+  }
+}
+</style>

+ 7 - 1
ais_search_zj/web/src/views/home/index.vue

@@ -8,7 +8,7 @@
         <div class="tool">
           <ul>
             <template v-for="(menu,index) in menuRoutes" :key="index">
-              <li  v-if="index < 3" :class="{active: cMenuRoute['title'] === menu['title']}" @click="toSwitchPage(menu)">
+              <li  v-if="index < 4" :class="{active: cMenuRoute['title'] === menu['title']}" @click="toSwitchPage(menu)">
                 <span :class="`iconfont ${menu['icon']}`"></span>
                 <span class="title">{{menu['title']}}</span>
               </li>
@@ -51,6 +51,12 @@ const menuRoutes = [
     name: 'Znzt',
     window: true
   },
+  {
+    title: '地价预测',
+    icon: 'icon-zhengcefagui',
+    name: 'Djyc',
+    iframe: true
+  },
   {
     title: '知识库',
     icon: 'icon-66zhishikuguanli',