|
|
@@ -1,45 +1,42 @@
|
|
|
<template>
|
|
|
<div class="go-chart-configurations-data-ajax">
|
|
|
- <n-button type="primary" @click="requestModelHandle">配置请求</n-button>
|
|
|
- <setting-item-box name="配置">
|
|
|
- <setting-item name="类型">
|
|
|
- <n-select v-model:value="targetData.request.requestHttpType" :options="selectOptions" />
|
|
|
- </setting-item>
|
|
|
- <setting-item name="默认使用全局间隔">
|
|
|
- <n-input-number
|
|
|
- v-model:value.trim="targetData.request.requestInterval"
|
|
|
- min="5"
|
|
|
- :show-button="false"
|
|
|
- placeholder="可以为空"
|
|
|
- >
|
|
|
- <template #suffix> 秒 </template>
|
|
|
- </n-input-number>
|
|
|
- </setting-item>
|
|
|
- </setting-item-box>
|
|
|
+ <n-card class="n-card-shallow">
|
|
|
+ <setting-item-box name="基础配置">
|
|
|
+ <setting-item name="请求方式">
|
|
|
+ <n-input size="small" :placeholder="requestHttpType || '暂无'" :disabled="true"></n-input>
|
|
|
+ </setting-item>
|
|
|
|
|
|
- <setting-item-box name="源地址:" :alone="true">
|
|
|
- <n-text type="info">{{ requestOriginUrl || '暂无' }}</n-text>
|
|
|
- </setting-item-box>
|
|
|
+ <setting-item name="请求间隔">
|
|
|
+ <n-input size="small" :placeholder="requestInterval || '暂无'" :disabled="true">
|
|
|
+ <template #suffix> {{ SelectHttpTimeNameObj[requestIntervalUnit] }} </template>
|
|
|
+ </n-input>
|
|
|
+ </setting-item>
|
|
|
+ </setting-item-box>
|
|
|
|
|
|
- <setting-item-box :alone="true">
|
|
|
- <template #name>
|
|
|
- 地址
|
|
|
- <n-tooltip trigger="hover" v-if="isDev()">
|
|
|
- <template #trigger>
|
|
|
- <n-icon size="21" :depth="3">
|
|
|
- <help-outline-icon></help-outline-icon>
|
|
|
- </n-icon>
|
|
|
+ <setting-item-box name="源地址" :alone="true">
|
|
|
+ <n-input size="small" :placeholder="requestOriginUrl || '暂无'" :disabled="true">
|
|
|
+ <template #prefix>
|
|
|
+ <n-icon :component="PulseIcon" />
|
|
|
</template>
|
|
|
- <ul class="go-pl-0">
|
|
|
- 开发环境使用 mock 数据,请输入
|
|
|
- <li v-for="item in apiList" :key="item.value">
|
|
|
- <n-text type="info"> {{ item.value }} </n-text>
|
|
|
- </li>
|
|
|
- </ul>
|
|
|
- </n-tooltip>
|
|
|
- </template>
|
|
|
- <n-input v-model:value.trim="targetData.request.requestUrl" :min="1" placeholder="请输入地址(去除源)" />
|
|
|
- </setting-item-box>
|
|
|
+ </n-input>
|
|
|
+ </setting-item-box>
|
|
|
+
|
|
|
+ <setting-item-box name="组件地址" :alone="true">
|
|
|
+ <n-input size="small" :placeholder="requestUrl || '暂无'" :disabled="true">
|
|
|
+ <template #prefix>
|
|
|
+ <n-icon :component="FlashIcon" />
|
|
|
+ </template>
|
|
|
+ </n-input>
|
|
|
+ </setting-item-box>
|
|
|
+
|
|
|
+ <n-text depth="3">更新内容请点击配置</n-text>
|
|
|
+
|
|
|
+ <div class="edit-text" @click="requestModelHandle">
|
|
|
+ <div class="go-absolute-center">
|
|
|
+ <n-button type="primary" secondary>点击配置</n-button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </n-card>
|
|
|
|
|
|
<setting-item-box :alone="true">
|
|
|
<template #name>
|
|
|
@@ -53,16 +50,14 @@
|
|
|
默认赋值给 dataset 字段
|
|
|
</n-tooltip>
|
|
|
</template>
|
|
|
- <n-space>
|
|
|
- <n-button @click="sendHandle">
|
|
|
- <template #icon>
|
|
|
- <n-icon>
|
|
|
- <flash-icon />
|
|
|
- </n-icon>
|
|
|
- </template>
|
|
|
- 发送请求
|
|
|
- </n-button>
|
|
|
- </n-space>
|
|
|
+ <n-button type="primary" ghost @click="sendHandle">
|
|
|
+ <template #icon>
|
|
|
+ <n-icon>
|
|
|
+ <flash-icon />
|
|
|
+ </n-icon>
|
|
|
+ </template>
|
|
|
+ 发送请求
|
|
|
+ </n-button>
|
|
|
</setting-item-box>
|
|
|
|
|
|
<!-- 底部数据展示 -->
|
|
|
@@ -77,9 +72,10 @@
|
|
|
<script setup lang="ts">
|
|
|
import { ref, toRefs, onBeforeUnmount, watchEffect } from 'vue'
|
|
|
import { icon } from '@/plugins'
|
|
|
+import { useDesignStore } from '@/store/modules/designStore/designStore'
|
|
|
import { SettingItemBox, SettingItem } from '@/components/Pages/ChartItemSetting'
|
|
|
import { ChartDataRequest } from '../ChartDataRequest/index'
|
|
|
-import { RequestHttpEnum, ResultEnum } from '@/enums/httpEnum'
|
|
|
+import { RequestHttpEnum, ResultEnum, SelectHttpTimeNameObj } from '@/enums/httpEnum'
|
|
|
import { chartDataUrl, rankListUrl, scrollBoardUrl, numberFloatUrl, numberIntUrl, textUrl, imageUrl } from '@/api/mock'
|
|
|
import { http } from '@/api/http'
|
|
|
import { SelectHttpType } from '../../index.d'
|
|
|
@@ -87,51 +83,19 @@ import { ChartDataMatchingAndShow } from '../ChartDataMatchingAndShow'
|
|
|
import { useTargetData } from '../../../hooks/useTargetData.hook'
|
|
|
import { isDev, newFunctionHandle } from '@/utils'
|
|
|
|
|
|
-const { HelpOutlineIcon, FlashIcon } = icon.ionicons5
|
|
|
+const { HelpOutlineIcon, FlashIcon, PulseIcon } = icon.ionicons5
|
|
|
const { targetData, chartEditStore } = useTargetData()
|
|
|
+const { requestUrl, requestHttpType, requestInterval, requestIntervalUnit } = toRefs(targetData.value.request)
|
|
|
const { requestOriginUrl } = toRefs(chartEditStore.getRequestGlobalConfig)
|
|
|
+const designStore = useDesignStore()
|
|
|
+const themeColor = ref(designStore.getAppTheme)
|
|
|
+
|
|
|
// 是否展示数据分析
|
|
|
const loading = ref(false)
|
|
|
const requestShow = ref(false)
|
|
|
const showMatching = ref(false)
|
|
|
let lastFilter: any = undefined
|
|
|
|
|
|
-const apiList = [
|
|
|
- {
|
|
|
- value: `【图表】${chartDataUrl}`
|
|
|
- },
|
|
|
- {
|
|
|
- value: `【文本】${textUrl}`
|
|
|
- },
|
|
|
- {
|
|
|
- value: `【0~100 整数】${numberIntUrl}`
|
|
|
- },
|
|
|
- {
|
|
|
- value: `【0~1小数】${numberFloatUrl}`
|
|
|
- },
|
|
|
- {
|
|
|
- value: `【图片地址】${imageUrl}`
|
|
|
- },
|
|
|
- {
|
|
|
- value: `【排名列表】${rankListUrl}`
|
|
|
- },
|
|
|
- {
|
|
|
- value: `【滚动表格】${scrollBoardUrl}`
|
|
|
- }
|
|
|
-]
|
|
|
-
|
|
|
-// 选项
|
|
|
-const selectOptions: SelectHttpType[] = [
|
|
|
- {
|
|
|
- label: RequestHttpEnum.GET,
|
|
|
- value: RequestHttpEnum.GET
|
|
|
- },
|
|
|
- {
|
|
|
- label: RequestHttpEnum.POST,
|
|
|
- value: RequestHttpEnum.POST
|
|
|
- }
|
|
|
-]
|
|
|
-
|
|
|
// 请求配置 model
|
|
|
const requestModelHandle = () => {
|
|
|
requestShow.value = true
|
|
|
@@ -172,5 +136,28 @@ onBeforeUnmount(() => {
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
@include go('chart-configurations-data-ajax') {
|
|
|
+ .n-card-shallow {
|
|
|
+ &.n-card {
|
|
|
+ @extend .go-background-filter;
|
|
|
+ }
|
|
|
+ .edit-text {
|
|
|
+ position: absolute;
|
|
|
+ top: 0px;
|
|
|
+ left: 0px;
|
|
|
+ width: 325px;
|
|
|
+ height: 254px;
|
|
|
+ cursor: pointer;
|
|
|
+ opacity: 0;
|
|
|
+ transition: all 0.3s;
|
|
|
+ @extend .go-background-filter;
|
|
|
+ backdrop-filter: blur(2px) !important;
|
|
|
+ }
|
|
|
+ &:hover {
|
|
|
+ border-color: v-bind('themeColor');
|
|
|
+ .edit-text {
|
|
|
+ opacity: 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|