肝脏分段标注保存接口更改
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
98502230c3
commit
0e0c2ca55d
|
@ -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
|
||||||
})
|
})
|
||||||
|
|
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue