shaogen1995 пре 3 година
родитељ
комит
b10bdcd3a7

+ 6 - 1
webM/src/views/Collections/Detail.vue

@@ -38,7 +38,9 @@ export default {
       if (v.id === id) this.data = v;
     });
     setTimeout(() => {
-      window.document.title = this.data.h3;
+      let temp = this.data.h3.replace('<i>','')
+      temp =temp.replace('</i>','')
+      window.document.title = temp;
     }, 100);
   },
   beforeCreate() {}, //生命周期 - 创建之前
@@ -81,6 +83,9 @@ export default {
       /deep/ i {
         font-style: italic;
       }
+      /deep/.xx{
+        font-style: italic;
+      }
     }
   }
 }

+ 2 - 2
webM/src/views/Exhibitions/Detail.vue

@@ -160,7 +160,7 @@ export default {
     imgLook(url) {
       ImagePreview({
         images: [url],
-        showIndex:false
+        showIndex: false,
       });
     },
     // Obj的滑动
@@ -349,7 +349,7 @@ export default {
             line-height: 18px;
             margin-bottom: 15px;
           }
-          /deep/.one{
+          /deep/.one {
             font-weight: 700;
             line-height: 40px;
           }

Разлика између датотеке није приказан због своје велике величине
+ 3 - 3
webM/src/views/Exhibitions/data.js


Разлика између датотеке није приказан због своје велике величине
+ 3 - 3
webM/src/views/Exhibitions/dataAll.js


Разлика између датотеке није приказан због своје велике величине
+ 1 - 1
webM/src/views/Publications/data.js


+ 3 - 3
webM/src/views/bottom/Events/data.js

@@ -35,10 +35,10 @@ export const AboutOne = [
     id: 4,
     h3: "2018 China-Japan-ROK International<br />Conference on Museums",
     txt: [
-      { name: ' Introduction', path: 3 },
-      { name: ' Speech of President Bai at the Conference', path: 3.2 },
+      { name: ' Introduction', path: 4 },
+      { name: ' Speech of President Bai at the Conference', path: 4.2 },
       {
-        name: " Statements of the Curators' Roundtable", path: 3.3
+        name: " Statements of the Curators' Roundtable", path: 4.3
       },
     ],
     i: 'August 14, 2018- August 15, 2018',

+ 1 - 1
webM/src/views/bottom/Events/index.vue

@@ -9,7 +9,7 @@
         <img :src="`/data/EventsM/T${index + 1}.png`" alt="" />
         <div class="txt">
           <h3 v-html="item.h3"></h3>
-          <p v-for="(val, index) in item.txt" :key="index">
+          <p v-for="(val, index) in item.txt" :key="index" @click.stop="$router.push(`/Layout/EventsInfo${item.id}/${val.path}`)">
             <span>■</span>
             {{ val.name }}
           </p>