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>

Binary file not shown.