|
@@ -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>
|