Compare commits

..

No commits in common. "e221af244d54186c707056b739a03412905f91d3" and "57b7e3f65c2fd19b4fe5a7e4d2baeb76c44b301d" have entirely different histories.

1 changed files with 2 additions and 3 deletions

View File

@ -3173,11 +3173,10 @@ namespace IRaCIS.Core.Infra.EFCore.Common
var customPrefix=string.Empty; var customPrefix=string.Empty;
// 对于一个标记绑定两个问题的不计稽查 // 对于一个标记绑定两个问题的不计稽查
var existsMark = await _dbContext.ReadingTaskQuestionMark.AnyAsync(t => t.MarkId == entity.MarkId); var exixtsMark = await _dbContext.ReadingTaskQuestionMark.AnyAsync(t => t.MarkId == entity.MarkId);
// 自定义表格 和问题添加标记的时候 要记录为 添加标记 // 自定义表格 和问题添加标记的时候 要记录为 添加标记
if ((_userInfo.RequestUrl == "SaveTaskQuestion/-10" if ((_userInfo.RequestUrl == "SaveTaskQuestion/-10"
|| _userInfo.RequestUrl == "saveTableQuestionMark/-10") && type== "Add"&&!existsMark) || _userInfo.RequestUrl == "saveTableQuestionMark/-10") && type== "Add"&&!exixtsMark)
{ {
isDistinctionInterface = false; isDistinctionInterface = false;
customPrefix = "ReadingImageTask/submitCustomTag"; customPrefix = "ReadingImageTask/submitCustomTag";