fix(salix): Redirect to Lilium from create claim
gitea/salix/pipeline/pr-master This commit looks good
Details
gitea/salix/pipeline/pr-master This commit looks good
Details
This commit is contained in:
parent
ec036de2c9
commit
486c7f4fa3
|
@ -66,15 +66,15 @@ export default class App {
|
||||||
]}
|
]}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const hasId = !isNaN(parseFloat(route.split('/')[1]));
|
||||||
|
|
||||||
if (this.logger.$params.q) {
|
if (this.logger.$params.q) {
|
||||||
let tableValue = this.logger.$params.q;
|
let tableValue = this.logger.$params.q;
|
||||||
const q = JSON.parse(tableValue);
|
const q = JSON.parse(tableValue);
|
||||||
if (typeof q === 'number')
|
if (typeof q === 'number')
|
||||||
tableValue = JSON.stringify({id: tableValue});
|
tableValue = JSON.stringify({id: tableValue});
|
||||||
newRoute = newRoute.concat(`?table=${tableValue}`);
|
newRoute = newRoute.concat(`?table=${tableValue}`);
|
||||||
}
|
} else if (!hasId && this.logger.$params.id && newRoute.indexOf(this.logger.$params.id) < 0)
|
||||||
|
|
||||||
if (this.logger.$params.id && newRoute.indexOf(this.logger.$params.id) < 0)
|
|
||||||
newRoute = newRoute.concat(`${this.logger.$params.id}`);
|
newRoute = newRoute.concat(`${this.logger.$params.id}`);
|
||||||
|
|
||||||
return this.logger.$http.get('Urls/findOne', {filter})
|
return this.logger.$http.get('Urls/findOne', {filter})
|
||||||
|
|
Loading…
Reference in New Issue