bding 1 rok temu
rodzic
commit
6b84accb97

+ 4 - 0
src/api/modules/rai/lableApi.js

@@ -29,6 +29,10 @@ const lableApi = {
   postLableTagMove: (params) => {
     return http.post("/cygx/tag/move", params);
   },
+  /* 微路演视频留言列表 */
+  video_and_voiceImgActivityVideo: (params) => {
+    return http.get("/cygx/activityVideo/video_and_voice/img", params);
+  },
 };
 
 export default lableApi;

+ 5 - 0
src/api/modules/rai/reportApi.js

@@ -29,6 +29,11 @@ const raiReport = {
   reportChartPermissionFirstProduct: (params) => {
     return http.get("/cygx/chartPermission/firstProduct", params);
   },
+  // 报告精选申请记录接口
+  reportSelectionTarryList: (params) => {
+    return http.get("/cygx/reportSelection/tarryList", params);
+  },
+  
 };
 
 export default raiReport;

+ 28 - 5
src/views/rai_manage/activityManage/components/addActivity.vue

@@ -207,10 +207,10 @@
           </el-upload>
           <el-progress type="circle" :percentage="percentage" width="40" style="margin-left: 10px" v-if="startUpload"></el-progress>
         </div>
-        <div class="audio-content cover-content" style="margin-top: 10px">
+        <div class="audio-content cover-content" style="margin-top: 10px" v-if="(fileListAudio.length || addEditVideo.length) && defaultImage">
           <span class="text" style="width: 70px; text-align: right">封面:</span>
           <div class="img-content">
-            <img src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/micro_roadshow_audio_share_yy.png" alt="" />
+            <img :src="defaultImage" alt="" />
             <div class="modify" @click="modifyImgHandler">修改</div>
           </div>
         </div>
@@ -269,7 +269,7 @@
       </template>
       <p style="padding-bottom: 50px"></p>
     </el-dialog>
-    <modify-img-dlg :modifyImgVisible.sync="modifyImgVisible"/>
+    <modify-img-dlg :modifyImgVisible.sync="modifyImgVisible" :videoAndVoiceList.sync="videoAndVoiceList" />
   </div>
 </template>
 
@@ -281,7 +281,7 @@ import AddIndustryMark from "../../components/addIndustryMark.vue";
 import richTextMixins from "../../components/apply/RichTextMixins";
 import MD5 from "js-md5";
 import ResearchDeduct from "./addComopnents/ResearchDeduct.vue";
-import ModifyImgDlg from './addComopnents/modifyImgDlg.vue';
+import ModifyImgDlg from "./addComopnents/modifyImgDlg.vue";
 
 export default {
   name: "",
@@ -353,6 +353,9 @@ export default {
       percentage: 0,
       isShowAddIcon: true, //主题标签的添加的iocn 是否显示
       modifyImgVisible: false,
+      defaultImage: "",
+      shareImg:'',
+      videoAndVoiceList: [],
     };
   },
   computed: {},
