Merge branch 'master' of http://192.168.1.22:3000/ClientApps/pqs-9100_client
This commit is contained in:
@@ -4,7 +4,7 @@ const path = require('path');
|
|||||||
const { logger } = require('ee-core/log');
|
const { logger } = require('ee-core/log');
|
||||||
const { getConfig } = require('ee-core/config');
|
const { getConfig } = require('ee-core/config');
|
||||||
const { getMainWindow } = require('ee-core/electron');
|
const { getMainWindow } = require('ee-core/electron');
|
||||||
const { getBaseDir } = require('ee-core/ps');
|
const ps = require('ee-core/ps');
|
||||||
const { app } = require('electron');
|
const { app } = require('electron');
|
||||||
|
|
||||||
// 动态获取 scripts 目录路径
|
// 动态获取 scripts 目录路径
|
||||||
@@ -74,9 +74,12 @@ class Lifecycle {
|
|||||||
async ready() {
|
async ready() {
|
||||||
logger.info('[lifecycle] ready');
|
logger.info('[lifecycle] ready');
|
||||||
// 延迟加载 scripts
|
// 延迟加载 scripts
|
||||||
|
if (ps.isProd()) {
|
||||||
loadScripts();
|
loadScripts();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 完整的应用启动流程
|
* 完整的应用启动流程
|
||||||
*/
|
*/
|
||||||
@@ -493,7 +496,7 @@ class Lifecycle {
|
|||||||
*/
|
*/
|
||||||
async windowReady() {
|
async windowReady() {
|
||||||
logger.info('[lifecycle] window-ready');
|
logger.info('[lifecycle] window-ready');
|
||||||
|
if (ps.isProd()) {
|
||||||
// 创建日志窗口
|
// 创建日志窗口
|
||||||
this.logWindowManager = new LogWindowManager();
|
this.logWindowManager = new LogWindowManager();
|
||||||
this.logWindowManager.createLogWindow();
|
this.logWindowManager.createLogWindow();
|
||||||
@@ -532,6 +535,17 @@ class Lifecycle {
|
|||||||
this.logWindowManager.addLog('warn', '应用已启动,但部分服务可能未正常运行');
|
this.logWindowManager.addLog('warn', '应用已启动,但部分服务可能未正常运行');
|
||||||
}, 5000);
|
}, 5000);
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
const win = getMainWindow();
|
||||||
|
const {windowsOption} = getConfig();
|
||||||
|
if (windowsOption.show == false) {
|
||||||
|
win.once('ready-to-show', () => {
|
||||||
|
win.show();
|
||||||
|
win.focus();
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
// 主窗口初始化但不显示,等待启动流程完成后再显示
|
// 主窗口初始化但不显示,等待启动流程完成后再显示
|
||||||
// 在 startApplication() 中会调用 win.show()
|
// 在 startApplication() 中会调用 win.show()
|
||||||
@@ -542,8 +556,11 @@ class Lifecycle {
|
|||||||
*/
|
*/
|
||||||
async beforeClose() {
|
async beforeClose() {
|
||||||
logger.info('[lifecycle] before-close hook triggered');
|
logger.info('[lifecycle] before-close hook triggered');
|
||||||
|
if (ps.isProd()) {
|
||||||
await this.cleanup();
|
await this.cleanup();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Lifecycle.toString = () => '[class Lifecycle]';
|
Lifecycle.toString = () => '[class Lifecycle]';
|
||||||
|
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ export const getPqErrSysList = () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//获取指定模式下所有未绑定的设备
|
//获取指定模式下所有未绑定的设备
|
||||||
export const getUnboundPqDevList = (params: { pattern: string}) => {
|
export const getUnboundPqDevList = (params: { pattern: string }) => {
|
||||||
return http.get(`/pqDev/listUnbound?pattern=${params.pattern}`)
|
return http.get(`/pqDev/listUnbound?pattern=${params.pattern}`)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -141,22 +141,22 @@ export const importSubPlan = (params: Plan.ResPlan) => {
|
|||||||
|
|
||||||
// 导出计划检测结果数据
|
// 导出计划检测结果数据
|
||||||
export const exportPlanCheckData = (params: any) => {
|
export const exportPlanCheckData = (params: any) => {
|
||||||
return http.post(
|
return http.post(`/adPlan/exportPlanCheckData?planId=${params.id}&devIds=${params.devIds}&report=${params.report}`)
|
||||||
`/adPlan/exportPlanCheckData?planId=${params.id}&devIds=${params.devIds}&report=${params.report}`
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//根据误差体系id获取测试项
|
//根据误差体系id获取测试项
|
||||||
export const getPqErrSysTestItemList = (params: {errorSysId : string}) => {
|
export const getPqErrSysTestItemList = (params: { errorSysId: string }) => {
|
||||||
return http.get(`/pqErrSys/getTestItems?id=${params.errorSysId}`)
|
return http.get(`/pqErrSys/getTestItems?id=${params.errorSysId}`)
|
||||||
}
|
}
|
||||||
|
|
||||||
// 获取计划项目成员
|
// 获取计划项目成员
|
||||||
export const getMemberList = (params: {id : string}) => {
|
export const getMemberList = (params: { id: string }) => {
|
||||||
return http.get(`/adPlan/getMemberList?planId=${params.id}`)
|
return http.get(`/adPlan/getMemberList?planId=${params.id}`)
|
||||||
}
|
}
|
||||||
|
|
||||||
// 导入并合并子检测计划检测结果数据
|
// 导入并合并子检测计划检测结果数据
|
||||||
export const importAndMergePlanCheckData = (params: Plan.ResPlan) => {
|
export const importAndMergePlanCheckData = (params: Plan.ResPlan) => {
|
||||||
return http.upload(`/adPlan/importAndMergePlanCheckData`, params)
|
return http.upload(`/adPlan/importAndMergePlanCheckData`, params, {
|
||||||
|
timeout: 60000 * 20
|
||||||
|
})
|
||||||
}
|
}
|
||||||
@@ -12,6 +12,7 @@
|
|||||||
action="#"
|
action="#"
|
||||||
class="upload"
|
class="upload"
|
||||||
:limit="1"
|
:limit="1"
|
||||||
|
:on-exceed="handleExceed"
|
||||||
:http-request="uploadZip"
|
:http-request="uploadZip"
|
||||||
accept=".zip"
|
accept=".zip"
|
||||||
:auto-upload="!parameter.confirmMessage"
|
:auto-upload="!parameter.confirmMessage"
|
||||||
@@ -56,7 +57,15 @@
|
|||||||
|
|
||||||
<script setup lang="ts" name="ImportZip">
|
<script setup lang="ts" name="ImportZip">
|
||||||
import { ref } from 'vue'
|
import { ref } from 'vue'
|
||||||
import { ElMessage, ElMessageBox, type UploadInstance, type UploadProps, type UploadRequestOptions } from 'element-plus'
|
import {
|
||||||
|
ElMessage,
|
||||||
|
ElMessageBox,
|
||||||
|
genFileId,
|
||||||
|
type UploadInstance,
|
||||||
|
type UploadProps,
|
||||||
|
type UploadRawFile,
|
||||||
|
type UploadRequestOptions
|
||||||
|
} from 'element-plus'
|
||||||
import http from '@/api'
|
import http from '@/api'
|
||||||
|
|
||||||
export interface ZipParameterProps {
|
export interface ZipParameterProps {
|
||||||
@@ -170,7 +179,12 @@ const handleRemove: UploadProps['onRemove'] = (uploadFile, uploadFiles) => {
|
|||||||
message: ''
|
message: ''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
const handleExceed: UploadProps['onExceed'] = files => {
|
||||||
|
uploadRef.value!.clearFiles()
|
||||||
|
const file = files[0] as UploadRawFile
|
||||||
|
file.uid = genFileId()
|
||||||
|
uploadRef.value!.handleStart(file)
|
||||||
|
}
|
||||||
const progressData = ref({
|
const progressData = ref({
|
||||||
percentage: 0,
|
percentage: 0,
|
||||||
status: '',
|
status: '',
|
||||||
|
|||||||
@@ -184,10 +184,9 @@
|
|||||||
v-if="progressData.status === 'success'"
|
v-if="progressData.status === 'success'"
|
||||||
type="primary"
|
type="primary"
|
||||||
title="点击打开目录"
|
title="点击打开目录"
|
||||||
:href="progressData.message"
|
|
||||||
@click="openDownloadLocation"
|
@click="openDownloadLocation"
|
||||||
>
|
>
|
||||||
{{ progressData.message }}
|
{{ filePath }}
|
||||||
</el-link>
|
</el-link>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-progress
|
<el-progress
|
||||||
@@ -692,6 +691,7 @@ const exportPlan = async () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const exportPlanCheckResultData = async (selectedListIds: string[]) => {
|
const exportPlanCheckResultData = async (selectedListIds: string[]) => {
|
||||||
|
filePath.value = ''
|
||||||
const params = {
|
const params = {
|
||||||
id: planFormContent.value.id,
|
id: planFormContent.value.id,
|
||||||
report: downloadReport.value,
|
report: downloadReport.value,
|
||||||
@@ -773,10 +773,6 @@ const openDownloadLocation = () => {
|
|||||||
if (filePath.value) {
|
if (filePath.value) {
|
||||||
// 打开指定文件所在的目录,并选中该文件
|
// 打开指定文件所在的目录,并选中该文件
|
||||||
Renderer.shell.showItemInFolder(filePath.value)
|
Renderer.shell.showItemInFolder(filePath.value)
|
||||||
} else {
|
|
||||||
// 使用默认下载路径
|
|
||||||
const downloadPath = Renderer.app.getPath('downloads')
|
|
||||||
Renderer.shell.openPath(downloadPath)
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
ElMessage.warning('当前运行环境不支持,请复制路径自行打开')
|
ElMessage.warning('当前运行环境不支持,请复制路径自行打开')
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"autofit.js": "^3.2.8",
|
"autofit.js": "^3.2.8",
|
||||||
"dayjs": "^1.10.7",
|
"dayjs": "^1.10.7",
|
||||||
"ee-core": "2.10.0",
|
"ee-core": "4.1.5",
|
||||||
"electron-updater": "^5.3.0",
|
"electron-updater": "^5.3.0",
|
||||||
"event-source-polyfill": "^1.0.31",
|
"event-source-polyfill": "^1.0.31",
|
||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
|
|||||||
Reference in New Issue
Block a user