3bb2b676e13a92228e4cd65b6cdd015225815cab.svn-base 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627
  1. <template>
  2. <div>
  3. <el-card body-style="padding:0;" style="margin-bottom: 20px;" class="panel-header">
  4. <div slot="header" style="display: flex; justify-content:space-between;">
  5. <span>
  6. <span class="back-button" @click="$router.push({ name: 'BoardEchartManagement', params: { tab: 'second' } })">
  7. <i class="el-icon-back" />
  8. <span>返回</span>
  9. </span>
  10. <span v-if="this.$route.params.id !== 'create'">编辑图表</span>
  11. <span v-else>{{ $t('chart.editChart') }}</span>
  12. </span>
  13. <span>
  14. <el-button v-if="false" size="mini" type="primary" style="float: right;margin:0 10px 0 0;" icon="el-icon-download" @click="handleDownload" />
  15. <el-button v-if="this.$route.params.isEdit == 'edit'" size="mini" type="primary" style="float: right;margin:0 10px 0 0;" @click="handleLinkDB">添加到看板</el-button>
  16. <el-button v-if="this.$route.params.isEdit == 'edit'" size="mini" type="primary" style="float: right;margin:0 10px 0 0;" icon="el-icon-save" @click="handleSave">保存</el-button>
  17. <el-button v-if="false" size="mini" type="primary" style="float: right;margin:0 10px 0 0;" @click="$router.replace(`/chartpanel/create`)">创建新的图表</el-button>
  18. </span>
  19. </div>
  20. </el-card>
  21. <div class="app-container" style="display: flex;">
  22. <el-card id="dataPanel" style="width:300px;margin-right: 20px;text-align:center;">
  23. <data-panel ref="dataPanel" :result-loading="loading" :data-src="dataSrc" @change="handleDataSrcChange" />
  24. </el-card>
  25. <!-- 图表部分 -->
  26. <el-card style="width: 100%;" body-style="padding: 10px 20px;">
  27. <div class="form-wrapper">
  28. <el-form id="formPanel" size="mini" class="analysis-form">
  29. <el-form-item id="dimensionInput" label="维度">
  30. <draggable v-model="sharedState.dimensions" :group="{name: 'col',pull: true, put: true}" class="draggable-wrapper" @change="handleDimensionChange">
  31. <el-tag v-for="col in sharedState.dimensions" :key="col.Column" class="draggable-item" size="small" closable @close="handleCloseDimensionTag(col)">
  32. {{ col.Comment }}
  33. </el-tag>
  34. </draggable>
  35. </el-form-item>
  36. <el-form-item id="fieldInput" label="数值">
  37. <draggable v-model="sharedState.caculCols" :group="{name: 'col',pull: true, put: true}" class="draggable-wrapper" @change="handleColChange">
  38. <el-tag v-for="col in sharedState.caculCols" :key="col.Column" size="small" closable class="selected-field" @close="handleCloseColTag(col)">
  39. <el-select v-model="col.calculFunc" class="draggable-item" size="mini" closable style="background: rgba(0,0,0,0);">
  40. <!-- <el-option v-for="(item, optIndex) in col.availableFunc" :key="optIndex" :label="`${col.Column}(${item.name})`" :value="item.func" /> -->
  41. <el-option v-for="(item, optIndex) in col.availableFunc" :key="optIndex" :label="`${col.Comment}(${item.name})`" :value="item.func" />
  42. </el-select>
  43. </el-tag>
  44. </draggable>
  45. </el-form-item>
  46. <orderPanel v-model="orderByStrs" />
  47. <filterPanel :filters.sync="currentFilters" :disabled="!allSelected || allSelected.length===0" @change="handleAddFilter" />
  48. <el-form-item>
  49. <div class="limit-input">
  50. <span v-show="!editLimit">
  51. {{ $t('chart.limit', [limit]) }}
  52. <el-button type="text" @click="editLimit=true">{{ $t('common.edit') }}</el-button>
  53. </span>
  54. <span v-show="editLimit">
  55. <el-input-number v-model="limit" :disabled="loading" size="mini" style="width:100px;" @blur="editLimit=false" />
  56. <el-button size="mini" @click="editLimit=false">{{ $t('common.confirm') }}</el-button>
  57. </span>
  58. </div>
  59. </el-form-item>
  60. </el-form>
  61. <el-form class="chart-form" size="mini" label-position="top">
  62. <el-form-item label="图表名称:">
  63. <el-input v-model="chartName" size="mini" :placeholder="$t('chart.namePlaceholder')" />
  64. </el-form-item>
  65. <el-form-item label="图表描述:">
  66. <el-input v-model="chartDesc" size="mini" :placeholder="$t('chart.descPlaceholder')" />
  67. </el-form-item>
  68. </el-form>
  69. </div>
  70. <visualize-panel id="vizPanel" v-loading="loading" :data="result" :chart-type.sync="chartType" :schema="allSelected" />
  71. </el-card>
  72. </div>
  73. <el-dialog :title="$t('chart.myChart')" :visible.sync="showMyCharts">
  74. <el-table :data="myChartList">
  75. <el-table-column :label="$t('chart.chartName')" width="200" prop="chart_name" />
  76. <el-table-column :label="$t('chart.chartDesc')" prop="desc" />
  77. <el-table-column :label="$t('common.operation')" width="200" align="center">
  78. <template slot-scope="scope">
  79. <el-button size="mini" type="primary" icon="el-icon-edit" @click="switchChart(scope.row)">
  80. {{ $t('common.edit') }}
  81. </el-button>
  82. <el-button size="mini" type="danger" icon="el-icon-delete" @click="deleteChart(scope.row)">
  83. {{ $t('common.delete') }}
  84. </el-button>
  85. </template>
  86. </el-table-column>
  87. </el-table>
  88. <span slot="footer" class="dialog-footer">
  89. <el-button type="primary" size="mini" @click="showMyCharts = false">{{ $t('common.close') }}</el-button>
  90. </span>
  91. </el-dialog>
  92. <el-dialog :title="$t('dashboard.dashboardList')" :visible.sync="showDashboards">
  93. <div style="text-align:center;">
  94. <el-select v-model="selectedDb" size="small">
  95. <el-option v-for="item in dashboardList" :key="item.objectId" :label="item.name" :disabled="isDbDisbaled(item)" :value="item.objectId" />
  96. </el-select>
  97. </div>
  98. <span slot="footer" class="dialog-footer">
  99. <el-button type="primary" size="small" @click="showDashboards = false">取消</el-button>
  100. <el-button type="primary" size="small" @click="linkDb">确认</el-button>
  101. </span>
  102. </el-dialog>
  103. <!-- <el-tooltip content="帮助中心" placement="top"> -->
  104. <el-dropdown v-if="false" class="help-center-wrapper" placement="top" size="mini" @command="handleHelp">
  105. <div class="help-center">
  106. <i class="el-icon-question" />
  107. </div>
  108. <el-dropdown-menu slot="dropdown" size="mini">
  109. <el-dropdown-item command="guide">
  110. {{ this.$t('common.openGuide') }}
  111. </el-dropdown-item>
  112. </el-dropdown-menu>
  113. </el-dropdown>
  114. <!-- </el-tooltip 1> -->
  115. </div>
  116. </template>
  117. <script>
  118. import draggable from 'vuedraggable'
  119. import Driver from 'driver.js' // import driver.js
  120. import 'driver.js/dist/driver.min.css' // import driver.js css
  121. import { GetDataByName, ExeSqlJiade, PostDataByName, dashboardListJiade } from '@/api/common'
  122. import filterPanel from './components/filterPanel'
  123. import orderPanel from './components/orderPanel'
  124. import visualizePanel from './components/visualizePanel'
  125. import dataPanel from './components/dataPanel'
  126. import Cookies from 'js-cookie'
  127. import { createChart, updateChart, getChartById, chartList, deleteChart } from '@/api/chart'
  128. import { dashboardList, addChartToDB, dbByChart } from '@/api/dashboard'
  129. import exeSql from '@/api/exeSql'
  130. import { parseTime } from '@/utils'
  131. import { buildSqlSentence } from '@/utils/buildSentence'
  132. import steps from './guideSteps'
  133. import store from './store'
  134. const driver = new Driver()
  135. export default {
  136. name: 'ChartPanel',
  137. components: { visualizePanel, dataPanel, draggable, filterPanel, orderPanel },
  138. data() {
  139. return {
  140. loading: false,
  141. result: [],
  142. dataSrc: {},
  143. limit: 200,
  144. orderByStrs: [],
  145. filterStr: undefined,
  146. editLimit: false,
  147. currentFilters: [],
  148. sharedState: store.state,
  149. chartType: 'table',
  150. chartName: undefined,
  151. chartDesc: undefined,
  152. showMyCharts: false,
  153. myChartList: [],
  154. showDashboards: false,
  155. dashboardList: [],
  156. selectedDb: undefined,
  157. linkedDbIds: [],
  158. execInstance: null
  159. }
  160. },
  161. computed: {
  162. allSelected() {
  163. return store.state.dimensions.concat(store.state.caculCols)
  164. },
  165. sqlSentence() {
  166. return buildSqlSentence({
  167. dataSrc: this.dataSrc.table,
  168. selectedCalcul: this.sharedState.caculCols,
  169. selectedDimension: this.sharedState.dimensions,
  170. orderByStrs: this.orderByStrs,
  171. filterStr: this.filterStr,
  172. limit: this.limit
  173. })
  174. }
  175. },
  176. watch: {
  177. sqlSentence(value) {
  178. if (value) {
  179. this.fetchData(value)
  180. } else {
  181. this.result = []
  182. }
  183. },
  184. '$route.params.id': {
  185. immediate: true,
  186. handler() {
  187. if (this.$route.params.id !== 'create') {
  188. console.log('我是编辑图表哦~~~')
  189. console.log('this.$route.params.id', this.$route.params.id)
  190. var send_data = {
  191. name: 'getChartDetail',
  192. parammaps: {
  193. pastureid: Cookies.get('pastureid'),
  194. id: this.$route.params.id
  195. }
  196. }
  197. GetDataByName(send_data).then(response => {
  198. console.log('图表数据', response.data.list)
  199. const chart = response.data.list[0]
  200. this.chartName = chart.chart_name
  201. this.chartDesc = chart.desc
  202. const content = JSON.parse(chart.content) || {}
  203. this.dataSrc.table = content.dataSrc
  204. this.dataSrc.source_id = chart.source_id
  205. this.chartType = content.chartType
  206. this.limit = content.limit || 200
  207. this.currentFilters = content.filters
  208. this.orderByStrs = content.orderByStrs
  209. store.setCaculColsAction(content.selectedCalcul)
  210. store.setDimensionsAction(content.selectedDimension)
  211. this.$refs.dataPanel.initWithDataSrc(this.dataSrc)
  212. })
  213. } else {
  214. console.log('我是新增图标哦~~~')
  215. this.chartName = undefined
  216. this.chartDesc = undefined
  217. store.setCaculColsAction([])
  218. store.setDimensionsAction([])
  219. this.$nextTick(() => {
  220. this.$refs.dataPanel.initWithDataSrc()
  221. })
  222. }
  223. }
  224. }
  225. },
  226. created() {
  227. },
  228. methods: {
  229. // fetchData(sqlSentence) {
  230. // if (this.loading) {
  231. // this.execInstance && this.execInstance.cancel()
  232. // }
  233. // this.loading = true
  234. // this.execInstance = exeSql()
  235. // this.execInstance.fetch({ source_id: this.dataSrc.source_id, sql: sqlSentence }).then(resp => {
  236. // this.loading = false
  237. // this.result = resp.data
  238. // })
  239. // },
  240. fetchData(sqlSentence) {
  241. if (this.loading) {
  242. this.execInstance && this.execInstance.cancel()
  243. }
  244. this.loading = true
  245. this.execInstance = exeSql()
  246. const obj = {
  247. dataSrc: this.dataSrc.table,
  248. source_id: this.dataSrc.source_id,
  249. orderByStrs: this.orderByStrs,
  250. limit: this.limit,
  251. selectedCalcul: this.sharedState.caculCols,
  252. selectedDimension: this.sharedState.dimensions,
  253. chartType: this.chartType,
  254. filters: this.currentFilters
  255. }
  256. var send_data = { source_id: this.dataSrc.source_id, content: obj, pastureid: Cookies.get('pastureid') }
  257. ExeSqlJiade(send_data).then(response => {
  258. console.log('图的数据', response.data.list)
  259. if (response.data !== null) {
  260. this.loading = false
  261. this.result = response.data
  262. } else {
  263. this.loading = false
  264. this.result = []
  265. }
  266. })
  267. },
  268. handleDataSrcChange(value) {
  269. console.log('dataSrc', value)
  270. this.dataSrc = value
  271. store.setCaculColsAction([])
  272. store.setDimensionsAction([])
  273. this.filterStr = undefined
  274. this.orderByStrs = []
  275. },
  276. handleColChange(evt) {
  277. if (evt.added) {
  278. store.addCaculColAction(evt.added.element)
  279. }
  280. },
  281. handleDimensionChange(evt) {
  282. console.log('handleDimensionChange的evt', evt)
  283. if (evt.added) {
  284. store.addDimensionAction(evt.added.element)
  285. }
  286. },
  287. handleCloseColTag(col) {
  288. store.deleteCaculColAction(col)
  289. },
  290. handleCloseDimensionTag(col) {
  291. store.deleteDimensionAction(col)
  292. },
  293. handleAddFilter(value) {
  294. this.filterStr = value
  295. },
  296. // 保存
  297. // handleSave() {
  298. // if (!this.chartName) {
  299. // this.$message({
  300. // type: 'warning',
  301. // message: this.$t('chart.chartNameWarning')
  302. // })
  303. // return
  304. // }
  305. // const chartId = this.$route.params.id === 'create' ? undefined : this.$route.params.id
  306. // const obj = {
  307. // dataSrc: this.dataSrc.table,
  308. // source_id: this.dataSrc.source_id,
  309. // orderByStrs: this.orderByStrs,
  310. // limit: this.limit,
  311. // selectedCalcul: this.sharedState.caculCols,
  312. // selectedDimension: this.sharedState.dimensions,
  313. // chartType: this.chartType,
  314. // filters: this.currentFilters
  315. // }
  316. // const data = {
  317. // id: chartId,
  318. // chart_name: this.chartName,
  319. // source_id: this.dataSrc.source_id,
  320. // desc: this.chartDesc,
  321. // content: obj
  322. // }
  323. // if (chartId) {
  324. // updateChart(data).then(resp => {
  325. // this.$message({
  326. // type: 'success',
  327. // message: this.$t('common.saveSuccess')
  328. // })
  329. // })
  330. // } else {
  331. // createChart(data).then(resp => {
  332. // // console.log(resp)
  333. // this.$router.replace(`/chartpanel/${resp.data.id}`)
  334. // this.$message({
  335. // type: 'success',
  336. // message: this.$t('common.saveSuccess')
  337. // })
  338. // })
  339. // }
  340. // },
  341. handleSave() {
  342. if (!this.chartName) {
  343. this.$message({
  344. type: 'warning',
  345. message: this.$t('chart.chartNameWarning')
  346. })
  347. return
  348. }
  349. const chartId = this.$route.params.id === 'create' ? undefined : this.$route.params.id
  350. const obj = {
  351. dataSrc: this.dataSrc.table,
  352. source_id: this.dataSrc.source_id,
  353. orderByStrs: this.orderByStrs,
  354. limit: this.limit,
  355. selectedCalcul: this.sharedState.caculCols,
  356. selectedDimension: this.sharedState.dimensions,
  357. chartType: this.chartType,
  358. filters: this.currentFilters
  359. }
  360. const data = {
  361. name: 'insertChart',
  362. parammaps: {
  363. id: chartId,
  364. cname: this.chartName,
  365. source_id: this.dataSrc.source_id,
  366. desc: this.chartDesc,
  367. display: this.chartDesc,
  368. pastureid: Cookies.get('pastureid'),
  369. empid: Cookies.get('employeid'),
  370. emp: Cookies.get('employename'),
  371. content: obj
  372. }
  373. }
  374. var send_data2 = {
  375. name: 'updateChartV2',
  376. parammaps: {
  377. id: chartId,
  378. cname: this.chartName,
  379. source_id: this.dataSrc.source_id,
  380. desc: this.chartDesc,
  381. display: this.chartDesc,
  382. pastureid: Cookies.get('pastureid'),
  383. empid: Cookies.get('employeid'),
  384. emp: Cookies.get('employename'),
  385. content: obj
  386. }
  387. }
  388. if (chartId) {
  389. PostDataByName(send_data2).then(response => {
  390. console.log('编辑保存发送参数', data)
  391. this.$message({
  392. type: 'success',
  393. message: this.$t('common.saveSuccess')
  394. })
  395. })
  396. } else {
  397. PostDataByName(data).then(response => {
  398. console.log('新增保存发送参数', data)
  399. this.$message({
  400. type: 'success',
  401. message: this.$t('common.saveSuccess')
  402. })
  403. })
  404. // createChart(data).then(resp => {
  405. // // console.log(resp)
  406. // this.$router.replace(`/chartpanel/${resp.data.id}`)
  407. // this.$message({
  408. // type: 'success',
  409. // message: this.$t('common.saveSuccess')
  410. // })
  411. // })
  412. }
  413. },
  414. handleLinkDB() {
  415. this.showDashboards = true
  416. var send_data = {
  417. name: 'getdashboards',
  418. parammaps: {
  419. pastureid: Cookies.get('pastureid'),
  420. empid: Cookies.get('employeid'),
  421. emp: Cookies.get('employename')
  422. }
  423. }
  424. dashboardListJiade(send_data).then(resp => {
  425. console.log('看板列表数据:', resp)
  426. this.dashboardList = resp.data.list
  427. })
  428. },
  429. getDbByChart(id) {
  430. dbByChart(id).then(resp => {
  431. this.linkedDbIds = resp.data || []
  432. })
  433. },
  434. isDbDisbaled(db) {
  435. return !!this.linkedDbIds.find(id => id === db.objectId)
  436. },
  437. linkDb() {
  438. this.showDashboards = false
  439. const data = {
  440. name: 'insertdashboard_chart',
  441. parammaps: {
  442. did: this.selectedDb,
  443. cid: this.$route.params.id,
  444. pastureid: Cookies.get('pastureid')
  445. }
  446. }
  447. PostDataByName(data).then(response => {
  448. console.log('看板保存发送参数', data)
  449. this.$message({
  450. type: 'success',
  451. message: this.$t('common.saveSuccess')
  452. })
  453. })
  454. },
  455. viewAllChart() {
  456. this.showMyCharts = true
  457. // chartList().then(resp => {
  458. // this.myChartList = resp.data
  459. // })
  460. this.myChartList = [{ 'name': 'kook', 'desc': '', 'content': '{"layout": [{"id": "035573f4-bf71-4472-814a-f1747b6bd8e0", "x": 0, "y": 7, "w": 5, "h": 6, "i": "035573f4-bf71-4472-814a-f1747b6bd8e0", "moved": false, "yOffSet": 13, "xOffSet": 5, "bottomLine": [[0, 13], [5, 13]], "topLine": [[0, 7], [5, 7]]}, {"id": "02c012be-db57-431b-b9aa-40d1640a2592", "x": 2, "y": 29, "w": 7, "h": 6, "i": "02c012be-db57-431b-b9aa-40d1640a2592", "yOffSet": 35, "xOffSet": 9, "bottomLine": [[2, 35], [9, 35]], "topLine": [[2, 29], [9, 29]], "moved": false}, {"id": "087df61d-b02e-49a5-a954-b2d9124df685", "x": 6, "y": 0, "w": 7, "h": 7, "i": "087df61d-b02e-49a5-a954-b2d9124df685", "moved": false, "yOffSet": 7, "xOffSet": 13, "bottomLine": [[6, 7], [13, 7]], "topLine": [[6, 0], [13, 0]]}, {"id": "045ad6b0-8f7e-47db-92a7-8c4a31b7683d", "x": 5, "y": 16, "w": 10, "h": 6, "i": "045ad6b0-8f7e-47db-92a7-8c4a31b7683d", "moved": false, "yOffSet": 22, "xOffSet": 15, "bottomLine": [[5, 22], [15, 22]], "topLine": [[5, 16], [15, 16]]}, {"id": "182d02ef-ced5-4ded-a648-630c94f4a790", "x": 9, "y": 22, "w": 9, "h": 9, "i": "182d02ef-ced5-4ded-a648-630c94f4a790", "moved": false, "yOffSet": 31, "xOffSet": 18, "bottomLine": [[9, 31], [18, 31]], "topLine": [[9, 22], [18, 22]]}, {"id": "0755ae6e-6869-4e09-8630-62dd3118a2fc", "x": 0, "y": 0, "w": 6, "h": 7, "i": "0755ae6e-6869-4e09-8630-62dd3118a2fc", "moved": false, "yOffSet": 7, "xOffSet": 6, "bottomLine": [[0, 7], [6, 7]], "topLine": [[0, 0], [6, 0]]}, {"id": "3e4408f1-67c2-45c7-8315-136a6eec6980", "x": 5, "y": 22, "w": 4, "h": 7, "i": "3e4408f1-67c2-45c7-8315-136a6eec6980", "moved": false, "yOffSet": 29, "xOffSet": 9, "bottomLine": [[5, 29], [9, 29]], "topLine": [[5, 22], [9, 22]]}, {"id": "00af7fdb-b486-4855-ac7c-85014d283f2c", "x": 5, "y": 7, "w": 5, "h": 9, "i": "00af7fdb-b486-4855-ac7c-85014d283f2c", "moved": false, "yOffSet": 16, "xOffSet": 10, "bottomLine": [[5, 16], [10, 16]], "topLine": [[5, 7], [10, 7]]}, {"id": "3e39e265-684b-4d62-be3c-4613fd8730cd", "x": 14, "y": 7, "w": 8, "h": 9, "i": "3e39e265-684b-4d62-be3c-4613fd8730cd", "moved": false}]}', 'is_private': true, 'status': 1, 'creator': 1, 'created_at': '2020-05-13T06:08:39.438Z', 'updated_at': '2020-09-14T07:48:58.477Z', 'dashboard_id': 'dd02cfe9-8ee9-48fa-83b3-98b604d87b57' }]
  461. },
  462. switchChart(chart) {
  463. this.$confirm(this.$t('chart.beforeLeaveConfirm'), this.$t('common.confirm')).then(() => {
  464. this.$router.replace(`/chartpanel/${chart.chart_id}`)
  465. this.showMyCharts = false
  466. })
  467. },
  468. deleteChart(chart) {
  469. this.$confirm(this.$t('chart.deleteConfirm', chart.chart_name), this.$t('common.confirm')).then(() => {
  470. deleteChart({ chart_id: chart.chart_id }).then(() => {
  471. if (this.$route.params.id === chart.chart_id) {
  472. this.$router.push('/chartpanel/create')
  473. this.showMyCharts = false
  474. } else {
  475. this.viewAllChart()
  476. }
  477. this.$message({
  478. type: 'success',
  479. message: this.$t('common.deleteSuccess')
  480. })
  481. })
  482. })
  483. },
  484. handleHelp(command) {
  485. if (command === 'guide') {
  486. driver.defineSteps(steps)
  487. driver.start()
  488. }
  489. },
  490. handleDownload() {
  491. import('@/vendor/Export2Excel').then(excel => {
  492. const tHeader = this.allSelected.map(item => item.Column)
  493. const filterVal = tHeader
  494. const data = this.formatJson(filterVal, this.result)
  495. excel.export_json_to_excel({ header: tHeader, data, filename: 'DataExport' + parseTime(Date.now(), '{m}{d}{h}{i}{s}'), autoWidth: true })
  496. })
  497. },
  498. formatJson(filterVal, jsonData) {
  499. return jsonData.map(v =>
  500. filterVal.map(j => {
  501. const tempArr = j.split('.')
  502. if (tempArr.length <= 1) {
  503. return v[j]
  504. } else {
  505. return tempArr.reduce(
  506. (pre, cur) => (pre[cur] ? pre[cur] : '--'),
  507. v
  508. )
  509. }
  510. })
  511. )
  512. }
  513. }
  514. }
  515. </script>
  516. <style lang="scss" scoped>
  517. .back-button {
  518. display: inline-block;
  519. padding-right: 10px;
  520. margin-right: 10px;
  521. border-right: 1px solid #909090;
  522. cursor: pointer;
  523. span {
  524. padding: 5px;
  525. font-size: 14px;
  526. }
  527. }
  528. .analysis-form {
  529. width: 100%;
  530. padding-right: 20px;
  531. /deep/ .el-form-item--mini.el-form-item {
  532. margin-bottom: 10px;
  533. }
  534. /deep/ .el-form-item--mini .el-form-item__label,
  535. .limit-input {
  536. color: #909399;
  537. font-size: 14px;
  538. }
  539. }
  540. .form-wrapper {
  541. display: flex;
  542. }
  543. .chart-form {
  544. width: 250px;
  545. /deep/ .el-form-item--mini.el-form-item {
  546. margin-bottom: 10px;
  547. }
  548. }
  549. .draggable-wrapper {
  550. font-size: 14px;
  551. min-height: 30px;
  552. border-bottom: 1px solid #e4e7ed;
  553. .draggable-item {
  554. margin-right: 10px;
  555. }
  556. /deep/ .el-select--mini {
  557. margin: 0;
  558. }
  559. }
  560. .selected-field {
  561. /deep/ .el-input__inner {
  562. height: 20px;
  563. line-height: 20px;
  564. border: none;
  565. background-color: rgba($color: #fff, $alpha: 0);
  566. padding: 0;
  567. }
  568. /deep/ .el-input__suffix {
  569. right: 0px;
  570. .el-input__suffix-inner {
  571. display: inline-block;
  572. height: 20px;
  573. line-height: 20px;
  574. .el-input__icon {
  575. font-size: 12px;
  576. line-height: 20px;
  577. }
  578. }
  579. }
  580. }
  581. .help-center-wrapper {
  582. cursor: pointer;
  583. position: fixed;
  584. bottom: 25px;
  585. right: 25px;
  586. .help-center {
  587. width: 45px;
  588. height: 45px;
  589. background: #fff;
  590. border-radius: 50%;
  591. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  592. line-height: 45px;
  593. font-size: 20px;
  594. color: #205cd8;
  595. text-align: center;
  596. /deep/ .el-dropdown {
  597. font-size: 20px;
  598. color: #205cd8;
  599. }
  600. }
  601. }
  602. </style>