Browse Source

Merge branch 'master' of http://git.cc-lotus.info/article-system/article-mobile

lrf402788946 4 years ago
parent
commit
d6ffb483f7

+ 1 - 1
src/views/community/parts/comment.vue

@@ -9,7 +9,7 @@
           <el-col :span="20" class="right">
             <p>{{ item.name }}</p>
             <p>{{ item.content }}</p>
-            <p>{{ item.renew_time }}</p>
+            <p>{{ item.create_time || item.renew_time || '暂无时间' }}</p>
           </el-col>
         </el-col>
       </el-col>

+ 1 - 1
src/views/community/parts/info.vue

@@ -9,7 +9,7 @@
           <el-col :span="20" class="right">
             <p>系统管理员</p>
             <p>
-              <span>{{ detailInfo.renew_time || '暂无时间' }}</span>
+              <span>{{ detailInfo.create_time || detailInfo.renew_time || '暂无时间' }}</span>
               <span>来源:{{ detailInfo.origin || '系统管理员' }}</span>
             </p>
           </el-col>

+ 1 - 1
src/views/community/parts/list.vue

@@ -8,7 +8,7 @@
           </el-col>
           <el-col :span="24" class="other">
             <span>来源:{{ item.origin || '系统管理员' }}</span>
-            <span>更新时间:{{ item.renew_time || '暂无时间' }}</span>
+            <span>更新时间:{{ item.create_time || item.renew_time || '暂无时间' }}</span>
           </el-col>
           <el-col :span="24" class="image" v-if="item.type == '0'">
             <img :src="tag.url" v-for="(tag, index) in item.imgUrl" :key="index" :style="{ width: item.imgUrl.length == 1 ? '100%' : '48%' }" />

+ 1 - 1
src/views/refute/parts/info.vue

@@ -5,7 +5,7 @@
         <el-col :span="24" class="title"> {{ form.title }} </el-col>
         <el-col :span="24" class="other">
           <span>来源:{{ form.origin || '系统管理员' }}</span>
-          <span>更新时间:{{ form.renew_time || '暂无时间' }}</span>
+          <span>更新时间:{{ form.create_time || form.renew_time || '暂无时间' }}</span>
         </el-col>
         <el-col :span="24" class="video" v-if="form.fileUrl">
           <video

+ 1 - 1
src/views/refute/parts/list.vue

@@ -15,7 +15,7 @@
               {{ item.title }}
             </el-col>
             <el-col :span="24" class="date">
-              <span>{{ item.renew_time }}</span>
+              <span>{{ item.create_time || item.renew_time || '暂无时间' }}</span>
               <span>阅读:{{ item.read >= 10000 ? '1万+' : item.read }}</span>
             </el-col>
           </el-col>

+ 1 - 1
src/views/service/parts/info.vue

@@ -10,7 +10,7 @@
             {{ form.origin || '系统管理员' }}
           </el-col>
           <el-col :span="12" class="origin date textOver">
-            {{ form.renew_time || '暂无时间' }}
+            {{ form.create_time || form.renew_time || '暂无时间' }}
           </el-col>
         </el-col>
         <el-col :span="24" class="two">

+ 1 - 1
src/views/service/parts/list.vue

@@ -65,7 +65,7 @@
               </video>
             </el-col>
             <el-col :span="24" class="other">
-              <el-col :span="20" class="left">{{ item.origin || '系统管理员' }}{{ item.renew_time || '暂无时间' }}</el-col>
+              <el-col :span="20" class="left">{{ item.origin || '系统管理员' }}{{ item.create_time || item.renew_time || '暂无时间' }}</el-col>
               <el-col :span="4" class="right"><i class="el-icon-view"></i>{{ item.read >= 10000 ? '1万+' : item.read }}</el-col>
             </el-col>
           </el-col>