3 Commits

Author SHA1 Message Date
sjl
29dfc193a6 Merge branch 'master' of http://192.168.1.22:3000/ClientApps/pqs-9100_client
# Conflicts:
#	frontend/.env.development
2025-12-11 09:51:34 +08:00
sjl
2c72045d3a 微调 2025-12-11 09:49:52 +08:00
sjl
b9dfe29ffd 录波不展示趋势图 2025-12-11 09:48:23 +08:00
3 changed files with 5 additions and 5 deletions

View File

@@ -21,7 +21,7 @@ VITE_API_URL=/api
#VITE_PROXY=[["/api","http://127.0.0.1:18092/"]] #VITE_PROXY=[["/api","http://127.0.0.1:18092/"]]
#VITE_PROXY=[["/api","http://192.168.1.124:18092/"]] #VITE_PROXY=[["/api","http://192.168.1.124:18092/"]]
VITE_PROXY=[["/api","http://192.168.2.125:18092/"]] VITE_PROXY=[["/api","http://192.168.2.124:18092/"]]
# VITE_PROXY=[["/api","http://192.168.1.138:8080/"]]张文 # VITE_PROXY=[["/api","http://192.168.1.138:8080/"]]张文
# 开启激活验证 # 开启激活验证
VITE_ACTIVATE_OPEN=false VITE_ACTIVATE_OPEN=false

View File

@@ -8,9 +8,9 @@
import { onBeforeUnmount, onMounted, ref, watch } from 'vue' import { onBeforeUnmount, onMounted, ref, watch } from 'vue'
// import echarts from './echarts' // import echarts from './echarts'
import * as echarts from 'echarts' // 全引入 import * as echarts from 'echarts' // 全引入
import 'echarts-gl' // import 'echarts-gl'
import 'echarts-liquidfill' // import 'echarts-liquidfill'
import 'echarts/lib/component/dataZoom' // import 'echarts/lib/component/dataZoom'
const color = [ const color = [
'var(--el-color-primary)', 'var(--el-color-primary)',

View File

@@ -173,7 +173,7 @@
:currentScriptTypeName="currentScriptTypeName" :currentScriptTypeName="currentScriptTypeName"
/> />
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="历史趋势" name="chartTab"> <el-tab-pane label="历史趋势" name="chartTab" v-if="!isWaveData">
<CompareDataCheckChart <CompareDataCheckChart
v-if="activeTab === 'chartTab'" v-if="activeTab === 'chartTab'"
:tableData="rawTableData.length == 0 ? [] : currentRawTableData" :tableData="rawTableData.length == 0 ? [] : currentRawTableData"