Conformance: backend update Conformance issue API, Conformance report API, fix more model trace table.
This commit is contained in:
@@ -110,7 +110,7 @@ export default defineStore('conformanceStore', {
|
||||
*/
|
||||
async getLogConformanceTempReport() {
|
||||
let checkerId = this.conformanceTempCheckerId;
|
||||
const api = `/api/temp-log-checkers/${checkerId}/report`;
|
||||
const api = `/api/temp-log-checkers/${checkerId}`;
|
||||
|
||||
try {
|
||||
const response = await this.$axios.get(api);
|
||||
@@ -148,9 +148,9 @@ export default defineStore('conformanceStore', {
|
||||
/**
|
||||
* Get the Trace Details of a Temporary Log Conformance lssue.
|
||||
*/
|
||||
async getLogConformanceTraceDetail(issueNo, traceId) {
|
||||
async getLogConformanceTraceDetail(issueNo, traceId, start, pageSize) {
|
||||
let checkerId = this.conformanceTempCheckerId;
|
||||
const api = `/api/temp-log-checkers/${checkerId}/issues/${issueNo}/traces/${traceId}`;
|
||||
const api = `/api/temp-log-checkers/${checkerId}/issues/${issueNo}/traces/${traceId}?start=${start}&page_size=${pageSize}`;
|
||||
|
||||
try {
|
||||
const response = await this.$axios.get(api);
|
||||
|
||||
Reference in New Issue
Block a user