| .env | ●●●●● patch | view | raw | blame | history | |
| .env.development | ●●●●● patch | view | raw | blame | history | |
| .env.test | ●●●●● patch | view | raw | blame | history | |
| src/assets/images/home/homeRight/leftTriangle.png | patch | view | raw | blame | history | |
| src/components/DeviceJobDetails/JobRelatedEvents.vue | ●●●●● patch | view | raw | blame | history | |
| src/components/UserOperate.vue | ●●●●● patch | view | raw | blame | history | |
| src/views/Home/HomeRight/EventOverview.vue | ●●●●● patch | view | raw | blame | history | |
| src/views/Home/RSide.vue | ●●●●● patch | view | raw | blame | history | |
| src/views/SignMachineNest/MachineLeft/InspectionRaskDetails.vue | ●●●●● patch | view | raw | blame | history |
.env
@@ -1,3 +1,5 @@ #开发、测试、生产环境共用环境配置 VITE_APP_API = /api #调试参数 VITE_APP_DEBUG_KEY = saber @@ -9,7 +11,3 @@ VITE_APP_TDT_TOKEN = c6eea7dad4fa1e2d1e32ec0e7c9735db #cesium token VITE_APP_CESIUM_TOKEN = eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJkYTZlNGNlYS01NTU1LTQ1MGEtYmNlZS0yNTE2NDk5YWM2MjEiLCJpZCI6MTc5Njk2LCJpYXQiOjE3MDA1NDcwMjV9.qcl4AH2731cfFd0-I1ZLUINPXqvglLkDFD-UGR2zU5M # 环境路径 VITE_APP_TICKET_BASE_URL=https://wrj.shuixiongit.com VITE_APP_TICKET_BACKUP_URL=https://aisky.org.cn .env.development
@@ -11,5 +11,5 @@ # 航线文件地址 VITE_APP_AIRLINE_URL = https://wrj.shuixiongit.com/minio/cloud-bucket #系统运维 #管理后台地址 VITE_APP_ADMIN_URL = 'https://wrj.shuixiongit.com/manage/wel/index' .env.test
@@ -6,5 +6,5 @@ # 航线文件地址 VITE_APP_AIRLINE_URL = https://wrj.shuixiongit.com/minio/cloud-bucket #系统运维 #管理后台地址 VITE_APP_ADMIN_URL = 'https://wrj.shuixiongit.com/manage/wel/index' src/assets/images/home/homeRight/leftTriangle.png
src/components/DeviceJobDetails/JobRelatedEvents.vue
@@ -59,12 +59,9 @@ const total = ref(10) const examine = row => { const orderNumber = row.event_num const primaryUrl = `${import.meta.env.VITE_APP_TICKET_BASE_URL}/manage/tickets/ticket?orderNumber=${orderNumber}` const backupUrl = `${import.meta.env.VITE_APP_TICKET_BACKUP_URL}/manage/tickets/ticket?orderNumber=${orderNumber}` const win = window.open(primaryUrl, '_blank') if (!win || win.closed) { window.open(backupUrl, '_blank') } const adminUrl = import.meta.env.VITE_APP_ADMIN_URL const targetPath = `/tickets/ticket?orderNumber=${orderNumber}`; window.open(`${adminUrl}?redirect=${encodeURIComponent(targetPath)}`, '_blank'); } const wayLineJodInfoId = inject('wayLineJodInfoId') src/components/UserOperate.vue
@@ -1,6 +1,7 @@ <script setup> import { fullscreenToggel } from '@/utils/util'; import { useStore } from 'vuex'; import { ElMessage } from 'element-plus' const router = useRouter(); const store = useStore(); const dropdownClick = val => { @@ -20,6 +21,7 @@ } const info = () =>{ ElMessage.warning('加急开发中...') console.log('点击了个人信息'); } </script> src/views/Home/HomeRight/EventOverview.vue
@@ -40,7 +40,7 @@ <img class="completion-left-img" :src="completionLeft" alt="" /> <div class="completion-text">事件类型完成率情况</div> <div class="completion-separator"></div> <img class="completion-left-img" :src="completionLeft" alt="" /> <img class="completion-left-img" :src="leftTriangle" alt="" /> </div> <div class="chart" ref="echartsRef"></div> @@ -56,6 +56,7 @@ import overviewImg5 from '@/assets/images/home/homeRight/overview5.png' import overviewImg6 from '@/assets/images/home/homeRight/overview6.png' import completionLeft from '@/assets/images/home/homeRight/completionLeft.png' import leftTriangle from '@/assets/images/home/homeRight/leftTriangle.png' import * as echarts from 'echarts' import CommonDateTime from '@/components/CommonDateTime.vue' import VSelectLoad from '@/directive/selectLoad' @@ -153,6 +154,9 @@ width: 2, // 线条宽度 type: 'solid', // 线条类型 }, tooltip: { valueFormatter: (value) => value + '%' }, symbol: 'circle', // 数据点符号 symbolSize: 6, // 数据点符号大小 emphasis: { src/views/Home/RSide.vue
@@ -40,6 +40,7 @@ import tc from '@/assets/images/rSide/tc.png' import tc1 from '@/assets/images/rSide/tc1.png' import cesiumOperation from '@/utils/cesium-tsa' import { ElMessage } from 'element-plus' let logIndex = ref(3) const enterHover = value => { @@ -61,6 +62,7 @@ activeIndex.value = activeIndex.value === 1 ? null : value } if (value === 2) { ElMessage.warning('加急开发中...') activeIndex.value = activeIndex.value === 2 ? null : value } } src/views/SignMachineNest/MachineLeft/InspectionRaskDetails.vue
@@ -109,7 +109,7 @@ }, ], } import _ from 'lodash' // chart.setOption(option); const pieOption = { @@ -138,7 +138,7 @@ tarValue = data[i].value } } let percentage = ((tarValue / total) * 100).toFixed(1) let percentage = total ? _.round(((tarValue / total) * 100),1) : 0 return `${name} ${percentage}%` }, },