浏览代码

init 11.3

bding 1 年之前
父节点
当前提交
ba905d8db5

+ 10 - 3
src/views/rai_manage/activityManage/components/addActivity.vue

@@ -211,7 +211,7 @@
           <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="" />
-            <div class="modify">修改</div>
+            <div class="modify" @click="modifyImgHandler">修改</div>
           </div>
         </div>
       </template>
@@ -269,6 +269,7 @@
       </template>
       <p style="padding-bottom: 50px"></p>
     </el-dialog>
+    <modify-img-dlg :modifyImgVisible.sync="modifyImgVisible"/>
   </div>
 </template>
 
@@ -280,10 +281,11 @@ 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';
 
 export default {
   name: "",
-  components: { AddIndustryMark, ResearchDeduct },
+  components: { AddIndustryMark, ResearchDeduct, ModifyImgDlg },
   props: {},
   data() {
     return {
@@ -350,6 +352,7 @@ export default {
       startUpload: false, //开始上传
       percentage: 0,
       isShowAddIcon: true, //主题标签的添加的iocn 是否显示
+      modifyImgVisible: false,
     };
   },
   computed: {},
@@ -620,7 +623,7 @@ export default {
         Body: this.content,
         PermissionName: this.optionFormregion,
         CustomerTypeIds: this.checkedCitiesTwo,
-        IsAllCustomerType:this.checkAll?1:0,
+        IsAllCustomerType: this.checkAll ? 1 : 0,
         LimitPeopleNum: Number(this.astrict) || 0,
         IndustrialManagementIdS: arr.length ? arr.join(",") : "",
         IndustrialSubjectIdS: this.markValue.length ? this.markValue.join(",") : "",
@@ -988,6 +991,10 @@ export default {
         this.checkAll = false;
       }
     },
+    // 点击修改图片的弹框
+    modifyImgHandler() {
+      this.modifyImgVisible =true;
+    },
   },
 };
 </script>

+ 83 - 0
src/views/rai_manage/activityManage/components/addComopnents/modifyImgDlg.vue

@@ -0,0 +1,83 @@
+<template>
+  <div class="container">
+    <!-- 选择图片的弹框 -->
+    <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>
+      </div>
+      <el-col :span="24" class="toolbar">
+        <m-page :total="total" :page_no="page_no" :pageSize="10" @handleCurrentChange="handleCurrentChangeSelectImg" />
+      </el-col>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+import { raiInterface } from "@/api/api.js";
+
+export default {
+  name: "",
+  components: {},
+  props: {
+    modifyImgVisible: {
+      type: Boolean,
+      default: false,
+    },
+  },
+  data() {
+    return {
+      imgListArr: [],
+      total: 0,
+      page_no: 1,
+    };
+  },
+  computed: {},
+  watch: {},
+  created() {},
+  mounted() {
+    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() {},
+  },
+};
+</script>
+<style scoped lang="scss">
+.seleect-img-box {
+  display: flex;
+  flex-wrap: wrap;
+  .content-img {
+    display: flex;
+    align-items: center;
+    justify-content: center;
+    width: 236px;
+    height: 133px;
+    flex-shrink: 0;
+    margin: 0 50px 50px 0;
+    border: 1px solid #dcdfe6;
+    cursor: pointer;
+    .item-img {
+      width: 222px;
+      height: 119px;
+    }
+  }
+}
+</style>

+ 34 - 43
src/views/rai_manage/components/addChoiceness.vue

@@ -50,12 +50,9 @@
             </div>
           </el-form-item>
         </el-form>
-          <!-- 产业/标的 模块 -->
-          <div class="content-module">
-          <draggable
-          v-model="industryList"
-          animation="300"
-          @update="sortChange">
+        <!-- 产业/标的 模块 -->
+        <div class="content-module">
+          <draggable v-model="industryList" animation="300" @update="sortChange">
             <div class="content-industry" v-for="(item, index) in industryList" :key="item.ChartPermissionId">
               <div class="content-name" :class="industryIndex == index ? 'active' : ''" @click="industryBtn(item, index)">{{ item.ChartPermissionName }}</div>
             </div>
