肝脏分段标注保存接口更改
continuous-integration/drone/push Build is passing Details

uat_us
caiyiling 2025-01-02 14:37:26 +08:00
parent 98502230c3
commit 0e0c2ca55d
2 changed files with 3 additions and 3 deletions

View File

@ -252,9 +252,9 @@ export function uploadOCTLipidAngleTemplate(param) {
}) })
} }
export function saveTableQuestionMark(param) { export function saveTableQuestionMark(param, type) {
return request({ return request({
url: `/ReadingImageTask/saveTableQuestionMark`, url: `/ReadingImageTask/saveTableQuestionMark/${type}`,
method: 'post', method: 'post',
data: param data: param
}) })

View File

@ -582,7 +582,7 @@ export default {
async saveTableQuestionInfo(params, qs) { async saveTableQuestionInfo(params, qs) {
const loading = this.$loading({ fullscreen: true }) const loading = this.$loading({ fullscreen: true })
try { try {
let res = await saveTableQuestionMark(params) let res = await saveTableQuestionMark(params, 10)
if (res.IsSuccess) { if (res.IsSuccess) {
// //
let i = this.markList.findIndex(i=>i.tableQuestionId === qs.Id) let i = this.markList.findIndex(i=>i.tableQuestionId === qs.Id)