Browse Source

12.0.1 审核

bding 1 year ago
parent
commit
dfd4173ca6

+ 1 - 0
pages-purchaser/columnAuthor/columnAuthor.vue

@@ -75,6 +75,7 @@ export default {
   //   },
   /* 下拉刷新 */
   onPullDownRefresh() {
+    this.page_no = 1;
     this.refresh = true;
     this.getColumnList();
   },

+ 25 - 1
pages-purchaser/components/columnListContent.vue

@@ -2,6 +2,10 @@
   <view class="column-list-content-detail">
     <block v-if="mySpecialList && mySpecialList.length">
       <view class="content-item" v-for="item in mySpecialList" :key="item.Id">
+        <view class="author-box" @click="goDetailPages(item)">
+          <image :src="item.HeadImg"></image>
+          {{ item.NickName }}
+        </view>
         <view class="type-time">
           <view class="type">{{ item.Type == 1 ? "笔 记" : "观 点" }} </view>
           <view class="time"> {{ item.PublishTime }}</view>
@@ -105,6 +109,10 @@ export default {
         },
       });
     },
+    // 去往专栏详情
+    goDetailPages(item) {
+      uni.navigateTo({ url: "/pages-purchaser/columnDetail/columnDetail?id=" + item.UserId });
+    },
   },
 };
 </script>
@@ -116,7 +124,7 @@ export default {
   background: #fff;
   .text-conten {
     width: 100%;
-    font-size:32rpx;
+    font-size: 32rpx;
     line-height: 40rpx;
   }
 
@@ -247,5 +255,21 @@ export default {
     margin-top: -80rpx;
     font-size: 24rpx;
   }
+  .author-box {
+    display: flex;
+    align-items: center;
+    margin-bottom: 25rpx;
+    font-size: 28rpx;
+    color: #333;
+    line-height: 40rpx;
+    image {
+      display: inline-block;
+      width: 48rpx;
+      height: 48rpx;
+      border-radius: 50%;
+      margin-right: 10rpx;
+      overflow: hidden;
+    }
+  }
 }
 </style>

+ 1 - 1
pages-purchaser/noteAndViewpoint/noteAndViewpoint.vue

@@ -29,7 +29,7 @@
         <view class="item" v-for="key in dataProcessing(detailDataForm.Tags)" :key="key">{{ key }}</view>
       </view>
     </view>
-    <view class="statement-content">
+    <view class="statement-content" v-if="detailDataForm.Status == 3">
       <text>郑重声明:</text>
       本文为用户投稿,用户在平台中发表的所有资料、言论等仅代表个人或嘉宾观点,与本网站、任何公司与任何机构立场无关。本平台对文中陈述、观点判断保持中立,不对所包含内容及数据的真实性、准确性、可靠性或完整性提供任何明示或暗示的保证。
       股市波动与很多因素有关,任何用户或嘉宾的发言,都有其特定立场,投资决策是个人基于自己的研究分析所做的决定,本文章或会议目的在于事实、观点分享,不构成任何的投资建议。投资者应当自主进行投资决策,对投资者因依赖上述信息进行投资决策而导致的财产损失,本平台不承担法律责任。

+ 10 - 0
pages-purchaser/specialColumn/specialColumn.vue

@@ -62,6 +62,10 @@ export default {
         this.isAuthor = res.Data.IsAuthor;
         this.isImproveInformation = res.Data.IsImproveInformation;
         this.mySpecialList = this.page_no == 1 ? res.Data.List || [] : this.mySpecialList.concat(res.Data.List);
+        if (this.refresh) {
+          uni.stopPullDownRefresh();
+          this.refresh = false;
+        }
       }
     },
     // 更新收藏
@@ -84,6 +88,12 @@ export default {
       path: "/pages-purchaser/specialColumn/specialColumn",
     };
   },
+  /* 下拉刷新 */
+  onPullDownRefresh() {
+    this.page_no = 1;
+    this.refresh = true;
+    this.getYanxuanSpecialList();
+  },
   // 下滑触底
   onReachBottom() {
     if (this.status == "nomore") return;

+ 3 - 0
reportPages/IndustryReport/IndustryReport.vue

@@ -99,12 +99,14 @@ export default {
       ],
       dataFollow: {},
       isSendWx: "",
+      chapterId: 0,
     };
   },
   onLoad(option) {
     this.industrialManagementId = option.id;
     this.isSendWx = option.IsSendWx || "";
     this.tabAct_id = +option.tab || "";
+    this.chapterId = Number(option.ChapterId) || 0;
     this.toArticleCategoryList();
   },
   onShow() {
@@ -150,6 +152,7 @@ export default {
         ShowTimeLine: 1,
         PageRouter: this.$store.state.pageRouterReport,
         IsSendWx: this.isSendWx,
+        ChapterId: this.chapterId,
       }).then((res) => {
         if (res.Ret == 200) {
           uni.setNavigationBarTitle({