addChoiceness.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769
  1. <script setup>
  2. import { ref, onMounted } from "vue";
  3. import RichText from "./richText.vue";
  4. import { raiInterface } from "@/api/api.js";
  5. import draggable from "vuedraggable";
  6. import _ from "lodash";
  7. import { onBeforeRouteLeave, useRouter, useRoute } from "vue-router";
  8. import { ElMessageBox, ElMessage } from "element-plus";
  9. import { Close, Plus } from "@element-plus/icons-vue";
  10. const route = useRoute();
  11. const router = useRouter();
  12. const contentValue = ref("one");
  13. const contentText = ref("市场策略核心逻辑汇总");
  14. const contentValueTwo = ref("two");
  15. const contentTextTwo = ref("公司核心逻辑汇总");
  16. const contentTextLogic = ref("行业核心逻辑汇总");
  17. const updateMode = ref(""); //更新方式
  18. const inheritNum = ref(""); //继承第几
  19. const ruleForm = ref({
  20. title: "", //标题
  21. author: "", //作者
  22. time: "", //时间
  23. explain: "", //说明
  24. reportLink: "", //变更
  25. });
  26. const rules = ref({
  27. title: [{ required: true, message: "请输入标题", trigger: "blur" }],
  28. });
  29. const ruleFormRef = ref(null);
  30. const twoRich = ref(null);
  31. const industryList = ref([]); //行业
  32. const industryIndex = ref(0); //
  33. const ificationIndustrial = ref(0);
  34. const addDialogVisible = ref(false);
  35. const dialogText = ref("");
  36. const stateValue = ref("");
  37. const companyList = ref([]);
  38. const timeout = ref(null);
  39. const isShowStatus = ref(true);
  40. const industrialSubjectName = ref("");
  41. const chartPermissionId = ref(""); //分类id
  42. const subjectList = ref([]);
  43. const updateModeList = ref([]); //期数的数组
  44. const editNum = ref("");
  45. const overviewList = ref({});
  46. const marketStrategy = ref("");
  47. const timeInterval = ref(null); // 定时器
  48. // 报告的缓存处理数据
  49. function dataInit() {
  50. if (sessionStorage.getItem("addChoicenessQY")) {
  51. let data = JSON.parse(sessionStorage.getItem("addChoicenessQY"));
  52. setTimeout(() => {
  53. industryList.value = data.industryList;
  54. industryIndex.value = data.industryIndex;
  55. ificationIndustrial.value = data.ificationIndustrial;
  56. updateMode.value = data.updateMode;
  57. inheritNum.value = data.inheritNum;
  58. companyList.value = data.companyList;
  59. industrialSubjectName.value = data.industrialSubjectName;
  60. chartPermissionId.value = data.chartPermissionId;
  61. subjectList.value = data.subjectList;
  62. updateModeList.value = data.updateModeList;
  63. editNum.value = data.editNum;
  64. overviewList.value = data.overviewList;
  65. ruleForm.value = data.ruleForm;
  66. marketStrategy.value = data.MarketStrategy;
  67. }, 200);
  68. }
  69. timeInterval.value = setInterval(() => {
  70. let params = {
  71. industryList: industryList.value,
  72. industryIndex: industryIndex.value,
  73. ificationIndustrial: ificationIndustrial.value,
  74. updateMode: updateMode.value,
  75. inheritNum: inheritNum.value,
  76. companyList: companyList.value,
  77. industrialSubjectName: industrialSubjectName.value,
  78. chartPermissionId: chartPermissionId.value,
  79. subjectList: subjectList.value,
  80. updateModeList: updateModeList.value,
  81. editNum: editNum.value,
  82. overviewList: overviewList.value,
  83. ruleForm: ruleForm.value,
  84. MarketStrategy: marketStrategy.value,
  85. };
  86. sessionStorage.setItem("addChoicenessQY", JSON.stringify(params));
  87. }, 120000);
  88. }
  89. function updateModeChange() {
  90. if (updateMode.value == "重新编辑") {
  91. init();
  92. industryList.value = [];
  93. getNoTacticsfirst();
  94. }
  95. }
  96. //获取编辑详情
  97. async function getDetail() {
  98. const res = await raiInterface.reportSelectionDetail({ ArticleId: route.query.id || "", Periods: inheritNum.value || "" });
  99. if (res.Ret === 200) {
  100. res.Data.List.forEach((item) => {
  101. if (!item.List || !item.List.length > 0) {
  102. item.List = [];
  103. }
  104. });
  105. updateMode.value = inheritNum.value ? updateMode.value : res.Data.AddType == "1" ? "重新编辑" : "继承往期";
  106. ruleForm.value = {
  107. title: res.Data.Title, //标题
  108. author: res.Data.Department, //作者
  109. time: res.Data.PublishDate, //时间
  110. explain: res.Data.ProductDescription, //说明
  111. reportLink: res.Data.ReportLink, //变更
  112. };
  113. marketStrategy.value = res.Data.MarketStrategy;
  114. inheritNum.value = inheritNum.value ? inheritNum.value : res.Data.InheritPeriods;
  115. industryList.value = res.Data.List;
  116. setTimeout(() => {
  117. res.Data.List.forEach((item, index) => {
  118. item.List.forEach((key, i) => {
  119. key.CompanyLabel = key.CompanyLabel
  120. ? key.CompanyLabel.map((val, i) => {
  121. let obj = {
  122. name: val,
  123. value: i + 1,
  124. };
  125. return obj;
  126. })
  127. : [
  128. {
  129. name: "",
  130. value: 1,
  131. },
  132. ];
  133. });
  134. });
  135. }, 300);
  136. chartPermissionId.value = res.Data.List[0].ChartPermissionId;
  137. industrialSubjectName.value = res.Data.List[0].List ? res.Data.List[0].List[0].IndustrialManagementName : "";
  138. overviewList.value = {
  139. ArticleId: res.Data.List[0].List && res.Data.List[0].List[0].OverviewArticleId,
  140. Title: res.Data.List[0].List && res.Data.List[0].List[0].OverviewArticleTitle,
  141. IsShowOverviewArticle: res.Data.List[0].List && res.Data.List[0].List[0].IsShowOverviewArticle,
  142. };
  143. }
  144. }
  145. //获取模版
  146. async function getNoTacticsfirst() {
  147. const res = await raiInterface.reportSereportSelectiondDetailTemplate();
  148. if (res.Ret === 200) {
  149. industryList.value = res.Data.List;
  150. chartPermissionId.value = res.Data.List[0].ChartPermissionId;
  151. }
  152. }
  153. //点击产业的事件
  154. function industryBtn(item, index) {
  155. console.log(item);
  156. if (index !== industryIndex.value) {
  157. industryIndex.value = index;
  158. chartPermissionId.value = item.ChartPermissionId;
  159. ificationIndustrial.value = 0;
  160. }
  161. }
  162. //标的的点击事件 处理
  163. function ificationIndustrialBtn(item, index) {
  164. if (index !== ificationIndustrial.value) {
  165. ificationIndustrial.value = index;
  166. industrialSubjectName.value = item.IndustrialManagementName || "";
  167. overviewList.value = {
  168. ArticleId: item.OverviewArticleId,
  169. Title: item.OverviewArticleTitle,
  170. IsShowOverviewArticle: item.IsShowOverviewArticle,
  171. };
  172. }
  173. }
  174. //编辑标的
  175. function editText(item, index) {
  176. dialogText.value = "编辑";
  177. chartPermissionId.value = item.ChartPermissionId;
  178. stateValue.value = item.IndustrialSubjectName;
  179. addDialogVisible.value = true;
  180. editNum.value = index;
  181. }
  182. //删除标的
  183. function deleteClassify(item, index) {
  184. ElMessageBox.confirm("确定要删除该标的吗?", "提示", {
  185. confirmButtonText: "确定",
  186. cancelButtonText: "取消",
  187. type: "warning",
  188. })
  189. .then(() => {
  190. industryList[industryIndex.value].value.List.splice(index, 1);
  191. ificationIndustrial.value = 0;
  192. ElMessage({
  193. type: "success",
  194. message: "删除成功!",
  195. });
  196. })
  197. .catch(() => {
  198. ElMessage({
  199. type: "info",
  200. message: "已取消删除",
  201. });
  202. });
  203. }
  204. //添加产业
  205. function addMulti() {
  206. dialogText.value = "添加标的";
  207. addDialogVisible.value = true;
  208. }
  209. //弹框的取消事件
  210. function handleClose() {
  211. stateValue.value = "";
  212. addDialogVisible.value = false;
  213. }
  214. //弹框的确认事件
  215. async function confirmPerson() {
  216. if (stateValue.value) {
  217. const arr = subjectList.value.find((item) => item.SubjectName === stateValue.value);
  218. if (!arr) {
  219. ElMessage.error("输入正确的标的");
  220. return;
  221. }
  222. let overviewList = {};
  223. const res = await raiInterface.getReportSelectionArticle({
  224. IndustrialSubjectId: arr.IndustrialSubjectId,
  225. });
  226. if (res.Ret === 200) {
  227. overviewList = res.Data;
  228. }
  229. industryList.value.forEach((item) => {
  230. if (item.ChartPermissionId == chartPermissionId.value) {
  231. if (item.List.length > 0) {
  232. var isNext = item.List.some((item) => item.IndustrialSubjectName == arr.SubjectName);
  233. }
  234. if (isNext) return ElMessage.error("标的重复!");
  235. item.List.push({
  236. Body: "",
  237. ChartPermissionId: chartPermissionId.value,
  238. IndustrialManagementId: arr.IndustrialManagementId + "",
  239. IndustrialManagementName: arr.IndustryName,
  240. IndustrialSubjectId: arr.IndustrialSubjectId + "",
  241. IndustrialSubjectName: arr.SubjectName,
  242. CompanyLabel: [{ name: "", value: item.List.length + 1 }],
  243. OverviewArticleId: overviewList.ArticleId,
  244. OverviewArticleTitle: overviewList.Title,
  245. IsShowOverviewArticle: overviewList.IsShowOverviewArticle,
  246. });
  247. }
  248. });
  249. }
  250. stateValue.value = "";
  251. addDialogVisible.value = false;
  252. }
  253. async function editconfirmPerson() {
  254. if (stateValue.value) {
  255. const arr = subjectList.value.find((item) => item.SubjectName === stateValue.value);
  256. if (!arr) {
  257. ElMessage.error("输入正确的标的");
  258. return;
  259. }
  260. let overviewList = {};
  261. const res = await raiInterface.getReportSelectionArticle({
  262. IndustrialSubjectId: arr.IndustrialSubjectId,
  263. });
  264. if (res.Ret === 200) {
  265. overviewList = res.Data;
  266. }
  267. industryList.value.forEach((item) => {
  268. if (item.ChartPermissionId == chartPermissionId.value) {
  269. if (item.List.length > 0) {
  270. var isNext = item.List.some((item) => item.IndustrialSubjectName == arr.SubjectName);
  271. }
  272. if (isNext) return ElMessage.error("标的重复!");
  273. const obj = {
  274. Body: twoRich.value || "",
  275. ChartPermissionId: chartPermissionId.value,
  276. IndustrialManagementId: arr.IndustrialManagementId + "",
  277. IndustrialManagementName: arr.IndustryName,
  278. IndustrialSubjectId: arr.IndustrialSubjectId + "",
  279. IndustrialSubjectName: arr.SubjectName,
  280. CompanyLabel: item.List[editNum.value].CompanyLabel && item.List[editNum.value].CompanyLabel.length > 0 ? item.List[editNum.value].CompanyLabel : [{ name: "", value: item.List.length + 1 }],
  281. OverviewArticleId: overviewList.ArticleId,
  282. OverviewArticleTitle: overviewList.Title,
  283. IsShowOverviewArticle: overviewList.IsShowOverviewArticle,
  284. };
  285. item.List.splice(editNum.value, 1, obj);
  286. }
  287. });
  288. }
  289. stateValue.value = "";
  290. addDialogVisible.value = false;
  291. }
  292. // 申请内容搜索
  293. async function handleSearchResult(data, cb) {
  294. if (data) {
  295. cb([]);
  296. let res = await raiInterface.industrialSubjectSearch({ KeyWord: data, ChartPermissionId: chartPermissionId.value });
  297. if (res.Ret === 200) {
  298. if (res.Data.List && res.Data.List.length > 0) {
  299. let arr = res.Data.List.map((item) => {
  300. return { value: item.SubjectName, ...item };
  301. });
  302. subjectList.value = arr;
  303. cb(arr);
  304. }
  305. }
  306. }
  307. }
  308. //保存 发布
  309. const confirm = _.debounce(function (type) {
  310. ruleFormRef.value.validate(async (val) => {
  311. if (val) {
  312. let isText = [];
  313. industryList.value.forEach((item) => {
  314. item.List.forEach((key) => {
  315. key.CompanyLabel && key.CompanyLabel.length > 0 && isText.push(key.CompanyLabel.some((val) => val.name));
  316. });
  317. });
  318. if (isText && isText.includes(false)) {
  319. return ElMessage.error("请输入公司标签");
  320. }
  321. let params = dataHandle(type);
  322. if (type == "预览") {
  323. sessionStorage.setItem("choicenessPre", JSON.stringify(params));
  324. let { href } = router.resolve({ name: "choicenessPre" });
  325. window.open(href, "_blank");
  326. } else {
  327. const res = await raiInterface.industrialSubjectPreserveAndPublish(params);
  328. if (res.Ret === 200) {
  329. clearInterval(timeInterval.value);
  330. sessionStorage.removeItem("addChoicenessQY");
  331. thElMessage.success("操作成功!");
  332. init();
  333. router.back();
  334. }
  335. }
  336. }
  337. });
  338. }, 500);
  339. //取消
  340. function cancel() {
  341. clearInterval(timeInterval.value);
  342. sessionStorage.removeItem("addChoicenessQY");
  343. ruleFormRef.value.resetFields();
  344. router.back();
  345. }
  346. async function getListPeriods() {
  347. const res = await raiInterface.industrialSubjectListPeriods();
  348. if (res.Ret === 200) {
  349. updateModeList.value = res.Data.List || [];
  350. }
  351. }
  352. function init() {
  353. ruleForm.value = {
  354. title: "", //标题
  355. author: "", //作者
  356. time: "", //时间
  357. explain: "", //说明
  358. reportLink: "", //变更
  359. };
  360. ruleFormRef.value.resetFields();
  361. marketStrategy.value = "";
  362. }
  363. // 标的下添加公司标签
  364. function addLabelClick(item) {
  365. item.CompanyLabel.push({ name: "", value: item.CompanyLabel.length + 1 });
  366. }
  367. // 处理保存的数据
  368. function dataHandle(type) {
  369. let industryList = _.cloneDeep(industryList.value);
  370. const arr = [];
  371. let ListChartSummary = [];
  372. industryList.forEach((item) => {
  373. item.List.forEach((key) => {
  374. key.CompanyLabel && (key.CompanyLabel = key.CompanyLabel.map((val) => val.name));
  375. arr.push(key);
  376. });
  377. ListChartSummary.push({
  378. ChartPermissionId: item.ChartPermissionId,
  379. BodyChartSummary: item.BodyChartSummary,
  380. ChartPermissionName: item.ChartPermissionName,
  381. ListSubject: [...item.List],
  382. });
  383. });
  384. if (marketStrategy.value == "") {
  385. ElMessage.error("市场策略核心逻辑汇总不能为空");
  386. }
  387. let params = {
  388. AddType: updateMode.value == "重新编辑" ? "1" : "2",
  389. ArticleId: route.query.id ? Number(route.query.id) : 0,
  390. Department: ruleForm.value.author,
  391. Title: ruleForm.value.title,
  392. DoType: type == "发布" ? 1 : 0,
  393. MarketStrategy: marketStrategy.value,
  394. InheritPeriods: inheritNum.value,
  395. List: arr,
  396. ProductDescription: ruleForm.value.explain,
  397. PublishDate: ruleForm.value.time,
  398. ReportLink: ruleForm.value.reportLink,
  399. ListChartSummary,
  400. };
  401. return params;
  402. }
  403. function deleteLabelItem(item, index) {
  404. item.CompanyLabel.splice(index, 1);
  405. }
  406. function switchChangeHandler(e) {
  407. industryList.value.forEach((_) => {
  408. _.List.forEach((item) => {
  409. if (item.OverviewArticleId === overviewList.value.ArticleId) {
  410. item.IsShowOverviewArticle = e;
  411. }
  412. });
  413. });
  414. }
  415. // 拖拽排序更新
  416. function sortChange({ oldIndex, newIndex }) {
  417. industryIndex.value = sortChangeFun(industryIndex.value, oldIndex, newIndex);
  418. }
  419. //标的拖拽排序更新
  420. function ificationSortChange({ oldIndex, newIndex }) {
  421. ificationIndustrial.value = sortChangeFun(ificationIndustrial.value, oldIndex, newIndex);
  422. }
  423. // 排序更新后的逻辑
  424. function sortChangeFun(currentIndex, oldIndex, newIndex) {
  425. let bigger, smaller;
  426. if (oldIndex > newIndex) {
  427. bigger = oldIndex;
  428. smaller = newIndex;
  429. } else {
  430. bigger = newIndex;
  431. smaller = oldIndex;
  432. }
  433. // 当前算中tab的排序 小于较小的 大于较大的 则不用做变动
  434. if (currentIndex < smaller || currentIndex > bigger) return currentIndex;
  435. // 移动的是当前选中的
  436. if (currentIndex == oldIndex) return newIndex;
  437. if (oldIndex > newIndex) {
  438. // 向左移 加加
  439. currentIndex++;
  440. } else if (oldIndex < newIndex) {
  441. // 向右移 减减
  442. currentIndex--;
  443. }
  444. return currentIndex;
  445. }
  446. function onMove(e) {
  447. // 返回false表示不允许停靠
  448. return !!e.relatedContext.element;
  449. }
  450. onMounted(() => {
  451. console.log(route);
  452. if (route.query.id) {
  453. isShowStatus.value = route.query.status == 0;
  454. getDetail();
  455. } else {
  456. getNoTacticsfirst();
  457. dataInit();
  458. }
  459. getListPeriods();
  460. });
  461. // 离开时清理定时器
  462. onBeforeRouteLeave((to, from, next) => {
  463. clearInterval(timeInterval.value);
  464. next();
  465. });
  466. </script>
  467. <template>
  468. <!-- 报告精选添加/编辑 -->
  469. <div class="add-choiceness">
  470. <el-card>
  471. <!-- 更新方式继承第几期 -->
  472. <el-row :gutter="24">
  473. <el-col :span="12">
  474. <el-select v-model="updateMode" placeholder="请选择更新方式" clearable @change="updateModeChange">
  475. <el-option label="重新编辑" value="重新编辑"></el-option>
  476. <el-option label="继承往期" value="继承往期"></el-option>
  477. </el-select>
  478. </el-col>
  479. <el-col :span="12">
  480. <el-select v-if="updateMode == '继承往期'" v-model="inheritNum" placeholder="选择继承第几期" clearable @change="getDetail">
  481. <el-option v-for="item in updateModeList" :key="item.Periods" :label="item.InheritPeriodsName" :value="item.Periods"></el-option>
  482. </el-select>
  483. </el-col>
  484. </el-row>
  485. <div v-show="updateMode">
  486. <el-form :model="ruleForm" :rules="rules" ref="ruleFormRef" class="demo-ruleForm">
  487. <!-- 标题 / 作者 /发布时间 -->
  488. <el-row :gutter="24" style="margin-top: 30px">
  489. <el-col :span="12">
  490. <el-form-item prop="title">
  491. <el-input v-model="ruleForm.title" placeholder="请输入标题"></el-input>
  492. </el-form-item>
  493. </el-col>
  494. <el-col :span="6">
  495. <el-form-item prop="author">
  496. <el-input v-model="ruleForm.author" placeholder="请输入作者"></el-input>
  497. </el-form-item>
  498. </el-col>
  499. <el-col :span="6">
  500. <el-form-item prop="time">
  501. <el-date-picker type="date" placeholder="选择发布时间" value-format="YYYY-MM-DD" v-model="ruleForm.time"></el-date-picker>
  502. </el-form-item>
  503. </el-col>
  504. </el-row>
  505. <!-- 产品说明 -->
  506. <el-form-item prop="explain" style="margin-top: 10px">
  507. <el-input v-model="ruleForm.explain" placeholder="请输入产品说明"></el-input>
  508. </el-form-item>
  509. <!-- 变更说明 -->
  510. <!-- 富文本 -->
  511. <rich-text ref="oneRich" v-model="marketStrategy" :spareId="contentValue" :isText="contentText" />
  512. <el-form-item prop="reportLink">
  513. <div style="display: flex; align-items: center; margin-top: 10px">
  514. <span style="flex-shrink: 0">详细报告链接:</span>
  515. <el-input style="margin: 10px 0" v-model="ruleForm.reportLink" placeholder="请输入报告链接(弘则研报管理栏目下)"></el-input>
  516. </div>
  517. </el-form-item>
  518. </el-form>
  519. <!-- 产业/标的 模块 -->
  520. <div class="content-module" v-if="industryList.length">
  521. <draggable v-model="industryList" animation="300" @update="sortChange" item-key="id">
  522. <template #item="{ element, index }">
  523. <div class="content-industry">
  524. <div class="content-name" :class="industryIndex == index ? 'active' : ''" @click="industryBtn(element, index)">{{ element.ChartPermissionName }}</div>
  525. </div>
  526. </template>
  527. </draggable>
  528. <div v-for="(item, indexP) in industryList" :key="item.ChartPermissionId">
  529. <div v-show="industryIndex == indexP">
  530. <RichText v-model="item.BodyChartSummary" :ref="'logic' + indexP" :spareId="'logictest' + indexP" :isText="contentTextLogic" />
  531. <div style="display: flex; flex-wrap: wrap; margin-top: 20px">
  532. <draggable v-model="item.List" animation="300" class="classification" filter=".addIndustrial" :move="onMove" @update="ificationSortChange">
  533. <template #item="{ element, index }">
  534. <div class="industrial" @click="ificationIndustrialBtn(element, index)" :class="index == ificationIndustrial ? 'pitch' : ''">
  535. <span style="margin-right: 19px">{{ element.IndustrialSubjectName }}</span>
  536. <span v-if="index == ificationIndustrial">
  537. <img src="~@/assets/img/icons/edit1.png" style="width: 12px; height: 12px; margin-right: 10px" @click="editText(element, index)" />
  538. <el-icon @click="deleteClassify(element, index)"><Close /></el-icon>
  539. </span>
  540. </div>
  541. </template>
  542. </draggable>
  543. <div class="addIndustrial" @click="addMulti" v-if="industryIndex == indexP">
  544. <el-icon><Plus /></el-icon>
  545. <span>添加标的</span>
  546. </div>
  547. </div>
  548. <template v-for="(val, num) in item.List" :key="val.IndustrialSubjectId">
  549. <div v-show="industryIndex == indexP">
  550. <div class="industrial-is-new" v-show="num == ificationIndustrial">
  551. <el-checkbox v-model="val.IsNew" :true-label="1" :false-label="0">显示new标签</el-checkbox>
  552. </div>
  553. <div style="margin-bottom: 20px; display: flex; align-items: center" v-show="num == ificationIndustrial">
  554. <div style="display: flex; align-items: center" v-for="(son, num) in val.CompanyLabel" :key="num">
  555. <el-input style="width: 260px; margin-right: 15px" v-model="son.name" placeholder="请输入公司标签"></el-input>
  556. <img class="delete-item-icon" v-if="num > 0" @click="deleteLabelItem(val, num)" src="~@/assets/img/icons/delete-Item.png" alt="" />
  557. </div>
  558. <el-tooltip class="item" effect="dark" content="添加标签" placement="top-start">
  559. <img @click="addLabelClick(val)" class="editsty" src="~@/assets/img/set_m/add_ico.png" />
  560. </el-tooltip>
  561. </div>
  562. <rich-text :ref="'twoRich' + num" v-model="val.Body" :spareId="contentValueTwo" :isText="contentTextTwo" v-show="num == ificationIndustrial" />
  563. </div>
  564. </template>
  565. </div>
  566. </div>
  567. </div>
  568. <div>
  569. <div class="content-resource">
  570. <span class="resource">产业资源包:</span>
  571. <span class="show">{{ industrialSubjectName }}</span>
  572. </div>
  573. <div class="content-resource">
  574. <span class="resource">综述报告:</span>
  575. <span class="show">{{ overviewList.Title }}</span>
  576. <div style="margin-left: 20px">
  577. <el-switch @change="switchChangeHandler" v-model="overviewList.IsShowOverviewArticle" :active-value="1" :inactive-value="0" active-text="显示链接" inactive-text="不显示链接">
  578. </el-switch>
  579. </div>
  580. </div>
  581. </div>
  582. <div class="content-bottom">
  583. <el-button type="primary" @click="confirm('预览')">预览</el-button>
  584. <el-button type="primary" @click="confirm('保存')">保存</el-button>
  585. <el-button v-if="isShowStatus" type="primary" @click="confirm('发布')">发布</el-button>
  586. <el-button type="" @click="cancel">取消</el-button>
  587. </div>
  588. </div>
  589. </el-card>
  590. <!-- 弹框部分 -->
  591. <el-dialog draggable :close-on-click-modal="false" :modal-append-to-body="false" center v-model="addDialogVisible" width="560px" :before-close="handleClose">
  592. <template #header>
  593. <div style="display: flex; align-items: center">
  594. <img :src="dialogText == '编辑' ? $icons.editicon : $icons.add" style="color: #fff; width: 16px; height: 16px; margin-right: 5px" />
  595. <span style="font-size: 16px">{{ dialogText }}</span>
  596. </div>
  597. </template>
  598. <div class="dlg-content">
  599. <el-autocomplete class="inline-input" v-model="stateValue" :trigger-on-focus="false" :fetch-suggestions="handleSearchResult" placeholder="请输入标的名称" clearable></el-autocomplete>
  600. </div>
  601. <template #footer>
  602. <span class="dialog-footer">
  603. <el-button v-if="dialogText == '编辑'" type="primary" @click="editconfirmPerson">确定</el-button>
  604. <el-button v-else type="primary" @click="confirmPerson">确定</el-button>
  605. <el-button @click="handleClose">取消</el-button>
  606. </span>
  607. </template>
  608. </el-dialog>
  609. </div>
  610. </template>
  611. <style lang="scss">
  612. .add-choiceness {
  613. .el-date-editor.el-input,
  614. .el-select {
  615. width: 100%;
  616. }
  617. .content-resource {
  618. margin: 30px 0 60px;
  619. display: flex;
  620. line-height: 40px;
  621. .resource {
  622. width: 105px;
  623. }
  624. .show {
  625. flex: 1;
  626. height: 40px;
  627. border: 1px solid #aab4cc;
  628. border-radius: 4px;
  629. padding-left: 20px;
  630. }
  631. }
  632. .content-bottom {
  633. width: 100%;
  634. display: flex;
  635. justify-content: center;
  636. .el-button {
  637. padding: 0 30px;
  638. height: 40px;
  639. margin-left: 30px;
  640. }
  641. }
  642. .dlg-content {
  643. width: 100%;
  644. margin: 40px 0 70px;
  645. .inline-input {
  646. width: 100% !important;
  647. }
  648. .el-input {
  649. width: 100% !important;
  650. }
  651. }
  652. .content-module {
  653. margin-top: 30px;
  654. .content-industry {
  655. display: inline-block;
  656. margin: 30px 0;
  657. .content-name {
  658. display: inline-block;
  659. box-sizing: border-box;
  660. padding: 0 24px;
  661. line-height: 38px;
  662. height: 40px;
  663. background: #ecf5ff;
  664. border: 1px solid #b3d8ff;
  665. opacity: 1;
  666. font-weight: 500;
  667. font-size: 16px;
  668. color: #409eff;
  669. border-radius: 4px;
  670. margin-right: 30px;
  671. }
  672. .active {
  673. background-color: #409eff;
  674. color: #fff;
  675. }
  676. }
  677. .addIndustrial {
  678. box-sizing: border-box;
  679. width: 96px;
  680. height: 60px;
  681. padding-top: 10px;
  682. text-align: center;
  683. background: #ecf5ff;
  684. border: 1px solid #b3d8ff;
  685. opacity: 1;
  686. border-radius: 4px;
  687. color: #409eff;
  688. i {
  689. color: #409eff;
  690. font-weight: 700;
  691. padding-bottom: 5px;
  692. }
  693. span {
  694. display: inline-block;
  695. width: 100%;
  696. }
  697. }
  698. }
  699. .classification {
  700. display: flex;
  701. flex-wrap: wrap;
  702. .industrial {
  703. position: relative;
  704. box-sizing: border-box;
  705. margin-bottom: 15px;
  706. width: 290px;
  707. height: 60px;
  708. line-height: 60px;
  709. text-align: center;
  710. background: #ecf5ff;
  711. font-size: 14px;
  712. margin-right: 30px;
  713. color: #409eff;
  714. border-radius: 4px;
  715. border: 1px solid #b3d8ff;
  716. }
  717. .pitch {
  718. display: flex;
  719. padding: 0 20px;
  720. justify-content: space-between;
  721. background-color: #409eff;
  722. border: none;
  723. color: #fff !important;
  724. }
  725. .addIndustrial {
  726. box-sizing: border-box;
  727. width: 96px;
  728. height: 60px;
  729. padding-top: 10px;
  730. text-align: center;
  731. background: #ecf5ff;
  732. border: 1px solid #b3d8ff;
  733. opacity: 1;
  734. border-radius: 4px;
  735. color: #409eff;
  736. margin-bottom: 15px;
  737. i {
  738. color: #409eff;
  739. font-weight: 700;
  740. padding-bottom: 5px;
  741. }
  742. span {
  743. display: inline-block;
  744. width: 100%;
  745. }
  746. }
  747. }
  748. .industrial-is-new {
  749. margin-bottom: 20px;
  750. }
  751. .delete-item-icon {
  752. width: 20px;
  753. height: 20px;
  754. margin-right: 20px;
  755. }
  756. }
  757. </style>