defaultOptions.js 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  1. export const defaultOpts = {
  2. //图表配置
  3. chart: {
  4. spacing: [2,10,2,10]
  5. },
  6. title: {
  7. enabled: false
  8. },
  9. exporting: {
  10. enabled: false,
  11. },
  12. //默认颜色配置
  13. colors:['#00f','#f00','#999','#000','#7cb5ec', '#90ed7d', '#f7a35c', '#8085e9',
  14. '#f15c80', '#e4d354', '#2b908f', '#f45b5b', '#91e8e1'],
  15. //版权信息
  16. credits: {enabled:false},
  17. //数据列通用配置
  18. plotOptions: {
  19. series: {
  20. turboThreshold: 0, //不限制数据点个数
  21. dataGrouping: {
  22. enabled: false,
  23. },//取消数据大自动数据合并
  24. animation: {
  25. duration: 1000
  26. }
  27. },
  28. areaspline: {
  29. lineWidth: 1,
  30. stacking: 'normal',
  31. marker: {
  32. enabled: false,
  33. },
  34. // fillOpacity: 0.5,
  35. },
  36. column:{
  37. pointPadding: 0.05,
  38. stacking: 'normal',
  39. },
  40. scatter: {
  41. turboThreshold: 0,
  42. marker: {
  43. symbol: 'circle',
  44. radius: 5,
  45. states: {
  46. hover: {
  47. enabled: true,
  48. }
  49. }
  50. },
  51. states: {
  52. hover: {
  53. marker: {
  54. enabled: true
  55. }
  56. }
  57. },
  58. }
  59. },
  60. //范围选择器
  61. rangeSelector: {
  62. enabled: false,
  63. selected: 2,
  64. },
  65. //悬浮提示框
  66. tooltip: {
  67. split: false,
  68. shared: true,
  69. dateTimeLabelFormats: {
  70. // 时间格式化字符
  71. day: '%Y/%m/%d',
  72. week: "%Y/%m",
  73. month: '%Y/%m',
  74. year: '%Y/%m',
  75. },
  76. xDateFormat:'%Y/%m/%d',
  77. // valueDecimals: 4,
  78. },
  79. //图例
  80. legend: {
  81. enabled: true,
  82. verticalAlign: 'top',
  83. margin:5,
  84. // layout: 'vertical'
  85. },
  86. //滚动条
  87. scrollbar: {
  88. enabled: false,
  89. },
  90. //导航器
  91. navigator: {
  92. enabled: false,
  93. },
  94. //范围选择器
  95. rangeSelector: {
  96. enabled: false,
  97. },
  98. xAxis: {
  99. tickPosition: 'inside',
  100. lineColor: '#bfbfbf',
  101. tickColor: '#bfbfbf',
  102. tickLength:5,
  103. type: 'datetime',
  104. ordinal: false,
  105. dateTimeLabelFormats: {
  106. day: '%y/%m',
  107. week: '%y/%m',
  108. month: '%y/%m',
  109. year: '%y/%m',
  110. }
  111. // gridLineWidth:0
  112. }
  113. };
  114. /* 图表分类弹窗校验 */
  115. export const formRules = {
  116. level_1:[
  117. { required: true, message: '分类名称不能为空', trigger: 'blur' },
  118. ],
  119. level_2:[
  120. { required: true, message: '分类名称不能为空', trigger: 'blur' },
  121. ],
  122. level_3:[
  123. { required: true, message: '分类名称不能为空', trigger: 'blur' },
  124. ],
  125. level_4:[
  126. { required: true, message: '图表名称不能为空', trigger: 'blur' },
  127. ],
  128. level_menu:[
  129. { required: true, message: '所属分类不能为空', trigger: 'blur' },
  130. ],
  131. }
  132. /* 添加图表表单校验 */
  133. export const chartRules = {
  134. style:[
  135. { required: true, message: '生成样式不能为空', trigger: 'blur' },
  136. ],
  137. name:[
  138. { required: true, message: '图表名称不能为空', trigger: 'blur' },
  139. ],
  140. classify:[
  141. { required: true, message: '图表分类不能为空', trigger: 'blur' },
  142. ],
  143. }
  144. /* 公用指标单位 */
  145. export const unitArr = [
  146. '无',
  147. '万吨',
  148. '亿元',
  149. '元',
  150. '元/吨',
  151. '元/湿吨',
  152. '千克',
  153. '吨',
  154. '短吨',
  155. '美元/吨',
  156. '万平方米',
  157. '美元/桶',
  158. '美分/加仑',
  159. '手'
  160. ]
  161. /* 季节性图配置 */
  162. export const seasonOptions = {
  163. //默认颜色配置
  164. colors:['#4B0082','#7FFFAA','#FF4500','#808000','#EEE8AA','#849EC1','#8A4294','#578B5A','#FDA8C7','#53B3FF','#999999','#000000','#FFDF0C','#FF0000','#0033FF'],
  165. yAxis: {
  166. lineWidth: 1,
  167. lineColor: '#bfbfbf',
  168. tickColor: '#bfbfbf',
  169. offset: 0,
  170. opposite: false,
  171. reversed: false,
  172. visible: true,
  173. gridLineWidth: 0,
  174. tickWidth: 1,
  175. tickLength:5,
  176. tickPosition: 'inside',
  177. endOnTick: false,
  178. startOnTick: false,
  179. showLastLabel: true, //显示最后刻度值
  180. tickPixelInterval: 50
  181. }
  182. }
  183. /* 散点图颜色 */
  184. export const scatterColorsOptions = [ 'rgba(119, 152, 191, .5)','rgba(223, 83, 83, .5)' ]
  185. /* 复制图片额外option */
  186. export const copyOtherOptions = {
  187. legend: {
  188. align: 'center',
  189. layout: 'horizontal',
  190. itemStyle: {
  191. fontSize: "14px",
  192. color: '#444',
  193. textOverflow:undefined
  194. },
  195. itemMarginBottom:5,
  196. itemDistance: 0,
  197. padding: 0,
  198. margin: 10
  199. },
  200. seasonLegend:{
  201. align: 'center',
  202. layout: 'horizontal',
  203. itemStyle: {
  204. fontSize: "14px",
  205. color: '#444',
  206. }
  207. }
  208. }
  209. /* 图表年份筛选框 */
  210. export const yearSelector = [
  211. {
  212. name: '15年至今',
  213. value: 3,
  214. },
  215. // {
  216. // name: '18年至今',
  217. // value: 7,
  218. // },
  219. // {
  220. // name: '19年至今',
  221. // value: 8,
  222. // },
  223. {
  224. name: '20年至今',
  225. value: 9,
  226. },
  227. {
  228. name: '21年至今',
  229. value: 4,
  230. },
  231. {
  232. name: '22年至今',
  233. value: 11,
  234. },
  235. ]
  236. export const browser = () => {
  237. // 取得浏览器的userAgent字符串
  238. var userAgent = navigator.userAgent
  239. // 判断是否Opera浏览器
  240. var isOpera = userAgent.indexOf('Opera') > -1
  241. // 判断是否IE浏览器
  242. var isIE =
  243. userAgent.indexOf('compatible') > -1 &&
  244. userAgent.indexOf('MSIE') > -1 &&
  245. !isOpera
  246. // 判断是否IE的Edge浏览器
  247. var isEdge = userAgent.indexOf('Edge') > -1
  248. // 判断是否Firefox浏览器
  249. var isFF = userAgent.indexOf('Firefox') > -1
  250. // 判断是否Safari浏览器
  251. var isSafari =
  252. userAgent.indexOf('Safari') > -1 && userAgent.indexOf('Chrome') === -1
  253. // 判断Chrome浏览器
  254. var isChrome =
  255. userAgent.indexOf('Chrome') > -1 && userAgent.indexOf('Safari') > -1
  256. if (isIE) {
  257. var reIE = new RegExp('MSIE (\\d+\\.\\d+);')
  258. reIE.test(userAgent)
  259. var fIEVersion = parseFloat(RegExp['$1'])
  260. if (fIEVersion === 7) {
  261. return 'IE7'
  262. } else if (fIEVersion === 8) {
  263. return 'IE8'
  264. } else if (fIEVersion === 9) {
  265. return 'IE9'
  266. } else if (fIEVersion === 10) {
  267. return 'IE10'
  268. } else if (fIEVersion === 11) {
  269. return 'IE11'
  270. } else {
  271. return 'IE'
  272. }
  273. }else if (isOpera) {
  274. return 'Opera'
  275. }else if (isEdge) {
  276. return 'Edge'
  277. }else if (isFF) {
  278. return 'FF'
  279. }else if (isSafari) {
  280. return 'Safari'
  281. }else if (isChrome) {
  282. return 'Chrome'
  283. }else {
  284. return ''
  285. }
  286. }
  287. // 判断设备
  288. export const getTerminal = () => {
  289. // 获取终端的相关信息
  290. var Terminal = {
  291. // 辨别移动终端类型
  292. platform: function () {
  293. var u = navigator.userAgent,
  294. app = navigator.appVersion;
  295. return {
  296. // android终端或者uc浏览器
  297. android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1,
  298. // 是否为iPhone或者QQHD浏览器
  299. iPhone: u.indexOf('iPhone') > -1,
  300. // 是否iPad
  301. iPad: u.indexOf('iPad') > -1
  302. };
  303. }()
  304. }
  305. // 根据不同的终端,跳转到不同的地址
  306. if (Terminal.platform.android) {
  307. return 'android';
  308. } else if (Terminal.platform.iPhone || Terminal.platform.iPad) {
  309. return 'ios';
  310. }
  311. }