|
@@ -11,7 +11,7 @@
|
|
|
</el-select>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
- <el-select v-if="updateMode == '继承往期'" v-model="inheritNum" placeholder="选择继承第几期" clearable @clear="inheritNumClear" @change="getDetail">
|
|
|
+ <el-select v-if="updateMode == '继承往期'" v-model="inheritNum" placeholder="选择继承第几期" clearable @change="getDetail">
|
|
|
<el-option v-for="item in updateModeList" :key="item.Periods" :label="item.InheritPeriodsName" :value="item.Periods"></el-option>
|
|
|
</el-select>
|
|
|
</el-col>
|
|
@@ -42,7 +42,7 @@
|
|
|
</el-form-item>
|
|
|
<!-- 变更说明 -->
|
|
|
<!-- 富文本 -->
|
|
|
- <rich-text ref="oneRich" :spareId="contentValue" :isText="contentText" />
|
|
|
+ <rich-text ref="oneRich" v-model="marketStrategy" :spareId="contentValue" :isText="contentText" />
|
|
|
<el-form-item prop="reportLink">
|
|
|
<div style="display: flex; align-items: center; margin-top: 10px">
|
|
|
<span style="flex-shrink: 0">详细报告链接:</span>
|
|
@@ -58,47 +58,54 @@
|
|
|
</div>
|
|
|
</draggable>
|
|
|
<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' : ''">
|
|
|
- <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)" />
|
|
|
- <i class="el-icon-close" @click="deleteClassify(val, num)"></i>
|
|
|
- </span>
|
|
|
- </div>
|
|
|
- <div class="addIndustrial" @click="addMulti">
|
|
|
- <i class="el-icon-plus"></i>
|
|
|
- <span>添加标的</span>
|
|
|
- </div>
|
|
|
- </draggable>
|
|
|
- <template v-for="(val, num) in industryListItem">
|
|
|
- <div class="industrial-is-new" :key="val.IndustrialSubjectId" v-if="num == ificationIndustrial">
|
|
|
- <el-checkbox v-model="val.IsNew" :true-label="1" :false-label="0">显示new标签</el-checkbox>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <div v-if="industryListItem.length" style="margin-bottom: 20px; display: flex; align-items: center">
|
|
|
- <div style="display: flex; align-items: center" v-for="(val, num) in industryListItem[ificationIndustrial].CompanyLabel" :key="num">
|
|
|
- <el-input style="width: 260px; margin-right: 15px" v-model="val.name" placeholder="请输入公司标签"></el-input>
|
|
|
- <img class="delete-item-icon" v-if="num > 0" @click="deleteLabelItem(val, num)" src="~@/assets/img/icons/delete-Item.png" alt="" />
|
|
|
+ <div v-show="industryIndex == index">
|
|
|
+ <RichText v-model="item.BodyChartSummary" :ref="'logic' + index" :spareId="'logictest' + index" :isText="contentTextLogic" />
|
|
|
+ <draggable :list="item.List" animation="300" class="classification" filter=".addIndustrial" :move="onMove" @update="ificationSortChange">
|
|
|
+ <div v-for="(val, num) in item.List" :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)" />
|
|
|
+ <i class="el-icon-close" @click="deleteClassify(val, num)"></i>
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ <div class="addIndustrial" @click="addMulti" v-if="industryIndex == index">
|
|
|
+ <i class="el-icon-plus"></i>
|
|
|
+ <span>添加标的</span>
|
|
|
+ </div>
|
|
|
+ </draggable>
|
|
|
+ <template v-for="(val, num) in item.List">
|
|
|
+ <div :key="val.IndustrialSubjectId" v-show="industryIndex == index">
|
|
|
+ <div class="industrial-is-new" v-show="num == ificationIndustrial">
|
|
|
+ <el-checkbox v-model="val.IsNew" :true-label="1" :false-label="0">显示new标签</el-checkbox>
|
|
|
+ </div>
|
|
|
+ <div style="margin-bottom: 20px; display: flex; align-items: center" v-show="num == ificationIndustrial">
|
|
|
+ <div style="display: flex; align-items: center" v-for="(son, num) in val.CompanyLabel" :key="num">
|
|
|
+ <el-input style="width: 260px; margin-right: 15px" v-model="son.name" placeholder="请输入公司标签"></el-input>
|
|
|
+ <img class="delete-item-icon" v-if="num > 0" @click="deleteLabelItem(val, num)" src="~@/assets/img/icons/delete-Item.png" alt="" />
|
|
|
+ </div>
|
|
|
+ <el-tooltip class="item" effect="dark" content="添加标签" placement="top-start">
|
|
|
+ <img @click="addLabelClick(val)" class="editsty" src="~@/assets/img/set_m/add_ico.png" />
|
|
|
+ </el-tooltip>
|
|
|
+ </div>
|
|
|
+ <rich-text :ref="'twoRich' + num" v-model="val.Body" :spareId="contentValueTwo" :isText="contentTextTwo" v-show="num == ificationIndustrial" />
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
</div>
|
|
|
- <el-tooltip class="item" effect="dark" content="添加标签" placement="top-start">
|
|
|
- <img @click="addLabelClick" class="editsty" src="~@/assets/img/set_m/add_ico.png" />
|
|
|
- </el-tooltip>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- <rich-text ref="twoRich" :spareId="contentValueTwo" :isText="contentTextTwo" />
|
|
|
- <div class="content-resource">
|
|
|
- <span class="resource">产业资源包:</span>
|
|
|
- <span class="show">{{ industrialSubjectName }}</span>
|
|
|
- </div>
|
|
|
- <div class="content-resource">
|
|
|
- <span class="resource">综述报告:</span>
|
|
|
- <span class="show">{{ overviewList.Title }}</span>
|
|
|
- <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 class="content-resource">
|
|
|
+ <span class="resource">产业资源包:</span>
|
|
|
+ <span class="show">{{ industrialSubjectName }}</span>
|
|
|
+ </div>
|
|
|
+ <div class="content-resource">
|
|
|
+ <span class="resource">综述报告:</span>
|
|
|
+ <span class="show">{{ overviewList.Title }}</span>
|
|
|
+ <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>
|
|
|
<div class="content-bottom">
|
|
@@ -131,10 +138,11 @@
|
|
|
import RichText from "./richText.vue";
|
|
|
import { raiInterface } from "@/api/api.js";
|
|
|
import draggable from "vuedraggable";
|
|
|
+import TemplateMessage from "./apply/templateMessage.vue";
|
|
|
|
|
|
export default {
|
|
|
name: "",
|
|
|
- components: { RichText, draggable },
|
|
|
+ components: { RichText, draggable, TemplateMessage },
|
|
|
props: {},
|
|
|
data() {
|
|
|
return {
|
|
@@ -154,10 +162,6 @@ 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" }],
|
|
|
},
|
|
|
industryList: [], //行业
|
|
|
industryIndex: 0, //
|
|
@@ -168,61 +172,76 @@ export default {
|
|
|
companyList: [],
|
|
|
timeout: null,
|
|
|
isShowStatus: true,
|
|
|
- industryListItem: [],
|
|
|
industrialSubjectName: "",
|
|
|
chartPermissionId: "", //分类id
|
|
|
subjectList: [],
|
|
|
updateModeList: [], //期数的数组
|
|
|
editNum: "",
|
|
|
overviewList: {},
|
|
|
+ marketStrategy: "",
|
|
|
+ timeInterval: null, // 定时器
|
|
|
};
|
|
|
},
|
|
|
computed: {},
|
|
|
- watch: {
|
|
|
- industryListItem: {
|
|
|
- handler(nval) {
|
|
|
- if (nval.length > 0) {
|
|
|
- this.industrialSubjectName = this.industryListItem[this.ificationIndustrial].IndustrialManagementName || "";
|
|
|
- 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: "", IsShowOverviewArticle: 0 };
|
|
|
- }
|
|
|
- },
|
|
|
- deep: true,
|
|
|
- },
|
|
|
- },
|
|
|
- created() {},
|
|
|
mounted() {
|
|
|
if (this.$route.query.id) {
|
|
|
this.isShowStatus = this.$route.query.status == 0;
|
|
|
this.getDetail();
|
|
|
} else {
|
|
|
this.getNoTacticsfirst();
|
|
|
+ this.dataInit();
|
|
|
}
|
|
|
this.getListPeriods();
|
|
|
},
|
|
|
methods: {
|
|
|
+ // 报告的缓存处理数据
|
|
|
+ dataInit() {
|
|
|
+ if (sessionStorage.getItem("addChoicenessQY")) {
|
|
|
+ let data = JSON.parse(sessionStorage.getItem("addChoicenessQY"));
|
|
|
+ setTimeout(async () => {
|
|
|
+ this.industryList = data.industryList;
|
|
|
+ this.industryIndex = data.industryIndex;
|
|
|
+ this.ificationIndustrial = data.ificationIndustrial;
|
|
|
+ this.updateMode = data.updateMode;
|
|
|
+ this.inheritNum = data.inheritNum;
|
|
|
+ this.companyList = data.companyList;
|
|
|
+ this.industrialSubjectName = data.industrialSubjectName;
|
|
|
+ this.chartPermissionId = data.chartPermissionId;
|
|
|
+ this.subjectList = data.subjectList;
|
|
|
+ this.updateModeList = data.updateModeList;
|
|
|
+ this.editNum = data.editNum;
|
|
|
+ this.overviewList = data.overviewList;
|
|
|
+ this.ruleForm = data.ruleForm;
|
|
|
+ this.marketStrategy = data.MarketStrategy;
|
|
|
+ }, 200);
|
|
|
+ }
|
|
|
+ this.timeInterval = setInterval(() => {
|
|
|
+ let params = {
|
|
|
+ industryList: this.industryList,
|
|
|
+ industryIndex: this.industryIndex,
|
|
|
+ ificationIndustrial: this.ificationIndustrial,
|
|
|
+ updateMode: this.updateMode,
|
|
|
+ inheritNum: this.inheritNum,
|
|
|
+ companyList: this.companyList,
|
|
|
+ industrialSubjectName: this.industrialSubjectName,
|
|
|
+ chartPermissionId: this.chartPermissionId,
|
|
|
+ subjectList: this.subjectList,
|
|
|
+ updateModeList: this.updateModeList,
|
|
|
+ editNum: this.editNum,
|
|
|
+ overviewList: this.overviewList,
|
|
|
+ ruleForm: this.ruleForm,
|
|
|
+ MarketStrategy: this.marketStrategy,
|
|
|
+ };
|
|
|
+ sessionStorage.setItem("addChoicenessQY", JSON.stringify(params));
|
|
|
+ }, 120000);
|
|
|
+ },
|
|
|
updateModeChange() {
|
|
|
if (this.updateMode == "重新编辑") {
|
|
|
this.init();
|
|
|
this.industryList = [];
|
|
|
- this.industryListItem = [];
|
|
|
this.getNoTacticsfirst();
|
|
|
}
|
|
|
},
|
|
|
- inheritNumClear() {
|
|
|
- if (this.inheritNum == "") {
|
|
|
- // this.init();
|
|
|
- // this.industryList=[]
|
|
|
- // this.industryListItem=[]
|
|
|
- // this.getNoTacticsfirst();
|
|
|
- }
|
|
|
- },
|
|
|
//获取编辑详情
|
|
|
async getDetail() {
|
|
|
const res = await raiInterface.reportSelectionDetail({ ArticleId: this.$route.query.id || "", Periods: this.inheritNum || "" });
|
|
@@ -240,13 +259,12 @@ export default {
|
|
|
explain: res.Data.ProductDescription, //说明
|
|
|
reportLink: res.Data.ReportLink, //变更
|
|
|
};
|
|
|
- this.$refs["oneRich"].value = res.Data.MarketStrategy;
|
|
|
+ this.marketStrategy = res.Data.MarketStrategy;
|
|
|
this.inheritNum = this.inheritNum ? this.inheritNum : res.Data.InheritPeriods;
|
|
|
this.industryList = res.Data.List;
|
|
|
setTimeout(() => {
|
|
|
res.Data.List.forEach((item, index) => {
|
|
|
- this.$refs["logic" + index][0].value = item.BodyChartSummary && item.BodyChartSummary;
|
|
|
- item.List.forEach((key) => {
|
|
|
+ item.List.forEach((key, i) => {
|
|
|
key.CompanyLabel = key.CompanyLabel
|
|
|
? key.CompanyLabel.map((val, i) => {
|
|
|
let obj = {
|
|
@@ -265,8 +283,6 @@ export default {
|
|
|
});
|
|
|
}, 300);
|
|
|
this.chartPermissionId = res.Data.List[0].ChartPermissionId;
|
|
|
- this.industryListItem = res.Data.List[0].List || [];
|
|
|
- this.$refs.twoRich.value = res.Data.List[0].List ? res.Data.List[0].List[0].Body : "";
|
|
|
this.industrialSubjectName = res.Data.List[0].List ? res.Data.List[0].List[0].IndustrialManagementName : "";
|
|
|
this.overviewList = {
|
|
|
ArticleId: res.Data.List[0].List && res.Data.List[0].List[0].OverviewArticleId,
|
|
@@ -281,50 +297,20 @@ export default {
|
|
|
if (res.Ret === 200) {
|
|
|
this.industryList = res.Data.List;
|
|
|
this.chartPermissionId = res.Data.List[0].ChartPermissionId;
|
|
|
- this.industryListItem = res.Data.List[0].List || [];
|
|
|
}
|
|
|
},
|
|
|
//点击产业的事件
|
|
|
industryBtn(item, index) {
|
|
|
- if (this.industryListItem.length > 0) {
|
|
|
- this.industryListItem[this.ificationIndustrial].Body = this.$refs["twoRich"].value;
|
|
|
- }
|
|
|
- this.industryList[this.industryIndex].BodyChartSummary = this.$refs["logic" + this.industryIndex][0].value;
|
|
|
if (index !== this.industryIndex) {
|
|
|
this.industryIndex = index;
|
|
|
- this.industryListItem = item.List || [];
|
|
|
- this.industryListItem.forEach((item) => {
|
|
|
- if (item.CompanyLabel && typeof item.CompanyLabel[0] === "string") {
|
|
|
- item.CompanyLabel = item.CompanyLabel
|
|
|
- ? item.CompanyLabel.map((key, index) => {
|
|
|
- let obj = {
|
|
|
- name: key,
|
|
|
- value: index + 1,
|
|
|
- };
|
|
|
- return obj;
|
|
|
- })
|
|
|
- : [
|
|
|
- {
|
|
|
- name: "",
|
|
|
- value: 1,
|
|
|
- },
|
|
|
- ];
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- this.$refs.twoRich.value = item.List[0] ? item.List[0].Body : "";
|
|
|
this.chartPermissionId = item.ChartPermissionId;
|
|
|
this.ificationIndustrial = 0;
|
|
|
}
|
|
|
},
|
|
|
//标的的点击事件 处理
|
|
|
ificationIndustrialBtn(item, index) {
|
|
|
- if (this.industryListItem.length > 0) {
|
|
|
- this.industryListItem[this.ificationIndustrial].Body = this.$refs["twoRich"].value;
|
|
|
- }
|
|
|
if (index !== this.ificationIndustrial) {
|
|
|
this.ificationIndustrial = index;
|
|
|
- this.$refs.twoRich.value = item.Body || "";
|
|
|
this.industrialSubjectName = item.IndustrialManagementName || "";
|
|
|
this.overviewList = {
|
|
|
ArticleId: item.OverviewArticleId,
|
|
@@ -351,7 +337,6 @@ export default {
|
|
|
.then(() => {
|
|
|
this.industryList[this.industryIndex].List.splice(index, 1);
|
|
|
this.ificationIndustrial = 0;
|
|
|
- this.$refs["twoRich"].value = this.industryList[this.industryIndex].List.length > 0 ? this.industryList[this.industryIndex].List[0].Body : "";
|
|
|
this.$message({
|
|
|
type: "success",
|
|
|
message: "删除成功!",
|
|
@@ -440,8 +425,8 @@ export default {
|
|
|
IndustrialManagementName: arr.IndustryName,
|
|
|
IndustrialSubjectId: arr.IndustrialSubjectId + "",
|
|
|
IndustrialSubjectName: arr.SubjectName,
|
|
|
- CompanyLabel: item.List[this.editNum].CompanyLabel && item.List[this.editNum].CompanyLabel.length>0?
|
|
|
- item.List[this.editNum].CompanyLabel : [{ name: "", value: item.List.length + 1 }],
|
|
|
+ CompanyLabel:
|
|
|
+ item.List[this.editNum].CompanyLabel && item.List[this.editNum].CompanyLabel.length > 0 ? item.List[this.editNum].CompanyLabel : [{ name: "", value: item.List.length + 1 }],
|
|
|
OverviewArticleId: overviewList.ArticleId,
|
|
|
OverviewArticleTitle: overviewList.Title,
|
|
|
IsShowOverviewArticle: overviewList.IsShowOverviewArticle,
|
|
@@ -470,15 +455,9 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
//保存 发布
|
|
|
- confirm(type) {
|
|
|
+ confirm: _.debounce(function (type) {
|
|
|
this.$refs.ruleForm.validate(async (val) => {
|
|
|
if (val) {
|
|
|
- if (this.industryListItem.length > 0) {
|
|
|
- this.industryListItem[this.ificationIndustrial].Body = this.$refs["twoRich"].value;
|
|
|
- } else if (this.$refs["twoRich"].value) {
|
|
|
- this.$message.error("文本内容无对应标的,请选择标的!");
|
|
|
- return;
|
|
|
- }
|
|
|
let isText = [];
|
|
|
this.industryList.forEach((item) => {
|
|
|
item.List.forEach((key) => {
|
|
@@ -489,7 +468,6 @@ export default {
|
|
|
return this.$message.error("请输入公司标签");
|
|
|
}
|
|
|
let params = this.dataHandle(type);
|
|
|
- // console.log(params);
|
|
|
if (type == "预览") {
|
|
|
sessionStorage.setItem("choicenessPre", JSON.stringify(params));
|
|
|
let { href } = this.$router.resolve({ name: "预览报告精选" });
|
|
@@ -497,6 +475,8 @@ export default {
|
|
|
} else {
|
|
|
const res = await raiInterface.industrialSubjectPreserveAndPublish(params);
|
|
|
if (res.Ret === 200) {
|
|
|
+ clearInterval(this.timeInterval);
|
|
|
+ sessionStorage.removeItem("addChoicenessQY");
|
|
|
this.$message.success("操作成功!");
|
|
|
this.init();
|
|
|
this.$router.back();
|
|
@@ -504,11 +484,13 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
});
|
|
|
- },
|
|
|
+ }, 500),
|
|
|
//取消
|
|
|
cancel() {
|
|
|
- this.$router.back();
|
|
|
+ clearInterval(this.timeInterval);
|
|
|
+ sessionStorage.removeItem("addChoicenessQY");
|
|
|
this.$refs["ruleForm"].resetFields();
|
|
|
+ this.$router.back();
|
|
|
},
|
|
|
async getListPeriods() {
|
|
|
const res = await raiInterface.industrialSubjectListPeriods();
|
|
@@ -525,12 +507,11 @@ export default {
|
|
|
reportLink: "", //变更
|
|
|
};
|
|
|
this.$refs["ruleForm"].resetFields();
|
|
|
- this.$refs["oneRich"].value = "";
|
|
|
- this.$refs["twoRich"].value = "";
|
|
|
+ this.marketStrategy = "";
|
|
|
},
|
|
|
// 标的下添加公司标签
|
|
|
- addLabelClick() {
|
|
|
- this.industryListItem[this.ificationIndustrial].CompanyLabel.push({ name: "", value: this.industryListItem.length + 1 });
|
|
|
+ addLabelClick(item) {
|
|
|
+ item.CompanyLabel.push({ name: "", value: item.CompanyLabel.length + 1 });
|
|
|
},
|
|
|
// 处理保存的数据
|
|
|
dataHandle(type) {
|
|
@@ -549,7 +530,7 @@ export default {
|
|
|
ListSubject: [...item.List],
|
|
|
});
|
|
|
});
|
|
|
- if (this.$refs["oneRich"].value == "") {
|
|
|
+ if (this.marketStrategy == "") {
|
|
|
this.$message.error("市场策略核心逻辑汇总不能为空");
|
|
|
}
|
|
|
let params = {
|
|
@@ -558,7 +539,7 @@ export default {
|
|
|
Department: this.ruleForm.author,
|
|
|
Title: this.ruleForm.title,
|
|
|
DoType: type == "发布" ? 1 : 0,
|
|
|
- MarketStrategy: this.$refs["oneRich"].value,
|
|
|
+ MarketStrategy: this.marketStrategy,
|
|
|
InheritPeriods: this.inheritNum,
|
|
|
List: arr,
|
|
|
ProductDescription: this.ruleForm.explain,
|
|
@@ -569,13 +550,15 @@ export default {
|
|
|
return params;
|
|
|
},
|
|
|
deleteLabelItem(item, index) {
|
|
|
- this.industryListItem[this.ificationIndustrial].CompanyLabel.splice(index, 1);
|
|
|
+ item.CompanyLabel.splice(index, 1);
|
|
|
},
|
|
|
switchChangeHandler(e) {
|
|
|
- this.industryListItem.forEach((item) => {
|
|
|
- if (item.OverviewArticleId === this.overviewList.ArticleId) {
|
|
|
- item.IsShowOverviewArticle = e;
|
|
|
- }
|
|
|
+ this.industryList.forEach((_) => {
|
|
|
+ _.List.forEach((item) => {
|
|
|
+ if (item.OverviewArticleId === this.overviewList.ArticleId) {
|
|
|
+ item.IsShowOverviewArticle = e;
|
|
|
+ }
|
|
|
+ });
|
|
|
});
|
|
|
},
|
|
|
// 拖拽排序更新
|
|
@@ -588,7 +571,6 @@ export default {
|
|
|
},
|
|
|
// 排序更新后的逻辑
|
|
|
sortChangeFun(currentIndex, oldIndex, newIndex) {
|
|
|
- console.log({ currentIndex, oldIndex, newIndex });
|
|
|
let bigger, smaller;
|
|
|
if (oldIndex > newIndex) {
|
|
|
bigger = oldIndex;
|
|
@@ -614,7 +596,12 @@ export default {
|
|
|
// 返回false表示不允许停靠
|
|
|
return !!e.relatedContext.element;
|
|
|
},
|
|
|
- }
|
|
|
+ },
|
|
|
+ // 路由离开了 清除定时器
|
|
|
+ beforeRouteLeave(to, from, next) {
|
|
|
+ clearInterval(this.timeInterval);
|
|
|
+ next();
|
|
|
+ },
|
|
|
};
|
|
|
</script>
|
|
|
<style lang="scss">
|