Browse Source

点击标题查看

gzb
guozhongbo 9 months ago
parent
commit
280e9a3a92

+ 4
- 1
src/views/regionSection/applicationManage/applicationManage.vue View File

@@ -38,7 +38,9 @@
38 38
             </div>
39 39
             <div class="app_comm">
40 40
               <div :title="row.appName">
41
-                <div class="apptitle">{{ row.appName }}</div>
41
+                <div @click="toView(row)" class="apptitle">
42
+                  {{ row.appName }}
43
+                </div>
42 44
                 <div v-if="row.belong === 1" class="app_tag">公共</div>
43 45
                 <div v-else-if="row.belong === 2" class="web_tag">私有</div>
44 46
               </div>
@@ -1738,6 +1740,7 @@ export default {
1738 1740
         white-space: nowrap;
1739 1741
         text-overflow: ellipsis;
1740 1742
         overflow: hidden;
1743
+        cursor: pointer;
1741 1744
       }
1742 1745
       .app_tag {
1743 1746
         display: inline-block;

+ 5
- 2
src/views/regionSection/search/allApps.vue View File

@@ -24,7 +24,9 @@
24 24
             </div>
25 25
             <div class="app_comm">
26 26
               <div :title="row.appName">
27
-                <div class="apptitle">{{ row.appName }}</div>
27
+                <div @click="toView(row)" class="apptitle">
28
+                  {{ row.appName }}
29
+                </div>
28 30
                 <div v-if="row.belong === 1" class="app_tag">公共</div>
29 31
                 <div v-else-if="row.belong === 2" class="web_tag">私有</div>
30 32
               </div>
@@ -345,7 +347,7 @@ import {
345 347
   app_install_statistic
346 348
 } from "@/api/appgroup";
347 349
 import QRCode from "qrcodejs2";
348
-import {getResourceSize} from "@/utils";
350
+import { getResourceSize } from "@/utils";
349 351
 export default {
350 352
   data() {
351 353
     return {
@@ -822,6 +824,7 @@ export default {
822 824
         white-space: nowrap;
823 825
         text-overflow: ellipsis;
824 826
         overflow: hidden;
827
+        cursor: pointer;
825 828
       }
826 829
       .app_tag {
827 830
         display: inline-block;

+ 4
- 1
src/views/schoolSection/applicationManage/applicationList.vue View File

@@ -54,7 +54,9 @@
54 54
             </div>
55 55
             <div class="app_comm">
56 56
               <div :title="row.appName">
57
-                <div class="apptitle">{{ row.appName }}</div>
57
+                <div @click="toView(row)" class="apptitle">
58
+                  {{ row.appName }}
59
+                </div>
58 60
                 <div v-if="row.belong === 1" class="app_tag">公共</div>
59 61
                 <div v-else-if="row.belong === 2" class="web_tag">私有</div>
60 62
               </div>
@@ -1608,6 +1610,7 @@ export default {
1608 1610
         white-space: nowrap;
1609 1611
         text-overflow: ellipsis;
1610 1612
         overflow: hidden;
1613
+        cursor: pointer;
1611 1614
       }
1612 1615
       .app_tag {
1613 1616
         display: inline-block;

Loading…
Cancel
Save