|
@@ -272,8 +272,8 @@ export default {
|
|
methods: {
|
|
methods: {
|
|
async getToolInfo() {
|
|
async getToolInfo() {
|
|
const res = await toolInfo();
|
|
const res = await toolInfo();
|
|
- const info = res.install || {};
|
|
|
|
- this.toolUrl = info.url || "";
|
|
|
|
|
|
+ const info = res || {};
|
|
|
|
+ this.toolUrl = info.prefix ? `${info.prefix}/${info.install.url}` : "";
|
|
},
|
|
},
|
|
cancel() {
|
|
cancel() {
|
|
this.modalIsShow = false;
|
|
this.modalIsShow = false;
|