fix(*): 更新launcher打包内容20250711

This commit is contained in:
2025-07-11 10:46:32 +08:00
parent 71749a880c
commit 7cb725895b
6 changed files with 298 additions and 284 deletions

View File

@ -55,4 +55,10 @@
根据Cooperop-Mix逻辑调整对应产品加载功能并优化重启处理逻辑
2025-07-11
1. 调整授权产品查看界面(补充二维码)
2. 调整授权校验(注册表存在必要信息后仅校验运行目录即可)

Binary file not shown.

View File

@ -165,6 +165,7 @@
'token': sessionStorage.getItem("token")
}
}).then(function (res) {
console.log(res)
if (res.data.state === "success") {
that.$message.success('修改成功');
setTimeout(() => { //设置延迟执行

View File

@ -46,15 +46,22 @@
<div style="margin: 10px;">
<div class="address">地址:{{companyAddress}}</div>
<div class="des">简介:{{companyIntroduce}}</div>
<div class="des">授权码:<span style="color: green">已生成</span> <span><el-link
type="primary" :underline="false"
style=" font-size: 12px;margin-left: 8px;"
@click="toSeeCode">查看</el-link></span></div>
<div class="des">授权文件:<span style="color: green">正常</span>
<div class="des">授权码:
<span style="color: green">已生成</span>
<span>
<el-link type="primary" :underline="false"
style=" font-size: 12px;margin-left: 8px;"
@click="dialogTableVisible = true">更换授权文件</el-link>
@click="toSeeCode">查看</el-link>
</span>
</div>
<div class="des">授权文件:
<span style="color: green">正常</span>
<span>
<el-link type="primary" :underline="false"
style=" font-size: 12px;margin-left: 8px;"
@click="dialogTableVisible = true">
更换授权文件
</el-link>
</span>
</div>
</div>
@ -121,13 +128,13 @@
复制授权码
</el-button>
<div style="display: flex;width: 100%;">
<div id="qrcode" style="width:200px;height: 200px;margin: 10px"></div>
<div>
<div style="display: flex;margin-top: 10px;width: 100%;">
<div id="qrcode" style="width:200px;height: 200px;"/>
</div>
<el-input type="textarea" ref="copy" autosize="true" v-model="single.code" resize="none"
readonly="true" :autosize="{ minRows: 9, maxRows: 10}"
style="margin: 10px;flex: 1 1 0%;">
</el-input>
readonly="true" :autosize="{ minRows: 9, maxRows: 10}" style="flex:1;margin-left: 10px"/>
</div>
</div>
</el-dialog>
@ -164,12 +171,12 @@
$("#qrcode").qrcode({
render: rendermethod, // 渲染方式有table方式IE兼容和canvas方式
width: picwidth, //宽度
height:picheight, //高度
height: picheight, //高度
text: utf16to8(url), //内容
typeNumber:-1,//计算模式
correctLevel:2,//二维码纠错级别
background:"#ffffff",//背景颜色
foreground:"#000000" //二维码颜色
typeNumber: -1,//计算模式
correctLevel: 2,//二维码纠错级别
background: "#ffffff",//背景颜色
foreground: "#000000" //二维码颜色
});
}
@ -410,7 +417,7 @@
location.href = "login.jsp";
}, 2000);
} else {
that.$message.error(res.data.mes??"密码错误");
that.$message.error(res.data.mes ?? "密码错误");
}
}).catch(function (error) {
console.log(error)
@ -423,11 +430,11 @@
},
toSeeCode() {
this.dialogCodeVisible = true
if ( !this.generalQrCode){
if (!this.generalQrCode) {
setTimeout(() => {
generateQRCode("table",200, 200, this.single.code);
generateQRCode("table", 200, 200, this.single.code);
this.generalQrCode = true;
} , 100)
}, 100)
}
}
}

Binary file not shown.