Detail.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. <template>
  2. <a-modal
  3. :title="modalTitle"
  4. :width="1200"
  5. :visible="visible"
  6. :confirmLoading="confirmLoading"
  7. class="ant-modal2"
  8. @cancel="handleCancel"
  9. :footer="null"
  10. >
  11. <div class="table-operator" style="margin-bottom: 8px;">
  12. <a-row>
  13. <a-col :md="16">
  14. <a-date-picker
  15. :format="BaseTool.Date.PICKER_NORM_DATE_PATTERN"
  16. @change="onChange"
  17. v-model="searchDay"/>
  18. <a-button
  19. style="margin-left: 8px"
  20. v-if="$auth('remote-opc-logs-export')"
  21. type="primary"
  22. icon="download"
  23. :loading="confirmLoading"
  24. @click="doExport">导出
  25. </a-button>
  26. </a-col>
  27. </a-row>
  28. </div>
  29. <a-divider>详情</a-divider>
  30. <detail-list title="" :col="2">
  31. <detail-list-item term="点位id">{{ model.sbId }}</detail-list-item>
  32. <detail-list-item term="点位名称">{{ model.sbName }}</detail-list-item>
  33. <detail-list-item term="点位">{{ model.positionNum }}</detail-list-item>
  34. <detail-list-item term="类型">{{ BaseTool.Object.getField(map,model.type) }}</detail-list-item>
  35. <detail-list-item term="描述">{{ model.description }}</detail-list-item>
  36. <detail-list-item term="系数">{{ model.ratio }}</detail-list-item>
  37. <detail-list-item term="单位">{{ model.unit }}</detail-list-item>
  38. <!-- <detail-list-item term="备注">{{ model.remark }}</detail-list-item>-->
  39. <detail-list-item term="年">{{ model.year }}</detail-list-item>
  40. <detail-list-item term="月">{{ model.month }}</detail-list-item>
  41. <detail-list-item term="日">{{ model.day }}</detail-list-item>
  42. <!-- <detail-list-item term="时">{{ model.hour }}</detail-list-item>
  43. <detail-list-item term="实时数值">{{ model.result }}</detail-list-item>
  44. <detail-list-item term="创建人">{{ model.createdUserId }}</detail-list-item>
  45. <detail-list-item term="更新人">{{ model.updateUserId }}</detail-list-item>
  46. <detail-list-item term="更新日期">{{ model.updateTime }}</detail-list-item>-->
  47. </detail-list>
  48. <a-divider orientation="left">趋势图</a-divider>
  49. <div style="width: 100%">
  50. <div id="container"></div>
  51. </div>
  52. <a-divider orientation="left">数组明细</a-divider>
  53. <div>
  54. <a-table
  55. bordered
  56. :data-source="chartsData"
  57. :columns="columns"
  58. tableLayout="auto"
  59. :scroll="{x: 1, y: BaseTool.Constant.scrollY }"
  60. rowKey="time">
  61. </a-table>
  62. </div>
  63. </a-modal>
  64. </template>
  65. <script>
  66. import { Chart } from '@antv/g2'
  67. import { exportRemoteOpcLogOneDay, queryRemoteOpcLogByDTO } from '@/api/remote/opc-log'
  68. import DetailList from '@/components/tools/DetailList'
  69. const DetailListItem = DetailList.Item
  70. export default {
  71. name: 'RemoteDegreeLogDetail',
  72. components: {
  73. DetailList,
  74. Chart,
  75. DetailListItem
  76. },
  77. data () {
  78. return {
  79. confirmLoading: false,
  80. mdl: {},
  81. modalTitle: null,
  82. searchDay: null,
  83. map: {},
  84. visible: false,
  85. // 下拉框map
  86. model: {
  87. 'sbId': null,
  88. 'sbName': null,
  89. 'positionNum': null,
  90. 'type': null,
  91. 'description': null,
  92. 'result': null,
  93. 'ratio': null,
  94. 'unit': null,
  95. 'time': null,
  96. 'month': null,
  97. 'day': null,
  98. 'hour': null,
  99. 'remark': null,
  100. 'createdUserId': null,
  101. 'updateUserId': null,
  102. 'updateTime': null
  103. },
  104. // 表头
  105. chart: null, // 创建一个chart变量
  106. chartsData: [],
  107. columns: [
  108. {
  109. title: '时间',
  110. dataIndex: 'time'
  111. },
  112. {
  113. title: '数值',
  114. dataIndex: 'value'
  115. }
  116. ]
  117. }
  118. },
  119. created () {
  120. // 下拉框map
  121. this.map = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.REMOTE_OPC)
  122. },
  123. methods: {
  124. base (record, param) {
  125. this.visible = true
  126. this.confirmLoading = true
  127. this.modalTitle = '详情'
  128. if (!this.BaseTool.Object.isBlank(record)) {
  129. this.model = record
  130. if (this.model.dataJsonStr == null) {
  131. this.$message.info('无数据')
  132. }
  133. this.chartsData = JSON.parse(this.model.dataJsonStr)
  134. this.getCharts(this.chartsData)
  135. } else {
  136. queryRemoteOpcLogByDTO(param).then((res) => {
  137. this.model = res.data
  138. if (this.model.dataJsonStr == null) {
  139. this.$message.info('无数据')
  140. }
  141. this.chartsData = JSON.parse(this.model.dataJsonStr)
  142. this.getCharts(this.chartsData)
  143. }).catch(() => {
  144. this.confirmLoading = false
  145. })
  146. }
  147. },
  148. getCharts (data) {
  149. this.chart && this.chart.destroy()// 防止点击搜索按钮新增一个
  150. const data1 = [
  151. { time: '1991', value: 3 },
  152. { time: '1992', value: 4 },
  153. { time: '1993', value: 3.5 },
  154. { time: '1994', value: 5 },
  155. { time: '1995', value: 4.9 },
  156. { time: '1996', value: 6 },
  157. { time: '1997', value: 7 },
  158. { time: '1998', value: 9 },
  159. { time: '1999', value: 13 }
  160. ]
  161. // 初始化,指定容器DOM id、高度
  162. this.chart = new Chart({
  163. container: 'container',
  164. autoFit: true,
  165. width: 1600, // 图标宽度
  166. height: 400, // 图表高度
  167. padding: [40, 40, 40, 40]// 图表内边距,依次为:上,右,下,左
  168. })
  169. // data 数据
  170. this.chart.data(data)
  171. // scale 度量配置, 生成坐标轴刻度值
  172. // tooltip 提示信息,是指当鼠标悬停在图形上时,以提示框的形式展示该点的数据
  173. this.chart.tooltip({
  174. showCrosshairs: true, // 展示 Tooltip 辅助线
  175. shared: true
  176. })
  177. // 几何图形 Geometry;
  178. // 使用 line 绘制折线图
  179. // 使用 position 通道将对应的变量映射到 x 和 y 位置空间上;
  180. // 使用label 展示value值;
  181. // this.chart.line().position('time*value').label('value')
  182. this.chart.line().position('time*value')
  183. // 使用 point 绘制点
  184. // 使用 position 将对应的变量映射到 x 和 y 位置空间上;
  185. this.chart.point().position('time*value')
  186. this.chart.render()
  187. },
  188. onChange (date, dateString) {
  189. this.confirmLoading = true
  190. const param = {}
  191. param.positionNum = this.model.positionNum
  192. param.year = date.format(this.BaseTool.Date.PICKER_NORM_YEAR)
  193. param.month = date.format(this.BaseTool.Date.PICKER_NORM_MONTH_ONE)
  194. param.day = date.format(this.BaseTool.Date.PICKER_NORM_DAY_ONE)
  195. queryRemoteOpcLogByDTO(param).then((res) => {
  196. this.model = res.data
  197. if (this.model.dataJsonStr == null) {
  198. this.$message.info('无数据')
  199. }
  200. this.chartsData = JSON.parse(this.model.dataJsonStr)
  201. this.getCharts(this.chartsData)
  202. }).catch(() => {
  203. this.confirmLoading = false
  204. })
  205. },
  206. doExport () {
  207. this.confirmLoading = true
  208. exportRemoteOpcLogOneDay(this.model).then(file => {
  209. this.BaseTool.UPLOAD.downLoadExportExcel(file)
  210. this.confirmLoading = false
  211. })
  212. },
  213. handleCancel () {
  214. this.visible = false
  215. this.confirmLoading = false
  216. this.searchDay = null
  217. this.chart = null
  218. this.chartsData = []
  219. this.$emit('ok')
  220. }
  221. }
  222. }
  223. </script>
  224. <style lang="less" scoped>
  225. .extra-wrapper {
  226. line-height: 55px;
  227. padding-right: 24px;
  228. .extra-item {
  229. display: inline-block;
  230. margin-right: 24px;
  231. a {
  232. margin-left: 24px;
  233. }
  234. }
  235. }
  236. .antd-pro-pages-dashboard-analysis-twoColLayout {
  237. position: relative;
  238. display: flex;
  239. display: block;
  240. flex-flow: row wrap;
  241. }
  242. .antd-pro-pages-dashboard-analysis-salesCard {
  243. height: calc(100% - 24px);
  244. /deep/ .ant-card-head {
  245. position: relative;
  246. }
  247. }
  248. .dashboard-analysis-iconGroup {
  249. i {
  250. margin-left: 16px;
  251. color: rgba(0,0,0,.45);
  252. cursor: pointer;
  253. transition: color .32s;
  254. color: black;
  255. }
  256. }
  257. .analysis-salesTypeRadio {
  258. position: absolute;
  259. right: 54px;
  260. bottom: 12px;
  261. }
  262. </style>