修改开发环境页面提示信息

This commit is contained in:
dinglili 2024-07-11 17:14:06 +08:00 committed by wangpenglong
parent 599c2e2776
commit 60cd27c79d
3 changed files with 14 additions and 17 deletions

View File

@ -49,9 +49,9 @@
<div class="bodycontent" id="bodycontent">
<div class="tab" id="homepage">
<div class="installInfo1" id="installInfo1">
<h3>安装引导说明:</h3>
<p>1.本安装引导用于引导用户根据开发场景安装基础功能插件、安装依赖软件、配置基本开发环境。</p>
<p>2.本安装引导仅安装基础插件,可以在插件市场中获取更多插件。</p>
<h3>说明:</h3>
<p>1.用于引导用户根据开发场景安装基础功能插件、安装依赖软件、配置基本开发环境。</p>
<p>2.仅安装基础插件,可以在插件市场中获取更多插件。</p>
<p>3.在线安装功能需要连接互联网下载插件和依赖软件。</p>
<p>4.您也可以选择跳过此步骤,自己手动安装插件和依赖软件。</p>
<p>5.点击帮助按钮,会访问线上帮助文档</p>
@ -72,7 +72,7 @@
</label> -->
<label class="installSelection radiogroup">
<input type="radio" id="notNow" name="choice" value="notNow">
<label for="notNow" id="lablenotNow">跳过所有</label><br>
<label for="notNow" id="lablenotNow">跳过</label><br>
</label>
</form>
</div>
@ -96,8 +96,8 @@
<div class="tab" id="onlineInstallTab1">
<div class="installInfo1">
<h3>说明:</h3>
<p>1.检查到有配置文件更新。本安装引导会根据配置文件更新内容。新配置文件可能修改了旧版本配置文件的问题,建议选择“是”更新配置文件。</p>
<p>2.如果您想按照旧版配置文件操作,可以选择“否”不更新配置文件。</p>
<p>1.本步骤检查线上配置文件是否和本地配置文件一致,如果线上存在新版本配置文件,建议选择“是”更新配置文件</p>
<p>2.如果按照本地配置文件操作,可以选择“否”不更新配置文件。</p>
</div>
<div class="devContentCol">
<form class="SelectionUpdate">

View File

@ -50,9 +50,9 @@
<div class="bodycontent" id="bodycontent">
<div class="tab" id="homepage">
<div class="installInfo1" id="installInfo1">
<h3>安装引导说明:</h3>
<p>1.本安装引导用于引导用户根据开发场景安装基础功能插件、安装依赖软件、配置基本开发环境。</p>
<p>2.本安装引导仅安装基础插件,可以在插件市场中获取更多插件。</p>
<h3>说明:</h3>
<p>1.用于引导用户根据开发场景安装基础功能插件、安装依赖软件、配置基本开发环境。</p>
<p>2.仅安装基础插件,可以在插件市场中获取更多插件。</p>
<p>3.在线安装功能需要连接互联网下载插件和依赖软件。</p>
<p>4.您也可以选择跳过此步骤,自己手动安装插件和依赖软件。</p>
<p>5.点击帮助按钮,会访问线上帮助文档</p>
@ -73,7 +73,7 @@
</label> -->
<label class="installSelection radiogroup">
<input type="radio" id="notNow" name="choice" value="notNow">
<label for="notNow" id="lablenotNow">跳过所有</label><br>
<label for="notNow" id="lablenotNow">跳过</label><br>
</label>
</form>
</div>
@ -97,8 +97,8 @@
<div class="tab" id="onlineInstallTab1">
<div class="installInfo1">
<h3>说明:</h3>
<p>1.检查到有配置文件更新。本安装引导会根据配置文件更新内容。新配置文件可能修改了旧版本配置文件的问题,建议选择“是”更新配置文件。</p>
<p>2.如果您想按照旧版配置文件操作,可以选择“否”不更新配置文件。</p>
<p>1.本步骤检查线上配置文件是否和本地配置文件一致,如果线上存在新版本配置文件,建议选择“是”更新配置文件</p>
<p>2.如果按照本地配置文件操作,可以选择“否”不更新配置文件。</p>
</div>
<div class="devContentCol">
<form class="SelectionUpdate">

View File

@ -190,7 +190,6 @@ export class DeployMainService implements IDeployMainService {
this.minWindow();
};
listenerCloseWindow = (event: IpcMainEvent) => {
this.logger.info("关闭窗口");
//删除新下载但是没被使用的配置文件
if (this.updateConfigDir) {
if (this.selectObject.updateFlag == false)
@ -633,12 +632,10 @@ export class DeployMainService implements IDeployMainService {
handleHttpVerify = async (event: IpcMainInvokeEvent, msg: any) => {
try {
this.logger.info("检查网络连接...");
await this.checkHttp();
this.logger.info("网络连接正常");
this.println("ipc main kylinide.installWizard.init httpVerify");
// this.DeployWindow?.webContents.send('kylinide.installWizard.init', { type: "httpVerify" });
return { type: "httpVerify" };
// this.safeSend(event, 'kylinide.installWizard.init', { type: "httpVerify" });
} catch (error) {
this.logger.error("网络连接异常");
if (this.DeployWindow) {
@ -1164,7 +1161,7 @@ export class DeployMainService implements IDeployMainService {
});
this.DeployWindow.on('close', () => {
this.logger.info("窗口关闭");
this.logger.info("关闭窗口");
this.DeployWindow = null;
validatedIpcMain.removeListener('kylinide.installWizard.skipWizard', listenerSkipWizard
);