index.vue 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. <!-- -->
  2. <template>
  3. <div class="chart-show">
  4. <header class="chart-header" @click="openNew">
  5. <span
  6. class="chart-title"
  7. @click.stop
  8. @dblclick="copyText"
  9. :style="chartInfo.ChartThemeStyle?`
  10. text-align:${JSON.parse(chartInfo.ChartThemeStyle).titleOptions.align};
  11. font-size:${JSON.parse(chartInfo.ChartThemeStyle).titleOptions.style.fontSize}px;
  12. color:${JSON.parse(chartInfo.ChartThemeStyle).titleOptions.style.color}
  13. `:''"
  14. >
  15. {{ language === 'ch'?chartInfo.ChartName: chartInfo.ChartNameEn}}
  16. </span>
  17. </header>
  18. <template v-if="haveData">
  19. <div
  20. class="chart-wrapper"
  21. id="chart-wrapper"
  22. v-loading="loading"
  23. element-loading-text="加载中..."
  24. >
  25. <chart
  26. :options="options"
  27. :chartId="chartInfo.ChartInfoId || 0" :chartInfo="chartInfo"
  28. />
  29. <div class="mark"></div>
  30. </div>
  31. </template>
  32. <div class="chart-wrapper notfound" v-else>
  33. <i class="el-icon-warning"></i>哎吆,你的图飞了,赶快去找管理员救命吧~
  34. </div>
  35. <!-- 图表来源说明 -->
  36. <div
  37. class="chart-bottom-info bootom-source"
  38. v-if="chartInfo.Instructions&&JSON.parse(chartInfo.Instructions).isShow
  39. ">
  40. <!-- 图表说明 -->
  41. <div
  42. class="chart-instruction text_oneLine"
  43. v-text="JSON.parse(chartInfo.Instructions).text"
  44. :style="`
  45. color: ${JSON.parse(chartInfo.Instructions).color};
  46. font-size: ${ JSON.parse(chartInfo.Instructions).fontSize }px
  47. `"
  48. ></div>
  49. </div>
  50. <div class="bootom-source">
  51. <!-- 自定义来源 -->
  52. <div class="chart-source"
  53. v-if="chartInfo.SourcesFrom&&JSON.parse(chartInfo.SourcesFrom).isShow"
  54. :style="`
  55. color: ${ JSON.parse(chartInfo.SourcesFrom).color };
  56. font-size: ${ JSON.parse(chartInfo.SourcesFrom).fontSize }px;
  57. `"
  58. >
  59. source:<em>{{ JSON.parse(chartInfo.SourcesFrom).text}}</em>
  60. </div>
  61. <temeplate v-else>
  62. <div
  63. v-if="$route.query.source=='smartReportGetImg'"
  64. class="text_oneLine"
  65. :style="`
  66. color: ${chartInfo.ChartThemeStyle&&JSON.parse(chartInfo.ChartThemeStyle).markerOptions.style.color };
  67. font-size: ${chartInfo.ChartThemeStyle&&JSON.parse(chartInfo.ChartThemeStyle).markerOptions.style.fontSize }px;
  68. `"
  69. >
  70. source:<span style="display:inline">{{language === 'ch' ? chartInfo.ChartSource : chartInfo.ChartSourceEn}}</span>
  71. </div>
  72. <strong
  73. v-else
  74. class="text_oneLine"
  75. :style="`
  76. flex:1;
  77. color: ${chartInfo.ChartThemeStyle&&JSON.parse(chartInfo.ChartThemeStyle).markerOptions.style.color };
  78. font-size: ${chartInfo.ChartThemeStyle&&JSON.parse(chartInfo.ChartThemeStyle).markerOptions.style.fontSize }px;
  79. `"
  80. >
  81. source: <em> {{language === 'ch' ? chartInfo.ChartSource : chartInfo.ChartSourceEn}}</em>
  82. </strong>
  83. </temeplate>
  84. <ul class="right-action" @click.stop>
  85. <li v-if="$route.query.source==='ybxcx'"><collectBtn/></li>
  86. <li @click="copyUrl" class="copy" v-if="isShare"><i class="el-icon-share"/>分享</li>
  87. <li @click="refreshChart" v-if="chartInfo.UniqueCode&&$route.query.source!=='smartReportGetImg'"><i class="el-icon-refresh"/>刷新</li>
  88. </ul>
  89. </div>
  90. </div>
  91. </template>
  92. <script lang="ts">
  93. import { defineComponent, reactive, toRefs, onMounted, ref } from 'vue';
  94. import { ElMessage } from 'element-plus';
  95. import _ from 'lodash';
  96. import { useRoute } from 'vue-router';
  97. import chart from '@/components/chart.vue';
  98. import { IState } from './typing';
  99. import { ChartApi } from '@/request/api';
  100. import collectBtn from './components/collectBtn.vue'
  101. import { useChartRender } from '@/hooks/chart/useChartRender';
  102. export default defineComponent({
  103. components: {
  104. chart,
  105. collectBtn
  106. },
  107. setup() {
  108. const route = useRoute();
  109. const state = reactive<IState>({
  110. options: {},
  111. chartInfo: {},
  112. dataList: [],
  113. sourceName: ''
  114. });
  115. onMounted(() => {
  116. getChartInfo();
  117. });
  118. // 打开新窗口
  119. const openNew = (): void => {
  120. window.open(window.location.href,'_blank');
  121. }
  122. /* 获取图表数据信息 */
  123. const loading = ref(false);
  124. const haveData = ref(true);
  125. const code = ref(route.query.code);
  126. const isShare = ref(route.query.fromType === 'share');
  127. // 语言 中英文 ch en 默认中文
  128. const language = ref(route.query.lang || 'ch');
  129. const getChartInfo = async (type='') => {
  130. if(!code.value) {
  131. haveData.value = false;
  132. return
  133. }
  134. loading.value = true;
  135. try {
  136. const { Data } = await ChartApi.getChart({
  137. UniqueCode: code.value || '',
  138. });
  139. loading.value = false;
  140. state.chartInfo = Data.ChartInfo;
  141. state.dataList = Data.ChartInfo.Source === 1 ? Data.EdbInfoList : [Data.EdbInfoList[0]];
  142. //处理英文研报英文设置不全就展示中文
  143. setLangFromEnReport();
  144. document.title = language.value==='ch'?Data.ChartInfo.ChartName:Data.ChartInfo.ChartNameEn;
  145. state.options = useChartRender(Data,language.value)
  146. haveData.value = true;
  147. type === 'refresh' && ElMessage.success('刷新成功');
  148. //水印配置
  149. const markDom = document.querySelector('.mark')
  150. Data.WaterMark&&(markDom.style.backgroundImage = `url(${Data.WaterMark})`)
  151. }catch (e) {
  152. loading.value = false;
  153. haveData.value = false;
  154. }
  155. };
  156. //处理英文研报的图表英文设置不全的情况
  157. const setLangFromEnReport = () => {
  158. //来源于英文研报
  159. if(route.query.fromPage !== 'en') return
  160. let is_name_en = state.chartInfo.ChartNameEn ? true : false;//名称是否有英文
  161. let is_target_en = [2,9,10].includes(state.chartInfo.ChartType) ? true : state.dataList.every(_ => _.EdbNameEn);//指标是否有英文
  162. console.log(is_name_en,is_target_en)
  163. language.value = (is_name_en && is_target_en) ? 'en' : 'ch';
  164. }
  165. /* 复制标题 */
  166. const copyText = () => {
  167. const { chartInfo } = state;
  168. let input = document.createElement("input");
  169. input.value = chartInfo.ChartName;
  170. document.body.appendChild(input)
  171. input.select();
  172. document.execCommand('copy');
  173. document.body.removeChild(input);
  174. ElMessage.success('复制标题成功')
  175. }
  176. /* 分享链接 */
  177. const copyUrl = () => {
  178. let input = document.createElement("input");
  179. input.value = location.href;
  180. document.body.appendChild(input)
  181. input.select();
  182. document.execCommand('copy');
  183. document.body.removeChild(input);
  184. ElMessage.success('复制链接成功')
  185. }
  186. const refreshChart = _.debounce(async () => {
  187. loading.value = true;
  188. let res: any=null
  189. if([1,6,7,8,9,10].includes(state.chartInfo.Source)){
  190. res=await ChartApi.refreshChart({UniqueCode: state.chartInfo.UniqueCode})
  191. }else if([2,5].includes(state.chartInfo.Source)){
  192. res=await ChartApi.refreshCommordityChart({UniqueCode: state.chartInfo.UniqueCode});
  193. }else if([3,4].includes(state.chartInfo.Source)){
  194. res=await ChartApi.refreshRelevanceChart({UniqueCode: state.chartInfo.UniqueCode});
  195. }
  196. loading.value = false;
  197. res.Ret === 200 && getChartInfo('refresh');
  198. },400)
  199. return {
  200. ...toRefs(state),
  201. loading,
  202. haveData,
  203. getChartInfo,
  204. openNew,
  205. copyUrl,
  206. isShare,
  207. language,
  208. refreshChart,
  209. copyText
  210. };
  211. },
  212. });
  213. </script>
  214. <style scoped lang="less">
  215. @import './index.less';
  216. </style>