@@ -402,6 +405,7 @@ export default {
     }
   },
   methods: {
+    // 上传音频
     async handleUploadAudio(e) {
       const loading = this.$loading({
         lock: true,
@@ -413,6 +417,7 @@ export default {
       form.append("file", e.file);
       const res = await resourceVoiceupload(form);
       if (res.Ret === 200) {
+        this.getVideoAndImg(1);
         let obj = {
           name: res.Data.ResourceName,
           url: res.Data.ResourceUrl,
@@ -486,6 +491,8 @@ export default {
       raiInterface.activityDetail({ ActivityId: Number(this.$route.query.id) }).then((res) => {
         if (res.Ret !== 200) return;
         const { Data } = res;
+        this.defaultImage = Data.BackgroundImg
+        this.shareImg = Data.ShareImg
         this.activeIsState = Data.ActiveState;
         this.cactivityType = Data.ActivityTypeId;
         this.optionFormregion = Data.ChartPermissionName;
@@ -643,6 +650,8 @@ export default {
         IsBClass: RefPage.isBClass ? 1 : 0,
         SiginupDeadline: RefPage.SiginupDeadline,
         PointsSet,
+        BackgroundImg:this.defaultImage,
+        ShareImg:this.shareImg,
       });
 
       if (res.Ret !== 200) return;
@@ -958,6 +967,7 @@ export default {
         const res = await ALOSSINS.multipartUpload(temName, file, { ...options });
         console.log("上传结果", res);
         if (res.res.status === 200) {
+          this.getVideoAndImg(2);
           let VideoUrl = "https://hzstatic.hzinsights.com/" + res.name;
           this.addEditVideo[0].url = VideoUrl;
           this.startUpload = false;
@@ -993,7 +1003,20 @@ export default {
     },
     // 点击修改图片的弹框
     modifyImgHandler() {
-      this.modifyImgVisible =true;
+      let type = this.addEditVideo.length > 0 ? 2 : 1;
+      this.getVideoAndImg(type, "修改");
+      this.modifyImgVisible = true;
+    },
+    // video_and_voiceImgActivityVideo()
+    async getVideoAndImg(type, isOne = "") {
+      const res = await raiInterface.video_and_voiceImgActivityVideo({
+        FileType: type,
+        ActivityId: Number(this.$route.query.id),
+      });
+      if (res.Ret === 200) {
+        isOne == "修改" ? "" : (this.defaultImage = res.Data.List[0].ImgUrl);
+        this.videoAndVoiceList = res.Data.List;
+      }
     },
   },
 };

+ 14 - 17
src/views/rai_manage/activityManage/components/addComopnents/modifyImgDlg.vue

@@ -3,13 +3,13 @@
     <!-- 选择图片的弹框 -->
     <el-dialog title="选择图片" :visible.sync="modifyImgVisible" width="80%" v-dialogDrag :close-on-click-modal="false" :modal-append-to-body="false" center>
       <div class="seleect-img-box">
-        <div class="content-img" @click="clickSelectImg(item)" v-for="item in imgListArr" :key="item.ImgId">
-          <img :src="item.IndexImg" alt="" class="item-img" />
+        <div class="content-img" @click="clickSelectImg(item)" v-for="(item, index) in videoAndVoiceList" :key="index">
+          <img :src="item.ImgUrl" alt="" class="item-img" />
         </div>
       </div>
-      <el-col :span="24" class="toolbar">
+      <!-- <el-col :span="24" class="toolbar">
         <m-page :total="total" :page_no="page_no" :pageSize="10" @handleCurrentChange="handleCurrentChangeSelectImg" />
-      </el-col>
+      </el-col> -->
     </el-dialog>
   </div>
 </template>
@@ -25,6 +25,10 @@ export default {
       type: Boolean,
       default: false,
     },
+    videoAndVoiceList: {
+      type: Array,
+      default: [],
+    },
   },
   data() {
     return {
@@ -37,26 +41,19 @@ export default {
   watch: {},
   created() {},
   mounted() {
-    this.getSelectImgListAll();
+    // this.getSelectImgListAll();
   },
   methods: {
-    // 获取弹框图片的数据
-    async getSelectImgListAll() {
-      const res = await raiInterface.getBannerImgList({
-        CurrentIndex: 1,
-        PageSize: 100000,
-      });
-      if (res.Ret === 200) {
-        this.imgListArr = res.Data.List;
-        this.total = res.Data.Paging.Totals;
-      }
-    },
     // 选择图片的分页
     handleCurrentChangeSelectImg(page) {
       this.page_no = page;
       this.getSelectImgList();
     },
-    clickSelectImg() {},
+    clickSelectImg(item) {
+      this.$parent.defaultImage = item.ImgUrl;
+      this.$parent.shareImg = item.ShareImg;
+      this.$emit("update:modifyImgVisible", false);
+    },
   },
 };
 </script>

+ 16 - 3
src/views/rai_manage/components/addChoiceness.vue

@@ -97,7 +97,9 @@
         <div class="content-resource">
           <span class="resource">综述报告:</span>
           <span class="show">{{ overviewList.Title }}</span>
-          <div style="margin-left:20px"><el-switch v-model="value1" active-text="显示链接" inactive-text="不显示链接"> </el-switch></div>
+          <div style="margin-left: 20px">
+            <el-switch @change="switchChangeHandler" v-model="overviewList.IsShowOverviewArticle" :active-value="1" :inactive-value="0" active-text="显示链接" inactive-text="不显示链接"> </el-switch>
+          </div>
         </div>
         <div class="content-bottom">
           <el-button type="primary" @click="confirm('预览')">预览</el-button>
@@ -184,10 +186,11 @@ export default {
           this.overviewList = {
             ArticleId: this.industryListItem[this.ificationIndustrial].OverviewArticleId,
             Title: this.industryListItem[this.ificationIndustrial].OverviewArticleTitle,
+            IsShowOverviewArticle: this.industryListItem[this.ificationIndustrial].IsShowOverviewArticle,
           };
         } else {
           this.industrialSubjectName = "";
-          this.overviewList = { ArticleId: 0, Title: "" };
+          this.overviewList = { ArticleId: 0, Title: "", IsShowOverviewArticle: 0 };
         }
       },
       deep: true,
@@ -268,6 +271,7 @@ export default {
         this.overviewList = {
           ArticleId: res.Data.List[0].List && res.Data.List[0].List[0].OverviewArticleId,
           Title: res.Data.List[0].List && res.Data.List[0].List[0].OverviewArticleTitle,
+          IsShowOverviewArticle: res.Data.List[0].List && res.Data.List[0].List[0].IsShowOverviewArticle,
         };
       }
     },
@@ -325,6 +329,7 @@ export default {
         this.overviewList = {
           ArticleId: item.OverviewArticleId,
           Title: item.OverviewArticleTitle,
+          IsShowOverviewArticle: item.IsShowOverviewArticle,
         };
       }
     },
@@ -400,6 +405,7 @@ export default {
               CompanyLabel: [{ name: "", value: item.List.length + 1 }],
               OverviewArticleId: overviewList.ArticleId,
               OverviewArticleTitle: overviewList.Title,
+              IsShowOverviewArticle: overviewList.IsShowOverviewArticle,
             });
           }
         });
@@ -436,6 +442,7 @@ export default {
               IndustrialSubjectName: arr.SubjectName,
               OverviewArticleId: overviewList.ArticleId,
               OverviewArticleTitle: overviewList.Title,
+              IsShowOverviewArticle: overviewList.IsShowOverviewArticle,
             };
             item.List.splice(this.editNum, 1, obj);
           }
@@ -481,7 +488,6 @@ export default {
           }
           let params = this.dataHandle(type);
           if (type == "预览") {
-            console.log(params);
             sessionStorage.setItem("choicenessPre", JSON.stringify(params));
             let { href } = this.$router.resolve({ name: "预览报告精选" });
             window.open(href, "_blank");
@@ -562,6 +568,13 @@ export default {
     deleteLabelItem(item, index) {
       this.industryListItem[this.ificationIndustrial].CompanyLabel.splice(index, 1);
     },
+    switchChangeHandler(e) {
+      this.industryListItem.forEach((item) => {
+        if (item.OverviewArticleId === this.overviewList.ArticleId) {
+          item.IsShowOverviewArticle = e;
+        }
+      });
+    },
   },
   // 拖拽排序更新
   sortChange({ oldIndex, newIndex }) {

+ 3 - 1
src/views/rai_manage/components/reportComponents/CompanyDetail.vue

@@ -12,7 +12,9 @@
           <tr v-for="(item, index) in childrenList" :key="index">
             <td v-for="(i, unm) in item" :key="unm" class="new-box">
               <span class="thbody-rs">{{ i.name }}</span>
-              <img v-if="unm % 2 == 0" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/new_subject.png" alt="" class="new-img" />
+              <template v-if="i.IsNew == 1">
+                <img v-if="unm % 2 == 0" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/new_subject.png" alt="" class="new-img" />
+              </template>
             </td>
           </tr>
         </table>

+ 11 - 6
src/views/rai_manage/reportManage/components/roadshowApplyDlg.vue

@@ -4,11 +4,11 @@
     <el-dialog title="路演申请" :visible.sync="isRadshowApplyShow" width="50%" :before-close="handleClose" v-dialogDrag :close-on-click-modal="false" :modal-append-to-body="false" center>
       <div>
         <el-table :data="tableData" style="width: 100%; margin-bottom: 20px" border>
-          <el-table-column prop="Periods" align="center" label="申请标的"></el-table-column>
-          <el-table-column prop="Periods" align="center" label="申请人"></el-table-column>
-          <el-table-column prop="Periods" align="center" label="公司名称"></el-table-column>
-          <el-table-column prop="Periods" align="center" label="所属销售"></el-table-column>
-          <el-table-column prop="Periods" align="center" label="申请时间"></el-table-column>
+          <el-table-column prop="SubjectName" align="center" label="申请标的"></el-table-column>
+          <el-table-column prop="RealName" align="center" label="申请人"></el-table-column>
+          <el-table-column prop="CompanyName" align="center" label="公司名称"></el-table-column>
+          <el-table-column prop="SellerName" align="center" label="所属销售"></el-table-column>
+          <el-table-column width="160" prop="CreateTime" align="center" label="申请时间"></el-table-column>
         </el-table>
       </div>
     </el-dialog>
@@ -54,7 +54,12 @@ export default {
     },
     // 获取表格数据
     async getTableList() {
-      // const res = await raiInterface.
+      const res = await raiInterface.reportSelectionTarryList({
+        ArticleId: this.radshowApplyId,
+      });
+      if (res.Ret === 200) {
+        this.tableData = res.Data.List || [];
+      }
     },
   },
 };

+ 2 - 2
src/views/rai_manage/reportManage/reportChoiceness.vue

@@ -39,7 +39,7 @@
         </el-table-column>
         <el-table-column prop="Periods" align="center" label="路演申请" width="100">
           <template slot-scope="{ row }">
-            <span class="editsty" @click="roadshowApplyHandler(row)">{{ row.Pv }}</span>
+            <span class="editsty" @click="roadshowApplyHandler(row)">{{ row.ApplyTotal }}</span>
           </template>
         </el-table-column>
         <el-table-column key="VisibleRange" width="156" label="可见范围" align="center">
@@ -228,7 +228,7 @@ export default {
     },
     // 路演申请的弹框
     roadshowApplyHandler(item) {
-      this.radshowApplyId = item;
+      this.radshowApplyId = item.ArticleId;
       this.isRadshowApplyShow = true;
     },
   },