|
@@ -15,7 +15,7 @@
|
|
|
<div>
|
|
|
<el-checkbox v-model="item.isJumpNot">备选项</el-checkbox>
|
|
|
<template v-if="item.isJumpNot">
|
|
|
- <el-input v-model="item.reportLink" placeholder="请输入报告链接"></el-input>
|
|
|
+ <el-input style="margin: 20px 0" v-model="item.reportLink" placeholder="请输入报告链接"></el-input>
|
|
|
<el-input v-model="item.headTitle" placeholder="请输入首行标题"></el-input>
|
|
|
</template>
|
|
|
</div>
|
|
@@ -176,6 +176,9 @@ export default {
|
|
|
content: item.content,
|
|
|
industry: { ChartPermissionId: item.chartPermissionId, PermissionName: item.chartPermissionName },
|
|
|
property: { ChartPermissionId: item.industryId, PermissionName: item.industryName },
|
|
|
+ reportLink: item.reportLink,
|
|
|
+ headTitle: item.title,
|
|
|
+ isJumpNot: item.reportLink ? true : false,
|
|
|
};
|
|
|
let subject = [];
|
|
|
let industrialSubjectList = item.industrialSubjectList || [];
|
|
@@ -264,6 +267,8 @@ export default {
|
|
|
IndustryId: item.property.ChartPermissionId,
|
|
|
IndustryName: item.property.PermissionName,
|
|
|
IndustrialSubjectIds: item.subject.join(),
|
|
|
+ ReportLink: item.reportLink,
|
|
|
+ Title: item.headTitle,
|
|
|
};
|
|
|
list.push(temp);
|
|
|
});
|
|
@@ -384,6 +389,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
.fr-wrapper {
|
|
|
+ margin-top: 20px;
|
|
|
border-top: 1px solid #cccccc !important;
|
|
|
border-bottom: 1px solid #cccccc !important;
|
|
|
}
|