瀏覽代碼

表格数据

citygis-lhh 5 月之前
父節點
當前提交
dc60f1351a

二進制
src/assets/image/mapTools/new_icon.png


+ 1 - 1
src/components/map/GisMap.vue

@@ -32,7 +32,7 @@ onMounted(() => {
       console.log('ready');
       //默认加载
       addImagePoint('newAdress', [{ x: -14926.528171515301, y: -1705.2657878212942 }], {
-        imageUrl: new URL(`@/assets/image/mapTools/newAdress.png`, import.meta.url).href
+        imageUrl: new URL(`@/assets/image/mapTools/new_icon.png`, import.meta.url).href
       });
       addImagePoint(
         'touch',

+ 1 - 1
src/stores/mapStore.js

@@ -37,7 +37,7 @@ export const useMapStore = defineStore('mapStore', () => {
         case 'newAdress': {
           //新址图标
           addImagePoint('newAdress', [{ x: -14926.528171515301, y: -1705.2657878212942 }], {
-            imageUrl: new URL(`@/assets/image/mapTools/newAdress.png`, import.meta.url).href
+            imageUrl: new URL(`@/assets/image/mapTools/new_icon.png`, import.meta.url).href
           });
           break;
         }

+ 18 - 13
src/views/DataCenterGis/components/RightPanel.vue

@@ -80,19 +80,7 @@
           @row-click="handleView"
           @row-dblclick="handleDbView"
         >
-          <el-table-column label="序号" align="center" type="index" width="50" />
-          <el-table-column
-            show-overflow-tooltip
-            align="center"
-            label="病例编号"
-            prop="blbh"
-            min-width="60"
-          >
-            <template #default="scope">
-              <div @click="clickBlbh(scope)" style="color: #1257bc">{{ scope.row.blbh }}</div>
-            </template>
-          </el-table-column>
-          <el-table-column show-overflow-tooltip align="center" label="图标" prop="" min-width="60">
+          <el-table-column show-overflow-tooltip align="left" label="" prop="" width="15">
             <template #default="scope">
               <div
                 v-if="scope.row.ty == '无轨迹'"
@@ -111,6 +99,19 @@
               ></div>
             </template>
           </el-table-column>
+          <el-table-column label="序号" align="center" type="index" width="50" />
+          <el-table-column
+            show-overflow-tooltip
+            align="center"
+            label="病例编号"
+            prop="blbh"
+            min-width="60"
+          >
+            <template #default="scope">
+              <div @click="clickBlbh(scope)" style="color: #1257bc">{{ scope.row.blbh }}</div>
+            </template>
+          </el-table-column>
+
           <el-table-column show-overflow-tooltip label="疾病名称" prop="type" min-width="60">
             <template #default="scope">
               <span v-if="scope.row.type == 1">传染病</span>
@@ -487,6 +488,10 @@ onMounted(() => {
     .option-button {
       width: 30px;
     }
+    :deep(.el-table--enable-row-hover .el-table__body tr:hover > td.el-table__cell) {
+      background-color: rgba(90, 172, 255, 0.2);
+      color: #1257bc;
+    }
     .top-box {
       display: flex;
       justify-content: flex-start;

+ 1 - 1
vite.config.js

@@ -10,7 +10,7 @@ export default defineConfig({
     proxy: {
       '/api': {
         //apiTest是自行设置的请求前缀,按照这个来匹配请求,有这个字段的请求,就会进到代理来
-        target: 'http://10.1.161.187:7878/', // 需要代理的域名
+        target: 'http://10.1.161.180:7878/', // 需要代理的域名
         secure: false,
         changeOrigin: true,
         rewrite: (path) => path.replace(/^\/api/, '') //重写匹配的字段,如果不需要放在请求路径上,可以重写为""