ソースを参照

Merge branch 'yb6.0' into debug

Karsa 3 年 前
コミット
58078a3119
1 ファイル変更8 行追加3 行削除
  1. 8 3
      src/views/priceDriven/detail.vue

+ 8 - 3
src/views/priceDriven/detail.vue

@@ -54,7 +54,7 @@ getClassify();
 const changeClassify = (item) => {
   const { id, list } = item;
   select_classify_first.value = id;
-  classifyList.value = list;
+  classifyList.value = list.filter(_ => _.pirce_driven_state);
   isSlideClassify.value = false;
 
   //分享进入的默认品种
@@ -284,7 +284,7 @@ onUnmounted(() => {
           <div class="section">
             <h3>更新时间:</h3>
             <p class="time">
-              {{ info.modify_time }}
+              {{ moment(info.modify_time).format('YYYY年MM月DD日 ddd') }}
               <img
                 src="@/assets/pricedriven/new_ico.png"
                 alt=""
@@ -534,7 +534,7 @@ onUnmounted(() => {
   }
   .no-auth-wrap {
     text-align: center;
-    color: #f3a52f;
+    color: #999;
     margin-top: 150px;
     min-height: 200px;
     position: relative;
@@ -557,3 +557,8 @@ onUnmounted(() => {
   }
 }
 </style>
+<style lang="scss">
+  p[data-f-id="pbf"] {
+    display: none !important;
+  }
+</style>