asd123a20 3 years ago
parent
commit
660137fdb9
6 changed files with 18 additions and 9 deletions
  1. BIN
      public/favicon.png
  2. 1 1
      public/index.html
  3. 5 5
      src/views/Home.vue
  4. 5 1
      src/views/details.vue
  5. 1 1
      src/views/list.vue
  6. 6 1
      src/views/page.vue

BIN
public/favicon.png


+ 1 - 1
public/index.html

@@ -4,7 +4,7 @@
     <meta charset="utf-8">
     <meta http-equiv="X-UA-Compatible" content="IE=edge">
     <meta name="viewport" content="width=device-width,initial-scale=1.0">
-    <link rel="icon" href="<%= BASE_URL %>favicon.ico">
+    <link rel="icon" href="<%= BASE_URL %>favicon.png">
     <title>经济纵横</title>
   </head>
   <body>

+ 5 - 5
src/views/Home.vue

@@ -26,7 +26,7 @@
             <img :src="item.thumbnail || imguri" alt="人物">
           </div>
           <p class="text" @click="jump(item, '9')">{{ item.title }}</p>
-          <p class="date">{{ item.createAt | dates }}</p>
+          <p class="date">{{ item.date }}</p>
         </el-card>
       </div>
     </div>
@@ -38,7 +38,7 @@
           <img :src="item.thumbnail || imguri" alt="最新动态" class="left">
           <div class="right">
             <p class="title">{{ item.title }}</p>
-            <p class="date">{{ item.createAt | dates }}</p>
+            <p class="date">{{ item.date }}</p>
             <p class="text">{{ item.slug }}</p>
           </div>
         </div>
@@ -75,7 +75,7 @@
         <div class="textlist">
           <p class="textbox" @click="jump(item, '8')" v-for="(item, index) in communicationlist" :key="index">
             <span class="text">{{ item.title }}</span>
-            <span class="date">{{ item.createAt | dates }}</span>
+            <span class="date">{{ item.date }}</span>
           </p>
         </div>
       </div>
@@ -272,10 +272,10 @@ export default {
     display: flex;
     flex-wrap: wrap;
     .imngbox {
-      width: 50%;
+      width: 46%;
       height: 17vh;
       display: flex;
-      margin: 2% 0;
+      margin: 2% 2%;
       .left {
         width: 25%;
         margin-right: 5%;

+ 5 - 1
src/views/details.vue

@@ -7,7 +7,7 @@
         <titles :type="'正文'" :title="item" :en="en"></titles>
         <div class="html">
           <h2>{{ contentitem.title }}</h2>
-          <p class="slug">{{ contentitem.slug }}</p>
+          <p class="date">发表时间: {{ contentitem.date }}</p>
           <div class="content" v-html="contentitem.content"></div>
         </div>
       </div>
@@ -88,6 +88,10 @@ export default {
         .slug {
           font-size: 0.8em;
         }
+        .date {
+          width: 100%;
+          text-align: center;
+        }
       }
     }
   }

+ 1 - 1
src/views/list.vue

@@ -10,7 +10,7 @@
           <h4 class="title" @click="btn(item)">{{ item.title }}</h4>
           <div class="details">{{ item.slug }}</div>
           <div class="other">
-            <div class="el-icon-time date">{{ item.createAt | dates }}</div>
+            <div class="el-icon-time date">{{ item.date }}</div>
             <div class="el-icon-view num">{{ item.hits || 0 }}</div>
           </div>
         </div>

+ 6 - 1
src/views/page.vue

@@ -7,7 +7,8 @@
         <titles :type="'正文'" :title="item" :en="en"></titles>
         <div class="html">
           <h2>{{ pagedetails && pagedetails.title }}</h2>
-          <p class="slug">{{ pagedetails && pagedetails.slug }}</p>
+          <!-- <p class="slug">{{ pagedetails && pagedetails.slug }}</p> -->
+          <p class="date" v-if="pagedetails.date">发表时间: {{ pagedetails.date }}</p>
           <div class="content" v-html="pagedetails && pagedetails.content"></div>
         </div>
       </div>
@@ -107,6 +108,10 @@ export default {
         .slug {
           font-size: 0.8em;
         }
+        .date {
+          width: 100%;
+          text-align: center;
+        }
       }
     }
   }