@@ -63,15 +60,8 @@
           <div v-for="(item, index) in industryList" :key="item.ChartPermissionId">
             <RichText v-show="industryIndex == index" :ref="'logic' + index" :spareId="'logictest' + index" :isText="contentTextLogic" />
           </div>
-          <draggable
-          :list="industryListItem"
-          animation="300"
-          class="classification"
-          filter=".addIndustrial"
-          :move="onMove"
-          @update="ificationSortChange">
-            <div v-for="(val, num) in industryListItem" :key="val.IndustrialSubjectId" class="industrial" 
-            @click="ificationIndustrialBtn(val, num)" :class="num == ificationIndustrial ? 'pitch' : ''">
+          <draggable :list="industryListItem" animation="300" class="classification" filter=".addIndustrial" :move="onMove" @update="ificationSortChange">
+            <div v-for="(val, num) in industryListItem" :key="val.IndustrialSubjectId" class="industrial" @click="ificationIndustrialBtn(val, num)" :class="num == ificationIndustrial ? 'pitch' : ''">
               <span style="margin-right: 19px">{{ val.IndustrialSubjectName }}</span>
               <span v-if="num == ificationIndustrial">
                 <img src="~@/assets/img/icons/edit1.png" style="width: 12px; height: 12px; marginright: 10px" @click="editText(val, num)" />
@@ -107,6 +97,7 @@
         <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>
         <div class="content-bottom">
           <el-button type="primary" @click="confirm('预览')">预览</el-button>
@@ -137,11 +128,11 @@
 <script>
 import RichText from "./richText.vue";
 import { raiInterface } from "@/api/api.js";
