| | |
| | | :restColWidth="restColWidth" |
| | | :title="firstRow.title" |
| | | :type="firstRow.id" |
| | | :row="firstRow" |
| | | :values="rowChunk" |
| | | @itemClick="valueClick" |
| | | /> |
| | |
| | | :restColWidth="restColWidth" |
| | | :title="row.title" |
| | | :type="row.id" |
| | | :row="row" |
| | | :values="rowChunk" |
| | | @itemClick="valueClick" |
| | | /> |
| | |
| | | @current-change="handleCurrentChange" |
| | | /> |
| | | </div> |
| | | <RecordSetDialog v-model="chartDlgIsShow" :otype="chartDlgMapRow?.OTYPE" :oname="chartDlgMapRow?.ONAME" :indexName="indexName" /> |
| | | <RecordSetDialog v-model="chartDlgIsShow" :lastValueItem="chartDlgMapRow" :metricsInfo="chartDlgMapMetricsInfo"/> |
| | | </div> |
| | | </template> |
| | | |
| | |
| | | |
| | | const chartDlgIsShow = ref(false); |
| | | const chartDlgMapRow = ref(null); |
| | | /** @description 指标名称 */ |
| | | const indexName = ref(null); |
| | | const valueClick = (item, type) => { |
| | | const chartDlgMapMetricsInfo = ref(null); |
| | | const valueClick = (item,row) => { |
| | | if (isSharePage.value) return; |
| | | if(!row.query_detail_id){ |
| | | return; |
| | | } |
| | | chartDlgMapRow.value = item; |
| | | chartDlgIsShow.value = true; |
| | | indexName.value = type; |
| | | chartDlgMapMetricsInfo.value = row; |
| | | }; |
| | | //#endregion |
| | | |