-import draggable from 'vuedraggable';
+import draggable from "vuedraggable";
 
 export default {
   name: "",
-  components: { RichText , draggable},
+  components: { RichText, draggable },
   props: {},
   data() {
     return {
@@ -161,10 +152,10 @@ export default {
       },
       rules: {
         title: [{ required: true, message: "请输入标题", trigger: "blur" }],
-        author: [{ required: true, message: "请输入作者", trigger: "blur" }],
-        time: [{ required: true, message: "请输入时间", trigger: "change" }],
-        explain: [{ required: true, message: "请输入产品说明", trigger: "blur" }],
-        reportLink: [{ required: true, message: "请输入报告链接", trigger: "blur" }],
+        // author: [{ required: true, message: "请输入作者", trigger: "blur" }],
+        // time: [{ required: true, message: "请输入时间", trigger: "change" }],
+        // explain: [{ required: true, message: "请输入产品说明", trigger: "blur" }],
+        // reportLink: [{ required: true, message: "请输入报告链接", trigger: "blur" }],
       },
       industryList: [], //行业
       industryIndex: 0, //
@@ -573,40 +564,40 @@ export default {
     },
   },
   // 拖拽排序更新
-  sortChange({oldIndex,newIndex}){
-    this.industryIndex=this.sortChangeFun(this.industryIndex,oldIndex,newIndex)
+  sortChange({ oldIndex, newIndex }) {
+    this.industryIndex = this.sortChangeFun(this.industryIndex, oldIndex, newIndex);
   },
   //标的拖拽排序更新
-  ificationSortChange({oldIndex,newIndex}){
-    this.ificationIndustrial=this.sortChangeFun(this.ificationIndustrial,oldIndex,newIndex)
+  ificationSortChange({ oldIndex, newIndex }) {
+    this.ificationIndustrial = this.sortChangeFun(this.ificationIndustrial, oldIndex, newIndex);
   },
   // 排序更新后的逻辑
-  sortChangeFun(currentIndex,oldIndex,newIndex){
-    console.log({currentIndex,oldIndex,newIndex});
-    let bigger,smaller
-    if(oldIndex>newIndex){
-      bigger=oldIndex
-      smaller=newIndex
-    }else{
-      bigger=newIndex
-      smaller=oldIndex
+  sortChangeFun(currentIndex, oldIndex, newIndex) {
+    console.log({ currentIndex, oldIndex, newIndex });
+    let bigger, smaller;
+    if (oldIndex > newIndex) {
+      bigger = oldIndex;
+      smaller = newIndex;
+    } else {
+      bigger = newIndex;
+      smaller = oldIndex;
     }
     // 当前算中tab的排序 小于较小的 大于较大的 则不用做变动
-    if(currentIndex < smaller || currentIndex > bigger) return currentIndex
+    if (currentIndex < smaller || currentIndex > bigger) return currentIndex;
     // 移动的是当前选中的
-    if(currentIndex == oldIndex) return newIndex
-    if(oldIndex>newIndex){
+    if (currentIndex == oldIndex) return newIndex;
+    if (oldIndex > newIndex) {
       // 向左移 加加
-      currentIndex++
-    }else if(oldIndex<newIndex){
+      currentIndex++;
+    } else if (oldIndex < newIndex) {
       // 向右移 减减
-      currentIndex--
+      currentIndex--;
     }
-    return currentIndex
+    return currentIndex;
   },
-  onMove(e){
+  onMove(e) {
     // 返回false表示不允许停靠
-    return !!e.relatedContext.element
+    return !!e.relatedContext.element;
   },
 };
 </script>

+ 62 - 0
src/views/rai_manage/reportManage/components/roadshowApplyDlg.vue

@@ -0,0 +1,62 @@
+<template>
+  <div class="container">
+    <!-- 选择图片的弹框 -->
+    <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>
+      </div>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+import { raiInterface } from "@/api/api.js";
+
+export default {
+  name: "",
+  components: {},
+  props: {
+    isRadshowApplyShow: {
+      type: Boolean,
+      default: false,
+    },
+    radshowApplyId: {
+      type: Number,
+      default: 0,
+    },
+  },
+  data() {
+    return {
+      tableData: [],
+    };
+  },
+  computed: {},
+  watch: {
+    isRadshowApplyShow: {
+      handler(newVal) {
+        newVal && this.getTableList();
+      },
+    },
+  },
+  created() {},
+  mounted() {},
+  methods: {
+    // 关闭弹框
+    handleClose() {
+      this.$emit("update:isRadshowApplyShow", false);
+      this.$emit("update:radshowApplyId", 0);
+    },
+    // 获取表格数据
+    async getTableList() {
+      // const res = await raiInterface.
+    },
+  },
+};
+</script>
+<style scoped lang="scss"></style>

+ 12 - 3
src/views/rai_manage/reportManage/reportChoiceness.vue

@@ -38,8 +38,8 @@
           </template>
         </el-table-column>
         <el-table-column prop="Periods" align="center" label="路演申请" width="100">
-          <template slot-scope="scope">
-            <span class="editsty">{{ scope.row.Pv }}</span>
+          <template slot-scope="{ row }">
+            <span class="editsty" @click="roadshowApplyHandler(row)">{{ row.Pv }}</span>
           </template>
         </el-table-column>
         <el-table-column key="VisibleRange" width="156" label="可见范围" align="center">
@@ -66,6 +66,7 @@
       </el-col>
     </el-card>
     <CompanyDetail :isCompanyDetailShow.sync="isCompanyDetailShow" :companyDetailId.sync="companyDetailId" />
+    <roadshow-apply-dlg :isRadshowApplyShow.sync="isRadshowApplyShow" :radshowApplyId.sync="radshowApplyId" />
   </div>
 </template>
 
@@ -73,9 +74,10 @@
 import mPage from "@/components/mPage.vue";
 import { raiInterface } from "@/api/api.js";
 import CompanyDetail from "../components/reportComponents/CompanyDetail.vue";
+import RoadshowApplyDlg from "./components/roadshowApplyDlg.vue";
 export default {
   name: "",
-  components: { mPage, CompanyDetail },
+  components: { mPage, CompanyDetail, RoadshowApplyDlg },
   props: {},
   data() {
     return {
@@ -93,6 +95,8 @@ export default {
       tableData: [], //表格
       isCompanyDetailShow: false, //公司点击详情弹框
       companyDetailId: 0,
+      isRadshowApplyShow: false, // 路演申请
+      radshowApplyId: 0, // 路演申请查看的ID
     };
   },
   computed: {
@@ -222,6 +226,11 @@ export default {
         this.getList();
       }
     },
+    // 路演申请的弹框
+    roadshowApplyHandler(item) {
+      this.radshowApplyId = item;
+      this.isRadshowApplyShow = true;
+    },
   },
   /* 页面跳转前记录参数 */
   beforeRouteLeave(to, form, next) {